]> git.mxchange.org Git - friendica.git/blob - src/Model/Subscription.php
173d5a9ebff3bef83ecb29d08e8df523a4ae79e3
[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\Database\DBA;
25 use Friendica\DI;
26 use Friendica\Util\Crypto;
27
28 class Subscription
29 {
30         /**
31          * Insert an Subscription record
32          *
33          * @param array $fields subscription fields
34          *
35          * @return bool result of replace
36          */
37         public static function replace(array $fields)
38         {
39                 return DBA::replace('subscription', $fields);
40         }
41
42         /**
43          * Delete a subscription record
44          * @param int $applicationid 
45          * @param int $uid 
46          * @return bool 
47          */
48         public static function delete(int $applicationid, int $uid)
49         {
50                 return DBA::delete('subscription', ['application-id' => $applicationid, 'uid' => $uid]);
51         }
52
53         /**
54          * Fetch a VAPID key
55          * @return string
56          */
57         public static function getVapidKey():string
58         {
59                 $keypair = DI::config()->get('system', 'ec_keypair');
60                 if (empty($keypair)) {
61                         $keypair = Crypto::newECKeypair();
62                         DI::config()->set('system', 'ec_keypair', $keypair);
63                 }
64                 return $keypair['vapid'];
65         }
66 }