UserController.php 59.3 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512
<?php
// +----------------------------------------------------------------------
// | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013-2017 http://www.thinkcmf.com All rights reserved.
// +----------------------------------------------------------------------
// | Author: wuwu <15093565100@163.com>
// +----------------------------------------------------------------------
namespace api\portal\controller;


use api\portal\model\CodeModel;
use api\portal\model\MemberModel;
use api\portal\model\PortalPostModel;
use cmf\controller\RestBaseController;
use think\Db;
use think\Request;
use think\Loader;
use think\Config;
use think\captcha\Captcha;
use think\Response;
use think\Url;
use SmsDemo;
use think\Session;
//use think\Route;
/**
 * @title 用户接口
 * @description 接口说明
 * @group 接口分组
 */

class UserController extends CommonController
{
    protected $postModel;
    public function __construct(PortalPostModel $postModel)
    {
        parent::__construct();
        $this->postModel = $postModel;
    }
//    获取ip地址
    function getIP(){
        global $ip;
        if (getenv("HTTP_CLIENT_IP"))
            $ip = getenv("HTTP_CLIENT_IP");
        else if(getenv("HTTP_X_FORWARDED_FOR"))
            $ip = getenv("HTTP_X_FORWARDED_FOR");
        else if(getenv("REMOTE_ADDR"))
            $ip = getenv("REMOTE_ADDR");
        else $ip = "Unknow";
        return $ip;
    }

//   验证码图片
    public function getImgUrl($rand = '',$id = "")
    {
        \think\Route::get('captcha/[:id]/rand/[:rand]', "\\think\\captcha\\CaptchaController@index");
        \think\Validate::extend('captcha', function ($value, $id = "") {
            return captcha_check($value, $id, (array)\think\Config::get('captcha'));
        });
        $middle_url =  \think\Url::build('/captcha/new' . ($id ? "/{$id}" : '').'?rand='.$rand);
        return cmf_get_image_url($middle_url);

    }

    public function authcode($str)
    {
        $key = substr(md5('ThinkPHP.CN'), 5, 8);
        $str = substr(md5($str), 8, 10);
        return md5($key . $str);
    }



    /**
     * @title  获取短信验证码(sure)
     * @description 接口说明
     * @author 开发者
     * @url /api/portal/User/getSmsResult
     * @method POST
     * @param name:tel type:int require:1 default: other: desc:手机号
     * @param name:imgCode type:int require:1 default: other:genre=2时传 desc:图片验证码
     * @param name:rand type:int require:1 default: other: desc:随机数
     * @param name:genre type:int require:1 default: other: desc:类型(1->用户注册/中介注册,2->密码找回,3->发布需求,4->修改手机号,5->绑定银行卡)
     * @param name:connect   type:int require:1 default: other:1 登录注册 ,2其他 desc:1
     */
//    获取短信验证码(登录)
    public function getSmsResult(Request $request){
        //            短信验证码
//        查询以前发过的验证码,并删除
        $data = $request->param();
        $where_isDouble['status'] = 1;
        $where_isDouble['type'] = $data['genre'];
        $where_isDouble['tel'] = $data['tel'];
        $updateDouble['status'] = 9;
        $updateD = Db::name('Code')->where($where_isDouble)->update($updateDouble);
        if(!$request->param('tel')){
            $this->apiResponse('0','请输入手机号');
        }else{
            $tel = $request->param('tel');
        }

        if(!$request->param('genre')){
            $this->apiResponse('0','请选择类型');
        }else{
            $genre = $request->param('genre');
            if($genre == 1 ){
                $code = 'SMS_137416617';
                $type = 1;
            }else  if($genre == 2 ){
                //            验证图形验证码
                //            验证码
//                session_start();
                if(empty($data['imgCode'])){
                    $this->apiResponse('0','请先输入图形验证码');
                }
                //            验证码
                $first = explode('?',$data['rand']);
                $next = explode('=',$first[1]);
                $third = explode('.',$next[1]);
                $postImg = $this->authcode(strtoupper($data['imgCode']));
                $where_imgcode['rand'] = $third[0];
                $find_code = Db::name('Imgcode')->where($where_imgcode)->find();
                if($find_code){
                    if($find_code['code'] != $postImg){
                        $this->apiResponse('0','验证码错误1');
                    }else{
                        Db::name('Imgcode')->where($where_imgcode)->delete();
                    }
                }else{
                    $this->apiResponse('0','验证码错误2');
                }

                $code = 'SMS_137411611';
                $type = 2;
            }else  if($genre == 3 ){
                $code = 'SMS_137426773';
                $type = 3;
            }else  if($genre == 4 ){
                $code = 'SMS_137421639';
                $type = 4;
            }else  if($genre == 5 ){
                $code = 'SMS_137416654';
                $type = 5;
            }

            $tel = $request->param('tel');
        }

        $this->SmsResult($tel,$code,$type);
    }



