审查视图

application/api/controller/Common.php 6.2 KB
何书鹏 authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<?php

namespace app\api\controller;

use app\common\controller\Api;
use app\common\model\Area;
use app\common\model\Version;
use fast\Random;
use think\Config;

/**
 * 公共接口
 */
class Common extends Api
{
何书鹏 authored
16
    protected $noNeedLogin = ['init','upload'];
何书鹏 authored
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
    protected $noNeedRight = '*';

    /**
     * 加载初始化
     *
     * @param string $version 版本号
     * @param string $lng     经度
     * @param string $lat     纬度
     */
    public function init()
    {
        if ($version = $this->request->request('version')) {
            $lng = $this->request->request('lng');
            $lat = $this->request->request('lat');
            $content = [
                'citydata'    => Area::getCityFromLngLat($lng, $lat),
                'versiondata' => Version::check($version),
                'uploaddata'  => Config::get('upload'),
                'coverdata'   => Config::get("cover"),
            ];
            $this->success('', $content);
        } else {
            $this->error(__('Invalid parameters'));
        }
    }

    /**
1  
何书鹏 authored
44
     * 上传接口
1  
何书鹏 authored
45 46 47 48 49 50 51 52 53
     * @ApiMethod   (POST)
     * @ApiParams   (name="file", type="file", required=true, description="文件")
     * @ApiReturnParams   (name="code", type="integer", required=true, sample="0")
     * @ApiReturnParams   (name="msg", type="string", required=true, sample="返回成功")
     * @ApiReturnParams   (name="data", type="object", description="扩展数据返回")
     * @ApiReturn   ({
         'code':'1',
         'msg':'返回成功'
        })
何书鹏 authored
54 55 56
     */
    public function upload()
    {
1  
何书鹏 authored
57 58
        $config = get_addon_config('qiniu');
何书鹏 authored
59
        $file = $this->request->file('file');
1  
何书鹏 authored
60 61
        if (!$file || !$file->isValid()) {
            $this->error("请上传有效的文件");
何书鹏 authored
62
        }
1  
何书鹏 authored
63
        $fileInfo = $file->getInfo();
何书鹏 authored
64
1  
何书鹏 authored
65
        $filePath = $file->getRealPath() ?: $file->getPathname();
何书鹏 authored
66
1  
何书鹏 authored
67
        preg_match('/(\d+)(\w+)/', $config['maxsize'], $matches);
何书鹏 authored
68 69
        $type = strtolower($matches[2]);
        $typeDict = ['b' => 0, 'k' => 1, 'kb' => 1, 'm' => 2, 'mb' => 2, 'gb' => 3, 'g' => 3];
1  
何书鹏 authored
70 71
        $size = (int)$config['maxsize'] * pow(1024, isset($typeDict[$type]) ? $typeDict[$type] : 0);
何书鹏 authored
72
        $suffix = strtolower(pathinfo($fileInfo['name'], PATHINFO_EXTENSION));
1  
何书鹏 authored
73
        $suffix = $suffix ? $suffix : 'file';
何书鹏 authored
74
1  
何书鹏 authored
75 76 77 78 79 80
        $md5 = md5_file($filePath);
        $search = ['$(year)', '$(mon)', '$(day)', '$(etag)', '$(ext)'];
        $replace = [date("Y"), date("m"), date("d"), $md5, '.' . $suffix];
        $object = ltrim(str_replace($search, $replace, $config['savekey']), '/');

        $mimetypeArr = explode(',', strtolower($config['mimetype']));
何书鹏 authored
81 82
        $typeArr = explode('/', $fileInfo['type']);
1  
何书鹏 authored
83 84 85
        //检查文件大小
        if (!$file->checkSize($size)) {
            $this->error("起过最大可上传文件限制");
何书鹏 authored
86
        }
1  
何书鹏 authored
87
何书鹏 authored
88
        //验证文件后缀
1  
何书鹏 authored
89
        if ($config['mimetype'] !== '*' &&
何书鹏 authored
90 91
            (
                !in_array($suffix, $mimetypeArr)
1  
何书鹏 authored
92
                || (stripos($typeArr[0] . '/', $config['mimetype']) !== false && (!in_array($fileInfo['type'], $mimetypeArr) && !in_array($typeArr[0] . '/*', $mimetypeArr)))
何书鹏 authored
93 94
            )
        ) {
1  
何书鹏 authored
95
            $this->error(__('上传格式限制'));
何书鹏 authored
96
        }
1  
何书鹏 authored
97 98

        $savekey = '/' . $object;
何书鹏 authored
99 100 101

        $uploadDir = substr($savekey, 0, strripos($savekey, '/') + 1);
        $fileName = substr($savekey, strripos($savekey, '/') + 1);
1  
何书鹏 authored
102 103
        //先上传到本地
        $splInfo = $file->move(ROOT_PATH . '/public' . $uploadDir, $fileName);
何书鹏 authored
104
        if ($splInfo) {
1  
何书鹏 authored
105 106 107 108 109 110 111 112 113 114
            $extparam = $this->request->post();
            $filePath = $splInfo->getRealPath() ?: $splInfo->getPathname();

            $sha1 = sha1_file($filePath);
            $imagewidth = $imageheight = 0;
            if (in_array($suffix, ['gif', 'jpg', 'jpeg', 'bmp', 'png', 'swf'])) {
                $imgInfo = getimagesize($splInfo->getPathname());
                $imagewidth = isset($imgInfo[0]) ? $imgInfo[0] : $imagewidth;
                $imageheight = isset($imgInfo[1]) ? $imgInfo[1] : $imageheight;
            }
何书鹏 authored
115
            $params = array(
1  
何书鹏 authored
116 117
                'admin_id'    => session('admin.id'),
                'user_id'     => $this->auth->id,
何书鹏 authored
118 119 120 121 122 123 124 125 126 127
                'filesize'    => $fileInfo['size'],
                'imagewidth'  => $imagewidth,
                'imageheight' => $imageheight,
                'imagetype'   => $suffix,
                'imageframes' => 0,
                'mimetype'    => $fileInfo['type'],
                'url'         => $uploadDir . $splInfo->getSaveName(),
                'uploadtime'  => time(),
                'storage'     => 'local',
                'sha1'        => $sha1,
1  
何书鹏 authored
128
                'extparam'    => json_encode($extparam),
何书鹏 authored
129
            );
1  
何书鹏 authored
130
            $attachment = \app\common\model\Attachment::create(array_filter($params), true);
1  
何书鹏 authored
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
            $policy = array(
                'saveKey' => ltrim($savekey, '/'),
            );
            $auth = new \addons\qiniu\library\Auth($config['app_key'], $config['secret_key']);
            $token = $auth->uploadToken($config['bucket'], null, $config['expire'], $policy);
            $multipart = [
                ['name' => 'token', 'contents' => $token],
                [
                    'name'     => 'file',
                    'contents' => fopen($filePath, 'r'),
                    'filename' => $fileName,
                ]
            ];
            try {
                $client = new \GuzzleHttp\Client();
                $res = $client->request('POST', $config['uploadurl'], [
                    'multipart' => $multipart
                ]);
                $code = $res->getStatusCode();
                //成功不做任何操作
            } catch (\GuzzleHttp\Exception\ClientException $e) {
                $attachment->delete();
                unlink($filePath);
                $this->error("上传失败");
            }

            $url = '/' . $object;

            //上传成功后将存储变更为qiniu
            $attachment->storage = 'qiniu';
何书鹏 authored
161
            $attachment->save();
1  
何书鹏 authored
162 163 164 165

            $this->success("上传成功", [
                'url' => $url,
                'full_url' => cdnurl($url,true)
何书鹏 authored
166 167
            ]);
        } else {
1  
何书鹏 authored
168
            $this->error('上传失败');
何书鹏 authored
169
        }
1  
何书鹏 authored
170
        return;
何书鹏 authored
171 172
    }
}