-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathPush.php
More file actions
1180 lines (1034 loc) Β· 41.3 KB
/
Copy pathPush.php
File metadata and controls
1180 lines (1034 loc) Β· 41.3 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
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Notifications;
use GuzzleHttp\Exception\ClientException;
use GuzzleHttp\Exception\ServerException;
use OC\Authentication\Token\IProvider;
use OC\Security\IdentityProof\Key;
use OC\Security\IdentityProof\Manager;
use OCA\Notifications\Exceptions\InvalidDeviceTokenException;
use OCA\Notifications\Vendor\Minishlink\WebPush\MessageSentReport;
use OCP\AppFramework\Http;
use OCP\AppFramework\Services\IAppConfig;
use OCP\AppFramework\Utility\ITimeFactory;
use OCP\Authentication\Exceptions\InvalidTokenException;
use OCP\Authentication\Token\IToken;
use OCP\DB\QueryBuilder\IQueryBuilder;
use OCP\Http\Client\IClientService;
use OCP\IAppConfig as IGlobalAppConfig;
use OCP\ICache;
use OCP\ICacheFactory;
use OCP\IConfig;
use OCP\IDBConnection;
use OCP\IUser;
use OCP\IUserManager;
use OCP\L10N\IFactory;
use OCP\Notification\AlreadyProcessedException;
use OCP\Notification\IManager as INotificationManager;
use OCP\Notification\IncompleteParsedNotificationException;
use OCP\Notification\INotification;
use OCP\Security\ISecureRandom;
use OCP\UserStatus\IManager as IUserStatusManager;
use OCP\UserStatus\IUserStatus;
use OCP\Util;
use Psr\Log\LoggerInterface;
use Symfony\Component\Console\Output\OutputInterface;
/**
*
*/
class Push {
/**
* Only push to devices that were online in the last 60 days
*/
public const MAX_PUSH_AGE = 60 * 24 * 60 * 60;
/**
* Only push to the X most recent devices
*/
public const DEVICE_LIMIT = 20;
protected ICache $cache;
protected ?OutputInterface $output = null;
protected bool $limitedOutput = true;
/**
* @psalm-var array<string, list<string>>
*/
protected array $payloadsToSend = [];
protected bool $deferPreparing = false;
protected bool $deferPayloads = false;
/**
* @var array[] $userId => $appId => $notificationIds
* @psalm-var array<string|int, array<string, list<int>>>
*/
protected array $deletesToPush = [];
/**
* @psalm-var array<string|int, bool>
*/
protected array $deleteAllsToPush = [];
/** @var INotification[] */
protected array $notificationsToPush = [];
/**
* @psalm-var array<string, ?IUserStatus>
*/
protected array $userStatuses = [];
/**
* @psalm-var array<string, list<array{id: int, uid: string, token: int, endpoint: string, ua_public: string, auth: string, app_types: string, activated: bool, activation_token: string}>>
*/
protected array $userWebPushDevices = [];
/**
* @psalm-var array<string, list<array{id: int, uid: string, token: int, deviceidentifier: string, devicepublickey: string, devicepublickeyhash: string, pushtokenhash: string, proxyserver: string, apptype: string}>>
*/
protected array $userProxyDevices = [];
/** @var string[] */
protected array $loadDevicesForUsers = [];
/** @var string[] */
protected array $loadStatusForUsers = [];
public function __construct(
protected IDBConnection $db,
protected IUserManager $userManager,
protected INotificationManager $notificationManager,
protected IConfig $config,
protected IAppConfig $appConfig,
protected IGlobalAppConfig $globalAppConfig,
protected WebPushClient $wpClient,
protected IProvider $tokenProvider,
protected Manager $keyManager,
protected IClientService $clientService,
ICacheFactory $cacheFactory,
protected IUserStatusManager $userStatusManager,
protected IFactory $l10nFactory,
protected ITimeFactory $timeFactory,
protected ISecureRandom $random,
protected LoggerInterface $log,
) {
$this->cache = $cacheFactory->createDistributed('pushtokens');
}
public function setOutput(OutputInterface $output, bool $limitedOutput = true): void {
$this->output = $output;
$this->limitedOutput = $limitedOutput;
}
protected function printInfo(string $message, string $verboseMessage = ''): void {
if ($this->output) {
$this->output->writeln($message);
if ($verboseMessage !== '' && !$this->limitedOutput) {
$this->output->writeln($verboseMessage);
}
}
}
public function isDeferring(): bool {
return $this->deferPayloads;
}
public function deferPayloads(): void {
$this->deferPreparing = true;
$this->deferPayloads = true;
}
public function flushPayloads(): void {
$this->deferPreparing = false;
if (!empty($this->loadDevicesForUsers)) {
$this->loadDevicesForUsers = array_unique($this->loadDevicesForUsers);
// Add missing web push devices
$missingWebPushDevicesFor = array_diff($this->loadDevicesForUsers, array_keys($this->userWebPushDevices));
$newUserWebPushDevices = $this->getWebPushDevicesForUsers($missingWebPushDevicesFor);
foreach ($missingWebPushDevicesFor as $userId) {
$this->userWebPushDevices[$userId] = $newUserWebPushDevices[$userId] ?? [];
}
// Add missing proxy devices
$missingProxyDevicesFor = array_diff($this->loadDevicesForUsers, array_keys($this->userProxyDevices));
$newUserProxyDevices = $this->getProxyDevicesForUsers($missingProxyDevicesFor);
foreach ($missingProxyDevicesFor as $userId) {
$this->userProxyDevices[$userId] = $newUserProxyDevices[$userId] ?? [];
}
$this->loadDevicesForUsers = [];
}
if (!empty($this->loadStatusForUsers)) {
$this->loadStatusForUsers = array_unique($this->loadStatusForUsers);
$missingStatusFor = array_diff($this->loadStatusForUsers, array_keys($this->userStatuses));
$newUserStatuses = $this->userStatusManager->getUserStatuses($missingStatusFor);
foreach ($missingStatusFor as $userId) {
$this->userStatuses[$userId] = $newUserStatuses[$userId] ?? null;
}
$this->loadStatusForUsers = [];
}
if (!empty($this->notificationsToPush)) {
foreach ($this->notificationsToPush as $id => $notification) {
$this->pushToDevice($id, $notification);
}
$this->notificationsToPush = [];
}
if (!empty($this->deleteAllsToPush)) {
foreach ($this->deleteAllsToPush as $userId => $bool) {
$this->pushDeleteToDevice((string)$userId, null);
}
$this->deleteAllsToPush = [];
}
if (!empty($this->deletesToPush)) {
foreach ($this->deletesToPush as $userId => $data) {
foreach ($data as $app => $notificationIds) {
$this->pushDeleteToDevice((string)$userId, $notificationIds, $app);
}
}
$this->deletesToPush = [];
}
$this->deferPayloads = false;
$this->wpClient->flush(fn ($r) => $this->webPushCallback($r));
$this->sendNotificationsToProxies();
}
/**
* @psalm-param list<array{id: int, uid: string, token: int, endpoint: string, ua_public: string, auth: string, app_types: string, activated: bool, activation_token: string}> $devices
* @psalm-return list<array{id: int, uid: string, token: int, endpoint: string, ua_public: string, auth: string, app_types: string, activated: bool, activation_token: string}>
*/
public function filterWebPushDeviceList(array $devices, string $app): array {
// Consider all 3 options as 'talk'
if (\in_array($app, ['spreed', 'talk', 'admin_notification_talk'], true)) {
$app = 'talk';
}
$devices = array_values(array_filter($devices, function ($device) use ($app) {
$appTypes = explode(',', (string)$device['app_types']);
return $device['activated'] && (\in_array($app, $appTypes)
|| (\in_array('all', $appTypes) && !\in_array('-' . $app, $appTypes)));
}));
return $this->filterByTokenAge($devices);
}
/**
* @param array $devices
* @psalm-param $devices list<array{id: int, uid: string, token: int, deviceidentifier: string, devicepublickey: string, devicepublickeyhash: string, pushtokenhash: string, proxyserver: string, apptype: string}>
* @param string $app
* @return array
* @psalm-return list<array{id: int, uid: string, token: int, deviceidentifier: string, devicepublickey: string, devicepublickeyhash: string, pushtokenhash: string, proxyserver: string, apptype: string}>
*/
public function filterProxyDeviceList(array $devices, string $app): array {
$isTalkNotification = \in_array($app, ['spreed', 'talk', 'admin_notification_talk'], true);
$talkDevices = array_filter($devices, static fn ($device) => $device['apptype'] === 'talk');
$otherDevices = array_filter($devices, static fn ($device) => $device['apptype'] !== 'talk');
$this->printInfo('Identified ' . count($talkDevices) . ' Talk devices and ' . count($otherDevices) . ' others.');
if ($isTalkNotification) {
// If you don't have a talk device, we fall back to the files app.
$devices = $talkDevices ?: $otherDevices;
} else {
// We only send file notifications to the files app.
// If you don't have such a device, we don't fall back
$devices = $otherDevices;
}
if (empty($devices)) {
return [];
}
return $this->filterByTokenAge(array_values($devices));
}
/**
* @template H
* @param list<H> $devices
* @return list<H>
*/
protected function filterByTokenAge(array $devices): array {
// We don't push to devices that are older than 60 days
$maxAge = $this->timeFactory->getTime() - self::MAX_PUSH_AGE;
$tokenAgeList = $deviceList = [];
foreach ($devices as $device) {
$device['token'] = (int)$device['token'];
$this->printInfo('');
$this->printInfo('Device token: ' . $device['token']);
try {
$tokenAge = $this->validateTokenAndGetAge($device['token']);
} catch (InvalidDeviceTokenException) {
if (isset($device['endpoint'])) {
$this->deleteWebPushToken($device['token']);
} else {
$this->deleteProxyPushToken($device['token']);
}
continue;
}
if ($tokenAge !== 0 && $tokenAge <= $maxAge) {
$this->printInfo('<comment>Device token ' . $device['token'] . ' "last checked" is older than 60 days: ' . $tokenAge . '</comment>');
continue;
}
$tokenAgeList[$device['token']] = $tokenAge;
$deviceList[$device['token']] = $device;
}
if (count($deviceList) < self::DEVICE_LIMIT) {
return array_values($deviceList);
}
arsort($tokenAgeList);
$tokenAgeList = array_slice($tokenAgeList, 0, self::DEVICE_LIMIT);
$devices = [];
foreach ($deviceList as $device) {
if (!isset($tokenAgeList[$device['token']]) && $tokenAgeList[$device['token']] !== 0) {
$this->printInfo('<comment>Device token ' . $device['token'] . ' is not in the most recent 20 devices: ' . $tokenAgeList[$device['token']] . '</comment>');
continue;
}
$devices[] = $device;
}
return $devices;
}
public function pushToDevice(int $id, INotification $notification): void {
if (!$this->config->getSystemValueBool('has_internet_connection', true)) {
$this->printInfo('<error>Internet connectivity is disabled in configuration file - no push notifications will be sent</error>');
return;
}
if ($this->deferPreparing) {
$this->notificationsToPush[$id] = clone $notification;
$this->loadDevicesForUsers[] = $notification->getUser();
$this->loadStatusForUsers[] = $notification->getUser();
return;
}
$user = $this->userManager->getExistingUser($notification->getUser());
if (!array_key_exists($notification->getUser(), $this->userStatuses)) {
$userStatus = $this->userStatusManager->getUserStatuses([
$notification->getUser(),
]);
$this->userStatuses[$notification->getUser()] = $userStatus[$notification->getUser()] ?? null;
}
if (isset($this->userStatuses[$notification->getUser()])) {
$userStatus = $this->userStatuses[$notification->getUser()];
if ($userStatus instanceof IUserStatus
&& $userStatus->getStatus() === IUserStatus::DND
&& !$notification->isPriorityNotification()) {
$this->printInfo('<error>User status is set to DND - no push notifications will be sent</error>');
return;
}
}
if (!array_key_exists($notification->getUser(), $this->userWebPushDevices)) {
$webPushDevices = $this->getWebPushDevicesForUser($notification->getUser());
$this->userWebPushDevices[$notification->getUser()] = $webPushDevices;
} else {
$webPushDevices = $this->userWebPushDevices[$notification->getUser()];
}
if (!array_key_exists($notification->getUser(), $this->userProxyDevices)) {
$proxyDevices = $this->getProxyDevicesForUser($notification->getUser());
$this->userProxyDevices[$notification->getUser()] = $proxyDevices;
} else {
$proxyDevices = $this->userProxyDevices[$notification->getUser()];
}
if (empty($proxyDevices) && empty($webPushDevices)) {
$this->printInfo('<comment>No devices found for user</comment>');
return;
}
if (!$notification->isValidParsed()) {
$language = $this->l10nFactory->getUserLanguage($user);
$this->printInfo('Language is set to ' . $language);
try {
$this->notificationManager->setPreparingPushNotification(true);
$notification = $this->notificationManager->prepare($notification, $language);
} catch (AlreadyProcessedException|IncompleteParsedNotificationException|\InvalidArgumentException $e) {
// FIXME remove \InvalidArgumentException in Nextcloud 39
$this->printInfo('Error when preparing notification for push: ' . $e::class);
return;
} finally {
$this->notificationManager->setPreparingPushNotification(false);
}
}
$this->webPushToDevice($id, $user, $webPushDevices, $notification);
$this->proxyPushToDevice($id, $user, $proxyDevices, $notification);
}
/**
* @param list<array{id: int, uid: string, token: int, endpoint: string, ua_public: string, auth: string, app_types: string, activated: bool, activation_token: string}> $devices
*/
public function webPushToDevice(int $id, IUser $user, array $devices, INotification $notification): void {
if (empty($devices)) {
$this->printInfo('<comment>No web push devices found for user</comment>');
return;
}
$this->printInfo('');
$this->printInfo('Found ' . count($devices) . ' devices registered for push notifications');
$devices = $this->filterWebPushDeviceList($devices, $notification->getApp());
if (empty($devices)) {
$this->printInfo('<comment>No devices left after filtering</comment>');
return;
}
$this->printInfo('Trying to push to ' . count($devices) . ' devices');
foreach ($devices as $device) {
$device['token'] = (int)$device['token'];
$this->printInfo('');
$this->printInfo('Device token: ' . $device['token']);
// If the endpoint got a 429 TOO_MANY_REQUESTS,
// we wait for the time sent by the server
if ($this->cache->get('wp.' . $device['endpoint'])) {
// It would be better to cache the notification to send it later
// in this case, but
// 429 is rare, and ~ an emergency response: dropping the notification
// is a solution good enough to not overload the push server
continue;
}
try {
$data = $this->encodeNotif($id, $notification, 3000);
$urgency = $this->getNotifTopicAndUrgency($data['app'], $data['type'])['urgency'];
$this->wpClient->enqueue(
$device['endpoint'],
$device['ua_public'],
$device['auth'],
json_encode($data, JSON_THROW_ON_ERROR),
urgency: $urgency
);
} catch (\JsonException $e) {
$this->log->error('JSON error while encoding push notification: ' . $e->getMessage(), ['exception' => $e]);
} catch (\ErrorException $e) {
$this->log->error('Error while sending push notification: ' . $e->getMessage(), ['exception' => $e]);
} catch (\InvalidArgumentException) {
// Failed to encrypt message for device: public key is invalid
$this->deleteWebPushToken($device['token']);
}
}
$this->printInfo('');
if (!$this->deferPayloads) {
$this->wpClient->flush(fn ($r) => $this->webPushCallback($r));
}
}
public function proxyPushToDevice(int $id, IUser $user, array $devices, INotification $notification): void {
if (empty($devices)) {
$this->printInfo('<comment>No proxy devices found for user</comment>');
return;
}
$userKey = $this->keyManager->getKey($user);
$this->printInfo('Private user key size: ' . strlen((string)$userKey->getPrivate()));
$this->printInfo('Public user key size: ' . strlen((string)$userKey->getPublic()));
$this->printInfo('');
$this->printInfo('Found ' . count($devices) . ' devices registered for push notifications');
$devices = $this->filterProxyDeviceList($devices, $notification->getApp());
if (empty($devices)) {
$this->printInfo('<comment>No devices left after filtering</comment>');
return;
}
$this->printInfo('Trying to push to ' . count($devices) . ' devices');
foreach ($devices as $device) {
$device['token'] = (int)$device['token'];
$this->printInfo('');
$this->printInfo('Device token: ' . $device['token']);
try {
$payload = json_encode($this->encryptAndSign($userKey->getPrivate(), $device, $id, $notification), JSON_THROW_ON_ERROR);
$proxyServer = rtrim($device['proxyserver'], '/');
if (!isset($this->payloadsToSend[$proxyServer])) {
$this->payloadsToSend[$proxyServer] = [];
}
$this->payloadsToSend[$proxyServer][] = $payload;
} catch (\JsonException $e) {
$this->log->error('JSON error while encoding push notification: ' . $e->getMessage(), ['exception' => $e]);
} catch (\InvalidArgumentException) {
// Failed to encrypt message for device: public key is invalid
$this->deleteProxyPushToken($device['token']);
}
}
$this->printInfo('');
if (!$this->deferPayloads) {
$this->sendNotificationsToProxies();
}
}
/**
* @param string $userId
* @param ?int[] $notificationIds
* @param string $app
*/
public function pushDeleteToDevice(string $userId, ?array $notificationIds, string $app = ''): void {
if (!$this->config->getSystemValueBool('has_internet_connection', true)) {
return;
}
if ($this->deferPreparing) {
if ($notificationIds === null) {
$this->deleteAllsToPush[$userId] = true;
if (isset($this->deletesToPush[$userId])) {
unset($this->deletesToPush[$userId]);
}
} else {
if (isset($this->deleteAllsToPush[$userId])) {
return;
}
$isTalkNotification = \in_array($app, ['spreed', 'talk', 'admin_notification_talk'], true);
$clientGroup = $isTalkNotification ? 'talk' : $app;
if (!isset($this->deletesToPush[$userId])) {
$this->deletesToPush[$userId] = [];
}
if (!isset($this->deletesToPush[$userId][$clientGroup])) {
$this->deletesToPush[$userId][$clientGroup] = [];
}
foreach ($notificationIds as $notificationId) {
$this->deletesToPush[$userId][$clientGroup][] = $notificationId;
}
}
$this->loadDevicesForUsers[] = $userId;
return;
}
$deleteAll = $notificationIds === null;
$user = $this->userManager->getExistingUser($userId);
if (!array_key_exists($userId, $this->userWebPushDevices)) {
$webPushDevices = $this->getWebPushDevicesForUser($userId);
$this->userWebPushDevices[$userId] = $webPushDevices;
} else {
$webPushDevices = $this->userWebPushDevices[$userId];
}
if (!array_key_exists($userId, $this->userProxyDevices)) {
$proxyDevices = $this->getProxyDevicesForUser($userId);
$this->userProxyDevices[$userId] = $proxyDevices;
} else {
$proxyDevices = $this->userProxyDevices[$userId];
}
if (!$deleteAll) {
// Only filter when it's not delete-all
$webPushDevices = $this->filterWebPushDeviceList($webPushDevices, $app);
$proxyDevices = $this->filterProxyDeviceList($proxyDevices, $app);
}
$this->webPushDeleteToDevice($userId, $user, $webPushDevices, $deleteAll, $notificationIds, $app);
$this->proxyPushDeleteToDevice($userId, $user, $proxyDevices, $deleteAll, $notificationIds, $app);
}
/**
* @param string $userId
* @param IUser $user
* @param bool $deleteAll
* @param ?int[] $notificationIds
* @param string $app
*/
public function webPushDeleteToDevice(string $userId, IUser $user, array $devices, bool $deleteAll, ?array $notificationIds, string $app = ''): void {
if (empty($devices)) {
return;
}
foreach ($devices as $device) {
$device['token'] = (int)$device['token'];
// If the endpoint got a 429 TOO_MANY_REQUESTS,
// we wait for the time sent by the server
if ($this->cache->get('wp.' . $device['endpoint'])) {
// It would be better to cache the notification to send it later
// in this case, but
// 429 is rare, and ~ an emergency response: dropping the notification
// is a solution good enough to not overload the push server
continue;
}
try {
if ($deleteAll) {
$data = $this->encodeDeleteNotifs(null);
try {
$payload = json_encode($data['data'], JSON_THROW_ON_ERROR);
$this->wpClient->enqueue($device['endpoint'], $device['ua_public'], $device['auth'], $payload);
} catch (\JsonException $e) {
$this->log->error('JSON error while encoding push notification: ' . $e->getMessage(), ['exception' => $e]);
}
} else {
$temp = $notificationIds;
while (!empty($temp)) {
$data = $this->encodeDeleteNotifs($temp);
$temp = $data['remaining'];
try {
$payload = json_encode($data['data'], JSON_THROW_ON_ERROR);
$this->wpClient->enqueue($device['endpoint'], $device['ua_public'], $device['auth'], $payload);
} catch (\JsonException $e) {
$this->log->error('JSON error while encoding push notification: ' . $e->getMessage(), ['exception' => $e]);
}
}
}
} catch (\InvalidArgumentException) {
// Failed to encrypt message for device: public key is invalid
$this->deleteWebPushToken($device['token']);
}
}
if (!$this->deferPayloads) {
$this->sendNotificationsToProxies();
}
}
/**
* @param string $userId
* @param IUser $user
* @param bool $deleteAll
* @param ?int[] $notificationIds
* @param string $app
*/
public function proxyPushDeleteToDevice(string $userId, IUser $user, array $devices, bool $deleteAll, ?array $notificationIds, string $app = ''): void {
if (empty($devices)) {
return;
}
$userKey = $this->keyManager->getKey($user);
foreach ($devices as $device) {
$device['token'] = (int)$device['token'];
try {
$proxyServer = rtrim((string)$device['proxyserver'], '/');
if (!isset($this->payloadsToSend[$proxyServer])) {
$this->payloadsToSend[$proxyServer] = [];
}
if ($deleteAll) {
$data = $this->encryptAndSignDelete($userKey->getPrivate(), $device, null);
try {
$this->payloadsToSend[$proxyServer][] = json_encode($data['payload'], JSON_THROW_ON_ERROR);
} catch (\JsonException $e) {
$this->log->error('JSON error while encoding push notification: ' . $e->getMessage(), ['exception' => $e]);
}
} else {
// The nextcloud application, requested with the proxy push,
// use to not support `delete-multiple`
if (!\in_array($app, ['spreed', 'talk', 'admin_notification_talk'], true)) {
foreach ($notificationIds ?? [] as $notificationId) {
$data = $this->encryptAndSignDelete($userKey->getPrivate(), $device, [$notificationId]);
try {
$this->payloadsToSend[$proxyServer][] = json_encode($data['payload'], JSON_THROW_ON_ERROR);
} catch (\JsonException $e) {
$this->log->error('JSON error while encoding push notification: ' . $e->getMessage(), ['exception' => $e]);
}
}
} else {
$temp = $notificationIds;
while (!empty($temp)) {
$data = $this->encryptAndSignDelete($userKey->getPrivate(), $device, $temp);
$temp = $data['remaining'];
try {
$this->payloadsToSend[$proxyServer][] = json_encode($data['payload'], JSON_THROW_ON_ERROR);
} catch (\JsonException $e) {
$this->log->error('JSON error while encoding push notification: ' . $e->getMessage(), ['exception' => $e]);
}
}
}
}
} catch (\InvalidArgumentException) {
// Failed to encrypt message for device: public key is invalid
$this->deleteProxyPushToken($device['token']);
}
}
if (!$this->deferPayloads) {
$this->sendNotificationsToProxies();
}
}
/**
* Delete expired web push subscriptions
*/
protected function webPushCallback(MessageSentReport $report): void {
if ($report->isSubscriptionExpired()) {
$this->deleteWebPushTokenByEndpoint($report->getEndpoint());
} elseif ($report->getResponse()?->getStatusCode() === 429) {
$retryAfter = (int)($report->getResponse()?->getHeader('Retry-After')[0] ?? '60');
$this->cache->set('wp.' . $report->getEndpoint(), true, $retryAfter);
}
}
protected function sendNotificationsToProxies(): void {
$pushNotifications = $this->payloadsToSend;
$this->payloadsToSend = [];
if (empty($pushNotifications)) {
return;
}
if (!$this->notificationManager->isFairUseOfFreePushService()) {
/**
* We want to keep offering our push notification service for free, but large
* users overload our infrastructure. For this reason we have to rate-limit the
* use of push notifications. If you need this feature, consider using Nextcloud Enterprise.
*/
return;
}
$subscriptionAwareServer = rtrim($this->appConfig->getAppValueString('subscription_aware_server', 'https://push-notifications.nextcloud.com'), '/');
if ($subscriptionAwareServer === 'https://push-notifications.nextcloud.com') {
$subscriptionKey = $this->globalAppConfig->getValueString('support', 'subscription_key');
} else {
$subscriptionKey = $this->appConfig->getAppValueString('push_subscription_key');
if ($subscriptionKey === '') {
$subscriptionKey = $this->createPushSubscriptionKey();
$this->appConfig->setAppValueString('push_subscription_key', $subscriptionKey);
}
}
$client = $this->clientService->newClient();
foreach ($pushNotifications as $proxyServer => $notifications) {
try {
$requestData = [
'body' => [
'notifications' => $notifications,
],
];
if ($subscriptionKey !== '' && $proxyServer === $subscriptionAwareServer) {
$requestData['headers']['X-Nextcloud-Subscription-Key'] = $subscriptionKey;
}
$postStartTime = microtime(true);
$response = $client->post($proxyServer . '/notifications', $requestData);
$postEndTime = microtime(true);
$this->printInfo('<comment>Request to push proxy [' . $proxyServer . '] took ' . (string)round($postEndTime - $postStartTime, 2) . 's</comment>');
$status = $response->getStatusCode();
$body = (string)$response->getBody();
try {
$bodyData = json_decode($body, true);
} catch (\JsonException) {
$bodyData = null;
}
} catch (ClientException $e) {
// Server responded with 4xx (400 Bad Request mostlikely)
$response = $e->getResponse();
$status = $response->getStatusCode();
$body = $response->getBody()->getContents();
try {
$bodyData = json_decode($body, true);
} catch (\JsonException) {
$bodyData = null;
}
} catch (ServerException $e) {
// Server responded with 5xx
$response = $e->getResponse();
$body = $response->getBody()->getContents();
$error = \is_string($body) ? $body : ('no reason given (' . $response->getStatusCode() . ')');
$this->log->debug('Could not send notification to push server [{url}]: {error}', [
'error' => $error,
'url' => $proxyServer,
'app' => 'notifications',
]);
$this->printInfo('<error>Could not send notification to push server [' . $proxyServer . ']</error>', '<error>' . $error . '</error>');
continue;
} catch (\Exception $e) {
$this->log->error($e->getMessage(), [
'exception' => $e,
]);
$error = $e->getMessage() ?: 'no reason given';
$this->printInfo('<error>Could not send notification to push server [' . $e::class . ']</error>', '<error>' . $error . '</error>');
continue;
}
if (is_array($bodyData) && array_key_exists('unknown', $bodyData) && array_key_exists('failed', $bodyData)) {
if (is_array($bodyData['unknown'])) {
// Proxy returns null when the array is empty
foreach ($bodyData['unknown'] as $unknownDevice) {
$this->printInfo('<comment>Deleting device because it is unknown by the push server [' . $proxyServer . ']: ' . $unknownDevice . '</comment>');
$this->deleteProxyPushTokenByDeviceIdentifier($proxyServer, $unknownDevice);
}
}
if ($bodyData['failed'] !== 0) {
$this->printInfo('<comment>Push notification sent, but ' . $bodyData['failed'] . ' failed</comment>');
} else {
$this->printInfo('<info>Push notification sent successfully</info>');
}
} elseif ($status !== Http::STATUS_OK) {
if ($status === Http::STATUS_TOO_MANY_REQUESTS) {
$this->appConfig->setAppValueInt('rate_limit_reached', $this->timeFactory->getTime());
}
$error = $body && $bodyData === null ? $body : 'no reason given';
$this->printInfo('<error>Could not send notification to push server [' . $proxyServer . ']</error>', '<error>' . $error . '</error>');
$this->log->warning('Could not send notification to push server [{url}]: {error}', [
'error' => $error,
'url' => $proxyServer,
'app' => 'notifications',
]);
} else {
$error = $body && $bodyData === null ? $body : 'no reason given';
$this->printInfo('<comment>Push notification sent but response was not parsable, using an outdated push proxy? [' . $proxyServer . ']</comment>', '<comment>' . $error . '</comment>');
$this->log->info('Push notification sent but response was not parsable, using an outdated push proxy? [{url}]: {error}', [
'error' => $error,
'url' => $proxyServer,
'app' => 'notifications',
]);
}
}
}
/**
* @throws InvalidDeviceTokenException
*/
protected function validateTokenAndGetAge(int $tokenId): int {
// This is a web session token
if ($tokenId < 0) {
// Temporarily allowing all
return 0;
}
$age = $this->cache->get('t' . $tokenId);
if ($age === null) {
try {
// Check if the token is still valid...
$token = $this->tokenProvider->getTokenById($tokenId);
$type = $this->callSafelyForToken($token, 'getType');
if ($type === IToken::WIPE_TOKEN) {
// Token does not exist any more, should drop the push device entry
$this->printInfo('Device token ' . $tokenId . ' is marked for remote wipe');
$this->cache->set('t' . $tokenId, 0, 600);
throw new InvalidDeviceTokenException('wipe');
}
$age = $token->getLastCheck();
$lastActivity = $this->callSafelyForToken($token, 'getLastActivity');
if ($lastActivity) {
$age = max($age, $lastActivity);
}
$this->cache->set('t' . $tokenId, $age, 600);
} catch (InvalidTokenException) {
// Token does not exist any more, should drop the push device entry
$this->printInfo('<error>InvalidTokenException is thrown for ' . $tokenId . '</error>');
$this->cache->set('t' . $tokenId, 0, 600);
throw new InvalidDeviceTokenException('invalid');
}
}
return $age;
}
/**
* The functions are not part of public API so we are a bit more careful
* @param IToken $token
* @param 'getLastActivity'|'getType' $method
* @return int|null
*/
protected function callSafelyForToken(IToken $token, string $method): ?int {
if (method_exists($token, $method) || method_exists($token, '__call')) {
try {
$result = $token->$method();
if (is_int($result)) {
return $result;
}
} catch (\BadFunctionCallException) {
}
}
return null;
}
/**
* @param int $id
* @param INotification $notification
* @param int $maxLength max length of the push notification (shorter than 240 for proxy push, 3993 for webpush)
* @return array
* @psalm-return array{nid: int, app: string, subject: string, type: string, id: string}
*/
protected function encodeNotif(int $id, INotification $notification, int $maxLength): array {
$data = [
'nid' => $id,
'app' => $notification->getApp(),
'subject' => '',
'type' => $notification->getObjectType(),
'id' => $notification->getObjectId(),
];
// Max length of encryption is ~240, so we need to make sure the subject is shorter.
// Also, subtract two for encapsulating quotes will be added.
$maxDataLength = $maxLength - strlen((string)json_encode($data)) - 2;
$data['subject'] = Util::shortenMultibyteString($notification->getParsedSubject(), $maxDataLength);
if ($notification->getParsedSubject() !== $data['subject']) {
$data['subject'] .= 'β¦';
}
return $data;
}
/**
* @param ?int[] $ids
* @return array
* @psalm-return array{data: array{'delete-all'?: true, 'delete-multiple'?: true, delete?: true, nid?: int, nids?: int[]}, remaining: int[]}
*/
protected function encodeDeleteNotifs(?array $ids): array {
$remainingIds = [];
if ($ids === null) {
$data = [
'delete-all' => true,
];
} elseif (count($ids) === 1) {
$data = [
'nid' => array_pop($ids),
'delete' => true,
];
} else {
$remainingIds = array_splice($ids, 10);
$data = [
'nids' => $ids,
'delete-multiple' => true,
];
}
return [
'remaining' => $remainingIds,
'data' => $data
];
}
/**
* Get notification urgency (priority) and topic, the urgency is compatible with
* [RFC8030's Urgency](https://www.rfc-editor.org/rfc/rfc8030#section-5.3)
*
*
* @param string app
* @param string type
* @return array
* @psalm-return array{urgency: string, type: string}
*/
protected function getNotifTopicAndUrgency(string $app, string $type): array {
$res = [];
if (\in_array($app, ['spreed', 'talk', 'admin_notification_talk'], true)) {
$res['urgency'] = 'high';
$res['type'] = $type === 'call' ? 'voip' : 'alert';
} elseif ($app === 'twofactor_nextcloud_notification' || $app === 'phonetrack') {
$res['urgency'] = 'high';
$res['type'] = 'alert';
} else {
$res['urgency'] = 'normal';
$res['type'] = 'alert';
}
return $res;
}
/**
* @param string $userPrivateKey
* @param array $device
* @param int $id
* @param INotification $notification
* @return array
* @psalm-return array{deviceIdentifier: string, pushTokenHash: string, subject: string, signature: string, priority: string, type: string}
* @throws InvalidTokenException
* @throws \InvalidArgumentException
*/
protected function encryptAndSign(string $userPrivateKey, array $device, int $id, INotification $notification): array {
$data = $this->encodeNotif($id, $notification, 200);
$ret = $this->getNotifTopicAndUrgency($data['app'], $data['type']);
$priority = $ret['urgency'];
$type = $ret['type'];
$jsonData = json_encode($data, JSON_THROW_ON_ERROR);
$this->printInfo('Device public key size: ' . strlen((string)$device['devicepublickey']));
$this->printInfo('Data to encrypt is: ' . $jsonData);
$padding = $this->appConfig->getAppValueString('push_encryption_padding', 'OAEP') === 'OAEP' ? OPENSSL_PKCS1_OAEP_PADDING : OPENSSL_PKCS1_PADDING;
if (!openssl_public_encrypt($jsonData, $encryptedSubject, $device['devicepublickey'], $padding)) {
$error = openssl_error_string() ?: 'Unknown OpenSSL error';
$this->log->error($error, ['app' => 'notifications']);
$this->printInfo('<error>Error while encrypting data: "' . $error . '"</error>');
throw new \InvalidArgumentException('Failed to encrypt message for device');
}
if (openssl_sign($encryptedSubject, $signature, $userPrivateKey, OPENSSL_ALGO_SHA512)) {
$this->printInfo('Signed encrypted push subject');
} else {
$this->printInfo('<error>Failed to signed encrypted push subject</error>');
}
$base64EncryptedSubject = base64_encode($encryptedSubject);
$base64Signature = base64_encode($signature);
return [
'deviceIdentifier' => $device['deviceidentifier'],
'pushTokenHash' => $device['pushtokenhash'],
'subject' => $base64EncryptedSubject,
'signature' => $base64Signature,
'priority' => $priority,
'type' => $type,
];
}
/**
* @param string $userPrivateKey
* @param array $device
* @param ?int[] $ids
* @return array