Create.php 55.7 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 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583
<?php
/**
 * Created by PhpStorm.
 * User: Administrator
 * Date: 2020/7/6
 * Time: 9:58
 */

namespace app\api\controller;


use app\common\controller\Api;

use Qiniu\Storage\UploadManager;
use think\Db;
use Qiniu\Auth;
use fast\Tree;
use Endroid\QrCode\QrCode;


/**
 * 发布接口
 */
class Create extends Api
{

    protected $noNeedLogin = [''];
    protected $noNeedRight = ['*'];


    /**
     * @ApiTitle    (创建文件夹)
     * @ApiSummary  (创建文件夹)
     * @ApiMethod   (POST)
     * @ApiRoute    (/api/create/publish_folder)
     *
     * @ApiHeaders  (name=token, type=string, required=true, description="请求的Token")
     * @ApiParams   (name="id", type="inter", required=true, description="父级文件夹id首页为0")
     *
     * @ApiReturn({
    "code": 1,
    "msg": "成功",
    "time": "1571492001",
    "data": {

    }
    ]
    }
    })
     */
    public function publish_folder()
    {
        $user_id = $this->auth->id;
        $user = Db::name('user')->where('id',$user_id)->field('id,identity,audit')->find();
        //判断用户身份是否审核通过
        if($user['audit'] != 1){
            $this->error('身份身份通过才可发布!');
        }
        //判断用户身份是否有发布的权限
        if($user['identity'] == 1){
            $this->error('您的权限不足');
        }

        $id = $this->request->param('id');
        $res['user_id'] = $user_id;
        $res['folder_name'] = date('YmdHis');
        if(empty($id) || $id == 0){
            $res['pid'] = 0;
            $res['leavel'] = 1;
        }else{
            $res['pid'] = $id;
            $leave = Db::name('folder')->where('id',$id)->field('id,leavel')->find();
            if($leave['leavel'] == 5){
                $this->error('文件夹最多5级');
            }else{
                $res['leavel'] = $leave['leavel']+1;
            }
        }
        $res['createtime'] = time();
        $res['updatetime'] = time();

        $data = Db::name('folder')->insertGetId($res);
        if(empty($data)){
            $this->error('sql运行失败');
        }else{
            //分享地址
            $share_url = request()->domain().'/index/index/filedetail/user_id/'.$user_id.'/file_id/'.$data;
            //生成二维码
            $type = 0;
            $page = '/pages/fileList/fileList?id='.$data.'&'.'type='.$type;
            $thumbnail = $this->folderqrcode($page,$data);
            Db::name('folder')->where('id',$data)->update(['thumbnail'=>$thumbnail,'share_url'=>$share_url]);

            $this->success('success',$data);
        }
    }

    /**
     * @ApiTitle    (发布图片)
     * @ApiSummary  (发布图片)
     * @ApiMethod   (POST)
     * @ApiRoute    (/api/create/publish_pic)
     *
     * @ApiHeaders  (name=token, type=string, required=true, description="请求的Token")
     * @ApiParams   (name="images", type="string", required=true, description="图片内容")
     * @ApiParams   (name="folder_id", type="inter", required=true, description="存储位置id 首页为0")
     *
     * @ApiReturn({
    "code": 1,
    "msg": "成功",
    "time": "1571492001",
    "data": {

    }
    })
     */
    public function publish_pic()
    {
        $user_id = $this->auth->id;
        $user = Db::name('user')->where('id',$user_id)->field('id,identity,audit')->find();
        //判断用户身份是否审核通过
        if($user['audit'] != 1){
            $this->error('身份身份通过才可发布!');
        }
        //判断用户身份是否有发布的权限
        if($user['identity'] == 1){
            $this->error('您的权限不足');
        }
        $folder_id = $this->request->param('folder_id');
        $images = $this->request->param('images');
        if(empty($images)){
            $this->error('缺少必要参数');
        }
        //判断图片大小
        $image = explode(',',$images);
        $count = count($image);
        if($count > 9){
            $this->error('最多上传9张图片');
        }
        //添加发布的文件数据表
        $res['user_id'] = $user_id;
        $res['type'] = 2;
        $res['name'] = date('YmdHis');
        $res['folder_id'] = $folder_id;
        $res['images'] = $images;
        $res['createtime'] = time();
        $res['updatetime'] = time();
        $data = Db::name('savemes')->insertGetId($res);
        if(empty($data)){
            $this->error('发布图片失败');
        }else{
            //分享地址
            $share_url = request()->domain().'/index/index/detail/user_id/'.$user_id.'/file_id/'.$data;


            //生成二维码
            $type = 2;
            $page = '/pages/fileDetail/fileDetail?id='.$data.'&'.'type='.$type;
            $thumbnail = $this->qrcode($page,$data);
            Db::name('savemes')->where('id',$data)->update(['thumbnail'=>$thumbnail,'share_url'=>$share_url]);

            //查询谁订阅了我
            $subscribe = Db::name('subscribe')->where('to_user_id',$user_id)->column('user_id');

            //添加到订阅了我的粉丝 转存记录里
            $info['savemes_id'] = $data;
            $info['folder_id'] = 0;
            $info['is_up'] = 1;
            $info['is_open'] = 1;
            $info['createtime'] = time();
            $info['updatetime'] = time();
            foreach ($subscribe as $v){
                $info['user_id'] = $v;
                Db::name('rotor')->insertGetId($info);
            }

            $this->success('发布图片成功');
        }
    }

