]> git.mxchange.org Git - friendica.git/blob - src/Contact/LocalRelationship/Factory/LocalRelationship.php
Only attach images
[friendica.git] / src / Contact / LocalRelationship / Factory / LocalRelationship.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\Contact\LocalRelationship\Factory;
23
24 use Friendica\BaseFactory;
25 use Friendica\Capabilities\ICanCreateFromTableRow;
26 use Friendica\Contact\LocalRelationship\Entity;
27 use Friendica\Core\Protocol;
28 use Friendica\Model\Contact;
29
30 class LocalRelationship extends BaseFactory implements ICanCreateFromTableRow
31 {
32         /**
33          * @inheritDoc
34          */
35         public function createFromTableRow(array $row): Entity\LocalRelationship
36         {
37                 return new Entity\LocalRelationship(
38                         $row['uid'],
39                         $row['cid'],
40                         $row['blocked'] ?? false,
41                         $row['ignored'] ?? false,
42                         $row['collapsed'] ?? false,
43                         $row['hidden'] ?? false,
44                         $row['pending'] ?? false,
45                         $row['rel'] ?? Contact::NOTHING,
46                         $row['info'] ?? '',
47                         $row['notify_new_posts'] ?? false,
48                         $row['remote_self'] ?? false,
49                         $row['fetch_further_information'] ?? 0,
50                         $row['ffi_keyword_denylist'] ?? '',
51                         $row['subhub'] ?? false,
52                         $row['hub-verify'] ?? '',
53                         $row['protocol'] ?? Protocol::PHANTOM,
54                         $row['rating'] ?? null,
55                         $row['priority'] ?? 0
56                 );
57         }
58 }