true, 'nobody' => true]); if ($curlResponse->isSuccess()) { // Convert the header fields into an array $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; } } if (array_key_exists('Content-Type', $hdrs)) { $type = $hdrs['Content-Type']; } if ($type) { if (stripos($type, 'image/') !== false) { echo $br . '[img]' . $url . '[/img]' . $br; exit(); } if (stripos($type, 'video/') !== false) { echo $br . '[video]' . $url . '[/video]' . $br; exit(); } if (stripos($type, 'audio/') !== false) { echo $br . '[audio]' . $url . '[/audio]' . $br; exit(); } } } $template = '[bookmark=%s]%s[/bookmark]%s'; $arr = ['url' => $url, 'text' => '']; Addon::callHooks('parse_link', $arr); if (strlen($arr['text'])) { echo $arr['text']; exit(); } // If there is already some content information submitted we don't // need to parse the url for content. if (!empty($url) && !empty($title) && !empty($text)) { $title = str_replace(["\r", "\n"], ['', ''], $title); $text = '[quote]' . trim($text) . '[/quote]' . $br; $result = sprintf($template, $url, ($title) ? $title : $url, $text) . $str_tags; logger('(unparsed): returns: ' . $result); echo $result; exit(); } // Fetch the information directly from the webpage $siteinfo = ParseUrl::getSiteinfo($url); unset($siteinfo['keywords']); // Bypass attachment if parse url for a comment if (!empty($_GET['noAttachment'])) { echo $br . '[url=' . $url . ']' . $siteinfo['title'] . '[/url]'; exit(); } // Format it as BBCode attachment $info = add_page_info_data($siteinfo); echo $info; exit(); } /** * @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; }