    /**
     * @ApiTitle    (发布视频)
     * @ApiSummary  (发布视频)
     * @ApiMethod   (POST)
     * @ApiRoute    (/api/create/publish_video)
     *
     * @ApiHeaders  (name=token, type=string, required=true, description="请求的Token")
     * @ApiParams   (name="video", type="string", required=true, description="视频内容")
     * @ApiParams   (name="folder_id", type="inter", required=true, description="存储位置id 首页为0")
     *
     * @ApiReturn({
    "code": 1,
    "msg": "成功",
    "time": "1571492001",
    "data": {

    }
    })
     */
    public function publish_video()
    {
        $user_id = $this->auth->id;
        $user = Db::name('user')->where('id',$user_id)->field('id,identity,audit')->find();
        //判断用户身份是否审核通过
        if($user['audit'] != 1){
            $this->error('身份身份通过才可发布!');
        }
        //判断用户身份是否有发布的权限
        if($user['identity'] == 1){
            $this->error('您的权限不足');
        }
        $folder_id = $this->request->param('folder_id');
        $video = $this->request->param('video');
        if(empty($video)){
            $this->error('缺少必要参数');
        }

        //添加发布的文件数据表
        $res['user_id'] = $user_id;
        $res['type'] = 3;
        $res['name'] = date('YmdHis');
        $res['folder_id'] = $folder_id;
        $res['video'] = $video;
        $res['createtime'] = time();
        $res['updatetime'] = time();
        $data = Db::name('savemes')->insertGetId($res);
        if(empty($data)){
            $this->error('发布视频失败');
        }else{
            //分享地址
            $share_url = request()->domain().'/index/index/detail/user_id/'.$user_id.'/file_id/'.$data;

            //生成二维码
            $type = 3;
            $page = '/pages/fileDetail/fileDetail?id='.$data.'&'.'type='.$type;
            $thumbnail = $this->qrcode($page,$data);
            Db::name('savemes')->where('id',$data)->update(['thumbnail'=>$thumbnail,'share_url'=>$share_url]);

            //查询谁订阅了我
            $subscribe = Db::name('subscribe')->where('to_user_id',$user_id)->column('user_id');

            //添加到订阅了我的粉丝 转存记录里
            $info['savemes_id'] = $data;
            $info['folder_id'] = 0;
            $info['is_up'] = 1;
            $info['is_open'] = 1;
            $info['createtime'] = time();
            $info['updatetime'] = time();
            foreach ($subscribe as $v){
                $info['user_id'] = $v;
                Db::name('rotor')->insertGetId($info);
            }


            $this->success('发布视频成功');
        }
    }

    /**
     * @ApiTitle    (发布笔记)
     * @ApiSummary  (发布笔记)
     * @ApiMethod   (POST)
     * @ApiRoute    (/api/create/publish_note)
     *
     * @ApiHeaders  (name=token, type=string, required=true, description="请求的Token")
     * @ApiParams   (name="content", type="string", required=true, description="笔记内容")
     * @ApiParams   (name="folder_id", type="inter", required=true, description="存储位置id 首页为0")
     *
     * @ApiReturn({
    "code": 1,
    "msg": "成功",
    "time": "1571492001",
    "data": {

    }
    })
     */
    public function publish_note()
    {
        $user_id = $this->auth->id;
        $user = Db::name('user')->where('id',$user_id)->field('id,identity,audit')->find();
        //判断用户身份是否审核通过
        if($user['audit'] != 1){
            $this->error('身份身份通过才可发布!');
        }
        //判断用户身份是否有发布的权限
        if($user['identity'] == 1){
            $this->error('您的权限不足');
        }
        $folder_id = $this->request->param('folder_id');
        $content = $_POST['content'];
        if(empty($content)){
            $this->error('缺少必要参数');
        }

        //添加发布的文件数据表
        $res['user_id'] = $user_id;
        $res['type'] = 1;
        $res['name'] = date('YmdHis');
        $res['folder_id'] = $folder_id;
        $res['content'] = $content;
        $res['createtime'] = time();
        $res['updatetime'] = time();
        $data = Db::name('savemes')->insertGetId($res);
        if(empty($data)){
            $this->error('发布笔记失败');
        }else{
            //分享地址
            $share_url = request()->domain().'/index/index/detail/user_id/'.$user_id.'/file_id/'.$data;

            //生成二维码
            $type = 1;
            $page = '/pages/fileDetail/fileDetail?id='.$data.'&'.'type='.$type;
            $thumbnail = $this->qrcode($page,$data);
            Db::name('savemes')->where('id',$data)->update(['thumbnail'=>$thumbnail,'share_url'=>$share_url]);

            //查询谁订阅了我
            $subscribe = Db::name('subscribe')->where('to_user_id',$user_id)->column('user_id');

            //添加到订阅了我的粉丝 转存记录里
            $info['savemes_id'] = $data;
            $info['folder_id'] = 0;
            $info['is_up'] = 1;
            $info['is_open'] = 1;
            $info['createtime'] = time();
            $info['updatetime'] = time();
            foreach ($subscribe as $v){
                $info['user_id'] = $v;
                Db::name('rotor')->insertGetId($info);
            }

            $this->success('发布笔记成功');
        }
    }

    /**
     * @ApiTitle    (验证文件密码是否正确)
     * @ApiSummary  (验证文件密码是否正确)
     * @ApiMethod   (POST)
     * @ApiRoute    (/api/create/detail_pwd)
     *
     * @ApiHeaders  (name=token, type=string, required=true, description="请求的Token")
     * @ApiParams   (name="id", type="inter", required=true, description="文件id")
     * @ApiParams   (name="file_type", type="inter", required=true, description="1文件夹2文件")
     * @ApiParams   (name="pwd", type="string", required=false, description="文件密码")
     *
     * @ApiReturn({
    "code": 1,
    "msg": "成功",
    "time": "1571492001",
    "data": {
    }
    })
     */
    public function detail_pwd()
    {
        $user_id = $this->auth->id;
        //判断文件id是否为空
        $id = $this->request->param('id');
        if(empty($id)){
            $this->error('缺少必要参数');
        }
        //判断文件密码是否为空
        $pwd = $this->request->param('pwd');
        if(empty($pwd)){
            $this->error('缺少必要参数');
        }
        //文件类型
        $file_type = $this->request->param('file_type');
        if(empty($file_type)){
            $this->error('缺少必要参数');
        }

        if($file_type == 1){
            $data = Db::name('folder')->where('id',$id)->find();
            if(empty($data)){
                $this->error('参数错误,没有该条数据');
            }
        }elseif ($file_type == 2){
            //判断该条数据是否为空  如果为空给出提示
            $data = Db::name('savemes')->where('id',$id)->find();
            if(empty($data)){
                $this->error('参数错误,没有该条数据');
            }
        }
        //判断用户的密码
        $user = Db::name('user')->where('id',$data['user_id'])->find();
        if(empty($user['file_pwd'])){
            $this->error('该用户暂无设置密码');
        }
        if($user['file_pwd'] != $pwd){
            $this->error('密码错误');
        }else{
            if(empty($user['whiteip_ids'])){
                Db::name('user')->where('id',$data['user_id'])->update(['whiteip_ids'=>$user_id]);
            }else{
                $whiteip_ids = explode(',',$user['whiteip_ids']);
                array_push( $whiteip_ids,$user_id);
                $whiteip = implode(',',$whiteip_ids);
                Db::name('user')->where('id',$data['user_id'])->update(['whiteip_ids'=>$whiteip]);
            }

            $this->success('密码正确');
        }
    }

