biigle/flysystem-aruna
最新稳定版本:v1.0
Composer 安装命令:
composer require biigle/flysystem-aruna
包简介
Flysystem adapter for the Aruna Object Storage.
README 文档
README
⚠️ This package is archived because AOS can now be used via the S3 protocol only.
Flysystem adapter for the Aruna Object Storage.
This adapter performs most of the operations via S3. Only listContents requires an HTTP client and collection ID. Once the ListObjectV2 S3 operation is implemented in Aruna, this adapter can be deprecated and the S3 adapter can be used directly.
Installation
composer require biigle/flysystem-aruna
Usage
use Aws\S3\S3Client; use Biigle\Flysystem\Aruna\ArunaAdapter; use GuzzleHttp\Client; # Scheme: <latest or semver>.<collection name>.<project name> $bucket = 'latest.collection-name.project-name'; $collectionId = 'MYARUNACOLLECTIONULID'; $s3Client = new S3Client([ 'credentials' => [ 'key' => 'mykey', 'secret' => 'mysecret', ], 'endpoint' => "https://{$bucket}.data.gi.aruna-storage.org", // Keep as-is. 'region' => '', 'version' => 'latest', 'bucket_endpoint' => true, ]); $httpClient = new Client([ 'base_uri' => 'https://api.aruna-storage.org', 'headers' => [ 'Authorization' => 'Bearer my-aruna-token-secret', ], ]); $adapter = new ArunaAdapter($s3Client, $bucket, $httpClient, $collectionId); $exists = $adapter->fileExists('path/to/file.jpg'); var_dump($exists); // bool(true);
Funding
This work was supported by the German Research Foundation (DFG) within the project “Establishment of the National Research Data Infrastructure (NFDI)” in the consortium NFDI4Biodiversity (project number 442032008).
统计信息
- 总下载量: 1.2k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-05-17