mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
d6ba303f39
# Conflicts: # app/Listeners/CheckoutableListener.php
154 lines
5.5 KiB
PHP
154 lines
5.5 KiB
PHP
<?php
|
|
|
|
namespace App\Notifications;
|
|
|
|
use App\Models\LicenseSeat;
|
|
use App\Models\Setting;
|
|
use App\Models\User;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Notifications\Channels\SlackWebhookChannel;
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
|
use Illuminate\Notifications\Messages\SlackMessage;
|
|
use Illuminate\Notifications\Notification;
|
|
use Illuminate\Support\Str;
|
|
use NotificationChannels\GoogleChat\Card;
|
|
use NotificationChannels\GoogleChat\GoogleChatChannel;
|
|
use NotificationChannels\GoogleChat\GoogleChatMessage;
|
|
use NotificationChannels\GoogleChat\Section;
|
|
use NotificationChannels\GoogleChat\Widgets\KeyValue;
|
|
use NotificationChannels\MicrosoftTeams\MicrosoftTeamsChannel;
|
|
use NotificationChannels\MicrosoftTeams\MicrosoftTeamsMessage;
|
|
|
|
class CheckoutLicenseSeatNotification extends Notification
|
|
{
|
|
use Queueable;
|
|
/**
|
|
* @var
|
|
*/
|
|
private $params;
|
|
|
|
/**
|
|
* Create a new notification instance.
|
|
*
|
|
* @param $params
|
|
*/
|
|
public function __construct(LicenseSeat $licenseSeat, $checkedOutTo, User $checkedOutBy, $acceptance, $note)
|
|
{
|
|
$this->item = $licenseSeat->license;
|
|
$this->admin = $checkedOutBy;
|
|
$this->note = $note;
|
|
$this->target = $checkedOutTo;
|
|
$this->acceptance = $acceptance;
|
|
|
|
$this->settings = Setting::getSettings();
|
|
}
|
|
|
|
/**
|
|
* Get the notification's delivery channels.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function via()
|
|
{
|
|
$notifyBy = [];
|
|
|
|
if (Setting::getSettings()->webhook_selected == 'google'){
|
|
|
|
$notifyBy[] = GoogleChatChannel::class;
|
|
}
|
|
if (Setting::getSettings()->webhook_selected == 'microsoft'){
|
|
|
|
$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: :floppy_disk: License 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.License_Checkout_Notification'))
|
|
->addStartGroupToSection('activityText')
|
|
->fact(htmlspecialchars_decode($item->present()->name), '', 'activityTitle')
|
|
->fact(trans('mail.License_Checkout_Notification')." by ", $admin->present()->fullName())
|
|
->fact(trans('mail.assigned_to'), $target->present()->fullName())
|
|
->fact(trans('admin/consumables/general.remaining'), $item->availCount()->count())
|
|
->fact(trans('mail.notes'), $note ?: '');
|
|
}
|
|
|
|
$message = trans('mail.License_Checkout_Notification');
|
|
$details = [
|
|
trans('mail.assigned_to') => $target->present()->fullName(),
|
|
trans('mail.license_for') => htmlspecialchars_decode($item->present()->name),
|
|
trans('mail.License_Checkout_Notification').' by' => $admin->present()->fullName(),
|
|
trans('admin/consumables/general.remaining') => $item->availCount()->count(),
|
|
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(
|
|
'<strong>'.trans('mail.License_Checkout_Notification').'</strong>' ?: '',
|
|
htmlspecialchars_decode($item->present()->name) ?: '',
|
|
)
|
|
->section(
|
|
Section::create(
|
|
KeyValue::create(
|
|
trans('mail.assigned_to') ?: '',
|
|
$target->present()->name ?: '',
|
|
trans('admin/consumables/general.remaining').': '.$item->availCount()->count(),
|
|
)
|
|
->onClick(route('users.show', $target->id))
|
|
)
|
|
)
|
|
);
|
|
|
|
}
|
|
}
|