123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace crmeb\services\upload\storage;
- use crmeb\basic\BaseUpload;
- use crmeb\exceptions\UploadException;
- use crmeb\services\HttpService;
- use Qiniu\Auth;
- use Qiniu\Http\Client;
- use Qiniu\Http\Error;
- use Qiniu\Storage\BucketManager;
- use Qiniu\Storage\UploadManager;
- use Qiniu\Config;
- use think\exception\ValidateException;
- /**
- * 七牛云上传
- * Class Qiniu
- */
- class Qiniu extends BaseUpload
- {
- /**
- * accessKey
- * @var mixed
- */
- protected $accessKey;
- /**
- * secretKey
- * @var mixed
- */
- protected $secretKey;
- /**
- * 句柄
- * @var object
- */
- protected $handle;
- /**
- * 空间域名 Domain
- * @var mixed
- */
- protected $uploadUrl;
- /**
- * 存储空间名称 公开空间
- * @var mixed
- */
- protected $storageName;
- /**
- * COS使用 所属地域
- * @var mixed|null
- */
- protected $storageRegion;
- /**
- * 水印位置
- * @var string[]
- */
- protected $position = [
- '1' => 'NorthWest',//:左上
- '2' => 'North',//:中上
- '3' => 'NorthEast',//:右上
- '4' => 'West',//:左中
- '5' => 'Center',//:中部
- '6' => 'East',//:右中
- '7' => 'SouthWest',//:左下
- '8' => 'South',//:中下
- '9' => 'SouthEast',//:右下
- ];
- /**
- * 初始化
- * @param array $config
- * @return mixed|void
- */
- public function initialize(array $config)
- {
- parent::initialize($config);
- $this->accessKey = $config['accessKey'] ?? null;
- $this->secretKey = $config['secretKey'] ?? null;
- $this->uploadUrl = $this->checkUploadUrl($config['uploadUrl'] ?? '');
- $this->storageName = $config['storageName'] ?? null;
- $this->storageRegion = $config['storageRegion'] ?? null;
- }
- /**
- * 实例化七牛云
- * @return object|Auth
- */
- protected function app()
- {
- if (!$this->accessKey || !$this->secretKey) {
- throw new UploadException('Please configure accessKey and secretKey');
- }
- $this->handle = new Auth($this->accessKey, $this->secretKey);
- return $this->handle;
- }
- /**
- * 上传文件
- * @param string $file
- * @return array|bool|mixed|\StdClass|string
- */
- public function move(string $file = 'file')
- {
- $fileHandle = app()->request->file($file);
- if (!$fileHandle) {
- return $this->setError('Upload file does not exist');
- }
- if ($this->validate) {
- try {
- $error = [
- $file . '.filesize' => 'Upload filesize error',
- $file . '.fileExt' => 'Upload fileExt error',
- $file . '.fileMime' => 'Upload fileMine error'
- ];
- validate([$file => $this->validate], $error)->check([$file => $fileHandle]);
- } catch (ValidateException $e) {
- return $this->setError($e->getMessage());
- }
- }
- $key = $this->saveFileName($fileHandle->getRealPath(), $fileHandle->getOriginalExtension());
- $key = $this->getUploadPath($key);
- $token = $this->app()->uploadToken($this->storageName);
- try {
- $uploadMgr = new UploadManager();
- [$result, $error] = $uploadMgr->putFile($token, $key, $fileHandle->getRealPath());
- if ($error !== null) {
- return $this->setError($error->message());
- }
- $this->fileInfo->uploadInfo = $result;
- $this->fileInfo->realName = $fileHandle->getOriginalName();
- $this->fileInfo->filePath = $this->uploadUrl . '/' . $key;
- $this->fileInfo->fileName = $key;
- $this->fileInfo->filePathWater = $this->water($this->fileInfo->filePath);
- $this->authThumb && $this->thumb($this->fileInfo->filePath);
- return $this->fileInfo;
- } catch (UploadException $e) {
- return $this->setError($e->getMessage());
- }
- }
- /**
- * 文件流上传
- * @param string $fileContent
- * @param string|null $key
- * @return array|bool|mixed|\StdClass
- */
- public function stream(string $fileContent, string $key = null)
- {
- if (!$key) {
- $key = $this->saveFileName();
- }
- $key = $this->getUploadPath($key);
- $token = $this->app()->uploadToken($this->storageName, $key);
- try {
- $uploadMgr = new UploadManager();
- [$result, $error] = $uploadMgr->put($token, $key, $fileContent);
- if ($error !== null) {
- return $this->setError($error->message());
- }
- $this->fileInfo->uploadInfo = $result;
- $this->fileInfo->realName = $key;
- $this->fileInfo->filePath = $this->uploadUrl . '/' . $key;
- $this->fileInfo->fileName = $key;
- $this->fileInfo->filePathWater = $this->water($this->fileInfo->filePath);
- $this->authThumb && $this->thumb($this->fileInfo->filePath);
- return $this->fileInfo;
- } catch (UploadException $e) {
- return $this->setError($e->getMessage());
- }
- }
- /**
- * 缩略图
- * @param string $filePath
- * @param string $type
- * @return mixed|string[]
- */
- public function thumb(string $filePath = '', string $type = 'all')
- {
- $filePath = $this->getFilePath($filePath);
- $data = ['big' => $filePath, 'mid' => $filePath, 'small' => $filePath];
- $this->fileInfo->filePathBig = $this->fileInfo->filePathMid = $this->fileInfo->filePathSmall = $this->fileInfo->filePathWater = $filePath;
- if ($filePath) {
- $config = $this->thumbConfig;
- foreach ($this->thumb as $v) {
- if ($type == 'all' || $type == $v) {
- $height = 'thumb_' . $v . '_height';
- $width = 'thumb_' . $v . '_width';
- if (isset($config[$height]) && isset($config[$width]) && $config[$height] && $config[$width]) {
- $key = 'filePath' . ucfirst($v);
- $this->fileInfo->$key = $filePath . '?imageView2/2/w/' . $config[$width] . '/h/' . $config[$height];
- $this->fileInfo->$key = $this->water($this->fileInfo->$key);
- $data[$v] = $this->fileInfo->$key;
- }
- }
- }
- }
- return $data;
- }
- /**
- * 水印
- * @param string $filePath
- * @return mixed|string
- */
- public function water(string $filePath = '')
- {
- $filePath = $this->getFilePath($filePath);
- $waterConfig = $this->waterConfig;
- $waterPath = $filePath;
- if ($waterConfig['image_watermark_status'] && $filePath) {
- if (strpos($filePath, '?') === false) {
- $filePath .= '?watermark';
- } else {
- $filePath .= '&watermark';
- }
- switch ($waterConfig['watermark_type']) {
- case 1://图片
- if (!$waterConfig['watermark_image']) {
- throw new ValidateException('请先配置水印图片');
- }
- $waterPath = $filePath .= '/1/image/' . base64_encode($waterConfig['watermark_image']) . '/gravity/' . ($this->position[$waterConfig['watermark_position']] ?? 'SouthEest') . '/dissolve/' . $waterConfig['watermark_opacity'] . '/dx/' . $waterConfig['watermark_x'] . '/dy/' . $waterConfig['watermark_y'];
- break;
- case 2://文字
- if (!$waterConfig['watermark_text']) {
- throw new ValidateException('请先配置水印文字');
- }
- $waterPath = $filePath .= '/2/text/' . base64_encode($waterConfig['watermark_text']) . '/fill/' . base64_encode($waterConfig['watermark_text_color']) . '/fontsize/' . $waterConfig['watermark_text_size'] . '/gravity/' . ($this->position[$waterConfig['watermark_position']] ?? 'SouthEest') . '/dx/' . $waterConfig['watermark_x'] . '/dy/' . $waterConfig['watermark_y'];
- break;
- }
- }
- return $waterPath;
- }
- /**
- * 获取视频封面图
- * @param string $filePath
- * @param string $type
- * @param int $time
- * @return array
- */
- public function videoCoverImage(string $filePath = '', string $type = 'all', int $time = 1)
- {
- $data = ['big' => $filePath, 'mid' => $filePath, 'small' => $filePath];
- $this->fileInfo->filePathBig = $this->fileInfo->filePathMid = $this->fileInfo->filePathSmall = $this->fileInfo->filePathWater = $filePath;
- if ($filePath) {
- //?fops=vframe/jpg/offset/7/w/480/h/360
- foreach ($this->thumb as $v) {
- if ($type == 'all' || $type == $v) {
- $height = 600;
- $width = 400;
- $key = 'filePath' . ucfirst($v);
- $this->fileInfo->$key = $filePath . '?fops=vframe/jpg/offset/' . $time . '/w/' . $width . '/h/' . $height;
- $data[$v] = $this->fileInfo->$key;
- }
- }
- }
- return $data;
- }
- /**
- * 获取上传配置信息
- * @return array
- */
- public function getSystem()
- {
- $token = $this->app()->uploadToken($this->storageName);
- $domain = $this->uploadUrl;
- $key = $this->saveFileName();
- return compact('token', 'domain', 'key');
- }
- /**
- * 删除资源
- * @param $key
- * @param $bucket
- * @return mixed
- */
- public function delete(string $key)
- {
- $bucketManager = new BucketManager($this->app(), new Config());
- return $bucketManager->delete($this->storageName, $key);
- }
- /**
- * 获取七牛云上传密钥
- * @return mixed|string
- */
- public function getTempKeys()
- {
- $token = $this->app()->uploadToken($this->storageName);
- $domain = $this->uploadUrl;
- $key = $this->saveFileName(NULL, 'mp4');
- $type = 'QINIU';
- return compact('token', 'domain', 'key', 'type');
- }
- /**
- * 获取当前所有桶列表
- * @param string|null $region
- * @param bool $line
- * @param bool $shared
- * @return bool|mixed
- */
- public function listbuckets(string $region = null, bool $line = false, bool $shared = false)
- {
- $bucket = new BucketManager($this->app());
- [$response, $error] = $bucket->listbuckets($region, $line ? 'true' : 'false', $shared ? 'true' : 'false');
- if ($error !== null) {
- return $this->setError($error->message());
- }
- return $response;
- }
- /**
- * @param string $name
- * @param string $region
- * @return bool|mixed
- */
- public function createBucket(string $name, string $region = 'z0')
- {
- $regionData = $this->getRegion();
- if (!in_array($region, array_column($regionData, 'value'))) {
- return $this->setError('七牛云:无效的区域');
- }
- $url = 'https://' . Config::UC_HOST . '/mkbucketv3/' . $name . '/region/' . $region;
- $body = null;
- $headers = $this->app()->authorizationV2($url, 'POST', $body, 'application/json');
- $headers["Content-Type"] = 'application/json';
- $ret = Client::post($url, $body, $headers);
- if (!$ret->ok()) {
- $error = new Error($url, $ret);
- if ('bucket exists' === $error->message()) {
- return $this->setError('七牛云:云空间已存在');
- }
- return $this->setError('七牛云:' . $error->message());
- }
- return ($ret->body === null) ? array() : $ret->json();
- }
- /**
- * 获取区域
- * @return mixed|\string[][]
- */
- public function getRegion()
- {
- return [
- [
- 'value' => 'z0',
- 'label' => '华东'
- ],
- [
- 'value' => 'z1',
- 'label' => '华北'
- ],
- [
- 'value' => 'z2',
- 'label' => '华南'
- ],
- [
- 'value' => 'na0',
- 'label' => '北美'
- ],
- [
- 'value' => 'as0',
- 'label' => '东南亚'
- ],
- [
- 'value' => 'cn-east-2',
- 'label' => '华东-浙江2'
- ],
- ];
- }
- /**
- * 删除空间
- * @param string $name
- * @return bool|mixed
- */
- public function deleteBucket(string $name)
- {
- $bucket = new BucketManager($this->app());
- [$response, $error] = $bucket->deleteBucket($name);
- if ($error !== null) {
- return $this->setError($error->message());
- }
- return $response;
- }
- /**
- * 获取七牛域名
- * @param string $name
- * @return array|bool|mixed|null
- */
- public function getDomian(string $name)
- {
- $url = 'https://' . Config::UC_HOST . '/v2/domains?tbl=' . $name;
- $body = null;
- $headers = $this->app()->authorizationV2($url, 'POST', $body, 'application/x-www-form-urlencoded');
- $headers["Content-Type"] = 'application/x-www-form-urlencoded';
- $ret = Client::post($url, $body, $headers);
- if (!$ret->ok()) {
- $error = new Error($url, $ret);
- return $this->setError('七牛云:' . $error->message());
- }
- return ($ret->body === null) ? array() : $ret->json();
- }
- public function getDomianInfo(string $host)
- {
- $url = 'https://' . Config::API_HOST . '/domain/' . $host;
- $headers = $this->app()->authorization($url, null, 'application/x-www-form-urlencoded');
- $headers["Content-Type"] = 'application/x-www-form-urlencoded';
- $ret = Client::get($url, $headers);
- if (!$ret->ok()) {
- $error = new Error($url, $ret);
- return $this->setError('七牛云:' . $error->message());
- }
- return ($ret->body === null) ? array() : $ret->json();
- }
- /**
- *
- * @param string $name
- * @param string $domain
- * @param string|null $region
- * @return array|bool|mixed|null
- */
- public function bindDomian(string $name, string $domain, string $region = null)
- {
- $parseDomin = parse_url($domain);
- $url = 'https://' . Config::API_HOST . '/domain/' . $parseDomin['host'];
- $body = [
- 'type' => 'normal',
- 'platform' => 'web',
- 'geocover' => 'china',
- 'source' => [
- 'sourceType' => 'qiniuBucket',
- 'sourceQiniuBucket' => $name,
- 'TestURLPath' => 'qiniu_do_not_delete.gif',
- ],
- 'protocol' => $parseDomin['scheme'],
- 'cache' => [
- 'cacheControls' => [
- [
- 'time' => 1,
- 'timeunit' => 4,
- 'type' => 'all',
- 'rule' => '*'
- ]
- ],
- 'ignoreParam' => false
- ]
- ];
- $bodyJson = json_encode($body);
- $headers = $this->app()->authorization($url, $bodyJson, 'application/json');
- $headers["Content-Type"] = 'application/json';
- $ret = Client::post($url, $bodyJson, $headers);
- if (!$ret->ok()) {
- $error = new Error($url, $ret);
- return $this->setError('七牛云:' . $error->message());
- }
- return ($ret->body === null) ? array() : $ret->json();
- }
- /**
- * 跨域
- * @param string $name
- * @param string $region
- * @return bool
- */
- public function setBucketCors(string $name, string $region)
- {
- return true;
- }
- }
|