]> git.mxchange.org Git - friendica.git/blob - src/Navigation/Notifications/Factory/Notify.php
Add missing copyright text
[friendica.git] / src / Navigation / Notifications / Factory / Notify.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\Navigation\Notifications\Factory;
23
24 use Friendica\BaseFactory;
25 use Friendica\Capabilities\ICanCreateFromTableRow;
26 use Friendica\Content\Text\BBCode;
27 use GuzzleHttp\Psr7\Uri;
28
29 class Notify extends BaseFactory implements ICanCreateFromTableRow
30 {
31         public function createFromTableRow(array $row): \Friendica\Navigation\Notifications\Entity\Notify
32         {
33                 return new \Friendica\Navigation\Notifications\Entity\Notify(
34                         $row['type'],
35                         $row['name'],
36                         new Uri($row['url']),
37                         new Uri($row['photo']),
38                         new \DateTime($row['date'], new \DateTimeZone('UTC')),
39                         $row['uid'],
40                         new Uri($row['link']),
41                         $row['seen'],
42                         $row['verb'],
43                         $row['otype'],
44                         $row['name_cache'],
45                         $row['msg'],
46                         $row['msg_cache'],
47                         $row['iid'],
48                         $row['uri-id'],
49                         $row['parent'],
50                         $row['parent-uri-id'],
51                         $row['id']
52                 );
53         }
54
55         public function createFromParams($params, $itemlink = null, $item_id = null, $uri_id = null, $parent_id = null, $parent_uri_id = null): \Friendica\Navigation\Notifications\Entity\Notify
56         {
57                 return new \Friendica\Navigation\Notifications\Entity\Notify(
58                         $params['type'] ?? '',
59                         $params['source_name'] ?? '',
60                         new Uri($params['source_link'] ?? ''),
61                         new Uri($params['source_photo'] ?? ''),
62                         new \DateTime(),
63                         $params['uid'] ?? 0,
64                         new Uri($itemlink ?? ''),
65                         false,
66                         $params['verb'] ?? '',
67                         $params['otype'] ?? '',
68                         substr(strip_tags(BBCode::convertForUriId($uri_id, $params['source_name'])), 0, 255),
69                         null,
70                         null,
71                         $item_id,
72                         $uri_id,
73                         $parent_id,
74                         $parent_uri_id
75                 );
76         }
77 }