mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-12 04:54:26 +02:00
65 lines
2.2 KiB
PHP
65 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\Factory\Api\Mastodon;
|
|
|
|
use Friendica\BaseFactory;
|
|
use Friendica\Model\Post;
|
|
use Friendica\Network\HTTPException;
|
|
|
|
class Card extends BaseFactory
|
|
{
|
|
/**
|
|
* @param int $uriId Uri-ID of the item
|
|
* @param array $history Link request history
|
|
*
|
|
* @return \Friendica\Object\Api\Mastodon\Card
|
|
* @throws HTTPException\InternalServerErrorException
|
|
* @throws \ImagickException
|
|
* @throws \Exception
|
|
*/
|
|
public function createFromUriId(int $uriId, array $history = []): \Friendica\Object\Api\Mastodon\Card
|
|
{
|
|
$media = Post\Media::getByURIId($uriId, [Post\Media::HTML]);
|
|
if (empty($media) || (empty($media[0]['description']) && empty($media[0]['image']) && empty($media[0]['preview']))) {
|
|
return new \Friendica\Object\Api\Mastodon\Card([], $history);
|
|
}
|
|
|
|
$parts = parse_url($media[0]['url']);
|
|
if (!empty($parts['scheme']) && !empty($parts['host'])) {
|
|
if (empty($media[0]['publisher-name'])) {
|
|
$media[0]['publisher-name'] = $parts['host'];
|
|
}
|
|
if (empty($media[0]['publisher-url']) || empty(parse_url($media[0]['publisher-url'], PHP_URL_SCHEME))) {
|
|
$media[0]['publisher-url'] = $parts['scheme'] . '://' . $parts['host'];
|
|
|
|
if (!empty($parts['port'])) {
|
|
$media[0]['publisher-url'] .= ':' . $parts['port'];
|
|
}
|
|
}
|
|
}
|
|
|
|
$data = [];
|
|
|
|
$data['url'] = $media[0]['url'];
|
|
$data['title'] = $media[0]['name'];
|
|
$data['description'] = $media[0]['description'];
|
|
$data['language'] = $media[0]['language'];
|
|
$data['type'] = 'link';
|
|
$data['author_name'] = $media[0]['author-name'];
|
|
$data['author_url'] = $media[0]['author-url'];
|
|
$data['provider_name'] = $media[0]['publisher-name'];
|
|
$data['provider_url'] = $media[0]['publisher-url'];
|
|
$data['image'] = $media[0]['preview'];
|
|
$data['width'] = $media[0]['preview-width'];
|
|
$data['height'] = $media[0]['preview-height'];
|
|
$data['blurhash'] = $media[0]['blurhash'];
|
|
$data['published'] = $media[0]['published'];
|
|
|
|
return new \Friendica\Object\Api\Mastodon\Card($data, $history);
|
|
}
|
|
}
|