35 lines
754 B
PHP
35 lines
754 B
PHP
|
|
<?php namespace PanaKour\Backup;
|
||
|
|
|
||
|
|
use Storage;
|
||
|
|
use League\Flysystem\Filesystem;
|
||
|
|
use Spatie\Dropbox\Client as DropboxClient;
|
||
|
|
use Illuminate\Support\ServiceProvider;
|
||
|
|
use Spatie\FlysystemDropbox\DropboxAdapter;
|
||
|
|
|
||
|
|
class DropboxServiceProvider extends ServiceProvider
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* Perform post-registration booting of services.
|
||
|
|
*
|
||
|
|
* @return void
|
||
|
|
*/
|
||
|
|
public function boot()
|
||
|
|
{
|
||
|
|
Storage::extend('dropbox', function ($app, $config) {
|
||
|
|
$client = new DropboxClient($config['authorizationToken']);
|
||
|
|
|
||
|
|
return new Filesystem(new DropboxAdapter($client));
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Register bindings in the container.
|
||
|
|
*
|
||
|
|
* @return void
|
||
|
|
*/
|
||
|
|
public function register()
|
||
|
|
{
|
||
|
|
//
|
||
|
|
}
|
||
|
|
}
|