Skip to content

Commit d53661d

Browse files
committedDec 18, 2020
dropbox backup
1 parent 174ea44 commit d53661d

File tree

6 files changed

+228
-2
lines changed

6 files changed

+228
-2
lines changed
 
+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<?php
2+
3+
namespace App\Providers;
4+
5+
use Illuminate\Support\Facades\Storage;
6+
use Illuminate\Support\ServiceProvider;
7+
use League\Flysystem\Filesystem;
8+
use Spatie\Dropbox\Client as DropboxClient;
9+
use Spatie\FlysystemDropbox\DropboxAdapter;
10+
11+
class DropboxServiceProvider extends ServiceProvider
12+
{
13+
/**
14+
* Register services.
15+
*
16+
* @return void
17+
*/
18+
public function register()
19+
{
20+
//
21+
}
22+
23+
/**
24+
* Bootstrap services.
25+
*
26+
* @return void
27+
*/
28+
public function boot()
29+
{
30+
Storage::extend('dropbox', function ($app, $config) {
31+
$client = new DropboxClient(
32+
$config['authorization_token']
33+
);
34+
35+
return new Filesystem(new DropboxAdapter($client));
36+
});
37+
}
38+
}

‎composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"laravel/framework": "^8.12",
1717
"laravel/tinker": "^2.5",
1818
"nao-pon/flysystem-google-drive": "~1.1",
19+
"spatie/flysystem-dropbox": "^1.2",
1920
"spatie/laravel-backup": "^6.13"
2021
},
2122
"require-dev": {

‎composer.lock

+181-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎config/app.php

+1
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@
174174
App\Providers\RouteServiceProvider::class,
175175
App\Providers\FortifyServiceProvider::class,
176176
App\Providers\GoogleDriveServiceProvider::class,
177+
App\Providers\DropboxServiceProvider::class,
177178
],
178179

179180
/*

‎config/backup.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@
9898
*/
9999
'disks' => [
100100
'backup',
101-
'google_backups'
101+
'google_backups',
102+
'dropbox'
102103
],
103104
],
104105

‎config/filesystems.php

+5
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,11 @@
8383
'refreshToken' => env('GOOGLE_DRIVE_REFRESH_TOKEN'),
8484
'folderId' => env('GOOGLE_DRIVE_BACKUP_FOLDER_ID'),
8585
],
86+
87+
'dropbox' => [
88+
'driver' => 'dropbox',
89+
'authorization_token' => env('DROPBOX_AUTH_TOKEN'),
90+
],
8691
],
8792

8893
/*

0 commit comments

Comments
 (0)