vormkracht10/flysystem-uploadcare 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

vormkracht10/flysystem-uploadcare

最新稳定版本:v0.5.0

Composer 安装命令:

composer require vormkracht10/flysystem-uploadcare

包简介

Flysystem driver for Uploadcare for Laravel.

README 文档

README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Flysystem adapter for Uploadcare with support for Laravel v9+ including Laravel 12.

Installation

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 and set your public/secret keys in your .env

UPLOADCARE_PUBLIC_KEY=
UPLOADCARE_SECRET_KEY=
FILESYSTEM_DISK=uploadcare

Examples

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

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.

统计信息

  • 总下载量: 32.47k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 18
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 18
  • Watchers: 2
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-03-27