mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
45 lines
1.2 KiB
PHP
45 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Facades\Media;
|
|
use App\Models\Album;
|
|
use App\Models\Song;
|
|
use Illuminate\Contracts\Events\Dispatcher as DispatcherContract;
|
|
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
|
|
|
|
class EventServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* The event listener mappings for the application.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $listen = [
|
|
'App\Events\SomeEvent' => [
|
|
'App\Listeners\EventListener',
|
|
],
|
|
];
|
|
|
|
/**
|
|
* Register any other events for your application.
|
|
*
|
|
* @param \Illuminate\Contracts\Events\Dispatcher $events
|
|
*/
|
|
public function boot(DispatcherContract $events)
|
|
{
|
|
parent::boot($events);
|
|
|
|
// Generate a unique hash for a song from its path to be the ID
|
|
Song::creating(function ($song) {
|
|
$song->id = Media::getHash($song->path);
|
|
});
|
|
|
|
// Remove the cover file if the album is deleted
|
|
Album::deleted(function ($album) {
|
|
if ($album->hasCover) {
|
|
@unlink(app()->publicPath().'/public/img/covers/'.$album->cover);
|
|
}
|
|
});
|
|
}
|
|
}
|