forked from friendica/friendica-addons
Merge pull request #1105 from annando/media
Media handling - correct branch
This commit is contained in:
commit
773bffe69d
|
@ -876,7 +876,7 @@ function statusnet_fetchtimeline(App $a, $uid)
|
||||||
|
|
||||||
$_REQUEST["title"] = "";
|
$_REQUEST["title"] = "";
|
||||||
|
|
||||||
$_REQUEST["body"] = PageInfo::searchAndAppendToBody($post->text, true);
|
$_REQUEST["body"] = $post->text;
|
||||||
if (is_string($post->place->name)) {
|
if (is_string($post->place->name)) {
|
||||||
$_REQUEST["location"] = $post->place->name;
|
$_REQUEST["location"] = $post->place->name;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1388,9 +1388,6 @@ function twitter_expand_entities($body, stdClass $status, $picture)
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
// This URL if set will be used to add an attachment at the bottom of the post
|
|
||||||
$attachmentUrl = '';
|
|
||||||
|
|
||||||
foreach ($status->entities->urls ?? [] as $url) {
|
foreach ($status->entities->urls ?? [] as $url) {
|
||||||
$plain = str_replace($url->url, '', $plain);
|
$plain = str_replace($url->url, '', $plain);
|
||||||
|
|
||||||
|
@ -1419,31 +1416,20 @@ function twitter_expand_entities($body, stdClass $status, $picture)
|
||||||
$expanded_url = $url->url;
|
$expanded_url = $url->url;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($type === 'video') {
|
if ($type === 'photo' && !empty($oembed_data->url)) {
|
||||||
$attachmentUrl = $expanded_url;
|
|
||||||
$replace = '';
|
|
||||||
} elseif ($type === 'photo' && !empty($oembed_data->url)) {
|
|
||||||
$replace = '[url=' . $expanded_url . '][img]' . $oembed_data->url . '[/img][/url]';
|
$replace = '[url=' . $expanded_url . '][img]' . $oembed_data->url . '[/img][/url]';
|
||||||
} elseif ($type === 'link') {
|
} elseif ($type === 'link') {
|
||||||
$img_str = DI::httpRequest()->fetch($final_url, 4);
|
$curlResult = DI::httpRequest()->head($final_url, ['timeout' => 4]);
|
||||||
|
if ($curlResult->isSuccess()) {
|
||||||
$tempfile = tempnam(get_temppath(), 'cache');
|
$mimetype = $curlResult->getHeader('Content-Type');
|
||||||
file_put_contents($tempfile, $img_str);
|
|
||||||
|
|
||||||
// See http://php.net/manual/en/function.exif-imagetype.php#79283
|
|
||||||
if (filesize($tempfile) > 11) {
|
|
||||||
$mime = image_type_to_mime_type(exif_imagetype($tempfile));
|
|
||||||
} else {
|
} else {
|
||||||
$mime = false;
|
$mimetype = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
unlink($tempfile);
|
if (substr($mimetype, 0, 6) == 'image/') {
|
||||||
|
|
||||||
if (substr($mime, 0, 6) == 'image/') {
|
|
||||||
$replace = '[img]' . $final_url . '[/img]';
|
$replace = '[img]' . $final_url . '[/img]';
|
||||||
} else {
|
} else {
|
||||||
$attachmentUrl = $expanded_url;
|
$replace = '[url=' . $expanded_url . ']' . $url->display_url . '[/url]';
|
||||||
$replace = '';
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$replace = '[url=' . $expanded_url . ']' . $url->display_url . '[/url]';
|
$replace = '[url=' . $expanded_url . ']' . $url->display_url . '[/url]';
|
||||||
|
@ -1466,23 +1452,86 @@ function twitter_expand_entities($body, stdClass $status, $picture)
|
||||||
|
|
||||||
// Footer will be taken care of with a share block in the case of a quote
|
// Footer will be taken care of with a share block in the case of a quote
|
||||||
if (empty($status->quoted_status)) {
|
if (empty($status->quoted_status)) {
|
||||||
$footer = '';
|
if ($picture) {
|
||||||
if ($attachmentUrl) {
|
|
||||||
$footer = "\n" . PageInfo::getFooterFromUrl($attachmentUrl, false, $picture);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (trim($footer)) {
|
|
||||||
$body .= $footer;
|
|
||||||
} elseif ($picture) {
|
|
||||||
$body .= "\n\n[img]" . $picture . "[/img]\n";
|
$body .= "\n\n[img]" . $picture . "[/img]\n";
|
||||||
} else {
|
|
||||||
$body = PageInfo::searchAndAppendToBody($body);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return ['body' => trim($body), 'plain' => trim($plain), 'taglist' => $taglist];
|
return ['body' => trim($body), 'plain' => trim($plain), 'taglist' => $taglist];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Store entity attachments
|
||||||
|
*
|
||||||
|
* @param integer $uriid
|
||||||
|
* @param object $post Twitter object with the post
|
||||||
|
*/
|
||||||
|
function twitter_store_attachments(int $uriid, $post)
|
||||||
|
{
|
||||||
|
if (!empty($post->extended_entities->media)) {
|
||||||
|
foreach ($post->extended_entities->media AS $medium) {
|
||||||
|
switch ($medium->type) {
|
||||||
|
case 'photo':
|
||||||
|
$attachment = ['uri-id' => $uriid, 'type' => Post\Media::IMAGE];
|
||||||
|
|
||||||
|
// @todo In the future store the large picture.
|
||||||
|
// This can be done when we don't embed the pictures in the body anymore.
|
||||||
|
//$attachment['url'] = $medium->media_url_https . '?name=large';
|
||||||
|
//$attachment['width'] = $medium->sizes->large->w;
|
||||||
|
//$attachment['height'] = $medium->sizes->large->h;
|
||||||
|
|
||||||
|
$attachment['url'] = $medium->media_url_https;
|
||||||
|
$attachment['width'] = $medium->sizes->medium->w;
|
||||||
|
$attachment['height'] = $medium->sizes->medium->h;
|
||||||
|
|
||||||
|
if ($medium->sizes->small->w != $attachment['width']) {
|
||||||
|
$attachment['preview'] = $medium->media_url_https . '?name=small';
|
||||||
|
$attachment['preview-width'] = $medium->sizes->small->w;
|
||||||
|
$attachment['preview-height'] = $medium->sizes->small->h;
|
||||||
|
}
|
||||||
|
|
||||||
|
$attachment['name'] = $medium->display_url ?? null;
|
||||||
|
$attachment['description'] = $medium->ext_alt_text ?? null;
|
||||||
|
Logger::debug('Photo attachment', ['attachment' => $attachment]);
|
||||||
|
Post\Media::insert($attachment);
|
||||||
|
break;
|
||||||
|
case 'video':
|
||||||
|
case 'animated_gif':
|
||||||
|
$attachment = ['uri-id' => $uriid, 'type' => Post\Media::VIDEO];
|
||||||
|
if (is_array($medium->video_info->variants)) {
|
||||||
|
$bitrate = 0;
|
||||||
|
// We take the video with the highest bitrate
|
||||||
|
foreach ($medium->video_info->variants AS $variant) {
|
||||||
|
if (($variant->content_type == 'video/mp4') && ($variant->bitrate >= $bitrate)) {
|
||||||
|
$attachment['url'] = $variant->url;
|
||||||
|
$bitrate = $variant->bitrate;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$attachment['name'] = $medium->display_url ?? null;
|
||||||
|
$attachment['preview'] = $medium->media_url_https . ':small';
|
||||||
|
$attachment['preview-width'] = $medium->sizes->small->w;
|
||||||
|
$attachment['preview-height'] = $medium->sizes->small->h;
|
||||||
|
$attachment['description'] = $medium->ext_alt_text ?? null;
|
||||||
|
Logger::debug('Video attachment', ['attachment' => $attachment]);
|
||||||
|
Post\Media::insert($attachment);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
Logger::notice('Unknown media type', ['medium' => $medium]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!empty($post->entities->urls)) {
|
||||||
|
foreach ($post->entities->urls as $url) {
|
||||||
|
$attachment = ['uri-id' => $uriid, 'type' => Post\Media::UNKNOWN, 'url' => $url->expanded_url, 'name' => $url->display_url];
|
||||||
|
Logger::debug('Attached link', ['attachment' => $attachment]);
|
||||||
|
Post\Media::insert($attachment);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Fetch media entities and add media links to the body
|
* @brief Fetch media entities and add media links to the body
|
||||||
*
|
*
|
||||||
|
@ -1697,10 +1746,9 @@ function twitter_createpost(App $a, $uid, $post, array $self, $create_user, $onl
|
||||||
|
|
||||||
if ($uriid > 0) {
|
if ($uriid > 0) {
|
||||||
twitter_store_tags($uriid, $converted['taglist']);
|
twitter_store_tags($uriid, $converted['taglist']);
|
||||||
|
twitter_store_attachments($uriid, $post);
|
||||||
}
|
}
|
||||||
|
|
||||||
$statustext = $converted["plain"];
|
|
||||||
|
|
||||||
if (!empty($post->place->name)) {
|
if (!empty($post->place->name)) {
|
||||||
$postarray["location"] = $post->place->name;
|
$postarray["location"] = $post->place->name;
|
||||||
}
|
}
|
||||||
|
@ -1749,14 +1797,19 @@ function twitter_createpost(App $a, $uid, $post, array $self, $create_user, $onl
|
||||||
// To avoid recursive share blocks we just provide the link to avoid removing quote context.
|
// To avoid recursive share blocks we just provide the link to avoid removing quote context.
|
||||||
$postarray['body'] .= "\n\nhttps://twitter.com/" . $post->quoted_status->user->screen_name . "/status/" . $post->quoted_status->id_str;
|
$postarray['body'] .= "\n\nhttps://twitter.com/" . $post->quoted_status->user->screen_name . "/status/" . $post->quoted_status->id_str;
|
||||||
} else {
|
} else {
|
||||||
$quoted = twitter_createpost($a, $uid, $post->quoted_status, $self, false, false, true, $uriid);
|
$quoted = twitter_createpost($a, 0, $post->quoted_status, $self, false, false, true);
|
||||||
if (!empty($quoted['body'])) {
|
if (!empty($quoted['body'])) {
|
||||||
|
Item::insert($quoted);
|
||||||
|
$post = Post::selectFirst(['guid', 'uri-id'], ['uri' => $quoted['uri'], 'uid' => 0]);
|
||||||
|
Logger::info('Stored quoted post', ['uid' => $uid, 'uri-id' => $uriid, 'post' => $post]);
|
||||||
|
|
||||||
$postarray['body'] .= "\n" . BBCode::getShareOpeningTag(
|
$postarray['body'] .= "\n" . BBCode::getShareOpeningTag(
|
||||||
$quoted['author-name'],
|
$quoted['author-name'],
|
||||||
$quoted['author-link'],
|
$quoted['author-link'],
|
||||||
$quoted['author-avatar'],
|
$quoted['author-avatar'],
|
||||||
$quoted['plink'],
|
$quoted['plink'],
|
||||||
$quoted['created']
|
$quoted['created'],
|
||||||
|
$post['guid'] ?? ''
|
||||||
);
|
);
|
||||||
|
|
||||||
$postarray['body'] .= $quoted['body'] . '[/share]';
|
$postarray['body'] .= $quoted['body'] . '[/share]';
|
||||||
|
@ -1798,12 +1851,12 @@ function twitter_fetchparentposts(App $a, $uid, $post, TwitterOAuth $connection,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty($post)) {
|
if (empty($post)) {
|
||||||
Logger::log("twitter_fetchparentposts: Can't fetch post " . $post->in_reply_to_status_id_str, Logger::DEBUG);
|
Logger::info("twitter_fetchparentposts: Can't fetch post");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty($post->id_str)) {
|
if (empty($post->id_str)) {
|
||||||
Logger::log("twitter_fetchparentposts: This is not a post " . json_encode($post), Logger::DEBUG);
|
Logger::info("twitter_fetchparentposts: This is not a post", ['post' => $post]);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue