| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace crmeb\services\upload\storage;
- use crmeb\exceptions\AdminException;
- use crmeb\services\upload\BaseUpload;
- use crmeb\exceptions\UploadException;
- use think\exception\ValidateException;
- use UCloud\Storage\UploadManager as UcloudUploadManager;
- use UCloud\Auth;
- use UCloud\UFile\Apis\DeleteBucketRequest;
- use UCloud\UFile\Apis\DescribeBucketRequest;
- use UCloud\UFile\UFileClient;
- use UCloud\UFile\Apis\CreateBucketRequest;
- use UCloud\Core\Logger\DisabledLogger;
- /**
- * Ucloud us3
- * Class Us3
- */
- class Us3 extends BaseUpload
- {
- /**
- * accessKey
- * @var mixed
- */
- protected $accessKey;
- /**
- * secretKey
- * @var mixed
- */
- protected $secretKey;
- /**
- * 句柄
- * @var object
- */
- public $handle;
- /**
- * 空间域名 Domain
- * @var mixed
- */
- protected $uploadUrl;
- /**
- * 存储空间名称 公开空间
- * @var mixed
- */
- protected $storageName;
- /**
- * COS使用 所属地域
- * @var mixed|null
- */
- protected $storageRegion;
- /**
- * cdn 域名
- * @var
- */
- protected $cdn;
- /**
- * 缩略图开关
- * @var mixed|null
- */
- protected $thumb_status;
- /**
- * 缩略图比例
- * @var mixed|null
- */
- protected $thumb_rate;
- /**
- * 水印位置
- * @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->storageName = $config['storageName'] ?? null;
- $this->storageRegion = $config['storageRegion'] ?? null;
- $this->cdn = $config['cdn'] ?? null;
- if(isset($config['uploadUrl']) && $config['uploadUrl']){
- $host = parse_url($config['uploadUrl']);
- $this->uploadUrl = substr($host['host'], strlen($config['storageName']));
- }
- }
- /**
- * 实例化
- * @return object|Auth
- */
- public function app()
- {
- if (!$this->accessKey || !$this->secretKey) {
- throw new UploadException('请填写存储配置或者更换存储方式');
- }
- if (!$this->handle) {
- $this->handle = new Auth($this->accessKey, $this->secretKey, $this->uploadUrl);
- }
- return $this->handle;
- }
- /**
- * @param string $name 创建Bucket的名称
- * @param string $region 地域
- * @param string $type Bucket访问类型,public或private; 默认为private
- * @return array
- */
- public function createBucket(string $name, string $region, string $type = 'public')
- {
- try {
- $uFileClient = new UFileClient([
- 'publicKey' => $this->accessKey,
- 'privateKey' => $this->secretKey,
- 'logger' => new DisabledLogger()
- ]);
- $type = $type == 'public-read' || $type == 'public-read-write' ? 'public' : 'private';//适配US3入参
- $createBucketRequest = new CreateBucketRequest();
- $createBucketRequest->setBucketName($name);
- $createBucketRequest->setRegion($region);
- $createBucketRequest->setType($type);
- return $uFileClient->createBucket($createBucketRequest)->toArray();
- } catch (\Exception $e) {
- throw new UploadException($e->getMessage());
- }
- }
- /**
- * 获取区域列表
- * @return array
- */
- public function getRegion()
- {
- try {
- return [
- [
- 'value' => 'cn-bj2',
- 'label' => '华北一',
- ],
- [
- 'value' => 'cn-gd',
- 'label' => '广州'
- ],
- [
- 'value' => 'cn-qz',
- 'label' => '福建'
- ],
- [
- 'value' => 'cn-sh2',
- 'label' => '上海二'
- ],
- [
- 'value' => 'cn-wlcb',
- 'label' => '华北二'
- ],
- [
- 'value' => 'afr-nigeria',
- 'label' => '拉各斯'
- ],
- [
- 'value' => 'bra-saopaulo',
- 'label' => '圣保罗'
- ],
- [
- 'value' => 'ge-fra',
- 'label' => '法兰克福'
- ],
- [
- 'value' => 'hk',
- 'label' => '香港'
- ],
- [
- 'value' => 'idn-jakarta',
- 'label' => '雅加达'
- ],
- [
- 'value' => 'ind-mumbai',
- 'label' => '孟买'
- ],
- [
- 'value' => 'jpn-tky',
- 'label' => '东京'
- ],
- [
- 'value' => 'kr-seoul',
- 'label' => '首尔'
- ],
- [
- 'value' => 'ph-mnl',
- 'label' => '马尼拉'
- ],
- [
- 'value' => 'sg',
- 'label' => '新加坡'
- ],
- [
- 'value' => 'th-bkk',
- 'label' => '曼谷'
- ],
- [
- 'value' => 'tw-tp',
- 'label' => '台北'
- ],
- [
- 'value' => 'uae-dubai',
- 'label' => '迪拜'
- ],
- [
- 'value' => 'uk-london',
- 'label' => '伦敦'
- ],
- [
- 'value' => 'us-ca',
- 'label' => '洛杉矶'
- ],
- [
- 'value' => 'us-ws',
- 'label' => '华盛顿'
- ],
- [
- 'value' => 'vn-sng',
- 'label' => '胡志明市'
- ]
- ];
- // 接口调用获取region 暂未返回中文
- // $accountClient = new UAccountClient([
- // 'publicKey' => $this->accessKey,
- // 'privateKey' => $this->secretKey,
- // 'logger' => new DisabledLogger()
- // ]);
- // $result = $accountClient->getRegion(new GetRegionRequest())->toArray();
- // $list = [];
- // if(isset($result['Regions']) && !empty($result['Regions'])){
- // foreach ($result['Regions'] as $item){
- // $list[] = ['lable'=>$item['RegionName'],'value'=>$item['Region']];
- // }
- // }
- } catch (\Exception $e) {
- throw new UploadException($e->getMessage());
- }
- }
- /**
- * 获取空间列表
- * @return array
- */
- public function listbuckets(string $region = null, bool $line = false, bool $shared = false): array
- {
- $uFileClient = new UFileClient([
- 'publicKey' => $this->accessKey,
- 'privateKey' => $this->secretKey,
- 'logger' => new DisabledLogger()
- ]);
- $result = $uFileClient->describeBucket(new DescribeBucketRequest())->toArray();
- if (!isset($result['RetCode']) || $result['RetCode'] !== 0) {
- throw new UploadException('获取Bucket列表失败');
- }
- return $result['DataSet'];
- }
- /**
- * 删除存储空间
- * @param string $name
- * @param string $region
- * @return bool
- */
- public function deleteBucket(string $name, string $region = '')
- {
- try {
- $uFileClient = new UFileClient([
- 'publicKey' => $this->accessKey,
- 'privateKey' => $this->secretKey,
- 'logger' => new DisabledLogger()
- ]);
- $deleteBucketRequest = new DeleteBucketRequest();
- $deleteBucketRequest->setBucketName($name);
- $result = $uFileClient->deleteBucket($deleteBucketRequest)->toArray();
- if (!isset($result['RetCode']) || $result['RetCode'] !== 0) {
- throw new UploadException('删除Bucket失败');
- }
- return true;
- } catch (\Throwable $e) {
- throw new UploadException($e->getMessage() ?? '删除失败');
- }
- }
- /**
- * 修改域名 暂无
- * @return void
- */
- public function updateDomain()
- {
- }
- /**
- * 绑定自定义域名
- * @param string $name
- * @param string $domain
- * @param string|null $region
- * @return mixed
- */
- public function bindDomian(string $name, string $domain, string $region = null)
- {
- }
- /**
- * 上传文件
- * @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('上传的文件不存在');
- }
- if ($this->validate) {
- if (!in_array($fileHandle->getOriginalExtension(), $this->validate['fileExt'])) {
- return $this->setError('不合法的文件后缀:'.$fileHandle->getOriginalExtension());
- }
- if (filesize($fileHandle) > $this->validate['filesize']) {
- return $this->setError('文件过大');
- }
- if (!in_array($fileHandle->getOriginalMime(), $this->validate['fileMime'])) {
- return $this->setError('不合法的文件类型:'.$fileHandle->getOriginalMime());
- }
- }
- $key = $this->saveFileName($fileHandle->getRealPath(), $fileHandle->getOriginalExtension());
- $path = ($this->path ? trim($this->path, '/') . '/' : '');
- try {
- $uploadMgr = new UcloudUploadManager($this->app());
- [$result, $error] = $uploadMgr->PutFile($this->storageName, $path . $key, $fileHandle->getRealPath());
- if ($error !== null) {
- return $this->setError($error->ErrMsg);
- }
- if ($this->cdn) {
- $src = $this->cdn . $path . $key;
- } else {
- $src = 'https://' . $uploadMgr->MakePublicUrl($this->storageName, $path . $key);
- }
- $this->fileInfo->uploadInfo = $result;
- $this->fileInfo->filePath = $src;
- $this->fileInfo->fileName = $key;
- 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($fileContent, string $key = null)
- {
- $file = sys_get_temp_dir() . $key;
- file_put_contents($file, $fileContent, true);
- if (!$key) {
- $key = $this->saveFileName();
- }
- $path = ($this->path ? trim($this->path, '/') . '/' : '');
- try {
- $uploadMgr = new UcloudUploadManager($this->app());
- list($result, $err) = $uploadMgr->MultipartForm($this->storageName, $path . $key, $file);
- unlink($file);
- if ($err !== null) {
- return array(null, $err);
- }
- if ($this->cdn) {
- $src = $this->cdn . '/' . $path . $key;
- } else {
- $src = 'https://' . $uploadMgr->MakePublicUrl($this->storageName, $path . $key);
- }
- if ($this->thumb_status) $src = $this->thumb($src);
- $this->fileInfo->uploadInfo = $result;
- $this->fileInfo->filePath = $src;
- $this->fileInfo->fileName = $key;
- return $this->fileInfo;
- } catch (UploadException $e) {
- return $this->setError($e->getMessage());
- }
- }
- public function thumb(string $filePath = '', string $fileName = '', 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';
- $key = 'filePath' . ucfirst($v);
- // if (systemConfig('image_thumbnail_status') && isset($config[$height]) && isset($config[$width])) {
- if (isset($config[$height]) && isset($config[$width])) {
- if (!strpos($filePath, '?iopcmd=thumbnail')) {
- $this->fileInfo->$key = $filePath . '?iopcmd=thumbnail&type=5&width=' . $config[$width] . '&height=' . $config[$height];
- }
- $this->fileInfo->$key = $this->water($this->fileInfo->$key);
- $data[$v] = $this->fileInfo->$key;
- } else {
- $this->fileInfo->$key = $this->water($this->fileInfo->$key);
- $data[$v] = $this->fileInfo->$key;
- }
- }
- }
- }
- return $data;
- }
- /**
- * 添加水印
- * @return mixed
- */
- public function water(string $filePath = '')
- {
- $waterPath = $filePath;
- if ($this->waterConfig['image_watermark_status'] && $filePath) {
- if (strpos($filePath, '?') === false) {
- $filePath .= '?iopcmd=watermark';
- } else {
- $filePath .= '|iopcmd=watermark';
- }
- switch ($this->waterConfig['watermark_type']) {
- case 1://图片
- if (!$this->waterConfig['watermark_image']) {
- throw new AdminException('请上传水印图');
- }
- $waterPath = $filePath .= '&type=2&imageurl=' . base64_encode($this->waterConfig['watermark_image']) . '&gravity=' . ($this->position[$this->waterConfig['watermark_position']] ?? 'SouthEest') . '&opacity=' . $this->waterConfig['watermark_opacity'] . '&ax=' . $this->waterConfig['watermark_x'] . '&ay=' . $this->waterConfig['watermark_y'];
- break;
- case 2://文字
- if (!$this->waterConfig['watermark_text']) {
- throw new AdminException('请填写水印文字');
- }
- $waterPath = $filePath .= '&type=1&text=' . base64_encode($this->waterConfig['watermark_text']) . '&fill=' . base64_encode($this->waterConfig['watermark_text_color']) . '&fontsize=' . $this->waterConfig['watermark_text_size'] . '&gravity=' . ($this->position[$this->waterConfig['watermark_position']] ?? 'SouthWest') . '&ax=' . $this->waterConfig['watermark_x'] . '&ay=' . $this->waterConfig['watermark_y'];
- break;
- }
- return $waterPath;
- }
- }
- /**
- * 获取上传配置信息
- * @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 UcloudUploadManager($this->app());
- return $bucketManager->delete($this->storageName, $key);
- }
- /**
- *
- * @return mixed|string
- */
- public function getTempKeys()
- {
- return [
- 'accessid' => $this->accessKey,
- 'secretKey' => $this->secretKey,
- 'host' => $this->uploadUrl,
- 'storageName' => $this->storageName,
- 'cdn' => $this->cdn,
- 'type' => 'US3'
- ];
- }
- /**
- * 设置跨域
- * @param string $name
- * @param string $region
- * @return mixed
- */
- public function setBucketCors(string $name, string $region)
- {
- return true;
- }
- }
|