X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fparse_url.php;h=67610140b6985461a09484a8c0857d99d8a853c8;hb=ca9f8e7420d925fb316f8841f338a4583d94fe51;hp=3b2522ab12fb05184bcd4f54f1af6a85ebbc2c00;hpb=d6a82c6c2d7befde9914fce3bd4e3e07b97ca036;p=friendica.git diff --git a/mod/parse_url.php b/mod/parse_url.php index 3b2522ab12..67610140b6 100644 --- a/mod/parse_url.php +++ b/mod/parse_url.php @@ -1,20 +1,36 @@ . * * This module does parse an url for embeddable content (audio, video, image files or link) * information and does format this information to BBCode * * @see ParseUrl::getSiteinfo() for more information about scraping embeddable content */ + use Friendica\App; +use Friendica\Content\PageInfo; use Friendica\Core\Hook; use Friendica\Core\Logger; use Friendica\Core\System; use Friendica\Util\Network; use Friendica\Util\ParseUrl; +use Friendica\Util\Strings; function parse_url_content(App $a) { @@ -25,10 +41,14 @@ function parse_url_content(App $a) $br = "\n"; - if (!empty($_GET['binurl'])) { + if (!empty($_GET['binurl']) && Strings::isHex($_GET['binurl'])) { $url = trim(hex2bin($_GET['binurl'])); - } else { + } elseif (!empty($_GET['url'])) { $url = trim($_GET['url']); + // fallback in case no url is valid + } else { + Logger::info('No url given'); + exit(); } if (!empty($_GET['title'])) { @@ -64,9 +84,8 @@ function parse_url_content(App $a) // Check if the URL is an image, video or audio file. If so format // the URL with the corresponding BBCode media tag - $redirects = 0; // Fetch the header of the URL - $curlResponse = Network::curl($url, false, $redirects, ['novalidate' => true, 'nobody' => true]); + $curlResponse = Network::curl($url, false, ['novalidate' => true, 'nobody' => true]); if ($curlResponse->isSuccess()) { // Convert the header fields into an array @@ -159,7 +178,7 @@ function parse_url_content(App $a) } // Format it as BBCode attachment - $info = add_page_info_data($siteinfo); + $info = "\n" . PageInfo::getFooterFromData($siteinfo); echo $info; @@ -167,7 +186,7 @@ function parse_url_content(App $a) } /** - * @brief Legacy function to call ParseUrl::getSiteinfoCached + * Legacy function to call ParseUrl::getSiteinfoCached * * Note: We have moved the function to ParseUrl.php. This function is only for * legacy support and will be remove in the future