]> git.mxchange.org Git - friendica.git/blob - src/Model/Subscription.php
59e71307f5ffb4092bf67fbe132ec823e65f63bc
[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 namespace Friendica\Model;
23
24 use Friendica\Core\Logger;
25 use Friendica\Core\Worker;
26 use Friendica\Database\DBA;
27 use Friendica\DI;
28 use Minishlink\WebPush\VAPID;
29
30 class Subscription
31 {
32         /**
33          * Select a subscription record exists
34          *
35          * @param int   $applicationid
36          * @param int   $uid
37          * @param array $fields
38          *
39          * @return bool Does it exist?
40          */
41         public static function select(int $applicationid, int $uid, array $fields = [])
42         {
43                 return DBA::selectFirst('subscription', $fields, ['application-id' => $applicationid, 'uid' => $uid]);
44         }
45
46         /**
47          * Check if a subscription record exists
48          *
49          * @param int   $applicationid
50          * @param int   $uid
51          *
52          * @return bool Does it exist?
53          */
54         public static function exists(int $applicationid, int $uid)
55         {
56                 return DBA::exists('subscription', ['application-id' => $applicationid, 'uid' => $uid]);
57         }
58
59         /**
60          * Update a subscription record
61          *
62          * @param int   $applicationid
63          * @param int   $uid
64          * @param array $fields subscription fields
65          *
66          * @return bool result of update
67          */
68         public static function update(int $applicationid, int $uid, array $fields)
69         {
70                 return DBA::update('subscription', $fields, ['application-id' => $applicationid, 'uid' => $uid]);
71         }
72
73         /**
74          * Insert or replace a subscription record
75          *
76          * @param array $fields subscription fields
77          *
78          * @return bool result of replace
79          */
80         public static function replace(array $fields)
81         {
82                 return DBA::replace('subscription', $fields);
83         }
84
85         /**
86          * Delete a subscription record
87          *
88          * @param int $applicationid
89          * @param int $uid
90          * @return bool
91          */
92         public static function delete(int $applicationid, int $uid)
93         {
94                 return DBA::delete('subscription', ['application-id' => $applicationid, 'uid' => $uid]);
95         }
96
97         /**
98          * Fetch a VAPID keypair
99          *
100          * @return array
101          */
102         private static function getKeyPair(): array
103         {
104                 $keypair = DI::config()->get('system', 'ec_keypair');
105                 if (empty($keypair['publicKey']) || empty($keypair['privateKey'])) {
106                         $keypair = VAPID::createVapidKeys();
107                         DI::config()->set('system', 'ec_keypair', $keypair);
108                 }
109                 return $keypair;
110         }
111
112         /**
113          * Fetch the public VAPID key
114          *
115          * @return string
116          */
117         public static function getPublicVapidKey(): string
118         {
119                 $keypair = self::getKeyPair();
120                 return $keypair['publicKey'];
121         }
122
123         /**
124          * Fetch the public VAPID key
125          *
126          * @return string
127          */
128         public static function getPrivateVapidKey(): string
129         {
130                 $keypair = self::getKeyPair();
131                 return $keypair['privateKey'];
132         }
133
134         /**
135          * Prepare push notification
136          *
137          * @param int $nid
138          * @return void
139          */
140         public static function pushByNotificationId(int $nid)
141         {
142                 $notification = DBA::selectFirst('notification', [], ['id' => $nid]);
143
144                 $type = Notification::getType($notification);
145
146                 $desktop_notification = !in_array($type, ['reblog', 'favourite']);
147
148                 if (DI::pConfig()->get($notification['uid'], 'system', 'notify_like') && ($type == 'favourite')) {
149                         $desktop_notification = true;
150                 }
151
152                 if (DI::pConfig()->get($notification['uid'], 'system', 'notify_announce') && ($type == 'reblog')) {
153                         $desktop_notification = true;
154                 }
155
156                 if ($desktop_notification) {
157                         notification_from_array($notification);
158                 }
159
160                 if (empty($type)) {
161                         return;
162                 }
163
164                 $subscriptions = DBA::select('subscription', [], ['uid' => $notification['uid'], $type => true]);
165                 while ($subscription = DBA::fetch($subscriptions)) {
166                         Logger::info('Push notification', ['id' => $subscription['id'], 'uid' => $subscription['uid'], 'type' => $type]);
167                         Worker::add(PRIORITY_HIGH, 'PushSubscription', $subscription['id'], $nid);
168                 }
169                 DBA::close($subscriptions);
170         }
171 }