webhook_selected == 'google' && Setting::getSettings()->webhook_endpoint) { $notifyBy[] = GoogleChatChannel::class; } if (Setting::getSettings()->webhook_selected == 'microsoft' && Setting::getSettings()->webhook_endpoint) { $notifyBy[] = MicrosoftTeamsChannel::class; } if (Setting::getSettings()->webhook_selected == 'slack' || Setting::getSettings()->webhook_selected == 'general' ) { Log::debug('use webhook'); $notifyBy[] = 'slack'; } /** * Only send notifications to users that have email addresses */ if ($this->target instanceof User && $this->target->email != '') { /** * Send an email if the asset requires acceptance, * so the user can accept or decline the asset */ if ($this->item->requireAcceptance()) { $notifyBy[1] = 'mail'; } /** * Send an email if the item has a EULA, since the user should always receive it */ if ($this->item->getEula()) { $notifyBy[1] = 'mail'; } /** * Send an email if an email should be sent at checkin/checkout */ if ($this->item->checkin_email()) { $notifyBy[1] = 'mail'; } } return $notifyBy; } public function toSlack() { $target = $this->target; $admin = $this->admin; $item = $this->item; $note = $this->note; $botname = ($this->settings->webhook_botname) ? $this->settings->webhook_botname : 'Snipe-Bot'; $channel = ($this->settings->webhook_channel) ? $this->settings->webhook_channel : ''; $fields = [ 'To' => '<'.$target->present()->viewUrl().'|'.$target->present()->fullName().'>', 'By' => '<'.$admin->present()->viewUrl().'|'.$admin->present()->fullName().'>', ]; if (($this->expected_checkin) && ($this->expected_checkin != '')) { $fields['Expected Checkin'] = $this->expected_checkin; } return (new SlackMessage) ->content(':arrow_up: :computer: '.trans('mail.Asset_Checkout_Notification')) ->from($botname) ->to($channel) ->attachment(function ($attachment) use ($item, $note, $admin, $fields) { $attachment->title(htmlspecialchars_decode($item->present()->name), $item->present()->viewUrl()) ->fields($fields) ->content($note); }); } public function toMicrosoftTeams() { $target = $this->target; $admin = $this->admin; $item = $this->item; $note = $this->note; return MicrosoftTeamsMessage::create() ->to($this->settings->webhook_endpoint) ->type('success') ->title(trans('mail.Asset_Checkout_Notification')) ->addStartGroupToSection('activityText') ->fact(trans('mail.assigned_to'), $target->present()->name) ->fact(htmlspecialchars_decode($item->present()->name), '', 'activityText') ->fact(trans('mail.Asset_Checkout_Notification') . " by ", $admin->present()->fullName()) ->fact(trans('mail.notes'), $note ?: ''); } public function toGoogleChat() { $target = $this->target; $item = $this->item; $note = $this->note; return GoogleChatMessage::create() ->to($this->settings->webhook_endpoint) ->card( Card::create() ->header( ''.trans('mail.Asset_Checkout_Notification').'' ?: '', htmlspecialchars_decode($item->present()->name) ?: '', ) ->section( Section::create( KeyValue::create( trans('mail.assigned_to') ?: '', $target->present()->name ?: '', $note ?: '', ) ->onClick(route('users.show', $target->id)) ) ) ); } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ }