]> git.mxchange.org Git - friendica.git/blob - src/Model/Post/Collection.php
We now store the receivers as well
[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
28 class Collection
29 {
30         const FEATURED = 0;
31
32         /**
33          * Add a post to a collection
34          *
35          * @param integer $uri_id
36          * @param integer $type
37          */
38         public static function add(int $uri_id, int $type)
39         {
40                 if (empty($uri_id)) {
41                         throw new BadMethodCallException('Empty URI_id');
42                 }
43
44                 DBA::insert('post-collection', ['uri-id' => $uri_id, 'type' => $type], Database::INSERT_IGNORE);
45         }
46
47         /**
48          * Remove a post from a collection
49          *
50          * @param integer $uri_id
51          * @param integer $type
52          */
53         public static function remove(int $uri_id, int $type)
54         {
55                 if (empty($uri_id)) {
56                         throw new BadMethodCallException('Empty URI_id');
57                 }
58
59                 DBA::delete('post-collection', ['uri-id' => $uri_id, 'type' => $type]);
60         }
61
62         /**
63          * Fetch collections for a given contact
64          *
65          * @param integer $cid
66          * @param [type] $type
67          * @param array $fields
68          * @return array
69          */
70         public static function selectToArrayForContact(int $cid, int $type = self::FEATURED, array $fields = []) 
71         {
72                 return DBA::selectToArray('collection-view', $fields, ['cid' => $cid, 'type' => $type]);
73         }
74 }