Package Data | |
---|---|
Maintainer Username: | jbernavaprah |
Maintainer Contact: | webjure@gmail.com (Jure Bernava Prah) |
Package Create Date: | 2021-05-13 |
Package Last Update: | 2021-05-24 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-17 03:07:45 |
Package Statistics | |
---|---|
Total Downloads: | 5 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 1 |
Total Forks: | 0 |
Total Open Issues: | 0 |
A laravel/lumen filesystem wrapper that use eloquent as datastore, inspired by GridFS (MongoDB)
composer install jbernavaprah/eloquent-fs
Then create the required tables on database with:
php artisan migrate
This will use the standard laravel migrations, therefore will be also used the default connection set on your project.
To use this wrapper, you need to prefix the paths with efs://
. The path will be used as id
of the file on database.
touch('efs://file.txt'); // file.txt will be ID of this file.
file_put_contents('efs://file.txt', "foobar\n");
echo file_get_contents('efs://file.txt'); // "foobar\n"
copy('efs://file.txt', 'efs://other_file.txt');
echo file_get_contents('efs://other_file.txt'); // "foobar\n"
unlink('efs://file.txt');
unlink('efs://other_file.txt');
You can also use directly the Eloquent Model shipped with EloquentFS.
use JBernavaPrah\EloquentFS\Models\FsFile;
$file = new FsFile();
$file->id = 'file.txt'; // if not provided, will generated as uuid
$file->write("foobar", $append=true); // 6
$file->read($offset =3, $length = 3); // "bar"
$file->read($offset =0, $length = 6); // "foobar"
$file->write("foobar", $append=true); // 6
$file->read(); // foobarfoobar
$file->delete(); // Delete
If you would to change the connection then on your AppServiceProvider::register()
method add:
\JBernavaPrah\EloquentFS\EloquentFS::$connection = 'different_connection';
If you would to disable the migrations, the on your AppServiceProvider::register()
method add:
\JBernavaPrah\EloquentFS\EloquentFS::$runMigrations = False;
Now you will be in charge to create and run the required migrations.
You can see those migrations on ./database/migrations
path.
Do a PR, Do all tests and I will be glad to merge it!
flock()
.ftruncate()
need to be implemented.