定制 bkwld/upchuck 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

bkwld/upchuck

Composer 安装命令:

composer require bkwld/upchuck

包简介

A simple, automatic handler of file uploads for Laravel's Eloquent models using using Flysystem.

README 文档

README

Packagist

Upchuck is a simple, automatic handler of file uploads for Laravel's Eloquent models using using Flysystem. It does not attempt to do anything besides let the developer treat file uploads like regular input fields. It does this by listening to Eloquent saving events, checking the model attribute for UploadedFile instances, pushing those files to "disk" of your choosing, and then storing the publically accessible URL in the model attribute for that input.

Installation

  1. Add to your project: composer require bkwld/upchuck:~2.0
  2. Laravel < 5.5 only Add Upchuck as a provider in your app/config/app.php's provider list: 'Bkwld\Upchuck\ServiceProvider',
  3. Publish the config: php artisan vendor:publish --provider="Bkwld\Upchuck\ServiceProvider"

Usage

Edit the disk config setting to supply configuration information for where uploads should be moved. We are using Graham Campbell's Flysystem integration for Laravel to instantiate Flysystem instances, so the configruation of the disk matches his configuration options for connections. As the comments in the config file mention, I recommend turning on caching if you are using any disk other than local. For both caching and other disk drivers, you will need to include other packages.

Then, to enable upload support for your models, use the Bkwld\Upchuck\SupportsUploads trait on your model and itemize each attribute that should support uploads via the $upload_attributes property. For example:

class Person extends Eloquent {

	// Use the trait
	use Bkwld\Upchuck\SupportsUploads;

	// Define the uploadable attributes
	protected $upload_attributes = [ 'image', 'pdf', ];

	// Since the upload handling happens via model events, it acts like a mass
	// assignment.  As such, Upchuck sets attributes via `fill()` so you can
	// control the setting.
	protected $fillable = ['image', 'pdf'];
}

Then, say you have a <input type="file" name="image"> field, you would do this from your controller:

$model = new Model;
$model->fill(Input::all())
$model->save();

You are filling the object with the Input:all() array, which includes your image data as an UploadedFile object keyed to the image attribute. When you save(), Upchuck will act on the saving event, moving the upload into the storage you've defined in the config file, and replacing the attribute value with the URL of the file.

Resizing images

If your app supports uploading files you are probably also dealing with needing to resize uploaded images. We (BKWLD) use our Croppa package to resize images using specially formatted URLs. If you are looking for an model-upload package that also resizes images, you might want to check out Stapler.

bkwld/upchuck 适用场景与选型建议

bkwld/upchuck 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 13.72k 次下载、GitHub Stars 达 22, 最近一次更新时间为 2015 年 03 月 30 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 bkwld/upchuck 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 bkwld/upchuck 我们能提供哪些服务?
定制开发 / 二次开发

基于 bkwld/upchuck 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 13.72k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 23
  • 点击次数: 20
  • 依赖项目数: 2
  • 推荐数: 1

GitHub 信息

  • Stars: 22
  • Watchers: 1
  • Forks: 4
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-03-30