Skip to content

rezaei121/yii2-flysystem-wrapper

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

yii2 flysystem wrapper

yii2 flysystem wrapper. Flysystem is a filesystem abstraction which allows you to easily swap out a local filesystem for a remote one.

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist developit/yii2-flysystem-wrapper "*"

or add

"developit/yii2-flysystem-wrapper": "*"

to the require section of your composer.json file.

then up migrations

php yii migrate/up --migrationPath=vendor/developit/yii2-flysystem-wrapper/migrations

Usage/Features

Once the extension is installed, simply use it in your code by :

add "fs" to components

'fs' => [
    'class' => 'Integral\Flysystem\Adapter\PDOAdapter', // or other adapters
    'tableName' => 'file_storage'
],

upload sample code

<?php
$model = new MyModel();
if (Yii::$app->request->isPost) {
    $model->files = UploadedFile::getInstancesByName('files');
    if ($model->validate()) {
        $data = [
            'path' => '@common/files',
            'context' => '025',
            'version' => '1',
            'metadata' => ['meta' => 1, 'meta2' => 2, 'meta3' => 3],
        ];
        return FlysystemWrapper::upload($model->files, $data);
    }
        return $model;
}
?>

note: in model file rule "maxFiles" is required

<?php
[['files'], 'file', 'skipOnEmpty' => false, 'maxFiles' => 10, 'extensions' => 'txt, jpg']
?>

get a file by hash key

<?php
$hashKey = 'XXX';
return FlysystemWrapper::getByHash($hashKey);
?>

note: delete method is logical

search file(s) by metadatas or file model spesial attributes

<?php
$params = ['meta1' => 1, 'version' => 2];
return FlysystemWrapper::searchByParams($params);
?>

About

yii2 interface for manager and powering fly system

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%