    /**
     * @ApiTitle    (文件详情)
     * @ApiSummary  (文件详情)
     * @ApiMethod   (POST)
     * @ApiRoute    (/api/create/detail)
     *
     * @ApiHeaders  (name=token, type=string, required=true, description="请求的Token")
     * @ApiParams   (name="id", type="inter", required=true, description="文件id")
     * @ApiParams   (name="pwd", type="string", required=false, description="文件密码")
     *
     * @ApiReturn({
    "code": 1,
    "msg": "成功",
    "time": "1571492001",
    "data": {
        "id": //文件id,
        "user_id": //用户id,
        "type": //类型1笔记2图片3视频,
        "url"://文件分享地址
        "folder_id": //存储位置id 0首页,
        "name": //文件名称,
        "images": //图片,
        "video": //视频,
        "content": //笔记内容,
        "is_open": //是否公开1公开2私密,
        "is_up": //是否上架1上架2下架,
        "uptime": //下架时间,
        "collect_num": //收藏数,
        "createtime": //创建时间,
        "video_image": //视频首帧图,
        "is_mine": //是否为自己打开1是2否,
        "is_collect": //是否收藏过1是2否
    }
    })
     */
    public function detail()
    {
        $qiniu = get_addon_config('qiniu')['cdnurl'];
        $user_id = $this->auth->id;
        $id = $this->request->param('id');   //文件id
        if(empty($id)){
            $this->error('缺少必要参数');
        }
        $data = Db::name('savemes')->field('updatetime',true)->where('id',$id)->find();         //文件详情
        if(empty($data)){
            $this->error('参数有误');
        }
        $data['url'] = request()->domain().'/index/index/detail/user_id/'.$user_id.'/file_id/'.$id;

        //是否本人打开
        if($data['user_id'] == $user_id){
            $data['is_mine'] = 1;
        }else{
            $data['is_mine'] = 2;
        }

        if(!empty($data['images'])){
            $data['video'] = '';
            $data['video_image'] = '';
            $data['content'] = '';
            $data['images'] = explode(',',$data['images']);
            foreach ($data['images'] as &$v){
                $v = $qiniu.$v;
            }
        }
        if(!empty($data['content'])){
            $data['images'] = '';
            $data['video'] = '';
            $data['video_image'] = '';
        }
        if(!empty($data['video'])){
            $data['images'] = '';
            $data['content'] = '';
            $data['video'] = $qiniu.$data['video'];
            // 获取视频第一帧图片
            $video_info = json_decode(file_get_contents($data['video'] . '?avinfo'), true);
            $data['video_image'] = $this->get_video_first_image($data['video'], $video_info);
        }


        //是否收藏过
        $collect = Db::name('collect')->where('type',2)->where('user_id',$user_id)->where('savemes_id',$id)->find();
        if(empty($collect)){
            $data['is_collect'] = 2;
        }else{
            $data['is_collect'] = 1;
        }

        $data['createtime'] = date('Y-m-d H:i:s',$data['createtime']);
        $this->success('success',$data);
    }


    /**
     * @ApiTitle    (编辑笔记)
     * @ApiSummary  (编辑笔记)
     * @ApiMethod   (POST)
     * @ApiRoute    (/api/create/publish_editnote)
     *
     * @ApiHeaders  (name=token, type=string, required=true, description="请求的Token")
     * @ApiParams   (name="id", type="inter", required=true, description="文件id")
     * @ApiParams   (name="content", type="string", required=true, description="笔记内容")
     * @ApiParams   (name="folder_id", type="inter", required=true, description="存储位置id 首页为0")
     *
     * @ApiReturn({
    "code": 1,
    "msg": "成功",
    "time": "1571492001",
    "data": {

    }
    })
     */
    public function publish_editnote()
    {
        $user_id = $this->auth->id;
        $user = Db::name('user')->where('id',$user_id)->field('id,identity,audit')->find();
        //判断用户身份是否审核通过
        if($user['audit'] != 1){
            $this->error('身份身份通过才可发布!');
        }
        //判断用户身份是否有发布的权限
        if($user['identity'] == 1){
            $this->error('您的权限不足');
        }
        $folder_id = $this->request->param('folder_id');
        $content = $_POST['content'];
        if(empty($content)){
            $this->error('缺少必要参数');
        }

        $id = $this->request->param('id');

        //修改发布的文件数据表
        $res['user_id'] = $user_id;
        $res['type'] = 1;
        $res['name'] = date('YmdHis');
        $res['folder_id'] = $folder_id;
        $res['content'] = $content;
        $res['updatetime'] = time();
        $data = Db::name('savemes')->where('id',$id)->update($res);
        if(empty($data)){
            $this->error('编辑笔记失败');
        }else{
            //生成二维码
            $type = 1;
            $page = '/pages/money/give/give?savemes_id='.$id.'&'.'type='.$type;
            $thumbnail = $this->qrcode($page,$data);
            Db::name('savemes')->where('id',$id)->update(['thumbnail'=>$thumbnail]);

            $this->success('编辑笔记成功');
        }
    }


    /**
     * @ApiTitle    (我的收藏)
     * @ApiSummary  (我的收藏)
     * @ApiMethod   (POST)
     * @ApiRoute    (/api/create/mycollect)
     *
     * @ApiHeaders  (name=token, type=string, required=true, description="请求的Token")
     *
     * @ApiReturn({
    "code": 1,
    "msg": "成功",
    "time": "1571492001",
    "data": {
            "id": //收藏id,
            "user_id": //用户id,
            "savemes_id"://文件id,
            "type": //类型1笔记2图片3视频,
            "name": //文件名称,
            "images": //图片,
            "video": //视频,
            "content": //笔记内容,
            "is_open": //是否公开1公开2私密,
            "is_up": //是否上架1上架2下架,
            "createtime": //创建时间,
            "video_image": //视频首帧图
    }
    })
     */
    public function mycollect()
    {
        $qiniu = get_addon_config('qiniu')['cdnurl'];
        $user_id = $this->auth->id;
        $data = Db::name('collect')
            ->alias('a')
            ->join('savemes b','a.savemes_id = b.id')
            ->where('a.user_id',$user_id)
            ->field('a.id,a.user_id,a.savemes_id,b.name,b.type,b.images,b.video,b.content,b.is_open,b.is_up,b.createtime')
            ->select();
        foreach ($data as &$v){
            if(!empty($v['images'])){
                $v['video'] = '';
                $v['video_image'] = '';
                $v['content'] = '';
                $v['images'] = explode(',',$data['images']);
                foreach ($v['images'] as &$val){
                    $val = $qiniu.$val;
                }
            }
            if(!empty($v['content'])){
                $v['images'] = '';
                $v['video'] = '';
                $v['video_image'] = '';
            }
            if(!empty($v['video'])){
                $v['images'] = '';
                $v['content'] = '';
                $v['video'] = $qiniu.$v['video'];
                // 获取视频第一帧图片
                $video_info = json_decode(file_get_contents($v['video'] . '?avinfo'), true);
                $v['video_image'] = $this->get_video_first_image($v['video'], $video_info);
            }
            $v['createtime'] = date('Y-m-d',$v['createtime']);
        }
        $this->success('success',$data);
    }

