.
本 sdk 为文件服务 sdk 增强版,提供了更多的功能,更加易用。
内置阿里云、火山云、文件服务的简单调用,只需几行代码即可完成文件的上传、下载、删除等操作。
支持后端直传模式,获取临时凭证后,后端直接上传文件到云存储,减少服务器压力。
可替换的FilesystemAdapter
配置,自定义更强。
抽离文件服务通用功能到包中,可不依赖文件服务即可使用。
- 文件服务代理的 阿里云、火山云
- 阿里云
- 火山云
- 获取临时凭证
- 上传文件 - 通过临时凭证直传
- 复制文件
- 删除文件
- 批量获取可访问链接
- 获取文件元数据
如果要使用直连的阿里云、火山云,要先安装相应的FilesystemAdapter,如
"suggest": {
"hyperf/logger": "Required to use the Hyperf.",
"hyperf/di": "Required to use the Hyperf.",
"hyperf/config": "Required to use the Hyperf.",
"hyperf/cache": "Required to use the Hyperf.",
"alibabacloud/sts": "^1.8",
"aliyuncs/oss-sdk-php": "^2.7",
"league/flysystem": "^2.0",
"xxtime/flysystem-aliyun-oss": "^1.6",
"volcengine/ve-tos-php-sdk": "^2.1",
"volcengine/volc-sdk-php": "^1.0"
},
或者在 config 配置中,增加driver参数,即FilesystemAdapter,由于包之间依赖兼容性问题,可能会有bug,但目前使用文件服务服务的机会比较多,先不管这个了,有问题再改改
$ composer require dtyq/cloudfile -vvv
$configs = [
'storages' => [
// 文件服务配置示例
'file_service_test' => [
'adapter' => 'file_service',
'config' => [
// 文件服务地址
'host' => 'xxx',
// 文件服务的 platform
'platform' => 'xxx',
// 文件服务的 key
'key' => 'xxx',
],
],
// 阿里云配置示例
'aliyun_test' => [
'adapter' => 'aliyun',
'config' => [
'accessId' => 'xxx',
'accessSecret' => 'xxx',
'bucket' => 'xxx',
'endpoint' => 'xxx',
'role_arn' => 'xxx',
],
],
// 火山云配置示例
'tos_test' => [
'adapter' => 'tos',
'config' => [
'region' => 'xxx',
'endpoint' => 'xxx',
'ak' => 'xxx',
'sk' => 'xxx',
'bucket' => 'xxx',
'trn' => 'xxx',
],
],
],
];
$container = new SdkContainer([
// sdk 基本配置
'sdk_name' => 'easy_file_sdk',
'exception_class' => CloudFileException::class,·
// cloudfile 配置
'cloudfile' => $configs,
]);
$cloudFile = new CloudFile($container);
因为要请求文件服务,是需要动态 token 和 organization-code 的,这里需要放到 options 参数中,所有文件服务的请求,都需要带上,如下
$filesystem = $cloudFile->get('file_service_test');
$options = [
'token' => 'xxx',
'organization-code' => 'xxx',
'cache' => false, // 根据需要设置,建议 false,方便调试
];
$filesystem = $cloudFile->get('file_service_test');
$credentialPolicy = new CredentialPolicy([
'sts' => false,
'roleSessionName' => 'test',
]);
$options = [
'token' => 'xxx',
'organization-code' => 'xxx',
];
$data = $filesystem->getUploadTemporaryCredential($credentialPolicy, $options);
上传完成后,记得查看$uploadFile->getKey()
,来获取上传后的文件实际路径(因为文件服务会拼接 组织/应用 前缀)
$filesystem = $cloudFile->get('file_service_test');
$credentialPolicy = new CredentialPolicy([
'sts' => false,
]);
$realPath = __DIR__ . '/../test.txt';
$uploadFile = new UploadFile($realPath, 'easy-file');
$options = [
'token' => 'xxx',
'organization-code' => 'xxx',
];
$filesystem->uploadByCredential($uploadFile, $credentialPolicy, $options);
$filesystem = $cloudFile->get('file_service_test');
$options = [
'token' => 'xxx',
'organization-code' => 'xxx',
];
// 复制文件成功后,要获取这个 path 结果才是真实地址,因为文件服务会有权限处理
$path = $filesystem->duplicate('easy-file/test.txt', 'easy-file/test-copy.txt', $options);
$filesystem = $cloudFile->get('file_service_test');
$options = [
'token' => 'xxx',
'organization-code' => 'xxx',
];
$filesystem->destroy('easy-file/test.txt', $options);
请求文件服务时,不检测是否存在,直接返回链接
$filesystem = $cloudFile->get('file_service_test');
$options = [
'token' => 'xxx',
'organization-code' => 'xxx',
];
$list = $filesystem->getLinks([
'easy-file/file-service.txt',
'easy-file/test.txt',
], [], 7200, $options);
$filesystem = $cloudFile->get('file_service_test');
$options = [
'token' => 'xxx',
'organization-code' => 'xxx',
];
$list = $filesystem->getMetas([
'easy-file/file-service.txt',
'easy-file/test.txt'], $options);
$ php bin/hyperf.php vendor:publish dtyq/cloudfile
// 这里可以在构造中注入 CloudFileFactory
$cloudFile = \Hyperf\Support\make(CloudFileFactory::class)->create();
$filesystem = $cloudFile->get('file_service');
$options = [
// 这里的动态 token 需要自行传入
'token' => 'xxx',
'organization-code' => 'xxx',
];
$list = $filesystem->getLinks([
'easy-file/file-service.txt',
'easy-file/test.txt',
], [], 7200, $options);
$link = $list[0]->getUrl();