fabrizio / laravel-owncloud
Laravel 8 OwnCloud Filesystem
dev-master
2021-11-12 05:11 UTC
Requires
- php: ^7.2||^8.0
- fabrizio/flysystem-owncloud: >=1.0
This package is auto-updated.
Last update: 2025-03-12 12:29:33 UTC
README
Install
Via Composer
$ composer require fabrizio/laravel-owncloud
Usage
Register the service provider in your app.php config file:
// config/app.php 'providers' => [ ... League\Flysystem\OwnCloud\OwnCloudServiceProvider::class ... ];
Create a owncloud filesystem disk:
// config/filesystems.php 'disks' => [ ... 'owncloud' => [ 'driver' => 'owncloud', //example baseUri: 'https://cloud.mydomain.com/remote.php/dav/files/MyCustomUser/' 'baseUri' => 'webdav.url', //example shareApi: 'https://cloud.mydomain.com/ocs/v1.php/apps/files_sharing/api/v1/shares' 'shareApi' => 'something like...ocs/v1.php/apps/files_sharing/api/v1/shares', 'userName' => 'MyCustomUser', 'password' => 'secret' ], ... ];
Take into account about temporary urls: The expiration time is limited by dates, for example, if it expires on "2021-11-13 05:01:01", it will only take into account "2021-11-13". This limitation is inherent to owncloud.
Storage::disk('owncloud')->temporaryUrl('file.jpg', now()->addDay()); //Recognized Storage::disk('owncloud')->temporaryUrl('file.jpg', now()->addDays(2)); //Recognized Storage::disk('owncloud')->temporaryUrl('file.jpg', now()->addMinute()); //Ignored Storage::disk('owncloud')->temporaryUrl('file.jpg', now()->addMinutes(5)); //Ignored