lovexjho/flysystem-tos-oss

给hyperf文件系统添加火山引擎对象存储支持

1.0.0 2024-07-26 04:56 UTC

This package is auto-updated.

Last update: 2025-03-06 11:07:13 UTC


README

config\file.php中,添加tos配置

'tos' => [
            'driver' => TosAdapterFactory::class,
            'region' => env('TOS_REGION'),
            'bucket' => env('TOS_BUCKET'),
            'endpoint' => env('TOS_ENDPOINT'),
            'ak' => env('AK'),
            'sk' => env('SK'),
            'securityToken' => env('SECURITY_TOKEN'),
            'connectionTimeout' => 10000, // 毫秒
            'socketTimeout' => 30000, // 毫秒,
            'enableVerifySSL' => true
        ]

tos预签名

$filesystemFactory = make(\Hyperf\Filesystem\FilesystemFactory::class);
$tos = $filesystemFactory->getAdapter('tos');

$preSign = $tos->preSignedURL($path, new \League\Flysystem\Config([
'httpMethod' => \Tos\Model\Enum::HttpMethodPut,
'expires' => 3600
]));

var_dump($preSign);

引用项目地址: jiangwang/flysystem-tos