mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-29 18:18:56 +02:00
83 lines
1.8 KiB
PHP
83 lines
1.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Events\Wiki\Studio;
|
|
|
|
use App\Events\Base\Wiki\WikiDeletedEvent;
|
|
use App\Filament\Resources\Wiki\Studio as StudioFilament;
|
|
use App\Models\Wiki\Studio;
|
|
use App\Nova\Resources\Wiki\Studio as StudioResource;
|
|
|
|
/**
|
|
* Class StudioDeleted.
|
|
*
|
|
* @extends WikiDeletedEvent<Studio>
|
|
*/
|
|
class StudioDeleted extends WikiDeletedEvent
|
|
{
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @param Studio $studio
|
|
*/
|
|
public function __construct(Studio $studio)
|
|
{
|
|
parent::__construct($studio);
|
|
}
|
|
|
|
/**
|
|
* Get the model that has fired this event.
|
|
*
|
|
* @return Studio
|
|
*/
|
|
public function getModel(): Studio
|
|
{
|
|
return $this->model;
|
|
}
|
|
|
|
/**
|
|
* Get the description for the Discord message payload.
|
|
*
|
|
* @return string
|
|
*/
|
|
protected function getDiscordMessageDescription(): string
|
|
{
|
|
return "Studio '**{$this->getModel()->getName()}**' has been deleted.";
|
|
}
|
|
|
|
/**
|
|
* Get the message for the nova notification.
|
|
*
|
|
* @return string
|
|
*/
|
|
protected function getNotificationMessage(): string
|
|
{
|
|
return "Studio '{$this->getModel()->getName()}' has been deleted. It will be automatically pruned in one week. Please review.";
|
|
}
|
|
|
|
/**
|
|
* Get the URL for the nova notification.
|
|
*
|
|
* @return string
|
|
*/
|
|
protected function getNovaNotificationUrl(): string
|
|
{
|
|
$uriKey = StudioResource::uriKey();
|
|
|
|
return "/resources/$uriKey/{$this->getModel()->getKey()}";
|
|
}
|
|
|
|
/**
|
|
* Get the URL for the Filament notification.
|
|
*
|
|
* @return string
|
|
*/
|
|
protected function getFilamentNotificationUrl(): string
|
|
{
|
|
$uriKey = StudioFilament::getRecordSlug();
|
|
|
|
return "/resources/$uriKey/{$this->getModel()->getKey()}";
|
|
}
|
|
}
|