item = $consumable; $this->admin = $checkedOutBy; $this->note = $note; $this->target = $checkedOutTo; $this->acceptance = $acceptance; $this->qty = $consumable->checkout_qty; $this->settings = Setting::getSettings(); } /** * Get the notification's delivery channels. * * @return array */ public function via() { $notifyBy = []; if (Setting::getSettings()->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' ) { $notifyBy[] = SlackWebhookChannel::class; } 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().'>', ]; return (new SlackMessage) ->content(':arrow_up: :paperclip: Consumable Checked Out') ->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; if(!Str::contains(Setting::getSettings()->webhook_endpoint, 'workflows')) { return MicrosoftTeamsMessage::create() ->to($this->settings->webhook_endpoint) ->type('success') ->addStartGroupToSection('activityTitle') ->title(trans('mail.Consumable_checkout_notification')) ->addStartGroupToSection('activityText') ->fact(htmlspecialchars_decode($item->present()->name), '', 'activityTitle') ->fact(trans('mail.Consumable_checkout_notification')." by ", $admin->present()->fullName()) ->fact(trans('mail.assigned_to'), $target->present()->fullName()) ->fact(trans('admin/consumables/general.remaining'), $item->numRemaining()) ->fact(trans('mail.notes'), $note ?: ''); } $message = trans('mail.Consumable_checkout_notification'); $details = [ trans('mail.assigned_to') => $target->present()->fullName(), trans('mail.item') => htmlspecialchars_decode($item->present()->name), trans('mail.Consumable_checkout_notification').' by' => $admin->present()->fullName(), trans('admin/consumables/general.remaining') => $item->numRemaining(), trans('mail.notes') => $note ?: '', ]; return array($message, $details); } 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.Consumable_checkout_notification').'' ?: '', htmlspecialchars_decode($item->present()->name) ?: '', ) ->section( Section::create( KeyValue::create( trans('mail.assigned_to') ?: '', $target->present()->fullName() ?: '', trans('admin/consumables/general.remaining').': '.$item->numRemaining(), ) ->onClick(route('users.show', $target->id)) ) ) ); } }