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