    /**
     * @title  用户注册(sure)
     * @description 接口说明
     * @author 开发者
     * @url /api/portal/User/join
     * @method POST
     * @param name:name type:int require:1 default: other: desc:姓名
     * @param name:tel type:int require:1 default: other: desc:手机号
     * @param name:password type:int require:1 default: other: desc:密码
     * @param name:sure_password type:int require:1 default: other: desc:确认密码
     * @param name:code type:int require:1 default: other: desc:验证码
     * @param name:parent_id type:int require:1 default: other: desc:推荐人id
     * @param name:parent_tel type:int require:1 default: other: desc:推荐人手机号
     * @param name:connect   type:int require:1 default: other:1 登录注册 ,2其他 desc:1
     * @return data:'token'
     */
    public function join(Request $request)
    {
        if($request->Post() && $request->Post('name')) {
            $getParam = $request->param();
            Db::startTrans();
//            验证
            $validate = Loader::validate('User');
            if (!$validate->scene('user')->check($_POST)) {
                return json(array('code' => 0, 'msg' => $validate->getError()));
            }
            $data['password'] = $this->md5($_POST['password']);
            $sure_password = $this->md5($_POST['sure_password']);
//            确认密码
            if ($data['password'] != $sure_password) {
                Db::rollback();
                $this->apiResponse('0', '两次密码不一致');
            }

//           验证码
            $data['tel'] = $_POST['tel'];
            $code = $request->param('code');
            $where_code['tel'] = $data['tel'];
            $where_code['type'] = 1;
            $where_code['create_time'] = array('lt',(time()+300));
            $find_code = Db::name('Code')->where($where_code)->order('create_time desc')->field('code')->find();
            if(!$find_code){
                Db::rollback();
                $this->apiResponse('0','验证码错误,请重新获取');
            }
            if($code != $find_code['code']){
                Db::rollback();
                $this->apiResponse('0','验证码错误,请重新获取');
            }else{
                $updateCode['status'] = 9;
                Db::name('Code')->where($where_code)->update($updateCode);
            }
//            验证码 end
//            判断手机号是否已注册
            $user = new MemberModel();
            $where_user['tel'] = $data['tel'];
            $is_isset = $user->where($where_user)->find();
            if($is_isset){
                $this->apiResponse('0','您已注册过,请直接登录');
            }
//            数据加入数据库 start
            $str = rand(1000,9999).time().rand(100,999);
            $data['token'] = $this->md5($str);
            $data['name'] = $_POST['name'];
            $data['type'] = 1;
            $data['start'] = 50;
            $data['create_ip'] = $this->getIP();
            if(!empty($getParam['parent_id']) || !empty($getParam['parent_tel'])){
                $data['referee_id'] = $getParam['parent_id'];
                $data['referee_tel'] = $getParam['parent_tel'];
            }
            $add = $user->allowField(true)->save($data);
            $uid = $user->id;
//            end
            if($add){
//                注册成功
//                中介推荐,注册成功,增加中介信誉分
                if(!empty($getParam['parent_id'])){
//                    中介被拉黑情况操作(未完)




                    $where_parentAdd['id'] = $getParam['parent_id'];
                    $where_parentAdd['type'] = 2;
                    $where_reward['type'] = 2;
                    $where_reward['status'] = 1;
                    $reward = Db::name('Reward')->where($where_reward)->order('create_time')->field('number')->find();
                    if($reward){
                        $add_agencyScore = $user->where($where_parentAdd)->setInc('reputation',$reward['number']);
                        if(!$add_agencyScore){
                            $this->apiResponse('0','推荐奖励增加失败');
                        }else{
//                           推荐记录表
                            $add_log['type'] = 2;
                            $add_log['number'] = $reward['number'];
                            $add_log['referee'] = $getParam['parent_id'];
                            $add_log['recommen'] = $uid;
                            $add_log['create_time'] = time();
                            $add_log['update_time'] = time();
                            $log = Db::name('RewardLog')->insertGetId($add_log);
                            if(!$log){
                                Db::rollback();
                            }
//                           信誉记录表
                            $add_startlog['detail'] = "推荐".$getParam['parent_tel'].'注册';
                            $add_startlog['star'] = $reward['number'];
                            $add_startlog['type'] = 3;
                            $add_startlog['create_time'] = time();
                            $add_startlog['update_time'] = time();
                            $startLog = Db::name('StartDetail')->insertGetId($add_startlog);
                            if(!$startLog){
                                Db::rollback();
                            }
                        }
                    }else{
                        Db::rollback();
                        $this->apiResponse('0','推荐奖励获取失败');
                    }
                }
//                end
//                $url = $_SERVER['SERVER_ADDR'].'/public/api/portal/Index/index?uid='.$uid;
                $url = 'http://bifangjia.cn?uid='.$uid;
                $get_url = $this->shot($url);
                $update_shot['link'] = $get_url;
                $update_shot['id'] = $uid;
                $result_shot = $user->isUpdate(true)->save($update_shot);
                if(!$result_shot){
                    Db::rollback();
                }
                $where_rewardNext['type'] = 1;
                $where_rewardNext['status'] = 1;
                $rewardNext = Db::name('Reward')->where($where_rewardNext)->order('create_time')->field('number')->find();
                $startAdd['detail'] = '注册获得';
                $startAdd['star'] = $rewardNext['number'];
                $startAdd['type'] = 1;
                $startAdd['create_time'] = time();
                $startAdd['update_time'] = time();
                $star = Db::name('StartDetail')->insertGetId($startAdd);
                if($star){
                    Db::commit();
                    $final['token'] = $data['token'];
                    $final['uid'] = $uid;
                    $this->apiResponse('1','注册成功',$final);
                }else{
                    Db::rollback();
                    $this->apiResponse('0','注册失败');
                }
            }else{
                Db::rollback();
                $this->apiResponse('0','注册失败');
            }

        }else{
//            服务协议
            $where_pro['status'] = 1;
            $where_pro['type'] = 1;
            $list = Db::name('Protocol')->where($where_pro)->order("update_time desc")->field("title,content")->find();
            $list['content'] = htmlspecialchars_decode($list['content']);
//              推荐人(未完)
            $getdata = $this->request->param();
            if(!empty($getdata['uid'])){
                $where_member['id'] = $getdata['uid'];
                $find_parent = Db::name('Member')->where($where_member)->field('id,tel')->find();
                if($find_parent){
                    $list['parent'] = $find_parent['tel'];
                    $list['parent_id'] = $find_parent['id'];
                }
            }
            if($list){
                $this->apiResponse('1','成功',$list);
            }else{
                $this->apiResponse('0','暂无内容');
            }

        }
    }

    /**
     * @title  用户登录(sure)
     * @description 接口说明
     * @author 开发者
     * @url /api/portal/User/login
     * @method POST
     * @param name:tel type:int require:1 default: other: desc:手机号
     * @param name:password type:int require:1 default: other: desc:密码
     * @param name:imgCode type:int require:1 default: other: desc:验证码
     * @param name:gener type:int require:1 default: other: desc:1->用户,2->中介
     * @param name:rand type:int require:1 default: other: desc:随机数
     * @param name:connect   type:int require:1 default: other:1 登录注册 ,2其他 desc:1
     * @return data:''@
     * @data type:'1->用户,2->中介'
     */
//    登录
    public function login(Request $request){
        if($request->post() && $request->Post('tel')){
            $getData = $request->param();
//            登录验证
//            判空
            if(empty($getData['tel'])){
                $this->apiResponse('0','手机号不能为空');
            }else if(empty($getData['password'])){
                $this->apiResponse('0','密码不能为空');
            }else
                if(empty($getData['imgCode'])){
                    $this->apiResponse('0','验证码不能为空');
                }
            if(empty($getData['rand'])){
                $this->apiResponse('0','随机数不能为空');
            }
            $tel = $getData['tel'];
            $password = $getData['password'];
            $true = $getData['imgCode'];
//            验证
//            验证码
            $first = explode('?',$getData['rand']);
            $next = explode('=',$first[1]);
            $third = explode('.',$next[1]);
            $postImg = $this->authcode(strtoupper($true));
            $where_imgcode['rand'] = $third[0];
            $find_code = Db::name('Imgcode')->where($where_imgcode)->find();
            if($find_code){
                if($find_code['code'] != $postImg){
                    $this->apiResponse('0','验证码错误');
                }
                else{
                    Db::name('Imgcode')->where($where_imgcode)->delete();
                }
            }else{
                $this->apiResponse('0','验证码错误');
            }
//            手机、密码
            $memberModel = new MemberModel();
            $where_member['tel'] = $tel;
            $where_member['password'] = $this->md5($password);
            $where_member['type'] = $getData['gener'];
            $uid = Db::name('Member')->where($where_member)->field('id,token,type,login_time')->find();
            if($uid){
//                登录重置token
                $token_str = rand(1000,9999).time().rand(100,999);
                $update_member['id'] = $uid['id'];
                $update_member['last_login_ip'] = $this->getIP();
                if(empty($uid['login_time'])){
                    $update_member['login_time'] = time();
                }
                $update_member['last_login_time'] = time();
                $update_member['token'] = $this->md5($token_str);
//                $update_member['update_time'] = time();
                $member = $memberModel->isUpdate(true)->save($update_member);
                if($member){
                    session('uid',$uid['id']);
                    session('token',$update_member['token']);
                    $final['token'] = $update_member['token'];
                    $final['uid'] = $uid['id'];
                    $final['type'] = $uid['type'];
                    $this->apiResponse('1','登录成功',$final);
                }else{
                    $this->apiResponse('0','登录失败');
                }
            }else{
                $this->apiResponse('0','您输入的账号或密码不正确');
            }
        }else{
//            返回验证码图片
            session_start();
            $rand = str_replace(".","",substr(microtime(true),-5)).rand(1000,9999);
            $img = $this->getImgUrl($rand);
            $this->apiResponse('1','成功',$img);
        }
    }


