@@ -4,75 +4,75 @@ |
||
4 | 4 | |
5 | 5 | class PushNotificationDeviceRepository extends AbstractRepository |
6 | 6 | { |
7 | - /** |
|
8 | - * Return the model full namespace. |
|
9 | - * |
|
10 | - * @return string |
|
11 | - */ |
|
12 | - protected function getModel() |
|
13 | - { |
|
14 | - return 'App\Modules\V1\Notifications\PushNotificationDevice'; |
|
15 | - } |
|
7 | + /** |
|
8 | + * Return the model full namespace. |
|
9 | + * |
|
10 | + * @return string |
|
11 | + */ |
|
12 | + protected function getModel() |
|
13 | + { |
|
14 | + return 'App\Modules\V1\Notifications\PushNotificationDevice'; |
|
15 | + } |
|
16 | 16 | |
17 | - /** |
|
18 | - * Set the notification notified to all. |
|
19 | - * |
|
20 | - * @param array $users_ids |
|
21 | - * @param string $messageText |
|
22 | - * @return void |
|
23 | - */ |
|
24 | - public function broadcast($users_ids, $messageText) |
|
25 | - { |
|
26 | - $devicesArray = []; |
|
27 | - $devices = $this->model->whereIn('user_id', $users_ids)->get(); |
|
28 | - foreach ($devices as $device) |
|
29 | - { |
|
30 | - $devicesArray[$device->device_type][] = \PushNotification::Device($device->device_token); |
|
31 | - } |
|
17 | + /** |
|
18 | + * Set the notification notified to all. |
|
19 | + * |
|
20 | + * @param array $users_ids |
|
21 | + * @param string $messageText |
|
22 | + * @return void |
|
23 | + */ |
|
24 | + public function broadcast($users_ids, $messageText) |
|
25 | + { |
|
26 | + $devicesArray = []; |
|
27 | + $devices = $this->model->whereIn('user_id', $users_ids)->get(); |
|
28 | + foreach ($devices as $device) |
|
29 | + { |
|
30 | + $devicesArray[$device->device_type][] = \PushNotification::Device($device->device_token); |
|
31 | + } |
|
32 | 32 | |
33 | - if (array_key_exists('ios', $devicesArray)) |
|
34 | - { |
|
35 | - $message = $this->constructMessage($messageText, [ 'badge' => 15, 'sound' => 'default', 'content-available' => 1 ]); |
|
36 | - $iosDevices = \PushNotification::DeviceCollection($devicesArray['ios']); |
|
37 | - $this->push('ios', $iosDevices, $message); |
|
38 | - } |
|
33 | + if (array_key_exists('ios', $devicesArray)) |
|
34 | + { |
|
35 | + $message = $this->constructMessage($messageText, [ 'badge' => 15, 'sound' => 'default', 'content-available' => 1 ]); |
|
36 | + $iosDevices = \PushNotification::DeviceCollection($devicesArray['ios']); |
|
37 | + $this->push('ios', $iosDevices, $message); |
|
38 | + } |
|
39 | 39 | |
40 | - if (array_key_exists('android', $devicesArray)) |
|
41 | - { |
|
42 | - $message = $this->constructMessage($messageText); |
|
43 | - $androidDevices = \PushNotification::DeviceCollection($devicesArray['android']); |
|
44 | - $this->push('android', $androidDevices, $message); |
|
45 | - } |
|
46 | - } |
|
40 | + if (array_key_exists('android', $devicesArray)) |
|
41 | + { |
|
42 | + $message = $this->constructMessage($messageText); |
|
43 | + $androidDevices = \PushNotification::DeviceCollection($devicesArray['android']); |
|
44 | + $this->push('android', $androidDevices, $message); |
|
45 | + } |
|
46 | + } |
|
47 | 47 | |
48 | 48 | |
49 | - /** |
|
50 | - * Set the notification notified to true. |
|
51 | - * |
|
52 | - * @param string $type |
|
53 | - * @param colletion $devices |
|
54 | - * @param string $message |
|
55 | - * @return object |
|
56 | - */ |
|
57 | - public function push($type, $devices, $message) |
|
58 | - { |
|
59 | - $collection = \PushNotification::app($type)->to($devices)->send($message); |
|
60 | - foreach ($collection->pushManager as $push) |
|
61 | - { |
|
62 | - $response[] = $push->getAdapter()->getResponse(); |
|
63 | - } |
|
64 | - dd($response); |
|
65 | - } |
|
49 | + /** |
|
50 | + * Set the notification notified to true. |
|
51 | + * |
|
52 | + * @param string $type |
|
53 | + * @param colletion $devices |
|
54 | + * @param string $message |
|
55 | + * @return object |
|
56 | + */ |
|
57 | + public function push($type, $devices, $message) |
|
58 | + { |
|
59 | + $collection = \PushNotification::app($type)->to($devices)->send($message); |
|
60 | + foreach ($collection->pushManager as $push) |
|
61 | + { |
|
62 | + $response[] = $push->getAdapter()->getResponse(); |
|
63 | + } |
|
64 | + dd($response); |
|
65 | + } |
|
66 | 66 | |
67 | - /** |
|
68 | - * Construct the notification message. |
|
69 | - * |
|
70 | - * @param string $messageText |
|
71 | - * @param array $options |
|
72 | - * @return object |
|
73 | - */ |
|
74 | - protected function constructMessage($messageText, $options = []) |
|
75 | - { |
|
76 | - return \PushNotification::Message($messageText, $options); |
|
77 | - } |
|
67 | + /** |
|
68 | + * Construct the notification message. |
|
69 | + * |
|
70 | + * @param string $messageText |
|
71 | + * @param array $options |
|
72 | + * @return object |
|
73 | + */ |
|
74 | + protected function constructMessage($messageText, $options = []) |
|
75 | + { |
|
76 | + return \PushNotification::Message($messageText, $options); |
|
77 | + } |
|
78 | 78 | } |
@@ -32,7 +32,7 @@ |
||
32 | 32 | |
33 | 33 | if (array_key_exists('ios', $devicesArray)) |
34 | 34 | { |
35 | - $message = $this->constructMessage($messageText, [ 'badge' => 15, 'sound' => 'default', 'content-available' => 1 ]); |
|
35 | + $message = $this->constructMessage($messageText, ['badge' => 15, 'sound' => 'default', 'content-available' => 1]); |
|
36 | 36 | $iosDevices = \PushNotification::DeviceCollection($devicesArray['ios']); |
37 | 37 | $this->push('ios', $iosDevices, $message); |
38 | 38 | } |