forked from bitfireAT/nc_ext_dav_push
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebPushTransport.php
More file actions
128 lines (103 loc) · 3.41 KB
/
WebPushTransport.php
File metadata and controls
128 lines (103 loc) · 3.41 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
<?php
declare(strict_types=1);
/**
* @copyright 2024 Jonathan Treffler <mail@jonathan-treffler.de>
*
* @author Jonathan Treffler <mail@jonathan-treffler.de>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
namespace OCA\DavPush\PushTransports;
use OCA\DavPush\Transport\Transport;
use OCA\DavPush\Service\WebPushSubscriptionService;
use OCA\DavPush\Errors\WebPushSubscriptionNotFound;
use Sabre\Xml\Service;
class WebPushTransport extends Transport {
protected $id = "web-push";
public function __construct(
private WebPushSubscriptionService $webPushSubscriptionService,
) {}
private function parseOptions(array $options): array {
$result = [];
foreach($options as $option) {
if ($option["name"] == "{DAV:Push}push-resource") {
$result["pushResource"] = $option["value"];
}
}
return $result;
}
public function validateOptions($options): array {
['pushResource' => $pushResource] = $this->parseOptions($options);
// TODO: check if string is valid URL
if(isset($pushResource) && $pushResource !== '') {
return [
'valid' => True,
'errors' => [],
];
} else {
return [
'valid' => False,
'errors' => ["push resource not provided"]
];
}
}
public function registerSubscription($subsciptionId, $options) {
['pushResource' => $pushResource] = $this->parseOptions($options);
$this->webPushSubscriptionService->create($subsciptionId, $pushResource);
return [
'success' => True,
'response' => "",
];
}
public function notify(string $userId, string $collectionName, int $subscriptionId) {
$xmlService = new Service();
$pushResource = $this->webPushSubscriptionService->findBySubscriptionId($subscriptionId)->getPushResource();
$content = $xmlService->write('{DAV:Push}push-message', [
'{DAV:Push}topic' => $collectionName,
]);
$options = [
'http' => [
'method' => 'POST',
'content' => $content,
'header' => [
'TTL: 86400',
'Content-Encoding: aes128gcm',
],
],
];
$context = stream_context_create($options);
$result = file_get_contents($pushResource, false, $context);
}
public function getSubscriptionIdFromOptions(string $userId, string $collectionName, $options): ?int {
['pushResource' => $pushResource] = $this->parseOptions($options);
try {
return $this->webPushSubscriptionService->findByPushResource($userId, $collectionName, $pushResource)->getSubscriptionId();
} catch (WebPushSubscriptionNotFound $e) {
return null;
}
}
public function updateSubscription($subsciptionId, $options) {
// there are no options which can be edited -> NOOP
return [
'success' => True,
'response' => "",
];
}
public function deleteSubscription($subsciptionId) {
$this->webPushSubscriptionService->deleteBySubscriptionId($subsciptionId);
}
}