1 | <?php |
||
7 | class OneSignalMessage |
||
8 | { |
||
9 | /** @var string */ |
||
10 | protected $body; |
||
11 | |||
12 | /** @var string */ |
||
13 | protected $subject; |
||
14 | |||
15 | /** @var string */ |
||
16 | protected $url; |
||
17 | |||
18 | /** @var string */ |
||
19 | protected $icon; |
||
20 | |||
21 | /** @var array */ |
||
22 | protected $data = []; |
||
23 | |||
24 | /** @var array */ |
||
25 | protected $buttons = []; |
||
26 | |||
27 | /** @var array */ |
||
28 | protected $webButtons = []; |
||
29 | |||
30 | /** @var array */ |
||
31 | protected $extraParameters = []; |
||
32 | |||
33 | /** |
||
34 | * @param string $body |
||
35 | * |
||
36 | * @return static |
||
37 | */ |
||
38 | 1 | public static function create($body = '') |
|
42 | |||
43 | /** |
||
44 | * @param string $body |
||
45 | */ |
||
46 | 20 | public function __construct($body = '') |
|
50 | |||
51 | /** |
||
52 | * Set the message body. |
||
53 | * |
||
54 | * @param string $value |
||
55 | * |
||
56 | * @return $this |
||
57 | */ |
||
58 | 1 | public function body($value) |
|
64 | |||
65 | /** |
||
66 | * Set the message icon. |
||
67 | * |
||
68 | * @param string $value |
||
69 | * |
||
70 | * @return $this |
||
71 | */ |
||
72 | 6 | public function icon($value) |
|
78 | |||
79 | /** |
||
80 | * Set the message subject. |
||
81 | * |
||
82 | * @param string $value |
||
83 | * |
||
84 | * @return $this |
||
85 | */ |
||
86 | 6 | public function subject($value) |
|
92 | |||
93 | /** |
||
94 | * Set the message url. |
||
95 | * |
||
96 | * @param string $value |
||
97 | * |
||
98 | * @return $this |
||
99 | */ |
||
100 | 6 | public function url($value) |
|
106 | |||
107 | /** |
||
108 | * Set the iOS badge increment count. |
||
109 | * |
||
110 | * @param int $count |
||
111 | * |
||
112 | * @return $this |
||
113 | */ |
||
114 | 1 | public function incrementIosBadgeCount($count = 1) |
|
115 | { |
||
116 | 1 | return $this->setParameter('ios_badgeType', 'Increase') |
|
117 | 1 | ->setParameter('ios_badgeCount', $count); |
|
118 | } |
||
119 | |||
120 | /** |
||
121 | * Set the iOS badge decrement count. |
||
122 | * |
||
123 | * @param int $count |
||
124 | * |
||
125 | * @return $this |
||
126 | */ |
||
127 | 1 | public function decrementIosBadgeCount($count = 1) |
|
128 | { |
||
129 | 1 | return $this->setParameter('ios_badgeType', 'Increase') |
|
130 | 1 | ->setParameter('ios_badgeCount', -1 * $count); |
|
131 | } |
||
132 | |||
133 | /** |
||
134 | * Set the iOS badge count. |
||
135 | * |
||
136 | * @param int $count |
||
137 | * |
||
138 | * @return $this |
||
139 | */ |
||
140 | 1 | public function setIosBadgeCount($count) |
|
141 | { |
||
142 | 1 | return $this->setParameter('ios_badgeType', 'SetTo') |
|
143 | 1 | ->setParameter('ios_badgeCount', $count); |
|
144 | } |
||
145 | |||
146 | /** |
||
147 | * Set additional data. |
||
148 | * |
||
149 | * @param string $key |
||
150 | * @param string $value |
||
151 | * |
||
152 | * @return $this |
||
153 | */ |
||
154 | 1 | public function setData($key, $value) |
|
160 | |||
161 | /** |
||
162 | * Set additional parameters. |
||
163 | * |
||
164 | * @param string $key |
||
165 | * @param string $value |
||
166 | * |
||
167 | * @return $this |
||
168 | */ |
||
169 | 4 | public function setParameter($key, $value) |
|
175 | |||
176 | /** |
||
177 | * Add a web button to the message. |
||
178 | * |
||
179 | * @param OneSignalWebButton $button |
||
180 | * |
||
181 | * @return $this |
||
182 | */ |
||
183 | 1 | public function webButton(OneSignalWebButton $button) |
|
189 | |||
190 | /** |
||
191 | * Add a native button to the message. |
||
192 | * |
||
193 | * @param OneSignalButton $button |
||
194 | * |
||
195 | * @return $this |
||
196 | */ |
||
197 | 1 | public function button(OneSignalButton $button) |
|
203 | |||
204 | /** |
||
205 | * Set an image to all possible attachment variables. |
||
206 | * @param string $imageUrl |
||
207 | * |
||
208 | * @return $this |
||
209 | */ |
||
210 | 1 | public function setImageAttachments($imageUrl) |
|
219 | |||
220 | /** |
||
221 | * @return array |
||
222 | */ |
||
223 | 20 | public function toArray() |
|
247 | |||
248 | 20 | protected function subjectToArray() |
|
249 | { |
||
250 | 20 | if ($this->subject === null) { |
|
256 | } |
||
257 |