98 lines
3.1 KiB
PHP
98 lines
3.1 KiB
PHP
<?php
|
|
|
|
// Copyright (C) 2010-2024, the Friendica project
|
|
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
namespace Friendica\Object\Api\Friendica;
|
|
|
|
use Friendica\BaseDataTransferObject;
|
|
use Friendica\Content\Text\BBCode;
|
|
use Friendica\Content\Text\HTML;
|
|
use Friendica\Navigation\Notifications\Entity\Notify;
|
|
use Friendica\Util\DateTimeFormat;
|
|
use Friendica\Util\Temporal;
|
|
|
|
/**
|
|
* Friendica Notification
|
|
*
|
|
* @see https://github.com/friendica/friendica/blob/develop/doc/API-Entities.md#notification
|
|
*/
|
|
class Notification extends BaseDataTransferObject
|
|
{
|
|
/** @var integer */
|
|
protected $id;
|
|
/** @var integer */
|
|
protected $type;
|
|
/** @var string Full name of the contact subject */
|
|
protected $name;
|
|
/** @var string Profile page URL of the contact subject */
|
|
protected $url;
|
|
/** @var string Profile photo URL of the contact subject */
|
|
protected $photo;
|
|
/** @var string YYYY-MM-DD hh:mm:ss local server time */
|
|
protected $date;
|
|
/** @var string The message (BBCode) */
|
|
protected $msg;
|
|
/** @var integer Owner User Id */
|
|
protected $uid;
|
|
/** @var string Notification URL */
|
|
protected $link;
|
|
/** @var integer Item Id */
|
|
protected $iid;
|
|
/** @var integer Parent Item Id */
|
|
protected $parent;
|
|
/** @var boolean Whether the notification was read or not. */
|
|
protected $seen;
|
|
/** @var string Verb URL @see http://activitystrea.ms */
|
|
protected $verb;
|
|
/** @var string Subject type ('item', 'intro' or 'mail') */
|
|
protected $otype;
|
|
/** @var string Full name of the contact subject (HTML) */
|
|
protected $name_cache;
|
|
/** @var string Plaintext version of the notification text with a placeholder (`{0}`) for the subject contact's name. (Plaintext) */
|
|
protected $msg_cache;
|
|
/** @var integer Unix timestamp */
|
|
protected $timestamp;
|
|
/** @var string Time since the note was posted, eg "1 hour ago" */
|
|
protected $date_rel;
|
|
/** @var string Message (HTML) */
|
|
protected $msg_html;
|
|
/** @var string Message (Plaintext) */
|
|
protected $msg_plain;
|
|
|
|
public function __construct(Notify $notify)
|
|
{
|
|
$this->id = $notify->id;
|
|
$this->type = $notify->type;
|
|
$this->name = $notify->name;
|
|
$this->url = $notify->url->__toString();
|
|
$this->photo = $notify->photo->__toString();
|
|
$this->date = DateTimeFormat::local($notify->date->format(DateTimeFormat::MYSQL));
|
|
$this->msg = $notify->msg;
|
|
$this->uid = $notify->uid;
|
|
$this->link = $notify->link->__toString();
|
|
$this->iid = $notify->itemId;
|
|
$this->parent = $notify->parent;
|
|
$this->seen = $notify->seen;
|
|
$this->verb = $notify->verb;
|
|
$this->otype = $notify->otype;
|
|
$this->name_cache = $notify->name_cache;
|
|
$this->msg_cache = $notify->msg_cache;
|
|
$this->timestamp = (int) $notify->date->format('U');
|
|
$this->date_rel = Temporal::getRelativeDate($this->date);
|
|
|
|
try {
|
|
$this->msg_html = BBCode::convertForUriId($notify->uriId, $this->msg, BBCode::EXTERNAL);
|
|
} catch (\Exception $e) {
|
|
$this->msg_html = '';
|
|
}
|
|
|
|
try {
|
|
$this->msg_plain = explode("\n", trim(HTML::toPlaintext($this->msg_html, 0)))[0];
|
|
} catch (\Exception $e) {
|
|
$this->msg_plain = '';
|
|
}
|
|
}
|
|
}
|