. */ declare(strict_types=1); namespace FireflyIII\Notifications\Admin; use FireflyIII\Support\Notifications\UrlValidator; use FireflyIII\User; use Illuminate\Bus\Queueable; use Illuminate\Notifications\Messages\MailMessage; use Illuminate\Notifications\Messages\SlackMessage; use Illuminate\Notifications\Notification; /** * Class VersionCheckResult * */ class VersionCheckResult extends Notification { use Queueable; private string $message; /** * Create a new notification instance. * * @return void */ public function __construct(string $message) { $this->message = $message; } /** * Get the array representation of the notification. * * @param mixed $notifiable * * @return array */ public function toArray($notifiable) { return [ // ]; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * * @return MailMessage */ public function toMail($notifiable) { return (new MailMessage()) ->markdown('emails.new-version', ['message' => $this->message]) ->subject((string)trans('email.new_version_email_subject')); } /** * Get the Slack representation of the notification. * * @param mixed $notifiable * * @return SlackMessage */ public function toSlack($notifiable) { return (new SlackMessage())->content($this->message) ->attachment(function ($attachment) { $attachment->title('Firefly III @ GitHub', 'https://github.com/firefly-iii/firefly-iii/releases'); }); } /** * Get the notification's delivery channels. * * @param mixed $notifiable * * @return array */ public function via($notifiable) { $slackUrl = app('fireflyconfig')->get('slack_webhook_url', '')->data; if (UrlValidator::isValidWebhookURL($slackUrl)) { return ['mail', 'slack']; } return ['mail']; } }