mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
45 lines
1.1 KiB
PHP
45 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use Illuminate\Support\Facades\Storage;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class GoogleDriveServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Bootstrap the application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
Storage::extend('google_drive', function($app, $config) {
|
|
$client = new \Google_Client();
|
|
$client->setClientId($config['clientId']);
|
|
$client->setClientSecret($config['clientSecret']);
|
|
$client->refreshToken($config['refreshToken']);
|
|
$service = new \Google_Service_Drive($client);
|
|
|
|
$options = [];
|
|
if(isset($config['teamDriveId'])) {
|
|
$options['teamDriveId'] = $config['teamDriveId'];
|
|
}
|
|
|
|
$adapter = new GoogleDriveAdapter($service, $config['folderId'], $options);
|
|
|
|
return new \League\Flysystem\Filesystem($adapter);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Register the application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
//
|
|
}
|
|
}
|