sparemusic/resumable-js
Composer 安装命令:
composer require sparemusic/resumable-js
包简介
README 文档
README
Installation
This package can be used in Laravel 5.4 or higher.
You can install the package via composer:
composer require sparemusic/resumable-js
In Laravel 5.5 the service provider will automatically be registered. In older versions of Laravel, add the service provider in the config/app.php file:
'providers' => [ // ... SpareMusic\ResumableJS\Providers\ResumableServiceProvider::class, ];
Usage
Resumable Request
To create a resumable request class, use the make:resumable-request Artisan CLI command:
php artisan make:resumable-request SomeUpload
The generated class will be placed in the app/Http/ResumableRequests directory. If this directory does not exist, it will be created when you run the make:resumable-request command.
Inside of this class there will be a setup method which will setup the upload.
/** * Setup resumable instance */ public function setup() { $chunkPath = Storage::disk('local')->path('chunks'); $uploadPath = Storage::disk('local')->path('uploads'); $this->setChunkPath($chunkPath) ->setUploadPath($uploadPath) ->setValidator(function (UploadedFile $file, ResumableParameters $parameters) { return true; }); }
The $chunkPath variable is the directory to store all the chunks of the uploaded file (the directory will be created if it doesn't already exist).
The $uploadPath variable is the directory to store the completed upload (the directory will be created if it doesn't already exist).
The validator validates the uploaded file. If it returns false, it cancels the upload. Otherwise, it continues running.
Routing
To create the routes needed for a resumable upload, you can use the Route::resumable() method.
Route::resumable("/upload", "UploadController@upload");
You could also do this manually.
Route::get("/upload", "UploadController@upload"); Route::post("/upload", "UploadController@upload");
Controller
All you need to do is type-hint the resumable request on your controller method. This will setup up the resumable upload:
public function upload(SomeUpload $upload) { $upload->process(); if ($upload->isComplete()) { // File uploaded, do something with file // $upload->getFilename(true); filename with extension // $upload->getFilepath(); full filepath } return $upload->respond(); }
sparemusic/resumable-js 适用场景与选型建议
sparemusic/resumable-js 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.44k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2018 年 05 月 31 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 sparemusic/resumable-js 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 sparemusic/resumable-js 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 1.44k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 6
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-05-31