cyneek/yii2-upload-behavior Upload behavior for Yii 2

upload

Yii2 File Upload Behavior

File or Image upload behavior for Yii2 applications

What's File upload behavior?

This module changes the route system definition of Yii2 in order to, instead of having to define the routes in the config file of the application now will be possible to make a series of files that hold the routes that the user will define for his web. This module lets the calling to a series of methods that will define the system routes in a more intuitive way that the basic Yii2 system getting it's inspiration from the routing system defined by Laravel.

Developed by Joseba Juániz (@Patroklo)

Minimum requirements

  • Yii2
  • Php 5.4 or above

License

This is free software. It is released under the terms of the following BSD License.

Copyright (c) 2015, by Cyneek All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  3. Neither the name of Cyneek nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Instalation

  • Install Yii 2
  • Install package via composer "cyneek/yii2-upload-behavior": "*"
  • Update config file 'config/web.php'
...
'modules' => [
    'uploadBehavior' => [
        'class' => 'cyneek\yii2\uploadBehavior\Module',
    ],
]
...
  • Execute the migration file

    • php yii migrate --migrationPath=@vendor/cyneek/yii2-upload-behavior/migrations
  • Profit!

Definition

UploadBehavior

This behavior will take charge of uploading files, while the rules of the form should be stored in the parent model holding this behavior.

  • attribute (required) The attribute that will link the model with the file we want to upload.

  • scenarios (default: "default", "insert", "update", "delete") Scenarios in which the upload will take place.

  • fileActionOnSave (default: insert)(required) Action that will take place when uploading a file. Valid actions:

    • insert Will always insert new files when there's a new upload.
    • update Will overwrite the old file with the new file using the same name.
    • delete Will delete the old file and insert a new file in the system.
  • path The base path or path alias to the directory in which to save files.

  • instanceByName Getting file instance by name.

  • multiUpload (default: false) If true, the behavior will check for multiple uploaded files instead of only one.

UploadImageBehavior

It has the basic UploadBehavior attributes and a group of image related additional functions:

  • thumbs Array list with the thumbnail properties and actions

        [
            'thumbName' => [
                  ['action' => 'crop', 'width' => 200, 'height' => 200, 'quality' => 90],
                  ...
             ]
         ]
  • thumbPath Path where the thumbs will be moved.

  • imageActions Describes the actions that will be made to the original image

            [
             ['action' => 'crop', 'width' => 200, 'height' => 200, 'quality' => 90]
            ]

 Valid image actions

The image actions use the yii\image class by default.

  • crop Needs a width (int), height (int) and start (int[x,y]) values. By default start will be [0,0].

  • thumbnail width (int), height (int) and mode (string) values. The valid modes are (ManipulatorInterface::THUMBNAIL_INSET or ManipulatorInterface::THUMBNAIL_OUTBOUND).

 Usage

    1. Add new public fields for each different file you are going to link into the method.

    public $file;
    public $avatar;
    1. Add the needed behaviors in the model's method. One for each file type that will be linked into the model.
    function behaviors()
    {
        return [
            [
                'class' => UploadBehavior::className(),
                'attribute' => 'file',
                'scenarios' => ['default'],
                'fileActionOnSave' => 'delete'
            ],
            [
                'class' => UploadImageBehavior::className(),
                'attribute' => 'avatar',
                'scnearios' => ['default'],
                'fileActionOnSave' => 'delete'
                'imageActions' => [['action' => 'thumbnail', 'width' => '900', 'height' => '400']]
            ],
        ];
    }
    1. Add the file rules into the parent model method:

    public function rules()
    {
        return [
            ...
            [['file', 'avatar'], 'file', 'on' => ['insert', 'update', 'default']],
            ['file', 'required', 'on' => ['insert']],
            ['avatar', 'file', 'extensions' => ['jpg'], 'maxSize' => 1020*1024]
            ...
        ];
    }
    1. Insert in the CRUD forms the upload fields linked with the method's properties.
        <?= $form->field($model, 'file')->fileInput() ?>
        <?= $form->field($model, 'avatar')->fileInput() ?>
    1. When saving the model data, the behaviors will upload the file and store all the data automatically. Also, when deleting a method object, it will delete all the files linked to it.

File operations

Accessing one file

    1. Load a model object
    $object = MethodClass::find()->where(['id' => 1])->one();
    1. Call the loadFile method with it's appropriate attribute
    $file = $object->linkedFile('file');

Accessing multiple files

    1. Load a model object
    $object = MethodClass::find()->where(['id' => 1])->one();
    1. Call the loadFiles method with it's appropriate attribute
    $fileList = $object->linkedFiles('file');

Delete a specific linked file

    1. Load a model object
    $object = MethodClass::find()->where(['id' => 1])->one();
    1. Load a specific file
    $file = $object->linkedFile('file');
  • 3 Call the deleteFiles method with it's attribute and file object
    $object->deleteFiles('file', $file);

Delete all linked files

    1. Load a model object
    $object = MethodClass::find()->where(['id' => 1])->one();
    1. Call the deleteFiles method with it's appropriate attribute
    $object->deleteFiles('file');

Get a thumbnail from an image

    1. Load a model object
    $object = MethodClass::find()->where(['id' => 1])->one();
    1. Call the loadFile method with it's appropriate attribute
    $file = $object->linkedFile('file');
    1. Call the getChild method with it's specific thumbnail name
    $thumbnail = $file->getChild('thumb'); 

Get multiple thumbnails from an image

    1. Load a model object
    $object = MethodClass::find()->where(['id' => 1])->one();
    1. Call the loadFile method with it's appropriate attribute
    $file = $object->linkedFile('file');
    1. Call the getChildren method with, optionally, it's specific thumbnail name
    $thumbnailList = $file->getChildren(); 

Statistics

Downloads
GitHub Stars
GitHub Forks

Releases

Comments



0.0.8 is the latest of 7 releases



BSD license
Stats
2 github stars & 4 github forks
0 downloads in the last day
0 downloads in the last 30 days
213 total downloads