-
Notifications
You must be signed in to change notification settings - Fork 243
Expand file tree
/
Copy pathBundleUpdatedNotification.php
More file actions
81 lines (69 loc) · 2.06 KB
/
Copy pathBundleUpdatedNotification.php
File metadata and controls
81 lines (69 loc) · 2.06 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
<?php
namespace ProcessMaker\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\BroadcastMessage;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
use ProcessMaker\Models\Bundle;
class BundleUpdatedNotification extends Notification
{
use Queueable;
private $bundleName;
private $bundleUid;
/**
* Create a new notification instance.
*/
public function __construct(Bundle $bundle)
{
$this->bundleName = $bundle->name;
$this->bundleUid = $bundle->id;
}
/**
* Get the notification's delivery channels.
*
* @return array<int, string>
*/
public function via(object $notifiable): array
{
return ['broadcast', NotificationChannel::class];
}
/**
* Get the mail representation of the notification.
*/
public function toMail(object $notifiable): MailMessage
{
return (new MailMessage)
->line('The introduction to the notification.')
->action('Notification Action', url('/'))
->line('Thank you for using our application!');
}
/**
* Get the array representation of the notification.
*
* @return array<string, mixed>
*/
public function toArray($notifiable)
{
$bundle = Bundle::find($this->bundleUid);
return [
'type' => 'BUNDLE_UPDATED',
'message' => sprintf('Bundle updated: %s', $this->bundleName),
'dateTime' => $bundle->updated_at->toIso8601String(),
'name' => $this->bundleName,
'bundleName' => $this->bundleName,
'url' => sprintf(
'/admin/devlink/local-bundles/%s/',
$this->bundleUid
),
];
}
public function toDatabase($notifiable)
{
return $this->toArray($notifiable);
}
public function toBroadcast($notifiable)
{
return new BroadcastMessage($this->toArray($notifiable));
}
}