    /**
     * @ApiTitle    (收藏/取消收藏)
     * @ApiSummary  (收藏/取消收藏)
     * @ApiMethod   (POST)
     * @ApiRoute    (/api/create/collect)
     *
     * @ApiHeaders  (name=token, type=string, required=true, description="请求的Token")
     * @ApiParams   (name="id", type="inter", required=true, description="文件id")
     *
     * @ApiReturn({
    "code": 1,
    "msg": "成功",
    "time": "1571492001",
    "data": {

    }
    })
     */
    public function collect()
    {
        $user_id = $this->auth->id;
        $id = $this->request->param('id');
        if(empty($id)){
            $this->error('缺少必要参数');
        }
        //文件
        $data = Db::name('collect')->where('user_id',$user_id)->where('savemes_id',$id)->find();
        if(empty($data)){
           $res['user_id'] = $user_id;
           $res['savemes_id'] = $id;
           $res['createtime'] = time();
           $res['updatetime'] = time();
           $info = Db::name('collect')->insertGetId($res);
            if(empty($info)){
                $this->error('收藏失败');
            }else{
                $this->success('收藏成功');
            }
        }else{
            $info = Db::name('collect')->where('user_id',$user_id)->where('savemes_id',$id)->delete();
            if(empty($info)){
                $this->error('取消收藏失败');
            }else{
                $this->success('取消收藏成功');
            }
        }
    }

    public function get_video_first_image($video_url,$video_info){
        if(empty($video_info['streams'][0]['width'])) {
            $width = $video_info['streams'][1]['width'];
            $height = $video_info['streams'][1]['height'];
        } else {
            $width = $video_info['streams'][0]['width'];
            $height = $video_info['streams'][0]['height'];
        }
        return $video_url.'?vframe/jpg/offset/1/w/'.$width.'/h/'.$height;
    }

    //生成二维码
    public function folderqrcode($url,$user_id)
    {
        $qrCode = new QrCode('Life is too short to be generating QR codes');
        $qrCode
            ->setText($url)
            ->setSize(450)
            ->setPadding(10)
            ->setErrorCorrection('high')
            ->setForegroundColor(['r' => 0, 'g' => 0, 'b' => 0, 'a' => 0])
            ->setBackgroundColor(['r' => 255, 'g' => 255, 'b' => 255, 'a' => 0])
            ->setImageType(QrCode::IMAGE_TYPE_PNG);
        $file_path = "folder".$user_id.".png";

        $qrCode->save(ROOT_PATH . 'public' . DS . 'upload/folder' . DS . $file_path);
        $qrcodeurl = request()->domain().'/upload/folder/folder'.$user_id.'.png';
        return $qrcodeurl;
    }
    public function qrcode($url,$user_id)
    {
        $qrCode = new QrCode('Life is too short to be generating QR codes');
        $qrCode
            ->setText($url)
            ->setSize(450)
            ->setPadding(10)
            ->setErrorCorrection('high')
            ->setForegroundColor(['r' => 0, 'g' => 0, 'b' => 0, 'a' => 0])
            ->setBackgroundColor(['r' => 255, 'g' => 255, 'b' => 255, 'a' => 0])
            ->setImageType(QrCode::IMAGE_TYPE_PNG);
        $file_path = "file".$user_id.".png";

        $qrCode->save(ROOT_PATH . 'public' . DS . 'upload/file' . DS . $file_path);
        $qrcodeurl = request()->domain().'/upload/file/file'.$user_id.'.png';
        return $qrcodeurl;
    }


    //批量操作

    /**
     * @ApiTitle    (文件删除)
     * @ApiSummary  (文件删除)
     * @ApiMethod   (POST)
     * @ApiRoute    (/api/create/del)
     *
     * @ApiHeaders  (name=token, type=string, required=true, description="请求的Token")
     * @ApiParams   (name="my_ids", type="inter", required=true, description="自己文件数组id")
     * @ApiParams   (name="other_ids", type="inter", required=true, description="转存文件数组id")
     * @ApiParams   (name="folder_ids", type="inter", required=true, description="文件夹数组id")
     *
     * @ApiReturn({
    "code": 1,
    "msg": "成功",
    "time": "1571492001",
    "data": {

    }
    })
     */
    public function del()
    {
        $user_id = $this->auth->id;
        //自己文件的数组id
        $my_ids = $this->request->param('my_ids');
        //转存文件数组id
        $other_ids = $this->request->param('other_ids');
        //文件夹数组id
        $folder_ids = $this->request->param('folder_ids');



        //如果自己文件数组不为空
        if(!empty($my_ids)){
            $my_ids = explode(',',$my_ids);
            //删除文件
            Db::startTrans();
            try{
                Db::name('savemes')->where('user_id',$user_id)->whereIn('id',$my_ids)->delete();
                Db::name('collect')->whereIn('savemes_id',$my_ids)->delete();
                Db::name('rotor')->whereIn('savemes_id',$my_ids)->delete();
                Db::commit();
            } catch (\Exception $e) {
                // 回滚事务
                Db::rollback();
            }
        }

        //如果转存文件数组不为空
        if(!empty($other_ids)){
            $other_ids = explode(',',$other_ids);
            Db::name('rotor')->where('user_id',$user_id)->whereIn('savemes_id',$other_ids)->delete();
        }

        //如果文件夹数组不为空
        if(!empty($folder_ids)){
            $folder_ids = explode(',',$folder_ids);
            $tree = Tree::instance();
            $tree->init(Db::name('folder')->select(), 'pid');
            //循环传递过来的数组
            foreach ($folder_ids as $id){
                $list = $tree->getChildrenIds($id,true);
                $is_have = Db::name('rotor')
                    ->where('user_id',$user_id)
                    ->whereIn('folder_id',$list)
                    ->find();
                if(!empty($is_have)){
                    $this->error('文件夹中存在转存文件');
                }else{
                    Db::startTrans();
                    try{
                        $ids = Db::name('savemes')->where('user_id',$user_id)->whereIn('folder_id',$list)->column('id');   //查出该文件夹下所有的孩子文件夹下的 我的文件id
                        Db::name('rotor')->whereIn('savemes_id',$ids)->delete();                          //删除别人转存过 我的该文件的记录
                        Db::name('collect')->whereIn('savemes_id',$ids)->delete();                        //删除别人收藏 我自己的这些文件 的记录
                        Db::name('savemes')->where('user_id',$user_id)->whereIn('folder_id',$list)->delete();      //删除我这些文件
                        Db::name('folder')->whereIn('id',$list)->delete();                                //删除我查出来的所有这些文件夹
                        Db::commit();
                    } catch (\Exception $e) {
                        // 回滚事务
                        Db::rollback();
                    }
                }
            }
        }
        $this->success('删除成功');
    }

