mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
72 lines
2.1 KiB
PHP
72 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Events\SeedBoxRecordUpdated;
|
|
use App\Events\TorrentCreated;
|
|
use App\Events\TorrentDeleted;
|
|
use App\Events\TorrentUpdated;
|
|
use App\Events\UserDeleted;
|
|
use App\Events\UserDisabled;
|
|
use App\Listeners\ClearTorrentCache;
|
|
use App\Listeners\DeductUserBonusWhenTorrentDeleted;
|
|
use App\Listeners\FetchTorrentImdb;
|
|
use App\Listeners\FetchTorrentPTGen;
|
|
use App\Listeners\RemoveOauthTokens;
|
|
use App\Listeners\RemoveSeedBoxRecordCache;
|
|
use App\Listeners\SendEmailNotificationWhenTorrentCreated;
|
|
use App\Listeners\SyncTorrentToElasticsearch;
|
|
use App\Listeners\SyncTorrentToMeilisearch;
|
|
use App\Listeners\TestTorrentUpdated;
|
|
use Illuminate\Auth\Events\Registered;
|
|
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
|
|
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
|
|
use Illuminate\Support\Facades\Event;
|
|
|
|
class EventServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* The event listener mappings for the application.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $listen = [
|
|
Registered::class => [
|
|
SendEmailVerificationNotification::class,
|
|
],
|
|
SeedBoxRecordUpdated::class => [
|
|
RemoveSeedBoxRecordCache::class,
|
|
],
|
|
TorrentUpdated::class => [
|
|
FetchTorrentImdb::class,
|
|
FetchTorrentPTGen::class,
|
|
SyncTorrentToElasticsearch::class,
|
|
SyncTorrentToMeilisearch::class,
|
|
],
|
|
TorrentCreated::class => [
|
|
FetchTorrentImdb::class,
|
|
FetchTorrentPTGen::class,
|
|
SyncTorrentToElasticsearch::class,
|
|
SyncTorrentToMeilisearch::class,
|
|
SendEmailNotificationWhenTorrentCreated::class,
|
|
ClearTorrentCache::class,
|
|
],
|
|
TorrentDeleted::class => [
|
|
DeductUserBonusWhenTorrentDeleted::class,
|
|
],
|
|
UserDisabled::class => [
|
|
RemoveOauthTokens::class,
|
|
],
|
|
];
|
|
|
|
/**
|
|
* Register any events for your application.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
//
|
|
}
|
|
}
|