]> git.mxchange.org Git - friendica.git/blob - src/Contact/FriendSuggest/Factory/FriendSuggest.php
Update copyright
[friendica.git] / src / Contact / FriendSuggest / Factory / FriendSuggest.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\FriendSuggest\Factory;
23
24 use Friendica\BaseFactory;
25 use Friendica\Capabilities\ICanCreateFromTableRow;
26 use Friendica\Contact\FriendSuggest\Entity;
27
28 class FriendSuggest extends BaseFactory implements ICanCreateFromTableRow
29 {
30         /**
31          * @inheritDoc
32          */
33         public function createFromTableRow(array $row): Entity\FriendSuggest
34         {
35                 return new Entity\FriendSuggest(
36                         $row['uid'] ?? 0,
37                         $row['cid'] ?? 0,
38                         $row['name'] ?? '',
39                         $row['url'] ?? '',
40                         $row['request'] ?? '',
41                         $row['photo'] ?? '',
42                         $row['note'] ?? '',
43                         new \DateTime($row['created'] ?? 'now', new \DateTimeZone('UTC')),
44                         $row['id'] ?? null
45                 );
46         }
47
48         public function createNew(
49                 int $uid,
50                 int $cid,
51                 string $name = '',
52                 string $url = '',
53                 string $request = '',
54                 string $photo = '',
55                 string $note = ''
56         ): Entity\FriendSuggest {
57                 return $this->createFromTableRow([
58                         'uid'     => $uid,
59                         'cid'     => $cid,
60                         'name'    => $name,
61                         'url'     => $url,
62                         'request' => $request,
63                         'photo'   => $photo,
64                         'note'    => $note,
65                 ]);
66         }
67
68         public function createEmpty(int $id): Entity\FriendSuggest
69         {
70                 return $this->createFromTableRow(['id' => $id]);
71         }
72 }