    /**
     * @title  用户退出登录
     * @description 接口说明
     * @author 开发者
     * @url /api/portal/User/outLogin
     * @method POST
     * @param name:connect   type:int require:1 default: other:1 登录注册 ,2其他 desc:2
     * @param name:token type:int require:1 default: other: desc:token
     */
//    退出登录
    public function outLogin(Request $request){
//        重置token
        $str = rand(1000,9999).time().rand(100,999);
        $change['token'] = $this->md5($str);
        $where_member['token'] = $request->param('token');
        $model = new MemberModel();
        $member = $model->where($where_member)->find();
        if($member){
            $where_change['id'] = $member['id'];
//            $update = $model->isUpdate(true)->allowField(true)->save($change);
            $change['update_time'] = time();
            $update = $model->where($where_change)->update($change);
            if($update){
//                unset($_SESSION['user_id']);
                $this->apiResponse('1','退出成功');
            }else{
                $this->apiResponse('0','退出失败');
            }
        }else{
            $this->apiResponse('0','用户信息错误');
        }
    }

    /**
     * @title  用户修改手机号(第一步)(sure)
     * @description 接口说明
     * @author 开发者
     * @url /api/portal/User/changetTel
     * @method POST
     * @param name:Password type:int require:1 default: other: desc:登录密码
     * @param name:token type:int require:1 default: other: desc:token
     */
    public function changetTel(){
        $data = $this->request->param();
        $user = $this->myleft($data['token']);
        if(!empty($data['Password'])){
            $userModel = new MemberModel();
            $where_change['status'] = 1;
            $where_change['token'] = $data['token'];
            $where_change['password'] = $this->md5($data['Password']);
            $findChange = $userModel->where($where_change)->find();
            if($findChange){
                $this->apiResponse('1','验证成功');
            }else{
                $this->apiResponse('0','验证失败');
            }
        }else{
            $final['user'] = $user;
            $this->apiResponse('1','成功',$final);
        }

    }

    /**
     * @title  用户修改手机号(第二步)(sure)
     * @description 接口说明
     * @author 开发者
     * @url /api/portal/User/changetTelNext
     * @method POST
     * @param name:newTel type:int require:1 default: other: desc:新手机号
     * @param name:code type:int require:1 default: other: desc:验证码
     * @param name:token type:int require:1 default: other: desc:token
     */
    public function changetTelNext(){
        $data = $this->request->param();
        $user = $this->myleft($data['token']);
        if(!empty($data['newTel'])){
            if(empty($data['code'])){
                $this->apiResponse('0','验证码不能为空');
            }
            $codeModel = new CodeModel();
            $where_code['status'] = 1;
            $where_code['type'] = 4;
            $where_code['tel'] = $data['newTel'];
            $findCode = $codeModel->where($where_code)->find();
            if($findCode['code'] != $data['code']){
                $this->apiResponse('0','验证码错误');
            }
            $userModel = new MemberModel();
//            $change['token'] = $data['token'];
            $change['id'] = $user['id'];
            $change['tel'] = $data['newTel'];
            $findChange = $userModel->isUpdate(true)->save($change);
            if($findChange){
                $this->apiResponse('1','修改成功');
            }else{
                $this->apiResponse('0','修改失败');
            }
        }else{
            $final['user'] = $user;
            $this->apiResponse('1','成功',$final);
        }

    }



    /**
     * @title  用户修改密码(sure)
     * @description 接口说明
     * @author 开发者
     * @url /api/portal/User/changePassword
     * @method POST
     * @param name:password type:int require:1 default: other: desc:旧密码
     * @param name:newPassword type:int require:1 default: other: desc:新密码
     * @param name:sureNewPassword type:int require:1 default: other: desc:确认新密码
     * @param name:connect   type:int require:1 default: other:1 登录注册 ,2其他 desc:2
     * @param name:token type:int require:1 default: other: desc:token
     */
    //  修改密码
    public function  changePassword(Request $request){
        $data = $request->param();
        if(empty($data['password'])){
            $this->apiResponse('0','请输入原密码');
        }
        if(empty($data['newPassword'])){
            $this->apiResponse('0','请输入新密码');
        }
        if(empty($data['sureNewPassword'])){
            $this->apiResponse('0','请输入确认新密码');
        }
        $where_member['password'] = $this->md5($data['password']);
        $where_member['token'] = $data['token'];
        $user_id = Db::name('Member')->where($where_member)->field('id')->find();
        if($user_id){
            if($data['newPassword'] == $data['sureNewPassword']){
                $where_update['id'] = $user_id['id'];
                $middleStr = rand(1000,9999).time().rand(100,999);
                $update['token'] = $this->md5($middleStr);
                $update['password'] = $this->md5($data['newPassword']);
                $is_update = Db::name('Member')->where($where_update)->update($update);
                if($is_update){
                    $final['token'] = $update['token'];
                    $this->apiResponse('1','成功',$final);
                }else{
                    $this->apiResponse('0','修改失败');
                }
            }else{
                $this->apiResponse('0','两次密码输入不一致');
            }
        }else{
            $this->apiResponse('0','原密码输入错误');
        }
    }


