芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/app/Notifications/NewDiscussionReply.php
discussionReply = $discussionReply; $this->company = $this->discussionReply->company; $this->emailSetting = EmailNotificationSetting::where('company_id', $this->company->id)->where('slug', 'discussion-reply')->first(); } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { $via = ['database']; if ($this->emailSetting->send_email == 'yes' && $notifiable->email_notifications && $notifiable->email != '') { array_push($via, 'mail'); } if ($this->emailSetting->send_slack == 'yes' && $this->company->slackSetting->status == 'active') { array_push($via, 'slack'); } if ($this->emailSetting->send_push == 'yes') { array_push($via, OneSignalChannel::class); } return $via; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { $url = route('discussion.show', $this->discussionReply->discussion_id); $url = getDomainSpecificUrl($url, $this->company); return parent::build() ->subject(mb_ucwords($this->discussionReply->user->name) . ' ' . __('email.discussionReply.subject') . $this->discussionReply->discussion->title . ' - ' . config('app.name') . '.') ->greeting(__('email.hello') . ' ' . mb_ucwords($notifiable->name) . ',') ->line(__('email.discussionReply.text') . ' ' . $this->discussionReply->discussion->title . ':-') ->line(new HtmlString($this->discussionReply->body)) ->action(__('email.discussionReply.action'), $url) ->line(__('email.thankyouNote')); } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ //phpcs:ignore public function toArray($notifiable) { return [ 'id' => $this->discussionReply->id, 'title' => $this->discussionReply->discussion->title, 'discussion_id' => $this->discussionReply->discussion_id, 'user' => $this->discussionReply->user->name, 'body' => $this->discussionReply->body, 'project_id' => $this->discussionReply->discussion->project_id ]; } /** * Get the Slack representation of the notification. * * @param mixed $notifiable * @return SlackMessage */ public function toSlack($notifiable) { $slack = $notifiable->company->slackSetting; if (count($notifiable->employee) > 0 && (!is_null($notifiable->employee[0]->slack_username) && ($notifiable->employee[0]->slack_username != ''))) { return (new SlackMessage()) ->from(config('app.name')) ->image($slack->slack_logo_url) ->to('@' . $notifiable->employee[0]->slack_username) ->content('*' . mb_ucwords($this->discussionReply->user->name) . ' ' . __('email.discussionReply.subject') . $this->discussionReply->discussion->title . '*' . "\n" . $this->discussionReply->body); } return (new SlackMessage()) ->from(config('app.name')) ->image($slack->slack_logo_url) ->content('This is a redirected notification. Add slack username for *' . mb_ucwords($notifiable->name) . '*'); } // phpcs:ignore public function toOneSignal($notifiable) { return OneSignalMessage::create() ->subject(__('email.discussionReply.subject')) ->body(ucfirst($this->discussionReply->discussion->title)); } }