mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
46f5f21368
* Added “show fields in email” to custom fields * Added “show images in email” to settings * Added nicer HTML emails * Break notifications out into their own, instead of trying to mash them all together * Remove old notification for accessory checkout * Janky fix for #5076 - “The asset you have attempted to accept was not checked out to you” * Add method for image url for accessories * Added accessory checkout email blade * Make accessory email notification on checkout screen consistent with assets * Added native consumables notifications * Fixes for asset notification * Updated notification blades with correct-er fields * Updated notifications * License checkin notification - does not work yet Need to figure out whether the license seat is assigned to a person or an asset before we can pass the target * Added alternate “cc” email for admins * Only try to trigger notifications if the target is a user * Fix tests * Fixed consumable URL * Removed unused notification * Pass target type in params * Show slack status * Pass additional parameters There is a logic bug in this :( Will send to slack twice, since the admin CC and the user are both using the same notification. Fuckity fuck fuck fuck. * Pass a variable to the notification to supress the duplicate slack message * Slack is broken :( Trying to fix Will try a git bisect * Put preview back into checkout * Pulled old archaic mail * Removed debugging * Fixed wrong email title * Fixed slack endpoint not firing * Poobot, we hardly knew ye. * Removed old, manual mail from API * Typo :-/ * Code cleanup * Use defined formatted date in JSON * Use static properties for checkin/checkout notifiers for cleaner code * Removed debugging * Use date formatter * Fixed target_type * Fixed language in consumable email
137 lines
3.7 KiB
PHP
137 lines
3.7 KiB
PHP
<?php
|
|
|
|
namespace App\Notifications;
|
|
|
|
use App\Models\Setting;
|
|
use App\Models\SnipeModel;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
|
use Illuminate\Notifications\Messages\SlackMessage;
|
|
use Illuminate\Notifications\Notification;
|
|
use Illuminate\Support\Facades\Mail;
|
|
|
|
class CheckoutAccessoryNotification extends Notification
|
|
{
|
|
use Queueable;
|
|
/**
|
|
* @var
|
|
*/
|
|
private $params;
|
|
|
|
/**
|
|
* Create a new notification instance.
|
|
*
|
|
* @param $params
|
|
*/
|
|
public function __construct($params)
|
|
{
|
|
$this->target = $params['target'];
|
|
$this->item = $params['item'];
|
|
$this->admin = $params['admin'];
|
|
$this->log_id = $params['log_id'];
|
|
$this->note = '';
|
|
$this->last_checkout = '';
|
|
$this->expected_checkin = '';
|
|
$this->target_type = $params['target_type'];
|
|
$this->settings = $params['settings'];
|
|
|
|
if (array_key_exists('note', $params)) {
|
|
$this->note = $params['note'];
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
/**
|
|
* Get the notification's delivery channels.
|
|
*
|
|
* @param mixed $notifiable
|
|
* @return array
|
|
*/
|
|
public function via($notifiable)
|
|
{
|
|
|
|
$notifyBy = [];
|
|
|
|
if (Setting::getSettings()->slack_endpoint!='') {
|
|
$notifyBy[] = 'slack';
|
|
}
|
|
|
|
// Make sure the target is a user and that its appropriate to send them an email
|
|
if ((($this->target->email!='') && ($this->target_type == 'App\Models\User')) && (($this->item->requireAcceptance() == '1') || ($this->item->getEula())))
|
|
{
|
|
$notifyBy[] = 'mail';
|
|
}
|
|
|
|
return $notifyBy;
|
|
}
|
|
|
|
public function toSlack($notifiable)
|
|
{
|
|
|
|
|
|
$target = $this->target;
|
|
$admin = $this->admin;
|
|
$item = $this->item;
|
|
$note = $this->note;
|
|
$botname = ($this->settings->slack_botname) ? $this->settings->slack_botname : 'Snipe-Bot' ;
|
|
|
|
$fields = [
|
|
'To' => '<'.$target->present()->viewUrl().'|'.$target->present()->fullName().'>',
|
|
'By' => '<'.$admin->present()->viewUrl().'|'.$admin->present()->fullName().'>',
|
|
];
|
|
|
|
|
|
|
|
return (new SlackMessage)
|
|
->content(':arrow_up: :keyboard: Accessory Checked Out')
|
|
->from($botname)
|
|
->attachment(function ($attachment) use ($item, $note, $admin, $fields) {
|
|
$attachment->title(htmlspecialchars_decode($item->present()->name), $item->present()->viewUrl())
|
|
->fields($fields)
|
|
->content($note);
|
|
});
|
|
}
|
|
/**
|
|
* Get the mail representation of the notification.
|
|
*
|
|
* @param mixed $notifiable
|
|
* @return \Illuminate\Notifications\Messages\MailMessage
|
|
*/
|
|
public function toMail($notifiable)
|
|
{
|
|
|
|
\Log::debug($this->item->getImageUrl());
|
|
$eula = $this->item->getEula();
|
|
$req_accept = $this->item->requireAcceptance();
|
|
|
|
return (new MailMessage)->markdown('notifications.markdown.checkout-accessory',
|
|
[
|
|
'item' => $this->item,
|
|
'admin' => $this->admin,
|
|
'note' => $this->note,
|
|
'target' => $this->target,
|
|
'eula' => $eula,
|
|
'req_accept' => $req_accept,
|
|
'accept_url' => url('/').'/account/accept-asset/'.$this->log_id,
|
|
])
|
|
->subject(trans('mail.Confirm_accessory_delivery'));
|
|
|
|
}
|
|
|
|
/**
|
|
* Get the array representation of the notification.
|
|
*
|
|
* @param mixed $notifiable
|
|
* @return array
|
|
*/
|
|
public function toArray($notifiable)
|
|
{
|
|
return [
|
|
//
|
|
];
|
|
}
|
|
}
|