    /**
     * @title  密码找回(sure)
     * @description 接口说明
     * @author 开发者
     * @url /api/portal/User/findPassword
     * @method POST
     * @param name:tel type:int require:1 default: other: desc:手机号
     * @param name:imgCode type:int require:1 default: other: desc:图片验证码
     * @param name:code type:int require:1 default: other: desc:短信验证码
     * @param name:newPassword type:int require:1 default: other: desc:新密码
     * @param name:sureNewPassword type:int require:1 default: other: desc:确认新密码
     * @param name:connect   type:int require:1 default: other:1 登录注册 ,2其他 desc:1
     */
    public function  findPassword(Request $request){
        $data = $request->param();
        if($data){
            if(empty($data['tel'])){
                $this->apiResponse('0','请输入手机号');
            }
            if(empty($data['imgCode'])){
                $this->apiResponse('0','请输入图片验证码');
            }
            if(empty($data['code'])){
                $this->apiResponse('0','请输入短信验证码');
            }
            if(empty($data['newPassword'])){
                $this->apiResponse('0','请输入新密码');
            }
            if(empty($data['sureNewPassword'])){
                $this->apiResponse('0','请输入确认新密码');
            }
//            验证手机验证码
            $where_Code['tel'] = $data['tel'];
            $where_Code['type'] = 2;
            $code = Db::name('Code')->where($where_Code)->order('create_time desc')->find();
            if($code['code'] != $data['code']){
                $this->apiResponse('0','短信验证码错误');
            }
            $where_tel['tel'] = $data['tel'];
            $is_isset = Db::name('Member')->where($where_tel)->field('id')->find();
            if(!$is_isset){
                $this->apiResponse('0','该手机号暂未注册');
            }
            if($data['newPassword'] == $data['sureNewPassword']){
                $where_update['tel'] = $data['tel'];
                $middleStr = rand(1000,9999).time().rand(100,999);
                $update['token'] = $this->md5($middleStr);
                $update['password'] = $this->md5($data['newPassword']);
                $is_update = Db::name('Member')->where($where_update)->update($update);
                if($is_update){
                    $this->apiResponse('1','成功',$update['token']);
                }else{
                    $this->apiResponse('0','修改失败');
                }
            }else{
                $this->apiResponse('0','两次密码输入不一致');
            }

        }else{
            //            返回验证码图片
            $img = $this->getImgUrl();
            $this->apiResponse('1','成功',$img);
        }
    }



    /**
     * @title  绑定银行卡(sure)
     * @description 接口说明
     * @author 开发者
     * @url /api/portal/User/myCard
     * @method POST
     * @param name:token type:int require:1 default: other: desc:token
     * @param name:bank_id type:int require:1 default: other: desc:银行id
     * @param name:card_num type:int require:1 default: other: desc:银行卡号
     * @param name:code type:int require:1 default: other: desc:短信验证码
     */
    public function myCard(Request $request){
        $data = $request->param();
        $user = $this->myleft($data['token']);
        if(!empty($data['bank_id']) && !empty($data['card_num'])){
//            验证码
            $where_code['type'] = 5;
            $where_code['status'] = 1;
            $where_code['tel'] = $user['tel'];
            $code = Db::name('Code')->where($where_code)->order('create_time desc')->limit(1)->find();
            if(!$code){
                $this->apiResponse('0','请先获取验证码');
            }
            if(empty($data['code'])){
                $this->apiResponse('0','请先获取验证码');
            }
            if($code['code'] != $data['code']){
                $this->apiResponse('0','验证码错误');
            }
//            $where_findC['card_num'] = $data['card_num'];
            $where_findC['user_id'] = $user['id'];
            $where_findC['status'] = 1;
            $is_issetCard = Db::name('Card')->where($where_findC)->find();
            if($is_issetCard){
                $this->apiResponse('0','您已绑定银行卡');
            }
            $add['bank_id'] = $data['bank_id'];
            $add['card_num'] = $data['card_num'];
            $add['create_time'] = time();
            $add['update_time'] = time();
            $add['user_id'] = $user['id'];
            $add_final = Db::name('Card')->insertGetId($add);
            if($add_final){
                $final['card_id'] = $add_final;
                $this->apiResponse('1','成功',$final);
            }else{
                $this->apiResponse('0','添加失败');
            }
        }else{
            $where_bank['status'] = 1;
            $bank = Db::name('Bank')->where($where_bank)->order('score desc,create_time desc')->select();
            $final['bank'] = $bank;
            $final['user'] = $user;
            $this->apiResponse('1','成功',$final);
        }
    }

    /**
     * @title  修改绑定银行卡(sure)
     * @description 接口说明
     * @author 开发者
     * @url /api/portal/User/changeMyCard
     * @method POST
     * @param name:token type:int require:1 default: other: desc:token
     * @param name:card_id type:int require:1 default: other: desc:银行卡id
     * @param name:bank_id type:int require:1 default: other: desc:银行id
     * @param name:card_num type:int require:1 default: other: desc:银行卡号
     * @param name:code type:int require:1 default: other: desc:短信验证码
     */
    public function changeMyCard(Request $request){
        $data = $request->param();
        $user = $this->myleft($data['token']);
        if(empty($data['card_id'])){
            $this->apiResponse('0','银行卡id不能为空');
        }
        if(!empty($data['bank_id'])){
            //            验证码
            $where_code['type'] = 5;
            $where_code['status'] = 1;
            $where_code['tel'] = $user['tel'];
            $code = Db::name('Code')->where($where_code)->order('create_time desc')->limit(1)->find();
            if(!$code){
                $this->apiResponse('0','请先获取验证码');
            }
            if(empty($data['code'])){
                $this->apiResponse('0','请先获取验证码');
            }
            if($code['code'] != $data['code']){
                $this->apiResponse('0','验证码错误');
            }
            $where_add['id'] = $data['card_id'];
            $add['bank_id'] = $data['bank_id'];
            $add['card_num'] = $data['card_num'];
            $add['update_time'] = time();
            $add_final = Db::name('Card')->where($where_add)->update($add);
            if($add_final){
                $final['card_id'] = $add_final;
                $final['user'] = $user;
                $this->apiResponse('1','成功',$final);
            }else{
                $this->apiResponse('0','添加失败');
            }

        }else{
            $where_cardFirst['c.id'] = $data['card_id'];
            $cardFind = Db::name('Card')->alias('c')
                ->where($where_cardFirst)
                ->join("Bank b",'b.id = c.bank_id')
                ->field('c.*,b.name')
                ->find();
            $where_bank['status'] = 1;
            $bank = Db::name('Bank')->where($where_bank)->order('score desc,create_time desc')->select();
            $final['bank'] = $bank;
            $final['card'] = $cardFind;
            $final['user'] = $user;
            if($cardFind){
                $this->apiResponse('1','成功',$final);
            }else{
                $this->apiResponse('0','信息查询失败');
            }
        }
    }

