]> git.mxchange.org Git - friendica.git/blob - src/Model/Post/Collection.php
Funkwhale context file moved
[friendica.git] / src / Model / Post / Collection.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, 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\Post;
23
24 use Friendica\Database\DBA;
25 use BadMethodCallException;
26 use Friendica\Database\Database;
27 use Friendica\DI;
28 use Friendica\Model\Item;
29 use Friendica\Protocol\ActivityPub;
30
31 class Collection
32 {
33         const FEATURED = 0;
34
35         /**
36          * Add a post to a collection
37          *
38          * @param integer $uri_id
39          * @param integer $type
40          * @param integer $cache_uid If set to a non zero value, the featured cache is cleared
41          */
42         public static function add(int $uri_id, int $type, int $cache_uid = 0)
43         {
44                 if (empty($uri_id)) {
45                         throw new BadMethodCallException('Empty URI_id');
46                 }
47
48                 DBA::insert('post-collection', ['uri-id' => $uri_id, 'type' => $type], Database::INSERT_IGNORE);
49
50                 if (!empty($cache_uid) && ($type == self::FEATURED)) {
51                         DI::cache()->delete(ActivityPub\Transmitter::CACHEKEY_FEATURED . $cache_uid);
52                 }
53         }
54
55         /**
56          * Remove a post from a collection
57          *
58          * @param integer $uri_id
59          * @param integer $type
60          * @param integer $cache_uid If set to a non zero value, the featured cache is cleared
61          */
62         public static function remove(int $uri_id, int $type, int $cache_uid = 0)
63         {
64                 if (empty($uri_id)) {
65                         throw new BadMethodCallException('Empty URI_id');
66                 }
67
68                 DBA::delete('post-collection', ['uri-id' => $uri_id, 'type' => $type]);
69
70                 if (!empty($cache_uid) && ($type == self::FEATURED)) {
71                         DI::cache()->delete(ActivityPub\Transmitter::CACHEKEY_FEATURED . $cache_uid);
72                 }
73         }
74
75         /**
76          * Fetch collections for a given contact
77          *
78          * @param integer $cid
79          * @param [type] $type
80          * @param array $fields
81          * @return array
82          */
83         public static function selectToArrayForContact(int $cid, int $type = self::FEATURED, array $fields = []) 
84         {
85                 return DBA::selectToArray('collection-view', $fields, ['cid' => $cid, 'private' => [Item::PUBLIC, Item::UNLISTED], 'deleted' => false, 'type' => $type]);
86         }
87 }