-
Notifications
You must be signed in to change notification settings - Fork 243
Expand file tree
/
Copy pathProcessCompletedNotification.php
More file actions
92 lines (79 loc) · 2.39 KB
/
Copy pathProcessCompletedNotification.php
File metadata and controls
92 lines (79 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?php
namespace ProcessMaker\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Messages\BroadcastMessage;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
use ProcessMaker\Models\ProcessRequest as Instance;
use ProcessMaker\Nayra\Contracts\Engine\ExecutionInstanceInterface;
class ProcessCompletedNotification extends Notification
{
use Queueable;
private $processUid;
private $processName;
private $instanceUid;
/**
* Create a new notification instance.
*
* @return void
*/
public function __construct(ExecutionInstanceInterface $instance)
{
$this->processUid = $instance->process->getKey();
$this->processName = $instance->process->name;
$this->instanceUid = $instance->getKey();
}
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable)
{
return ['broadcast', NotificationChannel::class];
}
/**
* Get the mail representation of the notification.
*
* @param mixed $notifiable
* @return \Illuminate\Notifications\Messages\MailMessage
*/
public function toMail($notifiable)
{
return (new MailMessage)
->line('The introduction to the notification.')
->action('Notification Action', url('/'))
->line('Thank you for using our application!');
}
public function toDatabase($notifiable)
{
return $this->toArray($notifiable);
}
/**
* Get the array representation of the notification.
*
* @param mixed $notifiable
* @return array
*/
public function toArray($notifiable)
{
$instance = Instance::find($this->instanceUid);
return [
'type' => 'PROCESS_COMPLETED',
'message' => sprintf('Request completed: %s', $this->processName),
'dateTime' => $instance->completed_at->toIso8601String(),
'name' => $this->processName,
'uid' => $this->processName,
'request_id' => $instance->getKey(),
'url' => sprintf(
'/requests/%s',
$this->instanceUid
),
];
}
public function toBroadcast($notifiable)
{
return new BroadcastMessage($this->toArray($notifiable));
}
}