    /**
     * @title  银行卡解除绑定(sure)
     * @description 接口说明
     * @author 开发者
     * @url /api/portal/User/delMyCard
     * @method POST
     * @param name:token type:int require:1 default: other: desc:token
     * @param name:card_id type:int require:1 default: other: desc:银行id
     */
    public function delMyCard(Request $request){
        $data = $request->param();
        $where_mem['token'] = $data['token'];
        $where_mem['status'] = 1;
        $user_id = Db::name('Member')->where($where_mem)->field('id')->find();
        $where_card['status'] = 1;
        $where_card['user_id'] = $user_id['id'];
        $where_card['id'] = $data['card_id'];
        $card = Db::name('Card')->where($where_card)->find();
        if($card){
            $save['status'] = 9;
            $save['create_time'] = time();
            $where_cardNext['id'] = $data['card_id'];
            $card = Db::name('Card')->where($where_cardNext)->update($save);
            if($card){
                $this->apiResponse('1','成功');
            }else{
                $this->apiResponse('0','解除绑定失败');
            }

        }else{
            $this->apiResponse('0','解除绑定失败');
        }
    }



    /**
     * @title  用户个人中心首页(sure)
     * @description 接口说明
     * @author 开发者
     * @url /api/portal/User/myIndex
     * @method POST
     * @param name:token type:int require:1 default: other: desc:token
     */
    public function myIndex(Request $request){
        $token = $request->param('token');
        $where_member['token'] = $token;
        $where_member['status'] = 1;
        $member = Db::name('Member')->where($where_member)->field('tel,id')->find();
        if(!$member){
            $this->apiResponse('0','用户信息错误');
        }
        $final['user'] = $member;
        $where_userNeed['user_id'] = $member['id'];
        $user_need = Db::name('UserNeed')->where($where_userNeed)->order('create_time desc')->select();
        if($user_need){
            $final['user_need'] = $user_need;
        }else{
            $final['user_need'] = array();
        }
        $this->apiResponse('1','成功',$final);
    }







//    用户信息
    public function myleft($token){
        $where_member['token'] = $token;
        $where_member['status'] = 1;
        $member = Db::name('Member')->where($where_member)->field('tel,id,name,referee_tel,money,get_money,link,getmoney_id')->find();
        if(!$member){
            $this->apiResponse('0','用户信息错误');
        }
        return $member;
    }



    /**
     * @title  用户个人中心我的比价/比价详情(sure)
     * @description 接口说明
     * @author 开发者
     * @url /api/portal/User/myNeed
     * @method POST
     * @param name:token type:int require:1 default: other: desc:token
     * @param name:page type:int require:1 default: other: desc:分页
     * @return data:''@
     * @data status:'状态(1->待发布,未交保证金,2->已交保证金,3->已发布,待报价,4->报价人数不足,5->待选择中介,6->未选择中介,7->已选择中介,待中介确认,8->中介未确认,9->删除,10->已成交,中介已确认)'
     * @data comment:'剩余评价次数'
     */
    public function myNeed(Request $request){
        $token = $request->param('token');
        $member = $this->myleft($token);
        $data = $request->param();
        $page = $data['page']?$data['page']:1;
        $size = 2;
        $final['user'] = $member;
        $where_userNeed['user_id'] = $member['id'];
        $where_userNeed['status'] = array('neq',9);
        $user_need = Db::name('UserNeed')->where($where_userNeed)
            ->order('create_time desc')
            ->limit($size)
            ->page($page)
            ->select()->toArray();

        $all_page = Db::name('UserNeed')->where($where_userNeed)
            ->order('create_time desc')
            ->count();
        if($user_need){
            foreach ($user_need as $unk=>$unv){
                $where_comment['need_id'] = $unv['id'];
                $where_comment['user_id'] = $unv['user_id'];
                $where_comment['status'] = 1;
                $comment = Db::name('Comment')->where($where_comment)->field('is_comment,create_time')->find();
                if($comment){
//                    判断是否超过30天
                    if(time() > ($comment['create_time'] + 2592000)){
                        $user_need[$unk]['comment'] = 0;
                    }else{
                        if($comment['is_comment'] == 1){
                            $user_need[$unk]['comment'] = 0;
                        }else{
                            $user_need[$unk]['comment'] = 1;
                        }
                    }
                }else{
                    $user_need[$unk]['comment'] = 2;
                }

            }
            $final['user_need'] = $user_need;
        }else{
            $final['user_need'] = array();
        }
        $final['user'] = $member;
        $final['all_page'] = ceil($all_page/$size);
        $this->apiResponse('1','成功',$final);
    }

    /**
     * @title  用户个人中心比价详情(sure)
     * @description 接口说明
     * @author 开发者
     * @url /api/portal/User/myNeedDetail
     * @method POST
     * @param name:token type:int require:1 default: other: desc:token
     * @param name:need_id type:int require:1 default: other: desc:需求id
     * @return data:''@
     * @data status:'状态(1->待发布,2->未交保证金,3->已发布,待报价,4->报价人数不足,5->待选择中介,6->未选择中介,7->已选择中介,待中介确认,8->中介未确认,9->删除,10->已成交,中介已确认)'
     * @data comment:'剩余评价次数'
     */
    public function myNeedDetail(Request $request){
        $token = $request->param('token');
        $member = $this->myleft($token);
        $data = $request->param();
        $final['user'] = $member;
        $where_userNeed['user_id'] = $member['id'];
        $where_userNeed['id'] = $data['need_id'];
        $where_userNeed['status'] = array('neq',9);
        $user_need = Db::name('UserNeed')->where($where_userNeed)
            ->order('create_time desc')
            ->select()->toArray();
        if($user_need){
            foreach ($user_need as $unk=>$unv){
                $where_comment['need_id'] = $unv['id'];
                $where_comment['user_id'] = $unv['user_id'];
                $where_comment['status'] = 1;
                $comment = Db::name('Comment')->where($where_comment)->field('is_comment,create_time')->find();
                if($comment){
//                    判断是否超过30天
                    if(time() > ($comment['create_time'] + 2592000)){
                        $user_need[$unk]['comment'] = 0;
                    }else{
                        if($comment['is_comment'] == 1){
                            $user_need[$unk]['comment'] = 0;
                        }else{
                            $user_need[$unk]['comment'] = 1;
                        }
                    }
                }else{
                    $user_need[$unk]['comment'] = 2;
                }

            }
            $final['user_need'] = $user_need;
        }else{
            $final['user_need'] = array();
        }
        $final['user'] = $member;
        $this->apiResponse('1','成功',$final);
    }


