eshop_ibrand / uploader
iBrand upload
v1.0.2
2021-11-08 09:30 UTC
Requires
- php: >=7.0
- apollopy/flysystem-aliyun-oss: ^1.2
- overtrue/laravel-filesystem-qiniu: ^1.0
Requires (Dev)
- orchestra/database: ~3.5
- orchestra/testbench: ~3.5
- phpunit/phpunit: ~6.0
This package is auto-updated.
Last update: 2025-03-08 16:48:48 UTC
README
cdn文件上传-七牛云
特性
- 支持上传图片,音频,视频
- 自定义允许上传文件类型
- 使用简单、即插即用
安装
composer require ibrand/uploader
低于 Laravel5.5 版本,
config/app.php
文件中providers
添加iBrand\Upload\UploadServiceProvider::class
如需自定义配置请执行
php artisan vendor:publish --provider="iBrand\Upload\UploadServiceProvider" --tag="config"
配置项
return [
'disks' => [
'qiniu' => [
'driver' => 'qiniu',
//七牛云access_key
'access_key' => env('QINIU_ACCESS_KEY', ''),
//七牛云secret_key
'secret_key' => env('QINIU_SECRET_KEY', ''),
//七牛云文件上传空间
'bucket' => env('QINIU_BUCKET', ''),
//七牛云cdn域名
'domain' => env('QINIU_DOMAIN', ''),
//与cdn域名保持一致
'url' => env('QINIU_DOMAIN', ''),
],
],
'image' => [
//允许上传的文件类型
'supportedExtensions' => ['png', 'jpg', 'jpeg', 'gif'],
'supportedMimeTypes' => ['image/jpeg', 'image/gif', 'image/png'],
//单位:M
'allowMaxSize' => 2,
],
'voice' => [
'supportedExtensions' => ['mp3', 'wav'],
'supportedMimeTypes' => ['audio/mpeg', 'audio/x-wav'],
'allowMaxSize' => 5,
],
'video' => [
'supportedExtensions' => ['webm', 'mov', 'mp4'],
'supportedMimeTypes' => ['video/webm', 'video/mpeg', 'video/mp4', 'video/quicktime'],
'allowMaxSize' => 30,
],
];
使用
在.env文件中配置QINIU_ACCESS_KEY,QINIU_SECRET_KEY,QINIU_BUCKET,QINIU_DOMAIN等配置项。
有两种方式上传文件至七牛云以供选择:
请求接口:
$router->post('cdn/upload', 'UploadController@upload'); 返回结果: { "status": true, "message": "上传成功", "data": { "path": "client_id/date/xxxxxx.jpg", "url": "https://cdn.xxxxx.cc/client_id/date/xxxxxx.jpg" } }
具体使用请参照单元测试
调用Storage
use Storage Storage::disk('qiniu')->put($filename, $file);
Resource
项目基于overtrue/laravel-filesystem-qiniu
贡献源码
如果你发现任何错误或者问题,请提交ISSUE