/**
* @return Mention
*/
- public function current()
+ public function current(): Mention
{
return parent::current();
}
use Friendica\Network\HTTPException;
use Friendica\Repository\PermissionSet;
use Friendica\Repository\ProfileField;
+use ImagickException;
use Psr\Log\LoggerInterface;
class Account extends BaseFactory
/**
* @param int $contactId
* @param int $uid Public contact (=0) or owner user id
+ *
* @return \Friendica\Object\Api\Mastodon\Account
* @throws HTTPException\InternalServerErrorException
- * @throws \ImagickException
+ * @throws ImagickException|HTTPException\NotFoundException
*/
- public function createFromContactId(int $contactId, $uid = 0)
+ public function createFromContactId(int $contactId, $uid = 0): \Friendica\Object\Api\Mastodon\Account
{
$cdata = Contact::getPublicAndUserContacID($contactId, $uid);
if (!empty($cdata)) {
$userContact = Contact::getById($cdata['user']);
} else {
$publicContact = Contact::getById($contactId);
- $userContact = [];
+ $userContact = [];
}
if (empty($publicContact)) {
/**
* @param int $userId
* @return \Friendica\Object\Api\Mastodon\Account
- * @throws HTTPException\InternalServerErrorException
- * @throws \ImagickException
+ * @throws ImagickException|HTTPException\InternalServerErrorException
*/
- public function createFromUserId(int $userId)
+ public function createFromUserId(int $userId): \Friendica\Object\Api\Mastodon\Account
{
$publicContact = Contact::selectFirst([], ['uid' => $userId, 'self' => true]);
$profileFields = $this->profileFieldRepo->select(['uid' => $userId, 'psid' => PermissionSet::PUBLIC]);
$fields = $this->mstdnFieldFactory->createFromProfileFields($profileFields);
- $apcontact = APContact::getByURL($publicContact['url'], false);
+ $apContact = APContact::getByURL($publicContact['url'], false);
- return new \Friendica\Object\Api\Mastodon\Account($this->baseUrl, $publicContact, $fields, $apcontact);
+ return new \Friendica\Object\Api\Mastodon\Account($this->baseUrl, $publicContact, $fields, $apContact);
}
}
*
* @throws InternalServerErrorException
*/
- public function createFromApplicationId(int $id)
+ public function createFromApplicationId(int $id): \Friendica\Object\Api\Mastodon\Application
{
$application = $this->dba->selectFirst('application', ['client_id', 'client_secret', 'id', 'name', 'redirect_uri', 'website'], ['id' => $id]);
if (!$this->dba->isResult($application)) {
- return [];
+ throw new InternalServerErrorException(sprintf("ID '%s' not found", $id));
}
return new \Friendica\Object\Api\Mastodon\Application(
* @param int $uriId Uri-ID of the attachments
* @return array
* @throws HTTPException\InternalServerErrorException
- * @throws \ImagickException
*/
- public function createFromUriId(int $uriId)
+ public function createFromUriId(int $uriId): array
{
$attachments = [];
foreach (Post\Media::getByURIId($uriId, [Post\Media::AUDIO, Post\Media::VIDEO, Post\Media::IMAGE]) as $attachment) {
-
$filetype = !empty($attachment['mimetype']) ? strtolower(substr($attachment['mimetype'], 0, strpos($attachment['mimetype'], '/'))) : '';
if (($filetype == 'audio') || ($attachment['type'] == Post\Media::AUDIO)) {
$remote = $attachment['url'];
if ($type == 'image') {
if (Proxy::isLocalImage($attachment['url'])) {
- $url = $attachment['url'];
+ $url = $attachment['url'];
$preview = $attachment['preview'] ?? $url;
- $remote = '';
+ $remote = '';
} else {
- $url = Proxy::proxifyUrl($attachment['url']);
+ $url = Proxy::proxifyUrl($attachment['url']);
$preview = Proxy::proxifyUrl($attachment['url'], false, Proxy::SIZE_SMALL);
}
} else {
- $url = Proxy::proxifyUrl($attachment['url']);
+ $url = Proxy::proxifyUrl($attachment['url ']);
$preview = Proxy::proxifyUrl($attachment['preview'] ?? '');
}
- $object = new \Friendica\Object\Api\Mastodon\Attachment($attachment, $type, $url, $preview, $remote);
+ $object = new \Friendica\Object\Api\Mastodon\Attachment($attachment, $type, $url, $preview, $remote);
$attachments[] = $object->toArray();
}
/**
* @param int $id id of the photo
+ *
* @return array
* @throws HTTPException\InternalServerErrorException
- * @throws \ImagickException
*/
- public function createFromPhoto(int $id)
+ public function createFromPhoto(int $id): array
{
$photo = Photo::selectFirst(['resource-id', 'uid', 'id', 'title', 'type'], ['id' => $id]);
if (empty($photo)) {
- return null;
+ return [];
}
$attachment = ['id' => $photo['id'], 'description' => $photo['title']];
- $phototypes = Images::supportedTypes();
- $ext = $phototypes[$photo['type']];
+ $photoTypes = Images::supportedTypes();
+ $ext = $photoTypes[$photo['type']];
$url = $this->baseUrl . '/photo/' . $photo['resource-id'] . '-0.' . $ext;
{
/**
* @param int $uriId Uri-ID of the item
+ *
* @return \Friendica\Object\Api\Mastodon\Card
* @throws HTTPException\InternalServerErrorException
- * @throws \ImagickException
+ * @throws \ImagickException*@throws \Exception
*/
- public function createFromUriId(int $uriId)
+ public function createFromUriId(int $uriId): \Friendica\Object\Api\Mastodon\Card
{
$item = Post::selectFirst(['body'], ['uri-id' => $uriId]);
if (!empty($item['body'])) {
use Friendica\BaseFactory;
use Friendica\Database\Database;
use Friendica\Model\Contact;
+use Friendica\Network\HTTPException;
+use ImagickException;
use Psr\Log\LoggerInterface;
class Conversation extends BaseFactory
$this->mstdnAccountFactory = $mstdnAccountFactoryFactory;
}
- public function CreateFromConvId(int $id)
+ /**
+ * @throws ImagickException|HTTPException\InternalServerErrorException|HTTPException\NotFoundException
+ */
+ public function CreateFromConvId(int $id): \Friendica\Object\Api\Mastodon\Conversation
{
$accounts = [];
$unread = false;
class Emoji extends BaseFactory
{
- public function create(string $shortcode, string $url)
+ public function create(string $shortcode, string $url): \Friendica\Object\Api\Mastodon\Emoji
{
return new \Friendica\Object\Api\Mastodon\Emoji($shortcode, $url);
}
* @param array $smilies
* @return Emojis
*/
- public function createCollectionFromSmilies(array $smilies)
+ public function createCollectionFromSmilies(array $smilies): Emojis
{
$prototype = null;
if ($prototype === null) {
$prototype = $this->create($shortcode, $url);
- $emojis[] = $prototype;
+ $emojis[] = $prototype;
} else {
$emojis[] = \Friendica\Object\Api\Mastodon\Emoji::createFromPrototype($prototype, $shortcode, $url);
}
private $server;
/** @var L10n */
private $l10n;
-
+
public function __construct(LoggerInterface $logger, Arguments $args, L10n $l10n, array $server)
{
parent::__construct($logger);
- $this->args = $args;
+ $this->args = $args;
$this->server = $server;
- $this->l10n = $l10n;
+ $this->l10n = $l10n;
}
private function logError(int $errorno, string $error)
public function RecordNotFound()
{
- $error = $this->l10n->t('Record not found');
+ $error = $this->l10n->t('Record not found');
$error_description = '';
- $errorobj = New \Friendica\Object\Api\Mastodon\Error($error, $error_description);
+ $errorObj = new \Friendica\Object\Api\Mastodon\Error($error, $error_description);
$this->logError(404, $error);
- System::jsonError(404, $errorobj->toArray());
+ System::jsonError(404, $errorObj->toArray());
}
public function UnprocessableEntity(string $error = '')
{
- $error = $error ?: $this->l10n->t('Unprocessable Entity');
+ $error = $error ?: $this->l10n->t('Unprocessable Entity');
$error_description = '';
- $errorobj = New \Friendica\Object\Api\Mastodon\Error($error, $error_description);
+ $errorObj = new \Friendica\Object\Api\Mastodon\Error($error, $error_description);
$this->logError(422, $error);
- System::jsonError(422, $errorobj->toArray());
+ System::jsonError(422, $errorObj->toArray());
}
public function Unauthorized(string $error = '')
{
- $error = $error ?: $this->l10n->t('Unauthorized');
+ $error = $error ?: $this->l10n->t('Unauthorized');
$error_description = '';
- $errorobj = New \Friendica\Object\Api\Mastodon\Error($error, $error_description);
+ $errorObj = new \Friendica\Object\Api\Mastodon\Error($error, $error_description);
$this->logError(401, $error);
- System::jsonError(401, $errorobj->toArray());
+ System::jsonError(401, $errorObj->toArray());
}
public function Forbidden(string $error = '')
{
- $error = $error ?: $this->l10n->t('Token is not authorized with a valid user or is missing a required scope');
+ $error = $error ?: $this->l10n->t('Token is not authorized with a valid user or is missing a required scope');
$error_description = '';
- $errorobj = New \Friendica\Object\Api\Mastodon\Error($error, $error_description);
+ $errorObj = new \Friendica\Object\Api\Mastodon\Error($error, $error_description);
$this->logError(403, $error);
- System::jsonError(403, $errorobj->toArray());
+ System::jsonError(403, $errorObj->toArray());
}
public function InternalError(string $error = '')
{
- $error = $error ?: $this->l10n->t('Internal Server Error');
+ $error = $error ?: $this->l10n->t('Internal Server Error');
$error_description = '';
- $errorobj = New \Friendica\Object\Api\Mastodon\Error($error, $error_description);
+ $errorObj = new \Friendica\Object\Api\Mastodon\Error($error, $error_description);
$this->logError(500, $error);
- System::jsonError(500, $errorobj->toArray());
+ System::jsonError(500, $errorObj->toArray());
}
}
* @return \Friendica\Object\Api\Mastodon\Field
* @throws HTTPException\InternalServerErrorException
*/
- public function createFromProfileField(ProfileField $profileField)
+ public function createFromProfileField(ProfileField $profileField): \Friendica\Object\Api\Mastodon\Field
{
return new \Friendica\Object\Api\Mastodon\Field($profileField->label, BBCode::convert($profileField->value, false, BBCode::ACTIVITYPUB));
}
* @return Fields
* @throws HTTPException\InternalServerErrorException
*/
- public function createFromProfileFields(ProfileFields $profileFields)
+ public function createFromProfileFields(ProfileFields $profileFields): Fields
{
$fields = [];
use Friendica\Model\Contact;
use Friendica\Model\Introduction;
use Friendica\Network\HTTPException;
+use ImagickException;
use Psr\Log\LoggerInterface;
class FollowRequest extends BaseFactory
/**
* @param Introduction $introduction
* @return \Friendica\Object\Api\Mastodon\FollowRequest
- * @throws HTTPException\InternalServerErrorException
- * @throws \ImagickException
+ * @throws ImagickException|HTTPException\InternalServerErrorException
*/
- public function createFromIntroduction(Introduction $introduction)
+ public function createFromIntroduction(Introduction $introduction): \Friendica\Object\Api\Mastodon\FollowRequest
{
$cdata = Contact::getPublicAndUserContacID($introduction->{'contact-id'}, $introduction->uid);
}
$publicContact = Contact::getById($cdata['public']);
- $userContact = Contact::getById($cdata['user']);
+ $userContact = Contact::getById($cdata['user']);
- $apcontact = APContact::getByURL($publicContact['url'], false);
+ $apContact = APContact::getByURL($publicContact['url'], false);
- return new \Friendica\Object\Api\Mastodon\FollowRequest($this->baseUrl, $introduction->id, $publicContact, $apcontact, $userContact);
+ return new \Friendica\Object\Api\Mastodon\FollowRequest($this->baseUrl, $introduction->id, $publicContact, $apContact, $userContact);
}
}
use Friendica\BaseFactory;
use Friendica\Database\Database;
+use Friendica\Network\HTTPException\InternalServerErrorException;
use Psr\Log\LoggerInterface;
class ListEntity extends BaseFactory
$this->dba = $dba;
}
- public function createFromGroupId(int $id)
+ /**
+ * @throws InternalServerErrorException
+ */
+ public function createFromGroupId(int $id): \Friendica\Object\Api\Mastodon\ListEntity
{
$group = $this->dba->selectFirst('group', ['name'], ['id' => $id, 'deleted' => false]);
return new \Friendica\Object\Api\Mastodon\ListEntity($id, $group['name'] ?? '', 'list');
* @param int $uriId Uri-ID of the item
* @return Mentions
* @throws HTTPException\InternalServerErrorException
- * @throws \ImagickException
*/
- public function createFromUriId(int $uriId)
+ public function createFromUriId(int $uriId): Mentions
{
$mentions = new Mentions();
- $tags = Tag::getByURIId($uriId, [Tag::MENTION, Tag::EXCLUSIVE_MENTION, Tag::IMPLICIT_MENTION]);
+ $tags = Tag::getByURIId($uriId, [Tag::MENTION, Tag::EXCLUSIVE_MENTION, Tag::IMPLICIT_MENTION]);
foreach ($tags as $tag) {
- $contact = Contact::getByURL($tag['url'], false);
- $mentions->append(new \Friendica\Object\Api\Mastodon\Mention($this->baseUrl, $tag, $contact));
+ $contact = Contact::getByURL($tag['url'], false);
+ $mentions[] = new \Friendica\Object\Api\Mastodon\Mention($this->baseUrl, $tag, $contact);
}
return $mentions;
}
private $mstdnAccountFactory;
/** @var Status */
private $mstdnStatusFactory;
-
+
public function __construct(LoggerInterface $logger, Database $dba, Account $mstdnAccountFactory, Status $mstdnStatusFactoryFactory)
{
parent::__construct($logger);
- $this->dba = $dba;
+ $this->dba = $dba;
$this->mstdnAccountFactory = $mstdnAccountFactory;
- $this->mstdnStatusFactory = $mstdnStatusFactoryFactory;
+ $this->mstdnStatusFactory = $mstdnStatusFactoryFactory;
}
public function createFromNotificationId(int $id)
if (($notification['vid'] == Verb::getID(Activity::FOLLOW)) && ($notification['type'] == Post\UserNotification::NOTIF_NONE)) {
$contact = Contact::getById($notification['actor-id'], ['pending']);
- $type = $contact['pending'] ? $type = 'follow_request' : 'follow';
+ $type = $contact['pending'] ? $type = 'follow_request' : 'follow';
} elseif (($notification['vid'] == Verb::getID(Activity::ANNOUNCE)) &&
in_array($notification['type'], [Post\UserNotification::NOTIF_DIRECT_COMMENT, Post\UserNotification::NOTIF_DIRECT_THREAD_COMMENT])) {
$type = 'reblog';
namespace Friendica\Factory\Api\Mastodon;
+use Exception;
use Friendica\Object\Api\Mastodon\Relationship as RelationshipEntity;
use Friendica\BaseFactory;
use Friendica\Model\Contact;
* @param int $contactId Contact ID (public or user contact)
* @param int $uid User ID
* @return RelationshipEntity
- * @throws \Exception
+ * @throws Exception
*/
- public function createFromContactId(int $contactId, int $uid)
+ public function createFromContactId(int $contactId, int $uid): RelationshipEntity
{
$cdata = Contact::getPublicAndUserContacID($contactId, $uid);
if (!empty($cdata)) {
* @throws HTTPException\InternalServerErrorException
* @throws ImagickException|HTTPException\NotFoundException
*/
- public function createFromUriId(int $uriId, $uid = 0)
+ public function createFromUriId(int $uriId, $uid = 0): \Friendica\Object\Api\Mastodon\Status
{
$fields = ['uri-id', 'uid', 'author-id', 'author-link', 'starred', 'app', 'title', 'body', 'raw-body', 'created', 'network',
'thr-parent-id', 'parent-author-id', 'language', 'uri', 'plink', 'private', 'vid', 'gravity'];
*
* @return \Friendica\Object\Api\Mastodon\Status
* @throws HTTPException\InternalServerErrorException
- * @throws ImagickException
+ * @throws ImagickException|HTTPException\NotFoundException
*/
- public function createFromMailId(int $id)
+ public function createFromMailId(int $id): \Friendica\Object\Api\Mastodon\Status
{
$item = ActivityPub\Transmitter::ItemArrayFromMail($id, true);
if (empty($item)) {
* @param int $uriId Uri-ID of the item
* @return array
* @throws HTTPException\InternalServerErrorException
- * @throws \ImagickException
*/
- public function createFromUriId(int $uriId)
+ public function createFromUriId(int $uriId): array
{
$hashtags = [];
- $tags = TagModel::getByURIId($uriId, [TagModel::HASHTAG]);
+ $tags = TagModel::getByURIId($uriId, [TagModel::HASHTAG]);
foreach ($tags as $tag) {
- $hashtag = new \Friendica\Object\Api\Mastodon\Tag($this->baseUrl, $tag);
+ $hashtag = new \Friendica\Object\Api\Mastodon\Tag($this->baseUrl, $tag);
$hashtags[] = $hashtag->toArray();
}
return $hashtags;
*
* @param string $error
* @param string error_description
- * @throws \Friendica\Network\HTTPException\InternalServerErrorException
*/
public function __construct(string $error, string $error_description)
{
namespace Friendica\Object\Api\Mastodon;
+use Exception;
use Friendica\BaseDataTransferObject;
+use Friendica\Network\HTTPException;
use Friendica\Util\DateTimeFormat;
/**
/**
* Creates a notification record
*
- * @param array $item
- * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+ * @throws HttpException\InternalServerErrorException|Exception
*/
public function __construct(int $id, string $type, string $created_at, Account $account = null, Status $status = null)
{