    /**
     * @title  我的比价明细(sure)
     * @description 接口说明
     * @author 开发者
     * @url /api/portal/User/compareDetail
     * @method POST
     * @param name:token type:int require:1 default: other: desc:token
     * @param name:need_id type:int require:1 default: other: desc:需求id
     */
    public function compareDetail(Request $request){
        $token = $request->param('token');
        $member = $this->myleft($token);
        $data = $request->param();
        if(empty($data['need_id'])){
            $this->apiResponse('0','需求id不能为空');
        }
        $where_need['id'] = $data['need_id'];
        $where_need['user_id'] = $member['id'];
        $where_need['status'] = array('in','5,7');
        $userNeed = Db::name('UserNeed')->where($where_need)->field("id as need_id,city,quarters,floor,house_type,renovation,room,area,pay_money,pay_time,choose_time,status,is_first,loan,contract,quotation_time,name,tel")->find();
        $final['need'] = $userNeed;
        $final['user'] = $member;
        if($userNeed){
//            已选择中介
            if($userNeed['status'] == 7){
                $where_agency['a.need_id'] = $data['need_id'];
                $where_agency['a.status'] = 5;
            }else{
//            待选择中介
                $where_agency['a.need_id'] = $data['need_id'];
                $where_agency['a.status'] = 4;
            }
//            查询报价

            $agency = Db::name('Agency')->alias('a')
                ->where($where_agency)
                ->join("hp_Member m", 'm.id = a.agency_id')
                ->field('a.*,a.id as intermediary_id,
                m.id as user_id,m.name,m.company,m.store,m.tel,m.reputation,m.start')
                ->select()->toArray();
            if($agency){
                foreach ($agency as $agek=>$agev){
                    $agency[$agek]['service_charge'] = $this->getStr($agev['service_charge']);
                    $agency[$agek]['assessment_tax'] = $this->getStr($agev['assessment_tax']);
                    $agency[$agek]['security_tax'] = $this->getStr($agev['security_tax']);
                    $agency[$agek]['value_added_tax'] = $this->getStr($agev['value_added_tax']);
                    $agency[$agek]['deed_tax'] = $this->getStr($agev['deed_tax']);
                    $agency[$agek]['personal_income_tax'] = $this->getStr($agev['personal_income_tax']);
                    $agency[$agek]['else_tax'] = $this->getStr($agev['else_tax']);
                }
                $final['agency'] = $agency;
                $this->apiResponse('1','成功',$final);
            }else{
                $this->apiResponse('0','中介报价有误');
            }
        }else{
            $this->apiResponse('0','当前状态不支持查看报价');
        }


    }

    /**
     * @title  我的资料(sure)
     * @description 接口说明
     * @author 开发者
     * @url /api/portal/User/myMes
     * @method POST
     * @param name:token type:int require:1 default: other: desc:token
     */
    public function myMes(Request $request){
        $data = $request->param();
        $user = $this->myleft($data['token']);
        $where_card['c.status'] = 1;
        $where_card['c.user_id'] = $user['id'];
        $card = Db::name('Card')->alias('c')
            ->where($where_card)
            ->join("Bank b",'b.id = c.bank_id')
            ->field('c.id,b.name,c.card_num')
            ->select()->toArray();
        foreach ($card as $cardk=>$cardv){
            $card[$cardk]['user_name'] = $user['name'];
        }
        $final = array();
        $final['card'] = $card?$card:array();
        $final['user'] = $user?$user:array();
        if($final){
            $this->apiResponse('1','成功',$final);
        }else{
            $this->apiResponse('0','失败');
        }

    }


    /**
     * @title  用户选择中介(sure)
     * @description 接口说明
     * @author 开发者
     * @url /api/portal/User/sureAgency
     * @method POST
     * @param name:token type:int require:1 default: other: desc:token
     * @param name:need_id type:int require:1 default: other: desc:需求id
     * @param name:intermediary_id type:int require:1 default: other: desc:中介报价id
     * @return data:''
     */
    public function sureAgency(Request $request){
        $data = $request->param();
        if(!$data['need_id'] || !$data['intermediary_id'] ){
            $this->apiResponse('0','参数错误');
        }
        $where_need['id'] = $data['need_id'];
        $where_need['status'] = 5;
        $user_need = Db::name('UserNeed')->where($where_need)->find();
        if(!$user_need){
            $this->apiResponse('0','状态错误');
        }
        Db::startTrans();
        $need_update['status'] = 7;
        $need_update['next_choose_time'] = time();
        $need_res = Db::name('UserNeed')->where($where_need)->update($need_update);
        if(!$need_res){
            Db::rollback();
            $this->apiResponse('0','成交失败');
        }
        $where_bid['need_id'] = $data['need_id'];
        $where_bid['id'] = $data['intermediary_id'];
        $where_bid['status'] = 4;
        $is_isset = Db::name('Agency')->where($where_bid)->find();
        if($is_isset){
            $where_ag['id'] = $data['intermediary_id'];
            $add['status'] = 5;
            $add['update_time'] = time();
            $add['count_deal'] = $is_isset['count_deal']+1;
            $need_update['choose_time'] = time();
            $save = Db::name('Agency')->where($where_ag)->update($add);
            if($save){
                $where_unchoose = [
                    'a.need_id' => $data['need_id'],
                    'a.id' => ['neq',$data['intermediary_id']]
                ];
                $agency_unchoose = Db::name('Agency')->alias('a')
                    ->where($where_unchoose)
                    ->join("hp_Member m", 'm.id = a.agency_id')
                    ->field('a.*,m.company,m.type as user_type')->select()->toArray();
                $thirdsend = controller('Thirdsend','controller');
                foreach ($agency_unchoose as $k=>$v) {
                    $thirdsend->agency_order_refund($v,'中介复选未中标退款',4);
                }
                Db::commit();
                $this->apiResponse('1','确认成功');
            }else{
                Db::rollback();
                $this->apiResponse('0','成交失败');
            }
        }else{
            Db::rollback();
            $this->apiResponse('0','报价选择有误');
        }
    }




    /**
     * @title  查看评价(sure)
     * @description 接口说明
     * @author 开发者
     * @url /api/portal/User/comment
     * @method POST
     * @param name:token type:int require:1 default: other: desc:token
     * @param name:agency_id type:int require:1 default: other: desc:中介id
     */
    public function comment(Request $request){
        $data = $request->param();
        $where_isset['id'] = $data['agency_id'];
        $agency_id = Db::name('Member')->where($where_isset)->field('id,name,pic,reputation,start,tel,store')->find();
        if($agency_id){
            $where_comment['c.intermediary_id'] = $agency_id['id'];
            $where_comment['c.status'] = 1;
            $comment = Db::name('Comment')->alias('c')
                ->where($where_comment)
                ->join("hp_member m",'m.id = c.user_id')
                ->field('m.tel , c.content,c.create_time')
                ->select()->toArray();
            if($comment){
                foreach ($comment as $ck=>$cv){
                    $middle = str_split($cv['tel'],3);
                    $comment[$ck]['tel'] = $middle[0].'********';
                }
                $final['comment'] = $comment;
                $final['agency'] = $agency_id;
                $this->apiResponse('1','成功',$final);
            }else{
                $this->apiResponse('1','暂无评价');
            }
        }else{
            $this->apiResponse('0','中介不存在');
        }

    }

    /**
     * @title  评价(sure)
     * @description 接口说明
     * @author 开发者
     * @url /api/portal/User/userComment
     * @method POST
     * @param name:token type:int require:1 default: other: desc:token
     * @param name:need_id type:int require:1 default: other: desc:需求id
     * @param name:content type:int require:1 default: other: desc:评论内容
     */
    public function userComment(Request $request){
        $data = $request->param();
        if(empty($data['need_id'])){
            $this->apiResponse('0','需求id不能为空');
        }
        if(empty($data['content'])){
            $this->apiResponse('0','评论内容不能为空');
        }
        $where_need['status'] = 10;
        $where_need['id'] = $data['need_id'];
        $need = Db::name('UserNeed')->where($where_need)->find();
        if($need){
            $where_agency['status'] = 11;
            $where_agency['need_id'] = $need['id'];
            $agency = Db::name('Agency')->where($where_agency)->find();
            if($agency){
                $add['need_id'] = $need['id'];
                $add['agency_id'] = $agency['id'];
                $add['intermediary_id'] = $agency['agency_id'];
                $add['user_id'] = $need['user_id'];
                $add['content'] = $data['content'];
                $add['create_time'] = time();
                $add['update_time'] = time();
                $add_result = Db::name('Comment')->insertGetId($add);
                if($add_result){
                    $change_status['status'] = 11;
                    $change_com = Db::name('UserNeed')->where($where_need)->update($change_status);
                    if($change_com){
                        $this->apiResponse('1','评价成功',$add_result);
                    }else{
                        $this->apiResponse('0','评价失败1');
                    }
                }else{
                    $this->apiResponse('0','评价失败2');
                }
            }else{
                $this->apiResponse('0','评价失败3');
            }
        }else{
            $this->apiResponse('0','评价失败4');
        }
    }

    /**
     * @title  修改评价(sure)
     * @description 接口说明
     * @author 开发者
     * @url /api/portal/User/changeUserComment
     * @method POST
     * @param name:token type:int require:1 default: other: desc:token
     * @param name:need_id type:int require:1 default: other: desc:需求id
     * @param name:content type:int require:1 default: other: desc:评论内容
     */
    public function changeUserComment(Request $request){
        $data = $request->param();
        if(empty($data['need_id'])){
            $this->apiResponse('0','需求id不能为空');
        }
        $where_member['token'] = $data['token'];
        $member_id = Db::name('Member')->where($where_member)->field('id')->find();
        if(empty($data['content'])){
            $where_change['need_id'] = $data['need_id'];
            $where_change['user_id'] = $member_id['id'];
            $where_change['status'] = 1;
            $where_change['is_comment'] = 0;
            $find_comment = Db::name('Comment')->where($where_change)->find();
            if($find_comment){
                $this->apiResponse('1','成功',$find_comment['id']);
            }else{
                $this->apiResponse('0','该评价不可修改');
            }
        }else{
            $where_update['need_id'] = $data['need_id'];
            $where_update['user_id'] = $member_id['id'];
            $where_update['is_comment'] = 0;
            $where_update['status'] = 1;
            $update['content'] = $data['content'];
            $update['is_comment'] = 1;
            $update_result = Db::name('Comment')->where($where_update)->update($update);
            if($update_result){
                $this->apiResponse('1','修改成功',$data['need_id']);
            }else{
                $this->apiResponse('0','修改失败');
            }
        }
    }

    /**
     * @title  投诉(sure)
     * @description 接口说明
     * @author 开发者
     * @url /api/portal/User/complaint
     * @method POST
     * @param name:token type:int require:1 default: other: desc:token
     * @param name:need_id type:int require:1 default: other: desc:需求id
     * @param name:intermediary_id type:int require:1 default: other: desc:中介报价id
     * @param name:content type:int require:1 default: other: desc:投诉内容
     * @param name:gener type:int require:1 default: other: desc:1->用户投诉,2->中介投诉
     */
    public function complaint(Request $request){
        $token = $request->param('token');
        $member = $this->myleft($token);
        $data = $request->param();
        if(empty($data['gener'])){
            $this->apiResponse('0','类型不能为空');
        }
        if(empty($data['need_id']) && empty($data['intermediary_id'])){
            $this->apiResponse('0','投诉id不能为空');
        }
        $where_find['n.id'] = $data['need_id'];
        $where_find['a.id'] = $data['intermediary_id'];
        $where_find['n.status'] = array('in','7,10,11');
        $where_find['a.status'] = 5;
        $find = Db::name('UserNeed')->alias('n')
            ->where($where_find)
            ->join("Agency a",'a.need_id = n.id')
            ->field("a.id as agency_id")
            ->find();
        if($find){
//            查询是否已投诉
            $where_isset['user_id'] = $member['id'];
            $where_isset['need_id'] = $data['need_id'];
            $where_isset['agency_id'] = $find['agency_id'];
            $where_isset['intermediary_id'] = $data['intermediary_id'];
            $where_isset['type'] = $data['gener'];
            $where_isset['status'] = 1;
            $is_isset= Db::name('Complaint')->where($where_isset)->field('id')->find();
            if($is_isset){
                $this->apiResponse('0','您已投诉');
            }
//            添加投诉
            $add['user_id'] = $member['id'];
            $add['need_id'] = $data['need_id'];
            $add['agency_id'] = $find['agency_id'];
            $add['intermediary_id'] = $data['intermediary_id'];
            $add['content'] = $data['content'];
            $add['type'] = $data['gener'];
            $add['create_time'] = time();
            $add['update_time'] = time();
            $is_add = Db::name('Complaint')->insertGetId($add);
            if($is_add){
                $where_changeNeed['id'] = $data['need_id'];
                $save_need['status'] = 12;
                $save_need['complaint_time'] = time();
                $changeNeed = Db::name('UserNeed')->where($where_changeNeed)->update($save_need);
                if(!$changeNeed){
                    $this->apiResponse('0','投诉失败');
                }
                $where_changeAgency['id'] = $data['intermediary_id'];
                $save_agency['status'] = 12;
                $save_agency['complaint_time'] = time();
                $changeAgency = Db::name('Agency')->where($where_changeAgency)->update($save_agency);
                if(!$changeAgency){
                    $this->apiResponse('0','投诉失败');
                }
                $final['complaint_id'] = $is_add;
                $this->apiResponse('1','投诉成功',$final);
            }else{
                $this->apiResponse('0','投诉失败');
            }
        }else{
            $this->apiResponse('0','当前状态不支持投诉');
        }
        $final['user'] = $member;

    }

    /**
     * @title  用户、中介 提现(sure)
     * @description 接口说明
     * @author 开发者
     * @url /api/portal/User/getMoney
     * @method POST
     * @param name:token type:int require:1 default: other: desc:token
     */
    public function getMoney(Request $request){
        Db::startTrans();
        $data = $request->param();
        $where_member['token'] = $data['token'];
        $member = Db::name('Member')->where($where_member)->field('id,money,type')->find();
        if($member['money'] <= 0){
            $this->apiResponse('0','用户余额不足');
        }
        if($member){
            $final['user'] = $member;
        }else{
            Db::rollback();
            $this->apiResponse('0','用户信息错误');
        }
        $where_card['user_id'] = $member['id'];
        $where_card['status'] = 1;
        $card = Db::name('Card')->where($where_card)->find();
        if(!$card){
            $this->apiResponse('0','请先绑定银行卡');
        }else{
            $final['card'] = $card;
        }
        $where_umoney['user_id'] = $member['id'];
        $where_umoney['user_type'] = $member['type'];
//        if($member['type'] == 1){
//            $where_umoney['title'] = '用户提现';
//        }else{
//            $where_umoney['title'] = '中介提现';
//        }
        $where_umoney['title'] = '余额提现';
        $where_umoney['money'] = $member['money'];
        $where_umoney['order_type'] = 6;
        $where_umoney['type'] = 3;
        $where_umoney['pay_type'] = 3;
        $where_umoney['status'] = 5;
        $where_umoney['create_time'] = time();
        $where_umoney['update_time'] = time();
        $add = Db::name('MoneyDetail')->insertGetId($where_umoney);
        if($add){
            $del = Db::name('Member')->where($where_member)->setDec('money',$member['money']);
            $inc = Db::name('Member')->where($where_member)->setInc('get_money',$member['money']);
            if($del && $inc){
                Db::commit();
                $this->apiResponse('1','提现成功');
            }else{
                Db::rollback();
                $this->apiResponse('0','提现失败');
            }
        }else{
            Db::rollback();
            $this->apiResponse('0','提现失败');
        }
    }

    /**
     * @title  我的账户(sure)
     * @description 接口说明
     * @author 开发者
     * @url /api/portal/User/orderDetail
     * @method POST
     * @param name:token type:int require:1 default: other: desc:token
     * @return data:'type.1增加,2减少,3提现'
     */
    public function orderDetail(Request $request){
        $data = $request->param();
        $user = $this->myleft($data['token']);
        $where_umoney['user_id'] = $user['id'];
        $where_umoney['status'] = array('neq',9);
        $order_list = Db::name('MoneyDetail')->where($where_umoney)->field('id,title,money,update_time,type')->select()->toArray();
        $final['user'] = $user;
        if($order_list){
            foreach ($order_list as $ordk=>$ordv){
                $order_list[$ordk]['update_time'] = date('Y-m-d H:i:s',$ordv['update_time']);
            }
            $final['detail'] = $order_list;
        }else{
            $final['detail'] = array();
        }
        if($final){
            $this->apiResponse('1','成功',$final);
        }else{
            $this->apiResponse('0','失败');
        }
    }


//    短网址
    function shot($url){
        $jump = "http://suo.im/api.php?url=".$url;
        $shot_val = file_get_contents($jump);
        return $shot_val;
    }


    /**
     * @title  我的推广(sure)
     * @description 接口说明
     * @author 开发者
     * @url /api/portal/User/share
     * @method POST
     * @param name:token type:int require:1 default: other: desc:token
     */
    public function share(){
        $data = $this->request->param();
        $final = array();
        $my = $this->myleft($data['token']);
        $where_re['referee'] = $my['id'];
        $where_re['status'] = 1;
        $share  = Db::name('RewardLog')->where($where_re)->select();
//        查询推荐人是当前用户
        $where_parent['referee_id'] = $my['id'];
        $where_parent['status'] = array('neq',9);
        $parent_list = Db::name('Member')->where($where_parent)->field('id,tel')->select()->toArray();

        if($share){
            foreach ($parent_list as $sharek=>$sharev){
                //            是否发布需求
                $where_need['status'] = array('neq','1,9');
                $where_need['user_id'] = $sharev['id'];
                $is = Db::name('UserNeed')->where($where_need)->find();
                if($is){
                    $parent_list[$sharek]['is_need'] = 1;
                    $parent_list[$sharek]['sure_time'] = date('Y-m-d H:i:s',$is['sure_time']);
                }else{
                    $parent_list[$sharek]['is_need'] = 0;
                    $parent_list[$sharek]['sure_time'] = 0;
                }
//                奖励金是否获取
                if($my['getmoney_id'] == $sharev['id']){
                    $parent_list[$sharek]['is_getmoney'] = 1;
                }else{
                    $parent_list[$sharek]['is_getmoney'] = 0;
                }
            }
        }

        $final['list'] = $parent_list;
//        $final['share'] = $share;
        $final['user'] = $my;
        $where_share['status'] = 1;
        $share = Db::name('Share')->where($where_share)->select();
        if($share){
            foreach ($share as $k=>$v){
                if($v['type'] == 1){
                    $final['content'] = $v;
                }else if($v['type'] == 2){
                    $final['box'] = $v;
                }else if($v['type'] == 3){
                    $final['pic'] = cmf_get_image_url($v['content']);
                }
            }
        }
        $this->apiResponse('1','成功',$final);
    }


}