winstor/ws-oss-storage

ws oss

安装: 6

依赖: 0

建议者: 0

安全: 0

星标: 0

关注者: 1

分支: 0

公开问题: 0

类型:项目

dev-master 2021-12-08 07:55 UTC

This package is auto-updated.

Last update: 2024-09-08 13:54:43 UTC


README

为Laravel 5提供的阿里云OSS文件系统存储适配器。您可以使用阿里云OSS就像使用Laravel Storage一样。
借鉴了一些优秀的代码,综合各方,同时做了更多优化,将会添加更多完善的接口和插件,打造Laravel最好的OSS Storage扩展

灵感来源

要求

  • Laravel 5+
  • cURL 扩展

## 安装 为了安装 AliOSS-storage,只需在 composer.json 中添加

"winstor/ws-oss-storage": "^2.1"

。然后运行 composer installcomposer update
或者您可以直接运行以下命令来安装

"composer require winstor/ws-oss-storage"

"composer remove winstor/ws-oss-storage"

然后在您的 config/app.php 中,将以下行添加到 providers 数组中

Winstor\WsOSS\WsOssServiceProvider::class,

配置

在 app/filesystems.php 中添加以下内容

'disks'=>[
    ...
    'wss' => [
            'driver'        => 'oss',
            'access_id'     => '<Your Aliyun OSS AccessKeyId>',
            'access_key'    => '<Your Aliyun OSS AccessKeySecret>',
    ],
    ...
]

然后设置 app/filesystems.php 中的默认驱动

'default' => 'wss',

好了,配置完成。现在您可以像使用Storage一样自由地使用阿里云OSS了!

用法

请参阅 Laravel文档关于Storage 或者您可以在这里学习

"repositories": { "ws-oss-storage": { "type": "path", "url": "storage/ws-oss-storage", "options": { "symlink": false } }

}

首先您必须使用 Storage 门面

use Illuminate\Support\Facades\Storage;

然后您可以使用Laravel Storage的所有API

Storage::disk('wss'); // if default filesystems driver is oss, you can skip this step

//fetch all files of specified bucket(see upond configuration)
Storage::files($directory);
Storage::allFiles($directory);

Storage::put('path/to/file/file.jpg', $contents); //first parameter is the target file path, second paramter is file content
Storage::putFile('path/to/file/file.jpg', 'local/path/to/local_file.jpg'); // upload file from local path

Storage::get('path/to/file/file.jpg'); // get the file object by path
Storage::exists('path/to/file/file.jpg'); // determine if a given file exists on the storage(OSS)
Storage::size('path/to/file/file.jpg'); // get the file size (Byte)
Storage::lastModified('path/to/file/file.jpg'); // get date of last modification

Storage::directories($directory); // Get all of the directories within a given directory
Storage::allDirectories($directory); // Get all (recursive) of the directories within a given directory

Storage::copy('old/file1.jpg', 'new/file1.jpg');
Storage::move('old/file1.jpg', 'new/file1.jpg');
Storage::rename('path/to/file1.jpg', 'path/to/file2.jpg');

Storage::prepend('file.log', 'Prepended Text'); // Prepend to a file.
Storage::append('file.log', 'Appended Text'); // Append to a file.

Storage::delete('file.jpg');
Storage::delete(['file1.jpg', 'file2.jpg']);

Storage::makeDirectory($directory); // Create a directory.
Storage::deleteDirectory($directory); // Recursively delete a directory.It will delete all files within a given directory, SO Use with caution please.

// upgrade logs
// new plugin for v2.0 version
Storage::putRemoteFile('target/path/to/file/jacob.jpg', 'http://example.com/jacob.jpg'); //upload remote file to storage by remote url
// new function for v2.0.1 version
Storage::url('path/to/img.jpg') // get the file url

test