friendica/src/Object/Api/Twitter/DirectMessage.php
2025-02-25 13:51:13 +00:00

86 lines
2.2 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\Twitter;
use Friendica\BaseDataTransferObject;
use Friendica\Util\DateTimeFormat;
/**
* Class DirectMessage
*/
class DirectMessage extends BaseDataTransferObject
{
/** @var int */
protected $id;
/** @var int */
protected $sender_id;
/** @var string */
protected $text;
/** @var int */
protected $recipient_id;
/** @var string (Datetime) */
protected $created_at;
/** @var string */
protected $sender_screen_name = null;
/** @var string */
protected $recipient_screen_name = null;
/** @var array */
protected $sender;
/** @var array */
protected $recipient;
/** @var string|null */
protected $title;
/** @var bool */
protected $friendica_seen;
/** @var string|null */
protected $friendica_parent_uri = null;
/**
* Creates a direct message record
*
* @param array $mail
* @param User $sender
* @param User $recipient
* @param string $text
* @param string $title
*/
public function __construct(array $mail, User $sender, User $recipient, string $text, string $title = null)
{
$this->id = (int)$mail['id'];
$this->created_at = DateTimeFormat::utc($mail['created'] ?? 'now', DateTimeFormat::API);
$this->title = $title;
$this->text = $text;
$this->sender = $sender->toArray();
$this->recipient = $recipient->toArray();
$this->sender_id = (int)$this->sender['id'];
$this->recipient_id = (int)$this->recipient['id'];
$this->sender_screen_name = $this->sender['screen_name'];
$this->recipient_screen_name = $this->recipient['screen_name'];
$this->friendica_seen = (bool)$mail['seen'] ?? false;
$this->friendica_parent_uri = $mail['parent-uri'] ?? '';
}
/**
* Returns the current entity as an array
*
* @return array
*/
public function toArray(): array
{
$status = parent::toArray();
if (is_null($status['title'])) {
unset($status['title']);
}
unset($status['sender']['uid']);
unset($status['recipient']['uid']);
return $status;
}
}