chimutec/laravel-filesystem-obs

huawei cloud obs filesystem storage for laravel 5.5+

v1.0.7 2021-12-06 02:31 UTC

This package is auto-updated.

Last update: 2024-09-09 08:26:15 UTC


README

Huawei Cloud OBS storage for Laravel based on dscmall/laravel-filesystem-obs.

Requirement

  • PHP >= ^7.2
  • Laravel 5.5+

Installation

$ composer require "chimutec/laravel-filesystem-obs" -vvv

Configuration

  1. After installing the library, register the Obs\ObsServiceProvider in your config/app.php file:
  'providers' => [
      // Other service providers...
      Obs\ObsServiceProvider::class,
  ],
  1. Add a new disk to your config/filesystems.php config:
     <?php
    

return [

'disks' => [
    //...
    'obs' => [
        'driver' => 'obs',
        'key' => env('OBS_ACCESS_ID'), // <Your Huawei OBS AccessKeyId>
        'secret' => env('OBS_ACCESS_KEY'), // <Your Huawei OBS AccessKeySecret>
        'bucket' => env('OBS_BUCKET'), // <OBS bucket name>
        'endpoint' => env('OBS_ENDPOINT'), // <the endpoint of OBS, E.g: (https:// or http://).obs.cn-east-2.myhuaweicloud.com | custom domain, E.g:img.abc.com> OBS �����ڵ���Զ����ⲿ����
        'cdn_domain' => env('OBS_CDN_DOMAIN'), //<CDN domain, cdn����> ���isCNameΪtrue, getUrl���ж�cdnDomain�Ƿ��趨���������ص�url�����cdnDomainδ���ã���ʹ��endpoint������url������ʹ��cdn
        'ssl_verify' => env('OBS_SSL_VERIFY'), // <true|false> true to use 'https://' and false to use 'http://'. default is false,
        'debug' => env('APP_DEBUG'), // <true|false>
    ],
    //...
 ]

];


# Usage

$disk = Storage::disk('obs');

// create a file $disk->put('avatars/filename.jpg', $fileContents);

// check if a file exists $exists = $disk->has('file.jpg');

// get timestamp $time = $disk->lastModified('file1.jpg'); $time = $disk->getTimestamp('file1.jpg');

// copy a file $disk->copy('old/file1.jpg', 'new/file1.jpg');

// move a file $disk->move('old/file1.jpg', 'new/file1.jpg');

// get file contents $contents = $disk->read('folder/my_file.txt');

// fetch url content $file = $disk->fetch('folder/save_as.txt', $fromUrl);

// get file url $url = $disk->getUrl('folder/my_file.txt');

// get private url $url = $disk->getAdapter()->privateDownloadUrl('folder/my_file.txt');


[Full API documentation.](http://flysystem.thephpleague.com/api/)

# License

MIT