X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fparse_url.php;h=77529714f20f56a83cadcee7e075be5b8d07b2aa;hb=caad9f5214f9f8c94e487629007b0f33c1b2008d;hp=a6b7cd5024c9aa929120ebb7b87b03901297f848;hpb=e9226eaf45e70bcd5a9a9f66b6b922dbc15c47ba;p=friendica.git diff --git a/mod/parse_url.php b/mod/parse_url.php index a6b7cd5024..77529714f2 100644 --- a/mod/parse_url.php +++ b/mod/parse_url.php @@ -1,38 +1,25 @@ - * - * - * - * - *

Shiny Trinket

- * - *

Shiny trinkets are shiny.

- * - * @endverbatim + * @brief The parse_url module + * + * 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\ParseUrl; require_once("include/items.php"); -function parse_url_content(&$a) { +function parse_url_content(App $a) { $text = null; $str_tags = ""; - $textmode = false; - - if (local_user() && (!feature_enabled(local_user(), "richtext"))) { - $textmode = true; - } - - $br = (($textmode) ? "\n" : "
"); + $br = "\n"; if (x($_GET,"binurl")) { $url = trim(hex2bin($_GET["binurl"])); @@ -67,8 +54,8 @@ function parse_url_content(&$a) { logger("prse_url: " . $url); - // If the URL is a image, video or audio file format the URL with the corresponding - // BBCode media tag + // 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 $result = z_fetch_url($url, false, $redirects, array("novalidate" => true, "nobody" => true)); @@ -99,11 +86,7 @@ function parse_url_content(&$a) { } } - if ($textmode) { - $template = "[bookmark=%s]%s[/bookmark]%s"; - } else { - $template = "%s%s"; - } + $template = "[bookmark=%s]%s[/bookmark]%s"; $arr = array("url" => $url, "text" => ""); @@ -114,17 +97,13 @@ function parse_url_content(&$a) { killme(); } - + // If there is allready some content information submitted we don't + // need to parse the url for content. if ($url && $title && $text) { $title = str_replace(array("\r","\n"),array("",""),$title); - if ($textmode) { - $text = "[quote]" . trim($text) . "[/quote]" . $br; - } else { - $text = "
" . htmlspecialchars(trim($text)) . "

"; - $title = htmlspecialchars($title); - } + $text = "[quote]" . trim($text) . "[/quote]" . $br; $result = sprintf($template, $url, ($title) ? $title : $url, $text) . $str_tags; @@ -134,7 +113,7 @@ function parse_url_content(&$a) { killme(); } - // Fetch the information from the webpage + // Fetch the information directly from the webpage $siteinfo = ParseUrl::getSiteinfo($url); unset($siteinfo["keywords"]); @@ -142,12 +121,31 @@ function parse_url_content(&$a) { // Format it as BBCode attachment $info = add_page_info_data($siteinfo); - if (!$textmode) { - // Replace ' with ’ - not perfect - but the richtext editor has problems otherwise - $info = str_replace(array("'"), array("’"), $info); - } - echo $info; killme(); } + +/** + * @brief 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 + * + * @param type $url The url of the page which should be scraped + * @param type $no_guessing If true the parse doens't search for + * preview pictures + * @param type $do_oembed The false option is used by the function fetch_oembed() + * to avoid endless loops + * + * @return array which contains needed data for embedding + * + * @see ParseUrl::getSiteinfoCached() + * + * @todo Remove this function after all Addons has been changed to use + * ParseUrl::getSiteinfoCached + */ +function parseurl_getsiteinfo_cached($url, $no_guessing = false, $do_oembed = true) { + $siteinfo = ParseUrl::getSiteinfoCached($url, $no_guessing, $do_oembed); + return $siteinfo; +}