Merge pull request #9448 from MrPetovan/bug/9447-restore-twitter-link-preview
Add new format parameter to parse_link hook data
This commit is contained in:
commit
3bcf467ded
1 changed files with 10 additions and 14 deletions
|
@ -88,16 +88,8 @@ function parse_url_content(App $a)
|
||||||
$curlResponse = DI::httpRequest()->head($url);
|
$curlResponse = DI::httpRequest()->head($url);
|
||||||
|
|
||||||
if ($curlResponse->isSuccess()) {
|
if ($curlResponse->isSuccess()) {
|
||||||
// Convert the header fields into an array
|
$hdrs = $curlResponse->getHeaderArray();
|
||||||
$hdrs = [];
|
|
||||||
$h = explode("\n", $curlResponse->getHeader());
|
|
||||||
foreach ($h as $l) {
|
|
||||||
$header = array_map('trim', explode(':', trim($l), 2));
|
|
||||||
if (count($header) == 2) {
|
|
||||||
list($k, $v) = $header;
|
|
||||||
$hdrs[$k] = $v;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$type = null;
|
$type = null;
|
||||||
$content_type = '';
|
$content_type = '';
|
||||||
$bbcode = '';
|
$bbcode = '';
|
||||||
|
@ -134,14 +126,18 @@ function parse_url_content(App $a)
|
||||||
|
|
||||||
$template = '[bookmark=%s]%s[/bookmark]%s';
|
$template = '[bookmark=%s]%s[/bookmark]%s';
|
||||||
|
|
||||||
$arr = ['url' => $url, 'text' => ''];
|
$arr = ['url' => $url, 'format' => $format, 'text' => null];
|
||||||
|
|
||||||
Hook::callAll('parse_link', $arr);
|
Hook::callAll('parse_link', $arr);
|
||||||
|
|
||||||
if (strlen($arr['text'])) {
|
if ($arr['text']) {
|
||||||
|
if ($format == 'json') {
|
||||||
|
System::jsonExit($arr['text']);
|
||||||
|
} else {
|
||||||
echo $arr['text'];
|
echo $arr['text'];
|
||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// If there is already some content information submitted we don't
|
// If there is already some content information submitted we don't
|
||||||
// need to parse the url for content.
|
// need to parse the url for content.
|
||||||
|
|
Loading…
Reference in a new issue