2023-08-04 19:27:29 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Activity\Notifications\Messages;
|
|
|
|
|
2023-11-14 18:31:44 +08:00
|
|
|
use BookStack\Activity\Notifications\MessageParts\EntityLinkMessageLine;
|
2023-08-15 21:39:39 +08:00
|
|
|
use BookStack\Activity\Notifications\MessageParts\ListMessageLine;
|
2023-08-04 19:27:29 +08:00
|
|
|
use BookStack\Entities\Models\Page;
|
2023-09-02 22:11:42 +08:00
|
|
|
use BookStack\Users\Models\User;
|
2023-08-04 19:27:29 +08:00
|
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
|
|
|
|
|
|
|
class PageCreationNotification extends BaseActivityNotification
|
|
|
|
{
|
2023-09-02 22:11:42 +08:00
|
|
|
public function toMail(User $notifiable): MailMessage
|
2023-08-04 19:27:29 +08:00
|
|
|
{
|
|
|
|
/** @var Page $page */
|
|
|
|
$page = $this->detail;
|
|
|
|
|
2023-09-17 23:20:21 +08:00
|
|
|
$locale = $notifiable->getLocale();
|
2023-09-02 22:11:42 +08:00
|
|
|
|
2023-11-14 18:31:44 +08:00
|
|
|
$listLines = array_filter([
|
|
|
|
$locale->trans('notifications.detail_page_name') => new EntityLinkMessageLine($page),
|
|
|
|
$locale->trans('notifications.detail_page_path') => $this->buildPagePathLine($page, $notifiable),
|
2023-10-26 20:01:38 +08:00
|
|
|
$locale->trans('notifications.detail_created_by') => $this->user->name,
|
2023-11-14 18:31:44 +08:00
|
|
|
]);
|
2023-10-26 20:01:38 +08:00
|
|
|
|
2023-09-17 23:20:21 +08:00
|
|
|
return $this->newMailMessage($locale)
|
|
|
|
->subject($locale->trans('notifications.new_page_subject', ['pageName' => $page->getShortName()]))
|
2023-11-14 18:31:44 +08:00
|
|
|
->line($locale->trans('notifications.new_page_intro', ['appName' => setting('app-name')]))
|
|
|
|
->line(new ListMessageLine($listLines))
|
2023-09-17 23:20:21 +08:00
|
|
|
->action($locale->trans('notifications.action_view_page'), $page->getUrl())
|
|
|
|
->line($this->buildReasonFooterLine($locale));
|
2023-08-04 19:27:29 +08:00
|
|
|
}
|
|
|
|
}
|