2017 © Pedro Peláez
 

library upchuck

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

image

bkwld/upchuck

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

  • Friday, June 1, 2018
  • by weotch
  • Repository
  • 1 Watchers
  • 21 Stars
  • 5,881 Installations
  • PHP
  • 2 Dependents
  • 1 Suggesters
  • 1 Forks
  • 0 Open issues
  • 23 Versions
  • 4 % Grown

The README.md

Upchuck

Packagist, (*1)

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., (*2)

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., (*3)

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:, (*4)

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:, (*5)

$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., (*6)

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., (*7)

The Versions

01/06 2018

dev-master

9999999-dev

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

  Sources   Download

MIT

The Requires

 

by Robert Reinhard

01/06 2018

2.6.0

2.6.0.0

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

  Sources   Download

MIT

The Requires

 

by Robert Reinhard

23/02 2018

2.5.1

2.5.1.0

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

  Sources   Download

MIT

The Requires

 

by Robert Reinhard

17/01 2018

2.5.0

2.5.0.0

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

  Sources   Download

MIT

The Requires

 

by Robert Reinhard

29/11 2017

2.4.1

2.4.1.0

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

  Sources   Download

MIT

The Requires

 

by Robert Reinhard

29/11 2017

2.4.0

2.4.0.0

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

  Sources   Download

MIT

The Requires

 

by Robert Reinhard

13/09 2017

2.3.1

2.3.1.0

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

  Sources   Download

MIT

The Requires

 

by Robert Reinhard

13/09 2017

2.3.0

2.3.0.0

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

  Sources   Download

MIT

The Requires

 

by Robert Reinhard

12/09 2017

2.2.2

2.2.2.0

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

  Sources   Download

MIT

The Requires

 

by Robert Reinhard

11/09 2017

2.2.1

2.2.1.0

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

  Sources   Download

MIT

The Requires

 

by Robert Reinhard

11/09 2017

2.2.0

2.2.0.0

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

  Sources   Download

MIT

The Requires

 

by Robert Reinhard

10/04 2017

2.1.0

2.1.0.0

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

  Sources   Download

MIT

The Requires

 

by Robert Reinhard

24/08 2016

1.x-dev

1.9999999.9999999.9999999-dev

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

  Sources   Download

proprietary

The Requires

 

The Development Requires

by Robert Reinhard

24/08 2016

1.2.1

1.2.1.0

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

  Sources   Download

proprietary

The Requires

 

The Development Requires

by Robert Reinhard

24/08 2016

2.0.1

2.0.1.0

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

  Sources   Download

MIT

The Requires

 

by Robert Reinhard

24/08 2016

1.2.0

1.2.0.0

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

  Sources   Download

proprietary

The Requires

 

The Development Requires

by Robert Reinhard

22/01 2016

2.0.0

2.0.0.0

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

  Sources   Download

MIT

The Requires

 

by Robert Reinhard

11/07 2015

1.1.4

1.1.4.0

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

  Sources   Download

proprietary

The Requires

 

The Development Requires

by Robert Reinhard

16/06 2015

1.1.3

1.1.3.0

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

  Sources   Download

proprietary

The Requires

 

The Development Requires

by Robert Reinhard

17/04 2015

1.1.2

1.1.2.0

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

  Sources   Download

proprietary

The Requires

 

The Development Requires

by Robert Reinhard

14/04 2015

1.0.0

1.0.0.0

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

  Sources   Download

proprietary

The Requires

 

The Development Requires

by Robert Reinhard

14/04 2015

1.1.1

1.1.1.0

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

  Sources   Download

proprietary

The Requires

 

The Development Requires

by Robert Reinhard

09/04 2015

1.1.0

1.1.0.0

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

  Sources   Download

proprietary

The Requires

 

The Development Requires

by Robert Reinhard