]> git.mxchange.org Git - friendica.git/blob - src/Model/Subscription.php
fa93eb52187c34bfaa7cbd325c1d6d59a6e5a08b
[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 namespace Friendica\Model;
27
28 use Friendica\Database\DBA;
29 use Friendica\DI;
30 use Friendica\Util\Crypto;
31
32 class Subscription
33 {
34         /**
35          * Select a subscription record exists
36          *
37          * @param int   $applicationid
38          * @param int   $uid
39          * @param array $fields
40          *
41          * @return bool Does it exist?
42          */
43         public static function select(int $applicationid, int $uid, array $fields = [])
44         {
45                 return DBA::selectFirst('subscription', $fields, ['application-id' => $applicationid, 'uid' => $uid]);
46         }
47
48         /**
49          * Check if a subscription record exists
50          *
51          * @param int   $applicationid
52          * @param int   $uid
53          *
54          * @return bool Does it exist?
55          */
56         public static function exists(int $applicationid, int $uid)
57         {
58                 return DBA::exists('subscription', ['application-id' => $applicationid, 'uid' => $uid]);
59         }
60
61         /**
62          * Update a subscription record
63          *
64          * @param int   $applicationid
65          * @param int   $uid
66          * @param array $fields subscription fields
67          *
68          * @return bool result of update
69          */
70         public static function update(int $applicationid, int $uid, array $fields)
71         {
72                 return DBA::update('subscription', $fields, ['application-id' => $applicationid, 'uid' => $uid]);
73         }
74
75         /**
76          * Insert or replace a subscription record
77          *
78          * @param array $fields subscription fields
79          *
80          * @return bool result of replace
81          */
82         public static function replace(array $fields)
83         {
84                 return DBA::replace('subscription', $fields);
85         }
86
87         /**
88          * Delete a subscription record
89          *
90          * @param int $applicationid
91          * @param int $uid
92          * @return bool
93          */
94         public static function delete(int $applicationid, int $uid)
95         {
96                 return DBA::delete('subscription', ['application-id' => $applicationid, 'uid' => $uid]);
97         }
98
99         /**
100          * Fetch a VAPID key
101          *
102          * @return string
103          */
104         public static function getVapidKey(): string
105         {
106                 $keypair = DI::config()->get('system', 'ec_keypair');
107                 if (empty($keypair)) {
108                         $keypair = Crypto::newECKeypair();
109                         DI::config()->set('system', 'ec_keypair', $keypair);
110                 }
111                 return $keypair['vapid-public'];
112         }
113 }