forked from laravel-notification-channels/onesignal
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathOneSignalMessage.php
170 lines (142 loc) · 2.94 KB
/
OneSignalMessage.php
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<?php
namespace NotificationChannels\OneSignal;
use Illuminate\Support\Arr;
class OneSignalMessage
{
/** @var string */
protected $body;
/** @var string */
protected $subject;
/** @var string */
protected $url;
/** @var string */
protected $icon;
/** @var array */
protected $data = [];
/** @var array */
protected $buttons = [];
/** @var array */
protected $webButtons = [];
/**
* @param string $body
*
* @return static
*/
public static function create($body = '')
{
return new static($body);
}
/**
* @param string $body
*/
public function __construct($body = '')
{
$this->body = $body;
}
/**
* Set the message body.
*
* @param string $value
*
* @return $this
*/
public function body($value)
{
$this->body = $value;
return $this;
}
/**
* Set the message icon.
*
* @param string $value
*
* @return $this
*/
public function icon($value)
{
$this->icon = $value;
return $this;
}
/**
* Set the message subject.
*
* @param string $value
*
* @return $this
*/
public function subject($value)
{
$this->subject = $value;
return $this;
}
/**
* Set the message url.
*
* @param string $value
*
* @return $this
*/
public function url($value)
{
$this->url = $value;
return $this;
}
/**
* Set additional data.
*
* @param string $key
* @param string $value
*
* @return $this
*/
public function setData($key, $value)
{
$this->data[$key] = $value;
return $this;
}
/**
* Add a web button to the message.
*
* @param OneSignalWebButton $button
*
* @return $this
*/
public function webButton(OneSignalWebButton $button)
{
$this->webButtons[] = $button->toArray();
return $this;
}
/**
* Add a native button to the message.
*
* @param OneSignalButton $button
*
* @return $this
*/
public function button(OneSignalButton $button)
{
$this->buttons[] = $button->toArray();
return $this;
}
/**
* @return array
*/
public function toArray()
{
$message = [
'contents' => ['en' => $this->body],
'headings' => ['en' => $this->subject],
'url' => $this->url,
'buttons' => $this->buttons,
'web_buttons' => $this->webButtons,
'chrome_web_icon' => $this->icon,
'chrome_icon' => $this->icon,
'adm_small_icon' => $this->icon,
'small_icon' => $this->icon,
];
foreach ($this->data as $data => $value) {
Arr::set($message, 'data.'.$data, $value);
}
return $message;
}
}