Flysystem adapter for Uploadcare with support for Laravel v9+.
You can install the package via composer:
composer require vormkracht10/flysystem-uploadcare
Add the following config to the disk
array in config/filesystems.php
[
'uploadcare' => [
'driver' => 'uploadcare',
'public' => env('UPLOADCARE_PUBLIC_KEY'),
'secret' => env('UPLOADCARE_SECRET_KEY'),
'cdn' => env('UPLOADCARE_CDN') // Default https://ucarecdn.com
]
]
Then set the FILESYSTEM_DISK
to uploadcare
in your .env
FILESYSTEM_DISK=uploadcare
Please note: Since adding files to uploadcare always returns a unique id that will be used to retrieve files you might wanna use the *GetUuid()
function(s) for writing files.
$uuid = Storage::disk('uploadcare')->putGetUuid('example.txt', 'My notes.');
$uuid = Storage::disk('uploadcare')->putFileGetUuid('files', new File('/var/www/uploadcare-app/routes/newcontent.txt'));
$uuid = Storage::disk('uploadcare')->putFileAsGetUuid('files', new File('/var/www/uploadcare-app/routes/newcontent.txt'), 'my-awesome-name.txt');
Get the content of a file
$contents = Storage::disk('uploadcare')->get('<uuid>');
Deleting a file:
Storage::disk('uploadcare')->delete('<uuid>');
Getting the mimetype of a file
$mimeType = Storage::disk('uploadcare')->mimeType('<uuid>');
Get the filesize of a file
$bytes = Storage::disk('uploadcare')->filesize('<uuid>');
Get the original filename
$info = Storage::disk('uploadcare')->fileInfo($result[0]);
$filename = $info->extraMetadata()['originalFilename'];
Get a list of files
Directories in uploadcare are stored with an "~"-sign at the end of a uuid. Getting files from a directory could be retreived as follow:
$files = Storage::disk('uploadcare')->files('0123a456-a0bc-0a1b-0ab1-0a1234a5b6c7~');
foreach ($files as $uuid) {
echo 'https://ucarecdn.com/' . $uuid .'<br />';
}
Working with images? See github.com/vormkracht10/php-uploadcare-transformations
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.