koel/app/Providers/EventServiceProvider.php
2016-09-26 14:30:00 +08:00

51 lines
1.3 KiB
PHP

<?php
namespace App\Providers;
use App\Models\Album;
use App\Models\File;
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\SongLikeToggled' => [
'App\Listeners\LoveTrackOnLastfm',
],
'App\Events\SongStartedPlaying' => [
'App\Listeners\UpdateLastfmNowPlaying',
],
'App\Events\LibraryChanged' => [
'App\Listeners\TidyLibrary',
],
];
/**
* Register any other events for your application.
*/
public function boot()
{
parent::boot();
// Generate a unique hash for a song from its path to be the ID
Song::creating(function ($song) {
$song->id = File::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);
}
});
}
}