2015-12-13 04:42:28 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Providers;
|
|
|
|
|
2018-08-19 09:05:33 +00:00
|
|
|
use App\Events\AlbumInformationFetched;
|
|
|
|
use App\Events\ArtistInformationFetched;
|
|
|
|
use App\Events\LibraryChanged;
|
|
|
|
use App\Events\SongLikeToggled;
|
|
|
|
use App\Events\SongStartedPlaying;
|
|
|
|
use App\Listeners\ClearMediaCache;
|
|
|
|
use App\Listeners\DownloadAlbumCover;
|
|
|
|
use App\Listeners\DownloadArtistImage;
|
|
|
|
use App\Listeners\LoveTrackOnLastfm;
|
|
|
|
use App\Listeners\TidyLibrary;
|
|
|
|
use App\Listeners\UpdateLastfmNowPlaying;
|
2015-12-13 04:42:28 +00:00
|
|
|
use App\Models\Album;
|
2016-03-23 13:23:13 +00:00
|
|
|
use App\Models\Song;
|
2018-08-29 07:58:46 +00:00
|
|
|
use App\Observers\AlbumObserver;
|
|
|
|
use App\Observers\SongObserver;
|
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 = [
|
2018-08-19 09:05:33 +00:00
|
|
|
SongLikeToggled::class => [
|
|
|
|
LoveTrackOnLastfm::class,
|
2015-12-13 04:42:28 +00:00
|
|
|
],
|
2016-02-02 07:47:00 +00:00
|
|
|
|
2018-08-19 09:05:33 +00:00
|
|
|
SongStartedPlaying::class => [
|
|
|
|
UpdateLastfmNowPlaying::class,
|
2015-12-23 06:26:16 +00:00
|
|
|
],
|
2016-02-02 07:47:00 +00:00
|
|
|
|
2018-08-19 09:05:33 +00:00
|
|
|
LibraryChanged::class => [
|
|
|
|
TidyLibrary::class,
|
|
|
|
ClearMediaCache::class,
|
|
|
|
],
|
|
|
|
|
|
|
|
AlbumInformationFetched::class => [
|
|
|
|
DownloadAlbumCover::class,
|
|
|
|
],
|
|
|
|
|
|
|
|
ArtistInformationFetched::class => [
|
|
|
|
DownloadArtistImage::class,
|
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
|
|
|
|
2018-08-29 07:58:46 +00:00
|
|
|
Song::observe(SongObserver::class);
|
|
|
|
Album::observe(AlbumObserver::class);
|
2015-12-13 04:42:28 +00:00
|
|
|
}
|
|
|
|
}
|