mirror of
https://github.com/friendica/friendica
synced 2024-11-12 00:21:34 +01:00
81 lines
2.4 KiB
PHP
81 lines
2.4 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
|
*
|
|
* @license GNU AGPL version 3 or any later version
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
namespace Friendica\Navigation\Notifications\Factory;
|
|
|
|
use Friendica\BaseFactory;
|
|
use Friendica\Capabilities\ICanCreateFromTableRow;
|
|
use Friendica\Content\Text\BBCode;
|
|
use GuzzleHttp\Psr7\Uri;
|
|
|
|
/**
|
|
* @deprecated since 2022.05 Use \Friendica\Navigation\Notifications\Factory\Notification instead
|
|
*/
|
|
class Notify extends BaseFactory implements ICanCreateFromTableRow
|
|
{
|
|
public function createFromTableRow(array $row): \Friendica\Navigation\Notifications\Entity\Notify
|
|
{
|
|
return new \Friendica\Navigation\Notifications\Entity\Notify(
|
|
$row['type'],
|
|
$row['name'],
|
|
new Uri($row['url']),
|
|
new Uri($row['photo']),
|
|
new \DateTime($row['date'], new \DateTimeZone('UTC')),
|
|
$row['uid'],
|
|
new Uri($row['link']),
|
|
$row['seen'],
|
|
$row['verb'],
|
|
$row['otype'],
|
|
$row['name_cache'],
|
|
$row['msg'],
|
|
$row['msg_cache'],
|
|
$row['iid'],
|
|
$row['uri-id'],
|
|
$row['parent'],
|
|
$row['parent-uri-id'],
|
|
$row['id']
|
|
);
|
|
}
|
|
|
|
public function createFromParams($params, $itemlink = null, $item_id = null, $uri_id = null, $parent_id = null, $parent_uri_id = null): \Friendica\Navigation\Notifications\Entity\Notify
|
|
{
|
|
return new \Friendica\Navigation\Notifications\Entity\Notify(
|
|
$params['type'] ?? '',
|
|
$params['source_name'] ?? '',
|
|
new Uri($params['source_link'] ?? ''),
|
|
new Uri($params['source_photo'] ?? ''),
|
|
new \DateTime(),
|
|
$params['uid'] ?? 0,
|
|
new Uri($itemlink ?? ''),
|
|
false,
|
|
$params['verb'] ?? '',
|
|
$params['otype'] ?? '',
|
|
substr(strip_tags(BBCode::convertForUriId($uri_id, $params['source_name'])), 0, 255),
|
|
null,
|
|
null,
|
|
$item_id,
|
|
$uri_id,
|
|
$parent_id,
|
|
$parent_uri_id
|
|
);
|
|
}
|
|
}
|