2015-12-13 04:42:28 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Providers;
|
|
|
|
|
|
|
|
use App\Models\Album;
|
2016-03-22 08:22:39 +00:00
|
|
|
use App\Models\File;
|
2016-03-23 13:23:13 +00:00
|
|
|
use App\Models\Song;
|
2017-06-03 16:35:08 +00:00
|
|
|
use Exception;
|
2015-12-13 04:42:28 +00:00
|
|
|
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
|
|
|
|
|
|
|
|
class EventServiceProvider extends ServiceProvider
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The event listener mappings for the application.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $listen = [
|
2015-12-21 13:49:00 +00:00
|
|
|
'App\Events\SongLikeToggled' => [
|
|
|
|
'App\Listeners\LoveTrackOnLastfm',
|
2015-12-13 04:42:28 +00:00
|
|
|
],
|
2016-02-02 07:47:00 +00:00
|
|
|
|
2015-12-23 06:26:16 +00:00
|
|
|
'App\Events\SongStartedPlaying' => [
|
|
|
|
'App\Listeners\UpdateLastfmNowPlaying',
|
|
|
|
],
|
2016-02-02 07:47:00 +00:00
|
|
|
|
|
|
|
'App\Events\LibraryChanged' => [
|
|
|
|
'App\Listeners\TidyLibrary',
|
2017-01-06 03:04:08 +00:00
|
|
|
'App\Listeners\ClearMediaCache',
|
2016-02-02 07:47:00 +00:00
|
|
|
],
|
2015-12-13 04:42:28 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register any other events for your application.
|
|
|
|
*/
|
2016-09-26 06:30:00 +00:00
|
|
|
public function boot()
|
2015-12-13 04:42:28 +00:00
|
|
|
{
|
2016-09-26 06:30:00 +00:00
|
|
|
parent::boot();
|
2015-12-13 04:42:28 +00:00
|
|
|
|
|
|
|
// Generate a unique hash for a song from its path to be the ID
|
|
|
|
Song::creating(function ($song) {
|
2016-03-22 08:22:39 +00:00
|
|
|
$song->id = File::getHash($song->path);
|
2015-12-13 04:42:28 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// Remove the cover file if the album is deleted
|
|
|
|
Album::deleted(function ($album) {
|
|
|
|
if ($album->hasCover) {
|
2017-06-03 16:35:08 +00:00
|
|
|
try {
|
|
|
|
unlink(app()->publicPath()."/public/img/covers/{$album->cover}");
|
|
|
|
} catch (Exception $e) {}
|
2015-12-13 04:42:28 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|