Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/notifications.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/Push.php13
1 files changed, 11 insertions, 2 deletions
diff --git a/lib/Push.php b/lib/Push.php
index c3f6405..124e8dc 100644
--- a/lib/Push.php
+++ b/lib/Push.php
@@ -260,11 +260,20 @@ class Push {
$client = $this->clientService->newClient();
foreach ($pushNotifications as $proxyServer => $notifications) {
try {
- $response = $client->post($proxyServer . '/notifications', [
+ $requestData = [
'body' => [
'notifications' => $notifications,
],
- ]);
+ ];
+
+ if ($proxyServer === 'https://push-notifications.nextcloud.com') {
+ $subscriptionKey = $this->config->getAppValue('support', 'subscription_key');
+ if ($subscriptionKey) {
+ $requestData['headers']['X-Nextcloud-Subscription-Key'] = $subscriptionKey;
+ }
+ }
+
+ $response = $client->post($proxyServer . '/notifications', $requestData);
} catch (ClientException $e) {
// Server responded with 4xx (400 Bad Request mostlikely)
$response = $e->getResponse();