123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438 |
- <?php
- namespace crmeb\services\upload\storage;
- use Aws\Acm\Exception\AcmException;
- use Aws\S3\S3Client;
- use crmeb\exceptions\AdminException;
- use crmeb\exceptions\UploadException;
- use crmeb\services\upload\BaseUpload;
- use Guzzle\Http\EntityBody;
- /**
- * 京东云COS文件上传
- * Class Jdoss
- * @package crmeb\services\upload\storage
- */
- class Jdoss extends BaseUpload
- {
- /**
- * 应用id
- * @var string
- */
- protected $appid;
- /**
- * accessKey
- * @var mixed
- */
- protected $accessKey;
- /**
- * secretKey
- * @var mixed
- */
- protected $secretKey;
- /**
- * 句柄
- * @var S3Client
- */
- protected $handle;
- /**
- * 空间域名 Domain
- * @var mixed
- */
- protected $uploadUrl;
- /**
- * 存储空间名称 公开空间
- * @var mixed
- */
- protected $storageName;
- /**
- * COS使用 所属地域
- * @var mixed|null
- */
- protected $storageRegion;
- /**
- * @var string
- */
- protected $cdn;
- /**
- * 水印位置
- * @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;
- $this->cdn = $config['cdn'] ?? null;
- $this->waterConfig['watermark_text_font'] = 'simfang仿宋.ttf';
- }
- /**
- * @return S3Client
- *
- * @date 2023/06/05
- * @author yyw
- */
- protected function app()
- {
- if (!$this->accessKey || !$this->secretKey) {
- throw new UploadException(400721);
- }
- $this->handle = new S3Client([
- 'version' => 'latest',
- 'region' => $this->storageRegion,
- 'endpoint' => "http://s3.{$this->storageRegion}.jdcloud-oss.com",
- 'signature_version' => 'v4',
- 'use_path_style_endpoint' => true,
- 'credentials' => [
- 'key' => $this->accessKey,
- 'secret' => $this->secretKey,
- ],
- ]);
- return $this->handle;
- }
- public function move(string $file = 'file')
- {
- $fileHandle = app()->request->file($file);
- if (!$fileHandle) {
- return $this->setError('上传的文件不存在');
- }
- if ($this->validate) {
- if (!in_array(strtolower(pathinfo($fileHandle->getOriginalName(), PATHINFO_EXTENSION)), $this->validate['fileExt'])) {
- return $this->setError('不合法的文件后缀');
- }
- if (filesize($fileHandle) > $this->validate['filesize']) {
- return $this->setError('文件过大');
- }
- if (!in_array($fileHandle->getOriginalMime(), $this->validate['fileMime'])) {
- return $this->setError('不合法的文件类型');
- }
- }
- $key = $this->saveFileName($fileHandle->getRealPath(), $fileHandle->getOriginalExtension());
- $key = $this->getUploadPath($key);
- try {
- $uploadInfo = $this->app()->putObject([
- 'Bucket' => $this->storageName,
- 'Key' => $key,
- 'SourceFile' => $fileHandle->getRealPath()
- ]);
- if (!isset($uploadInfo['ObjectURL'])) {
- return $this->setError('Upload failure');
- }
- $this->fileInfo->uploadInfo = $uploadInfo;
- $this->fileInfo->realName = $fileHandle->getOriginalName();
- $this->fileInfo->filePath = ($this->cdn ?: $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 (\Throwable $e) {
- return $this->setError($e->getMessage());
- }
- }
- public function stream($fileContent, string $key = null)
- {
- try {
- if (!$key) {
- $key = $this->saveFileName();
- }
- $key = $this->getUploadPath($key);
- $fileContent = (string)EntityBody::factory($fileContent);
- $uploadInfo = $this->app()->putObject([
- 'Bucket' => $this->storageName,
- 'Key' => $key,
- 'Body' => $fileContent
- ]);
- $uploadInfo = $uploadInfo->toArray();
- if (isset($uploadInfo['@metadata']['statusCode']) && $uploadInfo['@metadata']['statusCode'] !== 200) {
- return $this->setError('Upload failure');
- }
- $this->fileInfo->uploadInfo = $uploadInfo;
- $this->fileInfo->realName = $key;
- $this->fileInfo->filePath = ($this->cdn ?: $this->uploadUrl) . '/' . $key;
- $this->fileInfo->fileName = $key;
- $this->fileInfo->filePathWater = $this->water($this->fileInfo->filePath);
- $this->thumb($this->fileInfo->filePath);
- return $this->fileInfo;
- } catch (\Throwable $e) {
- return $this->setError($e->getMessage());
- }
- }
- public function delete(string $key)
- {
- try {
- return $this->app()->deleteObject([
- 'Bucket' => $this->storageName,
- 'Key' => $key
- ]);
- } catch (\Throwable $e) {
- return $this->setError($e->getMessage());
- }
- }
- public function listbuckets(string $region, bool $line = false, bool $shared = false)
- {
- try {
- $res = $this->app()->listBuckets();
- return $res ?? [];
- } catch (\Throwable $e) {
- return [];
- }
- }
- public function createBucket(string $name, string $region = '', string $acl = 'public-read')
- {
- $regionData = $this->getRegion();
- $regionData = array_column($regionData, 'value');
- if (!in_array($region, $regionData)) {
- return $this->setError('COS:无效的区域!');
- }
- $this->storageRegion = $region;
- $app = $this->app();
- //检测桶
- try {
- $app->headBucket([
- 'Bucket' => $name
- ]);
- } catch (\Throwable $e) {
- //桶不存在返回404
- if (strstr('404', $e->getMessage())) {
- return $this->setError('COS:' . $e->getMessage());
- }
- }
- //创建桶
- try {
- $res = $app->createBucket([
- 'Bucket' => $name,
- 'ACL' => $acl,
- ]);
- } catch (\Throwable $e) {
- if (strstr('[curl] 6', $e->getMessage())) {
- return $this->setError('COS:无效的区域!!');
- } else if (strstr('Access Denied.', $e->getMessage())) {
- return $this->setError('COS:无权访问');
- }
- return $this->setError('COS:' . $e->getMessage());
- }
- return $res;
- }
- public function getRegion()
- {
- return [
- [
- 'value' => 'cn-north-1',
- 'label' => '华北-北京'
- ],
- [
- 'value' => 'cn-east-1',
- 'label' => '华东-宿迁'
- ],
- [
- 'value' => 'cn-east-2',
- 'label' => '华东-上海'
- ],
- [
- 'value' => 'cn-south-1',
- 'label' => '华南-广州'
- ]
- ];
- }
- public function deleteBucket(string $name, string $region = '')
- {
- try {
- $this->storageRegion = $region;
- $this->app()->deleteBucket([
- 'Bucket' => $name, // REQUIRED
- ]);
- return true;
- } catch (AcmException $e) {
- return $this->setError($e->getMessage());
- }
- }
- public function getDomian(string $name, string $region = null)
- {
- try {
- $this->storageRegion = $region;
- $res = $this->app()->getBucketPolicy([
- 'Bucket' => $name
- ]);
- return $res['DomainName'] ?? [];
- } catch (\Throwable $e) {
- return $this->setError($e->getMessage());
- }
- }
- public function bindDomian(string $name, string $domain, string $region = null)
- {
- try {
- $this->storageRegion = $region;
- $this->app()->putBucketWebsite([
- 'Bucket' => $name,
- 'WebsiteConfiguration' => [
- 'RedirectAllRequestsTo' => [
- 'HostName' => $domain,
- 'Protocol' => 'http'
- ]
- ]
- ]);
- return true;
- } catch (\Throwable $e) {
- return $this->setError($e->getMessage());
- }
- }
- public function setBucketCors(string $name, string $region)
- {
- $this->storageRegion = $region;
- try {
- $this->app()->putBucketCors([
- 'Bucket' => $name, // REQUIRED
- 'CORSConfiguration' => [ // REQUIRED
- 'CORSRules' => [ // REQUIRED
- [
- 'AllowedHeaders' => ['*'],
- 'AllowedMethods' => ['POST', 'GET', 'PUT', 'DELETE', 'HEAD'], // REQUIRED
- 'AllowedOrigins' => ['*'], // REQUIRED
- 'ExposeHeaders' => ['Etag'],
- 'MaxAgeSeconds' => 0
- ],
- ],
- ]
- ]);
- return true;
- } catch (\Throwable $e) {
- return $this->setError($e->getMessage());
- }
- }
- /**
- * 获取OSS上传密钥
- * @return mixed|void
- */
- public function getTempKeys($key = '', $path = '', $contentType = '', $expires = '+10 minutes')
- {
- try {
- $app = $this->app();
- $cmd = $app->getCommand(
- 'PutObject', [
- 'Bucket' => $this->storageName,
- 'Key' => $key,
- // 'SourceFile' => $path,
- 'ContentType' => $contentType
- ]
- );
- $request = $app->createPresignedRequest($cmd, $expires, ['Scheme' => 'https']);
- return [
- 'upload_url' => (string)$request->getUri(),
- 'type' => 'JDOSS',
- 'url' => $this->uploadUrl . '/' . $key
- ];
- } catch (\Throwable $e) {
- return $this->setError($e->getMessage());
- }
- }
- /**
- * 缩略图
- * @param string $filePath
- * @param string $fileName
- * @param string $type
- * @return array|mixed
- */
- 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 (sys_config('image_thumbnail_status', 1) && isset($config[$height]) && isset($config[$width]) && $config[$height] && $config[$width]) {
- $this->fileInfo->$key = $filePath . '?x-oss-process=image/resize,h_' . $config[$height] . ',w_' . $config[$width];
- $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;
- }
- /**
- * 水印
- * @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, '?x-oss-process') === false) {
- $filePath .= '?x-oss-process=image';
- }
- switch ($waterConfig['watermark_type']) {
- case 1://图片
- if (!$waterConfig['watermark_image']) {
- throw new AdminException(400722);
- }
- $waterPath = $filePath .= '/watermark,image_' . base64_encode($waterConfig['watermark_image']) . ',t_' . $waterConfig['watermark_opacity'] . ',g_' . ($this->position[$waterConfig['watermark_position']] ?? 'nw') . ',x_' . $waterConfig['watermark_x'] . ',y_' . $waterConfig['watermark_y'];
- break;
- case 2://文字
- if (!$waterConfig['watermark_text']) {
- throw new AdminException(400723);
- }
- $waterConfig['watermark_text_color'] = str_replace('#', '', $waterConfig['watermark_text_color']);
- $waterPath = $filePath .= '/watermark,text_' . base64_encode($waterConfig['watermark_text']) . ',color_' . $waterConfig['watermark_text_color'] . ',size_' . $waterConfig['watermark_text_size'] . ',g_' . ($this->position[$waterConfig['watermark_position']] ?? 'nw') . ',x_' . $waterConfig['watermark_x'] . ',y_' . $waterConfig['watermark_y'];
- break;
- }
- }
- return $waterPath;
- }
- }
|