Merge pull request #10038 from annando/issue-10019
Issue 10019: Fix embedding of media objects
This commit is contained in:
commit
7b41866410
|
@ -96,8 +96,7 @@ class ParseUrl extends BaseModule
|
|||
if ($format == 'json') {
|
||||
$siteinfo = Util\ParseUrl::getSiteinfoCached($url);
|
||||
|
||||
if (empty($siteinfo['title']) && empty($siteinfo['text']) && empty($siteinfo['image'])
|
||||
&& in_array($siteinfo['type'], ['image', 'video', 'audio'])) {
|
||||
if (in_array($siteinfo['type'], ['image', 'video', 'audio'])) {
|
||||
switch ($siteinfo['type']) {
|
||||
case 'video':
|
||||
$content_type = 'video';
|
||||
|
|
|
@ -51,6 +51,26 @@ class ParseUrl
|
|||
*/
|
||||
const MIN_DESC_COUNT = 100;
|
||||
|
||||
/**
|
||||
* Fetch the content type of the given url
|
||||
* @param string $url URL of the page
|
||||
* @return array content type
|
||||
*/
|
||||
public static function getContentType(string $url)
|
||||
{
|
||||
$curlResult = DI::httpRequest()->head($url);
|
||||
if (!$curlResult->isSuccess()) {
|
||||
return [];
|
||||
}
|
||||
|
||||
$contenttype = $curlResult->getHeader('Content-Type');
|
||||
if (empty($contenttype)) {
|
||||
return [];
|
||||
}
|
||||
|
||||
return explode('/', current(explode(';', $contenttype)));
|
||||
}
|
||||
|
||||
/**
|
||||
* Search for chached embeddable data of an url otherwise fetch it
|
||||
*
|
||||
|
@ -186,6 +206,18 @@ class ParseUrl
|
|||
return $siteinfo;
|
||||
}
|
||||
|
||||
$type = self::getContentType($url);
|
||||
Logger::info('Got content-type', ['content-type' => $type, 'url' => $url]);
|
||||
if (!empty($type) && in_array($type[0], ['image', 'video', 'audio'])) {
|
||||
$siteinfo['type'] = $type[0];
|
||||
return $siteinfo;
|
||||
}
|
||||
|
||||
if ((count($type) >= 2) && (($type[0] != 'text') || ($type[1] != 'html'))) {
|
||||
Logger::info('Unparseable content-type, quitting here, ', ['content-type' => $type, 'url' => $url]);
|
||||
return $siteinfo;
|
||||
}
|
||||
|
||||
$curlResult = DI::httpRequest()->get($url);
|
||||
if (!$curlResult->isSuccess()) {
|
||||
return $siteinfo;
|
||||
|
@ -198,21 +230,6 @@ class ParseUrl
|
|||
return $siteinfo;
|
||||
}
|
||||
|
||||
// Native media type, no need for HTML parsing
|
||||
$type = $curlResult->getHeader('Content-Type');
|
||||
if ($type) {
|
||||
preg_match('#(image|video|audio)/#i', $type, $matches);
|
||||
if ($matches) {
|
||||
$siteinfo['type'] = array_pop($matches);
|
||||
return $siteinfo;
|
||||
}
|
||||
}
|
||||
|
||||
// If it isn't a HTML file then exit
|
||||
if (($curlResult->getContentType() != '') && !strstr(strtolower($curlResult->getContentType()), 'html')) {
|
||||
return $siteinfo;
|
||||
}
|
||||
|
||||
if ($cacheControlHeader = $curlResult->getHeader('Cache-Control')) {
|
||||
if (preg_match('/max-age=([0-9]+)/i', $cacheControlHeader, $matches)) {
|
||||
$maxAge = max(86400, (int)array_pop($matches));
|
||||
|
@ -227,7 +244,7 @@ class ParseUrl
|
|||
$oembed_data = OEmbed::fetchURL($url);
|
||||
|
||||
if (!empty($oembed_data->type)) {
|
||||
if (!in_array($oembed_data->type, ['error', 'rich', ''])) {
|
||||
if (!in_array($oembed_data->type, ['error', 'rich', 'image', 'video', 'audio', ''])) {
|
||||
$siteinfo['type'] = $oembed_data->type;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue