mirror of
				https://github.com/snipe/snipe-it.git
				synced 2025-10-29 19:31:41 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			179 lines
		
	
	
		
			6.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			179 lines
		
	
	
		
			6.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Notifications;
 | |
| 
 | |
| use App\Helpers\Helper;
 | |
| use App\Models\Asset;
 | |
| use App\Models\Setting;
 | |
| use App\Models\User;
 | |
| use Exception;
 | |
| use Illuminate\Bus\Queueable;
 | |
| use Illuminate\Notifications\Channels\SlackWebhookChannel;
 | |
| use Illuminate\Notifications\Messages\SlackMessage;
 | |
| use Illuminate\Notifications\Notification;
 | |
| use Illuminate\Support\Str;
 | |
| use NotificationChannels\GoogleChat\Card;
 | |
| use NotificationChannels\GoogleChat\Enums\Icon;
 | |
| use NotificationChannels\GoogleChat\Enums\ImageStyle;
 | |
| 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;
 | |
| use Illuminate\Support\Facades\Log;
 | |
| use Osama\LaravelTeamsNotification\Logging\TeamsLoggingChannel;
 | |
| use Osama\LaravelTeamsNotification\TeamsNotification;
 | |
| 
 | |
| class CheckoutAssetNotification extends Notification
 | |
| {
 | |
|     use Queueable;
 | |
| 
 | |
|     /**
 | |
|      * Create a new notification instance.
 | |
|      *
 | |
|      * @param $params
 | |
|      */
 | |
|     public function __construct(Asset $asset, $checkedOutTo, User $checkedOutBy, $acceptance, $note)
 | |
|     {
 | |
|         $this->settings = Setting::getSettings();
 | |
|         $this->item = $asset;
 | |
|         $this->admin = $checkedOutBy;
 | |
|         $this->note = $note;
 | |
|         $this->target = $checkedOutTo;
 | |
|         $this->last_checkout = '';
 | |
|         $this->expected_checkin = '';
 | |
| 
 | |
|         if ($this->item->last_checkout) {
 | |
|             $this->last_checkout = Helper::getFormattedDateObject($this->item->last_checkout, 'date',
 | |
|                 false);
 | |
|         }
 | |
| 
 | |
|         if ($this->item->expected_checkin) {
 | |
|             $this->expected_checkin = Helper::getFormattedDateObject($this->item->expected_checkin, 'date',
 | |
|                 false);
 | |
|         }
 | |
|     }
 | |
|     /**
 | |
|      * 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' ) {
 | |
| 
 | |
|             Log::debug('use webhook');
 | |
|             $notifyBy[] = SlackWebhookChannel::class;
 | |
|         }
 | |
| 
 | |
|         return $notifyBy;
 | |
|     }
 | |
| 
 | |
|     public function toSlack() :SlackMessage
 | |
|     {
 | |
|         $target = $this->target;
 | |
|         $admin = $this->admin;
 | |
|         $item = $this->item;
 | |
|         $note = $this->note;
 | |
|         $botname = ($this->settings->webhook_botname) ?: 'Snipe-Bot';
 | |
|         $channel = ($this->settings->webhook_channel) ? $this->settings->webhook_channel : '';
 | |
| 
 | |
|         $fields = [
 | |
|             trans('general.to') => '<'.$target->present()->viewUrl().'|'.$target->display_name.'>',
 | |
|             trans('general.by') => '<'.$admin->present()->viewUrl().'|'.$admin->display_name.'>',
 | |
|         ];
 | |
| 
 | |
|         if ($item->location) {
 | |
|             $fields[trans('general.location')] = $item->location->name;
 | |
|         }
 | |
| 
 | |
|         if ($item->company) {
 | |
|             $fields[trans('general.company')] = $item->company->name;
 | |
|         }
 | |
| 
 | |
|         if (($this->expected_checkin) && ($this->expected_checkin !== '')) {
 | |
|             $fields[trans('general.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;
 | |
| 
 | |
|         if(!Str::contains(Setting::getSettings()->webhook_endpoint, 'workflows')) {
 | |
|             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->display_name)
 | |
|                 ->fact(trans('mail.notes'), $note ?: '');
 | |
|         }
 | |
| 
 | |
|         $message = trans('mail.Asset_Checkout_Notification');
 | |
|         $details = [
 | |
|             trans('mail.assigned_to') => $target->present()->name,
 | |
|             trans('mail.asset') => htmlspecialchars_decode($item->present()->name),
 | |
|             trans('mail.Asset_Checkout_Notification'). ' by' => $admin->display_name,
 | |
|             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.Asset_Checkout_Notification').'</strong>' ?: '',
 | |
|                         htmlspecialchars_decode($item->present()->name) ?: '',
 | |
|                     )
 | |
|                     ->section(
 | |
|                         Section::create(
 | |
|                             KeyValue::create(
 | |
|                                 trans('mail.assigned_to') ?: '',
 | |
|                                 $target->present()->name ?: '',
 | |
|                                 $note ?: '',
 | |
|                             )
 | |
|                                 ->onClick(route('users.show', $target->id))
 | |
|                         )
 | |
|                     )
 | |
|             );
 | |
| 
 | |
|     }
 | |
| }
 |