mirror of
https://github.com/koel/koel
synced 2024-11-12 23:47:09 +00:00
35 lines
1.1 KiB
PHP
35 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Services\SongStorages\DropboxStorage;
|
|
use App\Services\SongStorages\LocalStorage;
|
|
use App\Services\SongStorages\S3CompatibleStorage;
|
|
use App\Services\SongStorages\SftpStorage;
|
|
use App\Services\SongStorages\SongStorage;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class SongStorageServiceProvider extends ServiceProvider
|
|
{
|
|
public function register(): void
|
|
{
|
|
$this->app->bind(SongStorage::class, function () {
|
|
$concrete = match (config('koel.storage_driver')) {
|
|
's3' => S3CompatibleStorage::class,
|
|
'dropbox' => DropboxStorage::class,
|
|
'sftp' => SftpStorage::class,
|
|
default => LocalStorage::class,
|
|
};
|
|
|
|
return $this->app->make($concrete);
|
|
});
|
|
|
|
$this->app->when(S3CompatibleStorage::class)
|
|
->needs('$bucket')
|
|
->giveConfig('filesystems.disks.s3.bucket');
|
|
|
|
$this->app->when(DropboxStorage::class)
|
|
->needs('$config')
|
|
->giveConfig('filesystems.disks.dropbox');
|
|
}
|
|
}
|