    /**
     * @ApiTitle    (设为公开)
     * @ApiSummary  (设为公开)
     * @ApiMethod   (POST)
     * @ApiRoute    (/api/create/set_gong)
     *
     * @ApiHeaders  (name=token, type=string, required=true, description="请求的Token")
     * @ApiParams   (name="my_ids", type="inter", required=true, description="自己文件数组id")
     * @ApiParams   (name="other_ids", type="inter", required=true, description="转存文件数组id")
     * @ApiParams   (name="folder_ids", type="inter", required=true, description="文件夹数组id")
     *
     * @ApiReturn({
    "code": 1,
    "msg": "成功",
    "time": "1571492001",
    "data": {

    }
    })
     */
    public function set_gong()
    {
        $user_id = $this->auth->id;
        //自己文件的数组id
        $my_ids = $this->request->param('my_ids');
        //转存文件数组id
        $other_ids = $this->request->param('other_ids');
        //文件夹数组id
        $folder_ids = $this->request->param('folder_ids');

        //设置为公开
        //如果自己文件数组不为空
        if(!empty($my_ids)){
            $my_ids = explode(',',$my_ids);
            Db::startTrans();
            try{
                Db::name('savemes')->where('user_id',$user_id)->whereIn('id',$my_ids)->update(['is_open'=>1]);
                Db::name('rotor')->whereIn('savemes_id',$my_ids)->update(['is_open'=>1]);
                Db::commit();
            } catch (\Exception $e) {
                // 回滚事务
                Db::rollback();
            }
        }

        //如果转存文件数组不为空
        if(!empty($other_ids)){
            $this->error('不能含有转存文件');
        }

        //如果文件夹数组不为空
        if(!empty($folder_ids)){
            $folder_ids = explode(',',$folder_ids);
            $tree = Tree::instance();
            $tree->init(Db::name('folder')->select(), 'pid');
            //循环传递过来的数组
            foreach ($folder_ids as $id){
                $list = $tree->getChildrenIds($id,true);
                $is_have = Db::name('rotor')
                    ->where('user_id',$user_id)
                    ->whereIn('folder_id',$list)
                    ->find();
                if(!empty($is_have)){
                    $this->error('文件夹中存在转存文件');
                }else{
                    Db::startTrans();
                    try{
                        $ids = Db::name('savemes')->where('user_id',$user_id)->whereIn('folder_id',$list)->column('id');   //查出该文件夹下所有的孩子文件夹下的 我的文件id
                        Db::name('rotor')->whereIn('savemes_id',$ids)->update(['is_open'=>1]);
                        Db::name('savemes')->where('user_id',$user_id)->whereIn('folder_id',$list)->update(['is_open'=>1]);
                        Db::name('folder')->whereIn('id',$list)->update(['is_open'=>1]);
                        Db::commit();
                    } catch (\Exception $e) {
                        // 回滚事务
                        Db::rollback();
                    }
                }
            }
        }
        $this->success('设置成功');
    }

    /**
     * @ApiTitle    (设为私密)
     * @ApiSummary  (设为私密)
     * @ApiMethod   (POST)
     * @ApiRoute    (/api/create/set_si)
     *
     * @ApiHeaders  (name=token, type=string, required=true, description="请求的Token")
     * @ApiParams   (name="my_ids", type="inter", required=true, description="自己文件数组id")
     * @ApiParams   (name="other_ids", type="inter", required=true, description="转存文件数组id")
     * @ApiParams   (name="folder_ids", type="inter", required=true, description="文件夹数组id")
     *
     * @ApiReturn({
    "code": 1,
    "msg": "成功",
    "time": "1571492001",
    "data": {

    }
    })
     */
    public function set_si()
    {
        $user_id = $this->auth->id;
        //自己文件的数组id
        $my_ids = $this->request->param('my_ids');
        //转存文件数组id
        $other_ids = $this->request->param('other_ids');
        //文件夹数组id
        $folder_ids = $this->request->param('folder_ids');

        //设置为公开
        //如果自己文件数组不为空
        if(!empty($my_ids)){
            $my_ids = explode(',',$my_ids);
            Db::startTrans();
            try{
                Db::name('savemes')->where('user_id',$user_id)->whereIn('id',$my_ids)->update(['is_open'=>2]);
                $rotor = Db::name('rotor')->whereIn('savemes_id',$my_ids)->select();
                if(!empty($rotor)){
                    Db::name('rotor')->whereIn('savemes_id',$my_ids)->update(['is_open'=>2]);
                }
                Db::commit();
            } catch (\Exception $e) {
                // 回滚事务
                Db::rollback();
            }
        }

        //如果转存文件数组不为空
        if(!empty($other_ids)){
            $this->error('不能含有转存文件');
        }

        //如果文件夹数组不为空
        if(!empty($folder_ids)){
            $folder_ids = explode(',',$folder_ids);
            $tree = Tree::instance();
            $tree->init(Db::name('folder')->select(), 'pid');
            //循环传递过来的数组
            foreach ($folder_ids as $id){
                $list = $tree->getChildrenIds($id,true);
                $is_have = Db::name('rotor')
                    ->where('user_id',$user_id)
                    ->whereIn('folder_id',$list)
                    ->find();
                if(!empty($is_have)){
                    $this->error('文件夹中存在转存文件');
                }else{
                    Db::startTrans();
                    try{
                        $ids = Db::name('savemes')->where('user_id',$user_id)->whereIn('folder_id',$list)->column('id');   //查出该文件夹下所有的孩子文件夹下的 我的文件id
                        Db::name('rotor')->whereIn('savemes_id',$ids)->update(['is_open'=>2]);
                        Db::name('savemes')->where('user_id',$user_id)->whereIn('folder_id',$list)->update(['is_open'=>2]);
                        Db::name('folder')->whereIn('id',$list)->update(['is_open'=>2]);
                        Db::commit();
                    } catch (\Exception $e) {
                        // 回滚事务
                        Db::rollback();
                    }
                }
            }
        }
        $this->success('设置成功');
    }

