443 lines
14 KiB
PHP
443 lines
14 KiB
PHP
<?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 GuzzleHttp\Psr7\Stream;
|
|
use think\exception\ValidateException;
|
|
|
|
/**
|
|
* 京东云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) {
|
|
try {
|
|
validate([$file => $this->validate])->check([$fileHandle]);
|
|
} catch (ValidateException $e) {
|
|
return $this->setError($e->getMessage());
|
|
}
|
|
}
|
|
|
|
$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);
|
|
if (is_resource($fileContent)) {
|
|
$fileContent = new Stream($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(systemConfig('jd_storageRegion'));
|
|
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 (systemConfig('image_thumbnail_status') && isset($config[$height]) && isset($config[$width])) {
|
|
if (isset($config[$height]) && isset($config[$width])) {
|
|
$this->fileInfo->$key = $filePath . '?x-oss-process=img/s/'.$config[$width].'/'.$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;
|
|
}
|
|
|
|
/**
|
|
* 水印
|
|
* @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=img';
|
|
}
|
|
switch ($waterConfig['watermark_type']) {
|
|
case 1://图片
|
|
if (!$waterConfig['watermark_image']) {
|
|
throw new AdminException(400722);
|
|
}
|
|
//京东入参格式:桶名:filename.jpg
|
|
$waterFileName = substr(parse_url($waterConfig['watermark_image'],PHP_URL_PATH), 1);
|
|
$waterImage = $this->storageName.':'.$waterFileName;
|
|
$waterPath = $filePath .= '/wmi/wk/' . base64_encode($waterImage) . '/wd/' . $waterConfig['watermark_opacity'] . '/wp/' . ($waterConfig['watermark_position'] ?? '5') . '/wdx/' . $waterConfig['watermark_x'] . '/wdy/' . $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 .= '/wmt/wt/' . base64_encode($waterConfig['watermark_text']) . '/wc/_' . $waterConfig['watermark_text_color'] . '/ws/' . $waterConfig['watermark_text_size'] . '/wp/' . ($waterConfig['watermark_position'] ?? 1) . '/wdx/' . $waterConfig['watermark_x'] . '/wdy/' . $waterConfig['watermark_y'];
|
|
break;
|
|
}
|
|
}
|
|
return $waterPath;
|
|
}
|
|
}
|