mirror of
https://github.com/koel/koel
synced 2024-11-14 16:37:28 +00:00
65 lines
2.2 KiB
PHP
65 lines
2.2 KiB
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Services\Contracts\MusicEncyclopedia;
|
|
use App\Services\LastfmService;
|
|
use App\Services\License\Contracts\LicenseServiceInterface;
|
|
use App\Services\LicenseService;
|
|
use App\Services\NullMusicEncyclopedia;
|
|
use App\Services\SpotifyService;
|
|
use Illuminate\Database\DatabaseManager;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Schema\Builder;
|
|
use Illuminate\Database\SQLiteConnection;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
use Illuminate\Support\ServiceProvider;
|
|
use SpotifyWebAPI\Session as SpotifySession;
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Bootstrap any application services.
|
|
*/
|
|
public function boot(Builder $schema, DatabaseManager $db): void
|
|
{
|
|
// Fix utf8mb4-related error starting from Laravel 5.4
|
|
$schema->defaultStringLength(191);
|
|
|
|
Model::preventLazyLoading(!app()->isProduction());
|
|
|
|
// Enable on delete cascade for sqlite connections
|
|
if ($db->connection() instanceof SQLiteConnection) {
|
|
$db->statement($db->raw('PRAGMA foreign_keys = ON')->getValue($db->getQueryGrammar()));
|
|
}
|
|
|
|
// disable wrapping JSON resource in a `data` key
|
|
JsonResource::withoutWrapping();
|
|
|
|
$this->app->bind(SpotifySession::class, static function () {
|
|
return SpotifyService::enabled()
|
|
? new SpotifySession(config('koel.spotify.client_id'), config('koel.spotify.client_secret'))
|
|
: null;
|
|
});
|
|
|
|
$this->app->bind(MusicEncyclopedia::class, function () {
|
|
return $this->app->get(LastfmService::enabled() ? LastfmService::class : NullMusicEncyclopedia::class);
|
|
});
|
|
|
|
$this->app->bind(LicenseServiceInterface::class, LicenseService::class);
|
|
|
|
$this->app->when(LicenseService::class)
|
|
->needs('$hashSalt')
|
|
->give(config('app.key'));
|
|
}
|
|
|
|
/**
|
|
* Register any application services.
|
|
*/
|
|
public function register(): void
|
|
{
|
|
if ($this->app->environment() !== 'production' && class_exists('Laravel\Tinker\TinkerServiceProvider')) {
|
|
$this->app->register('Laravel\Tinker\TinkerServiceProvider');
|
|
}
|
|
}
|
|
}
|