]> git.mxchange.org Git - friendica.git/blob - src/Model/Subscription.php
Preparation for creating push notification
[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\Database\DBA;
31 use Friendica\DI;
32 use Friendica\Util\Crypto;
33
34 class Subscription
35 {
36         /**
37          * Select a subscription record exists
38          *
39          * @param int   $applicationid
40          * @param int   $uid
41          * @param array $fields
42          *
43          * @return bool Does it exist?
44          */
45         public static function select(int $applicationid, int $uid, array $fields = [])
46         {
47                 return DBA::selectFirst('subscription', $fields, ['application-id' => $applicationid, 'uid' => $uid]);
48         }
49
50         /**
51          * Check if a subscription record exists
52          *
53          * @param int   $applicationid
54          * @param int   $uid
55          *
56          * @return bool Does it exist?
57          */
58         public static function exists(int $applicationid, int $uid)
59         {
60                 return DBA::exists('subscription', ['application-id' => $applicationid, 'uid' => $uid]);
61         }
62
63         /**
64          * Update a subscription record
65          *
66          * @param int   $applicationid
67          * @param int   $uid
68          * @param array $fields subscription fields
69          *
70          * @return bool result of update
71          */
72         public static function update(int $applicationid, int $uid, array $fields)
73         {
74                 return DBA::update('subscription', $fields, ['application-id' => $applicationid, 'uid' => $uid]);
75         }
76
77         /**
78          * Insert or replace a subscription record
79          *
80          * @param array $fields subscription fields
81          *
82          * @return bool result of replace
83          */
84         public static function replace(array $fields)
85         {
86                 return DBA::replace('subscription', $fields);
87         }
88
89         /**
90          * Delete a subscription record
91          *
92          * @param int $applicationid
93          * @param int $uid
94          * @return bool
95          */
96         public static function delete(int $applicationid, int $uid)
97         {
98                 return DBA::delete('subscription', ['application-id' => $applicationid, 'uid' => $uid]);
99         }
100
101         /**
102          * Fetch a VAPID key
103          *
104          * @return string
105          */
106         public static function getVapidKey(): string
107         {
108                 $keypair = DI::config()->get('system', 'ec_keypair');
109                 if (empty($keypair)) {
110                         $keypair = Crypto::newECKeypair();
111                         DI::config()->set('system', 'ec_keypair', $keypair);
112                 }
113                 return $keypair['vapid-public'];
114         }
115
116         /**
117          * Prepare push notification
118          *
119          * @param int $nid 
120          * @return void 
121          */
122         public static function pushByNotificationId(int $nid)
123         {
124                 $notification = DBA::selectFirst('notification', [], ['id' => $nid]);
125                 $type = Notification::getType($notification);
126                 if (empty($type)) {
127                         return;
128                 }
129
130                 $subscriptions = DBA::select('subscription', [], ['uid' => $notification['uid'], $type => true]);
131                 while ($subscription = DBA::fetch($subscriptions)) {
132                         Logger::info('Push notification', ['id' => $subscription['id'], 'uid' => $subscription['uid'], 'type' => $type]);
133                 }
134                 DBA::close($subscriptions);
135         }
136 }