    /**
     * @ApiTitle    (全部上架)
     * @ApiSummary  (全部上架)
     * @ApiMethod   (POST)
     * @ApiRoute    (/api/create/all_up)
     *
     * @ApiHeaders  (name=token, type=string, required=true, description="请求的Token")
     * @ApiParams   (name="my_ids", type="inter", required=true, description="自己文件数组id")
     * @ApiParams   (name="other_ids", type="inter", required=true, description="转存文件数组id")
     * @ApiParams   (name="folder_ids", type="inter", required=true, description="文件夹数组id")
     *
     * @ApiReturn({
    "code": 1,
    "msg": "成功",
    "time": "1571492001",
    "data": {

    }
    })
     */
    public function all_up()
    {
        $user_id = $this->auth->id;
        //自己文件的数组id
        $my_ids = $this->request->param('my_ids');
        //转存文件数组id
        $other_ids = $this->request->param('other_ids');
        //文件夹数组id
        $folder_ids = $this->request->param('folder_ids');

        //设置为公开
        //如果自己文件数组不为空
        if(!empty($my_ids)){
            $my_ids = explode(',',$my_ids);
            Db::startTrans();
            try{
                Db::name('savemes')->where('user_id',$user_id)->whereIn('id',$my_ids)->update(['is_up'=>1,'uptime'=>0]);
                Db::name('rotor')->whereIn('savemes_id',$my_ids)->update(['is_up'=>1]);
                Db::commit();
            } catch (\Exception $e) {
                // 回滚事务
                Db::rollback();
            }
        }

        //如果转存文件数组不为空
        if(!empty($other_ids)){
            $this->error('不能含有转存文件');
        }

        //如果文件夹数组不为空
        if(!empty($folder_ids)){
            $folder_ids = explode(',',$folder_ids);
            $tree = Tree::instance();
            $tree->init(Db::name('folder')->select(), 'pid');
            //循环传递过来的数组
            foreach ($folder_ids as $id){
                $list = $tree->getChildrenIds($id,true);
                $is_have = Db::name('rotor')
                    ->where('user_id',$user_id)
                    ->whereIn('folder_id',$list)
                    ->find();
                if(!empty($is_have)){
                    $this->error('文件夹中存在转存文件');
                }else{
                    Db::startTrans();
                    try{
                        $ids = Db::name('savemes')->where('user_id',$user_id)->whereIn('folder_id',$list)->column('id');   //查出该文件夹下所有的孩子文件夹下的 我的文件id
                        Db::name('rotor')->whereIn('savemes_id',$ids)->update(['is_up'=>1]);
                        Db::name('savemes')->where('user_id',$user_id)->whereIn('folder_id',$list)->update(['is_up'=>1]);
                        Db::name('folder')->whereIn('id',$list)->update(['is_up'=>1]);
                        Db::commit();
                    } catch (\Exception $e) {
                        // 回滚事务
                        Db::rollback();
                    }
                }
            }
        }
        $this->success('设置成功');
    }

    /**
     * @ApiTitle    (全部下架)
     * @ApiSummary  (全部下架)
     * @ApiMethod   (POST)
     * @ApiRoute    (/api/create/all_down)
     *
     * @ApiHeaders  (name=token, type=string, required=true, description="请求的Token")
     * @ApiParams   (name="my_ids", type="inter", required=true, description="自己文件数组id")
     * @ApiParams   (name="other_ids", type="inter", required=true, description="转存文件数组id")
     * @ApiParams   (name="folder_ids", type="inter", required=true, description="文件夹数组id")
     *
     * @ApiReturn({
    "code": 1,
    "msg": "成功",
    "time": "1571492001",
    "data": {

    }
    })
     */
    public function all_down()
    {
        $user_id = $this->auth->id;
        //自己文件的数组id
        $my_ids = $this->request->param('my_ids');
        //转存文件数组id
        $other_ids = $this->request->param('other_ids');
        //文件夹数组id
        $folder_ids = $this->request->param('folder_ids');

        //设置为公开
        //如果自己文件数组不为空
        if(!empty($my_ids)){
            $my_ids = explode(',',$my_ids);
            Db::startTrans();
            try{
                Db::name('savemes')->where('user_id',$user_id)->whereIn('id',$my_ids)->update(['is_up'=>2,'uptime'=>time()]);
                Db::name('rotor')->whereIn('savemes_id',$my_ids)->update(['is_up'=>2]);
                Db::commit();
            } catch (\Exception $e) {
                // 回滚事务
                Db::rollback();
            }
        }

        //如果转存文件数组不为空
        if(!empty($other_ids)){
            $this->error('不能含有转存文件');
        }

        //如果文件夹数组不为空
        if(!empty($folder_ids)){
            $folder_ids = explode(',',$folder_ids);
            $tree = Tree::instance();
            $tree->init(Db::name('folder')->select(), 'pid');
            //循环传递过来的数组
            foreach ($folder_ids as $id){
                $list = $tree->getChildrenIds($id,true);
                $is_have = Db::name('rotor')
                    ->where('user_id',$user_id)
                    ->whereIn('folder_id',$list)
                    ->find();
                if(!empty($is_have)){
                    $this->error('文件夹中存在转存文件');
                }else{
                    Db::startTrans();
                    try{
                        $ids = Db::name('savemes')->where('user_id',$user_id)->whereIn('folder_id',$list)->column('id');   //查出该文件夹下所有的孩子文件夹下的 我的文件id
                        Db::name('rotor')->whereIn('savemes_id',$ids)->update(['is_up'=>2]);
                        Db::name('savemes')->where('user_id',$user_id)->whereIn('folder_id',$list)->update(['is_up'=>2,'uptime'=>time()]);
                        Db::name('folder')->whereIn('id',$list)->update(['is_up'=>2,'uptime'=>time()]);
                        Db::commit();
                    } catch (\Exception $e) {
                        // 回滚事务
                        Db::rollback();
                    }
                }
            }
        }
        $this->success('设置成功');
    }

