]> git.mxchange.org Git - friendica.git/blob - src/Model/Subscription.php
Use the existing VAPID key generation
[friendica.git] / src / Model / Subscription.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22  /**
23   * @see https://github.com/web-push-libs/web-push-php
24   * Possibly we should simply use this.
25   */
26
27 namespace Friendica\Model;
28
29 use Friendica\Core\Logger;
30 use Friendica\Core\Worker;
31 use Friendica\Database\DBA;
32 use Friendica\DI;
33 use Friendica\Util\Crypto;
34 use Minishlink\WebPush\VAPID;
35
36 class Subscription
37 {
38         /**
39          * Select a subscription record exists
40          *
41          * @param int   $applicationid
42          * @param int   $uid
43          * @param array $fields
44          *
45          * @return bool Does it exist?
46          */
47         public static function select(int $applicationid, int $uid, array $fields = [])
48         {
49                 return DBA::selectFirst('subscription', $fields, ['application-id' => $applicationid, 'uid' => $uid]);
50         }
51
52         /**
53          * Check if a subscription record exists
54          *
55          * @param int   $applicationid
56          * @param int   $uid
57          *
58          * @return bool Does it exist?
59          */
60         public static function exists(int $applicationid, int $uid)
61         {
62                 return DBA::exists('subscription', ['application-id' => $applicationid, 'uid' => $uid]);
63         }
64
65         /**
66          * Update a subscription record
67          *
68          * @param int   $applicationid
69          * @param int   $uid
70          * @param array $fields subscription fields
71          *
72          * @return bool result of update
73          */
74         public static function update(int $applicationid, int $uid, array $fields)
75         {
76                 return DBA::update('subscription', $fields, ['application-id' => $applicationid, 'uid' => $uid]);
77         }
78
79         /**
80          * Insert or replace a subscription record
81          *
82          * @param array $fields subscription fields
83          *
84          * @return bool result of replace
85          */
86         public static function replace(array $fields)
87         {
88                 return DBA::replace('subscription', $fields);
89         }
90
91         /**
92          * Delete a subscription record
93          *
94          * @param int $applicationid
95          * @param int $uid
96          * @return bool
97          */
98         public static function delete(int $applicationid, int $uid)
99         {
100                 return DBA::delete('subscription', ['application-id' => $applicationid, 'uid' => $uid]);
101         }
102
103         /**
104          * Fetch a VAPID keypair
105          *
106          * @return array
107          */
108         private static function getKeyPair(): array
109         {
110                 $keypair = DI::config()->get('system', 'ec_keypair');
111                 if (empty($keypair['publicKey']) || empty($keypair['privateKey'])) {
112                         $keypair = VAPID::createVapidKeys();                    
113                         DI::config()->set('system', 'ec_keypair', $keypair);
114                 }
115                 return $keypair;
116         }
117
118         /**
119          * Fetch the public VAPID key
120          *
121          * @return string
122          */
123         public static function getPublicVapidKey(): string
124         {
125                 $keypair = self::getKeyPair();
126                 return $keypair['publicKey'];
127         }
128
129         /**
130          * Fetch the public VAPID key
131          *
132          * @return string
133          */
134         public static function getPrivateVapidKey(): string
135         {
136                 $keypair = self::getKeyPair();
137                 return $keypair['privateKey'];
138         }
139
140         /**
141          * Prepare push notification
142          *
143          * @param int $nid
144          * @return void
145          */
146         public static function pushByNotificationId(int $nid)
147         {
148                 $notification = DBA::selectFirst('notification', [], ['id' => $nid]);
149
150                 $type = Notification::getType($notification);
151                 if (empty($type)) {
152                         return;
153                 }
154
155                 $subscriptions = DBA::select('subscription', [], ['uid' => $notification['uid'], $type => true]);
156                 while ($subscription = DBA::fetch($subscriptions)) {
157                         Logger::info('Push notification', ['id' => $subscription['id'], 'uid' => $subscription['uid'], 'type' => $type]);
158                         Worker::add(PRIORITY_HIGH, 'PushSubscription', $subscription['id']);
159                 }
160                 DBA::close($subscriptions);
161         }
162 }