mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
088ea287c5
* feat: initial commit for feature management * style: fix StyleCI findings * fix(api): prohibit features of nonnull scope from API & fix(admin): wrong translate key * style: fix Static Analysis error
57 lines
1.1 KiB
PHP
57 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Events\Admin\Setting;
|
|
|
|
use App\Constants\Config\ServiceConstants;
|
|
use App\Contracts\Events\DiscordMessageEvent;
|
|
use App\Models\Admin\Setting;
|
|
use Illuminate\Support\Facades\Config;
|
|
|
|
/**
|
|
* Class SettingEvent.
|
|
*/
|
|
abstract class SettingEvent implements DiscordMessageEvent
|
|
{
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @param Setting $setting
|
|
* @return void
|
|
*/
|
|
public function __construct(protected Setting $setting)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Get the setting that has fired this event.
|
|
*
|
|
* @return Setting
|
|
*/
|
|
public function getSetting(): Setting
|
|
{
|
|
return $this->setting;
|
|
}
|
|
|
|
/**
|
|
* Get Discord channel the message will be sent to.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getDiscordChannel(): string
|
|
{
|
|
return Config::get(ServiceConstants::ADMIN_DISCORD_CHANNEL_QUALIFIED);
|
|
}
|
|
|
|
/**
|
|
* Determine if the message should be sent.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function shouldSendDiscordMessage(): bool
|
|
{
|
|
return true;
|
|
}
|
|
}
|