    /**
     * @ApiTitle    (移动到)
     * @ApiSummary  (移动到)
     * @ApiMethod   (POST)
     * @ApiRoute    (/api/create/all_move)
     *
     * @ApiHeaders  (name=token, type=string, required=true, description="请求的Token")
     * @ApiParams   (name="my_ids", type="inter", required=true, description="自己文件数组id")
     * @ApiParams   (name="other_ids", type="inter", required=true, description="转存文件数组id")
     * @ApiParams   (name="folder_ids", type="inter", required=true, description="文件夹数组id")
     * @ApiParams   (name="move_id", type="inter", required=true, description="移动的目标id首页为0")
     *
     * @ApiReturn({
    "code": 1,
    "msg": "成功",
    "time": "1571492001",
    "data": {

    }
    })
     */
    public function all_move()
    {
        $user_id = $this->auth->id;
        //自己文件的数组id
        $my_ids = $this->request->param('my_ids');
        //转存文件数组id
        $other_ids = $this->request->param('other_ids');
        //文件夹数组id
        $folder_ids = $this->request->param('folder_ids');

        $move_id = $this->request->param('move_id');
        if(empty($move_id)){
            $this->error('缺少必要参数');
        }

        //移动
        //如果自己文件数组不为空
        if(!empty($my_ids)){
            $my_ids = explode(',',$my_ids);
            Db::startTrans();
            try{
                Db::name('savemes')->where('user_id',$user_id)->whereIn('id',$my_ids)->update(['folder_id'=>$move_id]);
                Db::commit();
            } catch (\Exception $e) {
                // 回滚事务
                Db::rollback();
            }
        }

        //如果转存文件数组不为空
        if(!empty($other_ids)){
            $other_ids = explode(',',$other_ids);
            Db::startTrans();
            try{
                Db::name('rotor')->where('user_id',$user_id)->whereIn('savemes_id',$other_ids)->update(['folder_id'=>$move_id]);
                Db::commit();
            } catch (\Exception $e) {
                // 回滚事务
                Db::rollback();
            }
        }

        //如果文件夹数组不为空
        if(!empty($folder_ids)){
            $folder_ids = explode(',',$folder_ids);
            $tree = Tree::instance();
            $tree->init(Db::name('folder')->select(), 'pid');
            //循环传递过来的数组
            foreach ($folder_ids as $id){
                $list = $tree->getChildrenIds($id,true);
                $is_have = Db::name('rotor')
                    ->where('user_id',$user_id)
                    ->whereIn('folder_id',$list)
                    ->find();
                if(!empty($is_have)){
                    $this->error('文件夹中存在转存文件');
                }else{
                    Db::startTrans();
                    try{
                        Db::startTrans();
                        Db::name('savemes')->where('user_id',$user_id)->whereIn('folder_id',$list)->update(['folder_id'=>$move_id]);
                        Db::name('folder')->whereIn('id',$list)->update(['pid'=>$move_id]);
                        Db::commit();
                    } catch (\Exception $e) {
                        // 回滚事务
                        Db::rollback();
                    }
                }
            }
        }
        $this->success('移动成功');
    }

    /**
     * @ApiTitle    (下载)
     * @ApiSummary  (下载)
     * @ApiMethod   (POST)
     * @ApiRoute    (/api/create/download)
     *
     * @ApiHeaders  (name=token, type=string, required=true, description="请求的Token")
     * @ApiParams   (name="my_ids", type="inter", required=true, description="自己文件数组id")
     * @ApiParams   (name="other_ids", type="inter", required=true, description="转存文件数组id")
     *
     * @ApiReturn({
    "code": 1,
    "msg": "成功",
    "time": "1571492001",
    "data": {
          "info"://下载的文件
    }
    })
     */
    public function download()
    {
        $qiniu = get_addon_config('qiniu')['cdnurl'];
        $user_id = $this->auth->id;
        //自己的文件
        $ids = $this->request->param('my_ids');

        //转存的文件
        $other_ids = $this->request->param('other_ids');

        $arr = [];
        //自己的文件
        if(!empty($ids)){
            $ids = explode(',',$ids);
            $data = Db::name('savemes')->field('id,type,images,video')->whereIn('id',$ids)->select();
            foreach ($data as &$v){
                //判断是否有笔记
                if($v['type'] == 1){
                    $this->error('笔记不能下载');
                }
                if($v['type'] == 2){
                    $v['video'] = '';
                    $v['images'] = explode(',',$v['images']);
                    foreach ($v['images'] as &$val){
                        $qiuniu_url = $qiniu.$val;
                        $a = file_get_contents($qiuniu_url);
                        $path = './uploads/'.explode('/',$val)[2].'/';
                        if(!file_exists($path)) {
                            mkdir($path,0777,true);
                        }
                        file_put_contents('.'.$val,$a);
                        $val = request()->domain().$val;
                        array_push($arr,$val);
                    }
                }
                if($v['type'] == 3){
                    $v['images'] = '';
                    $qiuniu_url = $qiniu.$v['video'];
                    $a = file_get_contents($qiuniu_url);
                    $path = './uploads/'.explode('/',$v['video'])[2].'/';
                    if(!file_exists($path)) {
                        mkdir($path,0777,true);
                    }
                    file_put_contents('.'.$v['video'],$a);
                    $v['video'] = request()->domain().$v['video'];
                    array_push($arr,$v['video']);
                }
            }
        }

        //转存的文件
        if(!empty($other_ids)){
            $other_ids = explode(',',$other_ids);
            $data = Db::name('rotor')
                ->alias('a')
                ->join('savemes b','a.savemes_id = b.id')
                ->field('a.id,b.type,b.images,b.video')
                ->whereIn('a.id',$other_ids)
                ->select();
            foreach ($data as &$v){
                //判断是否有笔记
                if($v['type'] == 1){
                    $this->error('笔记不能下载');
                }
                if($v['type'] == 2){
                    $v['video'] = '';
                    $v['images'] = explode(',',$v['images']);
                    foreach ($v['images'] as &$val){
                        $qiuniu_url = $qiniu.$val;
                        $a = file_get_contents($qiuniu_url);
                        $path = './uploads/'.explode('/',$val)[2].'/';
                        if(!file_exists($path)) {
                            mkdir($path,0777,true);
                        }
                        file_put_contents('.'.$val,$a);
                        $val = request()->domain().$val;
                        array_push($arr,$val);
                    }
                }
                if($v['type'] == 3){
                    $v['images'] = '';
                    $qiuniu_url = $qiniu.$v['video'];
                    $a = file_get_contents($qiuniu_url);
                    $path = './uploads/'.explode('/',$v['video'])[2].'/';
                    if(!file_exists($path)) {
                        mkdir($path,0777,true);
                    }
                    file_put_contents('.'.$v['video'],$a);
                    $v['video'] = request()->domain().$v['video'];
                    array_push($arr,$v['video']);
                }
            }
        }


        $this->success('success',['info'=>$arr]);
    }

