lyxxxh / filestore
There is no license information available for the latest version (v1.2) of this package.
文件上傳保存在 cos/oss
v1.2
2020-04-02 13:26 UTC
Requires
- php: >=7.2
- ext-swoole: >=4.4
- aliyuncs/oss-sdk-php: ^2.3
- qcloud/cos-sdk-v5: 2.*
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.14
- hyperf/testing: 1.1.*
- phpstan/phpstan: ^0.10.5
- swoft/swoole-ide-helper: dev-master
This package is not auto-updated.
Last update: 2024-11-08 11:59:43 UTC
README
移除本地存储, 要存储在本地,用
hf
的方法就好了。增加cos存储
增加
put
方法改善之前的代码
安装
composer require lyxxxh/filestore
php bin/hyperf.php vendor:publish lyxxxh/filestore
// 发布配置 - 配置
config/autoload/filestore.php
//配置oss'oss' => [ 'appid' => '', 'appsec' => '', 'bucket' => '', 'endpoint' => '', 'socket_timeout' => '5184000', // 设置Socket层传输数据的超时时间 'connection_timeout' => '10', //建立链接的超时时间 'save_path' => 'tem/storage/', //存储目录 ]
控制器使用
use Xxh\FileStore\Service\FileStoreAbstract;
use Hyperf\HttpServer\Contract\RequestInterface;
use Hyperf\HttpServer\Contract\ResponseInterface;
/**
* 文件管理
* @Inject
* @var FileStoreAbstract
*/
private $file;
//接收文件上传
public function filestore(RequestInterface $request, ResponseInterface $response)
{
$path = $this->file->store(
$request->file('img')
);
return $this->file->url($path);
//http://r-card.oss-cn-beijing.aliyuncs.com/tem/storage/4b7dd3231926a340ab84d53316f17e03.png
}
public function put()
{
$path = $this->file->put('1.txt','Hello World');
return $this->file->url($path);
//http://r-card.oss-cn-beijing.aliyuncs.com/tem/storage/1.txt
}
使用cos
- 新增
config/autoload/dependencies.php
配置Xxh\FileStore\Service\FileStoreAbstract::class => Xxh\FileStore\Service\CosFileStoreService::class
- 配置
config/autoload/filestore.php
的cos
的信息
扩展方法 或者 重写 (以oss为例)
随便创建一个文件 例:
app/Services/OssFileStoreService.php
修改
config/autoload/dependencies.php
为Xxh\FileStore\Service\FileStoreAbstract::class => App\Services\OssFileStoreService::class
OssFileStoreService.php内容
class OssFileStoreService extends Xxh\FileStore\Service\OssFileStoreService
{
//重写oss put方法
public function put($filename,$str)
{
.....
}
//新增oss delObject方法
public function delObject($filename)
{
$this->getClient()->deleteObjects($this->config['bucket'],$filename);
}
}
扩展提供的方法
超过2m无法上传
默认只能上传2M的文件, 请看swoole文档 (package_max_length)
可在config/server.php的
settings =>[
'package_max_length' => 5 * 1024 * 1024 , //5M
.....
]