]> git.mxchange.org Git - friendica.git/blob - src/Navigation/Notifications/Factory/Notify.php
Use public contact ID in Model\Post\UserNotification::insertNotification
[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 /**
30  * @deprecated since 2022.05 Use \Friendica\Navigation\Notifications\Factory\Notification instead
31  */
32 class Notify extends BaseFactory implements ICanCreateFromTableRow
33 {
34         public function createFromTableRow(array $row): \Friendica\Navigation\Notifications\Entity\Notify
35         {
36                 return new \Friendica\Navigation\Notifications\Entity\Notify(
37                         $row['type'],
38                         $row['name'],
39                         new Uri($row['url']),
40                         new Uri($row['photo']),
41                         new \DateTime($row['date'], new \DateTimeZone('UTC')),
42                         $row['uid'],
43                         new Uri($row['link']),
44                         $row['seen'],
45                         $row['verb'],
46                         $row['otype'],
47                         $row['name_cache'],
48                         $row['msg'],
49                         $row['msg_cache'],
50                         $row['iid'],
51                         $row['uri-id'],
52                         $row['parent'],
53                         $row['parent-uri-id'],
54                         $row['id']
55                 );
56         }
57
58         public function createFromParams($params, $itemlink = null, $item_id = null, $uri_id = null, $parent_id = null, $parent_uri_id = null): \Friendica\Navigation\Notifications\Entity\Notify
59         {
60                 return new \Friendica\Navigation\Notifications\Entity\Notify(
61                         $params['type'] ?? '',
62                         $params['source_name'] ?? '',
63                         new Uri($params['source_link'] ?? ''),
64                         new Uri($params['source_photo'] ?? ''),
65                         new \DateTime(),
66                         $params['uid'] ?? 0,
67                         new Uri($itemlink ?? ''),
68                         false,
69                         $params['verb'] ?? '',
70                         $params['otype'] ?? '',
71                         substr(strip_tags(BBCode::convertForUriId($uri_id, $params['source_name'])), 0, 255),
72                         null,
73                         null,
74                         $item_id,
75                         $uri_id,
76                         $parent_id,
77                         $parent_uri_id
78                 );
79         }
80 }