    /**
     * @ApiTitle    (重命名)
     * @ApiSummary  (重命名)
     * @ApiMethod   (POST)
     * @ApiRoute    (/api/create/rename)
     *
     * @ApiHeaders  (name=token, type=string, required=true, description="请求的Token")
     * @ApiParams   (name="id", type="inter", required=true, description="文件id")
     * @ApiParams   (name="type", type="inter", required=true, description="类型1文件2文件夹")
     * @ApiParams   (name="name", type="string", required=true, description="修改后的名称")
     *
     * @ApiReturn({
    "code": 1,
    "msg": "成功",
    "time": "1571492001",
    "data": {

    }
    })
     */
    public function rename()
    {
        $user_id = $this->auth->id;
        $id = $this->request->param('id');
        $name = $this->request->param('name');
        $type = $this->request->param('type');
        if(empty($id) || empty($name) || empty($type)){
            $this->error('缺少必要参数');
        }
        if($type == 1){
            $data = Db::name('savemes')->where('id',$id)->find();
            if($data['user_id'] != $user_id){
                $this->error('没有权限重命名');
            }
            $res = Db::name('savemes')->where('id',$id)->update(['name'=>$name]);
        }elseif ($type == 2){
            $data = Db::name('folder')->where('id',$id)->find();
            if($data['user_id'] != $user_id){
                $this->error('没有权限重命名');
            }
            $res = Db::name('folder')->where('id',$id)->update(['folder_name'=>$name]);
        }
        if(empty($res)){
            $this->error('重命名失败');
        }else{
            $this->success('重命名成功');
        }
    }

    /**
     * @ApiTitle    (分享二维码)
     * @ApiSummary  (分享二维码)
     * @ApiMethod   (POST)
     * @ApiRoute    (/api/create/share)
     *
     * @ApiHeaders  (name=token, type=string, required=true, description="请求的Token")
     * @ApiParams   (name="id", type="inter", required=true, description="文件id")
     * @ApiParams   (name="folder_id", type="inter", required=true, description="文件夹id")
     *
     * @ApiReturn({
    "code": 1,
    "msg": "成功",
    "time": "1571492001",
    "data": {
          "id"://id
          "thumbnail"://二维码
    }
    })
     */
    public function share()
    {
        $user_id = $this->auth->id;
        $id = $this->request->param('id'); //文件id
        $folder_id = $this->request->param('folder_id'); //文件夹id

        if(empty($id) && empty($folder_id)){
            $this->error('缺少必要参数');
        }

        if(!empty($id)){
            $info = Db::name('savemes')->where('id',$id)->field('id,type')->find();
            //生成二维码
            $page = '/pages/fileDetail/fileDetail?id='.$id.'&'.'type='.$info['type'].'&'.'user_id='.$user_id;
            $data['thumbnail'] = $this->qrcode($page,$user_id);
        }
        if(!empty($folder_id)){
            $type = 0;
            //生成二维码
            $page = '/pages/fileDetail/fileDetail?id='.$folder_id.'&'.'type='.$type.'&'.'user_id='.$user_id;
            $data['thumbnail'] = $this->qrcode($page,$user_id);
        }
        $this->success('success',$data);
    }


    /**
     * @ApiTitle    (批量转存/转存)
     * @ApiSummary  (批量转存/转存)
     * @ApiMethod   (POST)
     * @ApiRoute    (/api/create/zhuan)
     *
     * @ApiHeaders  (name=token, type=string, required=true, description="请求的Token")
     * @ApiParams   (name="arr", type="string", required=true, description="文件id以及密码等信息")
     * @ApiParams   (name="folder_id", type="inter", required=true, description="转存的位置 0为首页")
     * @ApiParams   (name="ids", type="string", required=true, description="转存的公开文件id")
     *
     * @ApiReturn({
    "code": 1,
    "msg": "成功",
    "time": "1571492001",
    "data": {
    }
    })
     */
    public function zhuan()
    {
        $rotor['user_id'] = $this->auth->id;
        $rotor['folder_id'] = $this->request->param('folder_id');
        $rotor['createtime'] = time();
        $rotor['updatetime'] = time();

        $arr = $this->request->param('arr');
        if(!empty($arr)){
            foreach ($arr as &$v){
                if(empty($v['pwd'])){
                    $this->error('密码不能为空');
                }
                //查出该用户设置的密码
                $user_info = Db::name('user')->where('id',$v['user_id'])->find();
                if($v['pwd'] != $user_info['file_pwd']){
                    $this->error('密码不正确');
                }else{
                    //查询用户白名单
                    if(!empty($user_info['whiteip_ids'])){
                        $white_ids = explode(',',$user_info['whiteip_ids']);
                        array_push($white_ids,$rotor['user_id']);
                        $white_ids_end = implode(',',$white_ids);
                        Db::name('user')->where('id',$v['user_id'])->update(['whiteip_ids'=>$white_ids_end]);
                    }else{
                        Db::name('user')->where('id',$v['user_id'])->update(['whiteip_ids'=>$rotor['user_id']]);
                    }
                }

                foreach ($v['id'] as &$val){
                    //添加转存记录
                    $file_info = Db::name('savemes')->where('id',$val)->find();
                    $rotor['savemes_id'] = $val;
                    $rotor['is_up'] = $file_info['is_up'];
                    $rotor['is_open'] = $file_info['is_open'];
                    Db::name('rotor')->insertGetId($rotor);
                }

            }
            $this->success('成功');
        }else{
            $ids = $this->request->param('ids');
            if(empty($ids)){
                $this->error('缺少必要参数');
            }

            $savemes_id = explode(',',$ids);
            foreach ($savemes_id as $v){
                $file_info = Db::name('savemes')->where('id',$v)->find();
                $rotor['savemes_id'] = $v;
                $rotor['is_up'] = $file_info['is_up'];
                $rotor['is_open'] = $file_info['is_open'];
                Db::name('rotor')->insertGetId($rotor);
            }
            $this->success('成功');
        }

    }


    //移动浮层
    /**
     * @ApiTitle    (移动浮层)
     * @ApiSummary  (移动浮层)
     * @ApiMethod   (POST)
     * @ApiRoute    (/api/create/move)
     *
     * @ApiHeaders  (name=token, type=string, required=true, description="请求的Token")
     *
     * @ApiReturn({
    "code": 1,
    "msg": "成功",
    "time": "1571492001",
    "data": {
        "id": //文件夹id,
        "pid": //父级id,
        "folder_name": //文件名称,
        "child": [
          {
                "id": 7,
                "pid": 6,
                "folder_name": "20200706105757",
                "child": []
            },
          ]
    }
    })
     */
    public function move()
    {
        $user_id = $this->auth->id;
        $data = Db::name('folder')->where('user_id',$user_id)->field('id,pid,folder_name')->select();
        $arr = $this->recursion($data);
        $this->success('success',$arr);
    }

    public function recursion($data, $pid = 0)
    {
        $child = [];   // 定义存储子级数据数组
        foreach ($data as $key => $value) {
            if ($value['pid'] == $pid) {
                unset($data[$key]);  // 使用过后可以销毁
                $value['child'] = $this->recursion($data, $value['id']);   // 递归调用,查找当前数据的子级
                $child[] = $value;   // 把子级数据添加进数组
            }
        }
        return $child;
    }






}