4 * @file include/ParseUrl.php
5 * @brief Get informations about a given URL
10 use \Friendica\Core\Config;
12 require_once("include/network.php");
13 require_once("include/Photo.php");
14 require_once("include/oembed.php");
15 require_once("include/xml.php");
18 * @brief Class with methods for extracting certain content from an url
23 * @brief Search for chached embeddable data of an url otherwise fetch it
25 * @param type $url The url of the page which should be scraped
26 * @param type $no_guessing If true the parse doens't search for
28 * @param type $do_oembed The false option is used by the function fetch_oembed()
29 * to avoid endless loops
31 * @return array which contains needed data for embedding
32 * string 'url' => The url of the parsed page
33 * string 'type' => Content type
34 * string 'title' => The title of the content
35 * string 'text' => The description for the content
36 * string 'image' => A preview image of the content (only available
37 * if $no_geuessing = false
38 * array'images' = Array of preview pictures
39 * string 'keywords' => The tags which belong to the content
41 * @see ParseUrl::getSiteinfo() for more information about scraping
44 public static function getSiteinfoCached($url, $no_guessing = false, $do_oembed = true) {
50 $r = q("SELECT * FROM `parsed_url` WHERE `url` = '%s' AND `guessing` = %d AND `oembed` = %d",
51 dbesc(normalise_link($url)), intval(!$no_guessing), intval($do_oembed));
54 $data = $r[0]["content"];
57 if (!is_null($data)) {
58 $data = unserialize($data);
62 $data = self::getSiteinfo($url, $no_guessing, $do_oembed);
64 q("INSERT INTO `parsed_url` (`url`, `guessing`, `oembed`, `content`, `created`) VALUES ('%s', %d, %d, '%s', '%s')
65 ON DUPLICATE KEY UPDATE `content` = '%s', `created` = '%s'",
66 dbesc(normalise_link($url)), intval(!$no_guessing), intval($do_oembed),
67 dbesc(serialize($data)), dbesc(datetime_convert()),
68 dbesc(serialize($data)), dbesc(datetime_convert()));
73 * @brief Parse a page for embeddable content information
75 * This method parses to url for meta data which can be used to embed
76 * the content. If available it prioritizes Open Graph meta tags.
77 * If this is not available it uses the twitter cards meta tags.
78 * As fallback it uses standard html elements with meta informations
79 * like \<title\>Awesome Title\</title\> or
80 * \<meta name="description" content="An awesome description"\>
82 * @param type $url The url of the page which should be scraped
83 * @param type $no_guessing If true the parse doens't search for
85 * @param type $do_oembed The false option is used by the function fetch_oembed()
86 * to avoid endless loops
87 * @param type $count Internal counter to avoid endless loops
89 * @return array which contains needed data for embedding
90 * string 'url' => The url of the parsed page
91 * string 'type' => Content type
92 * string 'title' => The title of the content
93 * string 'text' => The description for the content
94 * string 'image' => A preview image of the content (only available
95 * if $no_geuessing = false
96 * array'images' = Array of preview pictures
97 * string 'keywords' => The tags which belong to the content
99 * @todo https://developers.google.com/+/plugins/snippet/
101 * <meta itemprop="name" content="Awesome title">
102 * <meta itemprop="description" content="An awesome description">
103 * <meta itemprop="image" content="http://maple.libertreeproject.org/images/tree-icon.png">
105 * <body itemscope itemtype="http://schema.org/Product">
106 * <h1 itemprop="name">Shiny Trinket</h1>
107 * <img itemprop="image" src="{image-url}" />
108 * <p itemprop="description">Shiny trinkets are shiny.</p>
112 public static function getSiteinfo($url, $no_guessing = false, $do_oembed = true, $count = 1) {
118 // Check if the URL does contain a scheme
119 $scheme = parse_url($url, PHP_URL_SCHEME);
122 $url = "http://".trim($url, "/");
126 logger("parseurl_getsiteinfo: Endless loop detected for ".$url, LOGGER_DEBUG);
130 $url = trim($url, "'");
131 $url = trim($url, '"');
133 $url = strip_tracking_query_params($url);
135 $siteinfo["url"] = $url;
136 $siteinfo["type"] = "link";
138 $check_cert = Config::get("system", "verifyssl");
140 $stamp1 = microtime(true);
143 curl_setopt($ch, CURLOPT_URL, $url);
144 curl_setopt($ch, CURLOPT_HEADER, 1);
145 curl_setopt($ch, CURLOPT_TIMEOUT, 10);
146 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
147 curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent());
148 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, (($check_cert) ? true : false));
149 curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, (($check_cert) ? 2 : false));
151 $header = curl_exec($ch);
152 $curl_info = @curl_getinfo($ch);
155 $a->save_timestamp($stamp1, "network");
157 if ((($curl_info["http_code"] == "301") || ($curl_info["http_code"] == "302") || ($curl_info["http_code"] == "303") || ($curl_info["http_code"] == "307"))
158 && (($curl_info["redirect_url"] != "") || ($curl_info["location"] != ""))) {
159 if ($curl_info["redirect_url"] != "") {
160 $siteinfo = self::getSiteinfo($curl_info["redirect_url"], $no_guessing, $do_oembed, ++$count);
162 $siteinfo = self::getSiteinfo($curl_info["location"], $no_guessing, $do_oembed, ++$count);
167 // If the file is too large then exit
168 if ($curl_info["download_content_length"] > 1000000) {
172 // If it isn't a HTML file then exit
173 if (($curl_info["content_type"] != "") && !strstr(strtolower($curl_info["content_type"]), "html")) {
179 $oembed_data = oembed_fetch_url($url);
181 if (!in_array($oembed_data->type, array("error", "rich"))) {
182 $siteinfo["type"] = $oembed_data->type;
185 if (($oembed_data->type == "link") && ($siteinfo["type"] != "photo")) {
186 if (isset($oembed_data->title)) {
187 $siteinfo["title"] = $oembed_data->title;
189 if (isset($oembed_data->description)) {
190 $siteinfo["text"] = trim($oembed_data->description);
192 if (isset($oembed_data->thumbnail_url)) {
193 $siteinfo["image"] = $oembed_data->thumbnail_url;
198 // Fetch the first mentioned charset. Can be in body or header
200 if (preg_match('/charset=(.*?)['."'".'"\s\n]/', $header, $matches)) {
201 $charset = trim(trim(trim(array_pop($matches)), ';,'));
204 if ($charset == "") {
208 $pos = strpos($header, "\r\n\r\n");
211 $body = trim(substr($header, $pos));
216 if (($charset != "") && (strtoupper($charset) != "UTF-8")) {
217 logger("parseurl_getsiteinfo: detected charset ".$charset, LOGGER_DEBUG);
218 //$body = mb_convert_encoding($body, "UTF-8", $charset);
219 $body = iconv($charset, "UTF-8//TRANSLIT", $body);
222 $body = mb_convert_encoding($body, 'HTML-ENTITIES', "UTF-8");
224 $doc = new \DOMDocument();
225 @$doc->loadHTML($body);
227 \xml::deleteNode($doc, "style");
228 \xml::deleteNode($doc, "script");
229 \xml::deleteNode($doc, "option");
230 \xml::deleteNode($doc, "h1");
231 \xml::deleteNode($doc, "h2");
232 \xml::deleteNode($doc, "h3");
233 \xml::deleteNode($doc, "h4");
234 \xml::deleteNode($doc, "h5");
235 \xml::deleteNode($doc, "h6");
236 \xml::deleteNode($doc, "ol");
237 \xml::deleteNode($doc, "ul");
239 $xpath = new \DomXPath($doc);
241 $list = $xpath->query("//meta[@content]");
242 foreach ($list as $node) {
244 if ($node->attributes->length) {
245 foreach ($node->attributes as $attribute) {
246 $attr[$attribute->name] = $attribute->value;
250 if (@$attr["http-equiv"] == "refresh") {
251 $path = $attr["content"];
252 $pathinfo = explode(";", $path);
254 foreach ($pathinfo as $value) {
255 if (substr(strtolower($value), 0, 4) == "url=") {
256 $content = substr($value, 4);
259 if ($content != "") {
260 $siteinfo = self::getSiteinfo($content, $no_guessing, $do_oembed, ++$count);
266 $list = $xpath->query("//title");
267 if ($list->length > 0) {
268 $siteinfo["title"] = $list->item(0)->nodeValue;
271 //$list = $xpath->query("head/meta[@name]");
272 $list = $xpath->query("//meta[@name]");
273 foreach ($list as $node) {
275 if ($node->attributes->length) {
276 foreach ($node->attributes as $attribute) {
277 $attr[$attribute->name] = $attribute->value;
281 $attr["content"] = trim(html_entity_decode($attr["content"], ENT_QUOTES, "UTF-8"));
283 if ($attr["content"] != "") {
284 switch (strtolower($attr["name"])) {
286 $siteinfo["title"] = $attr["content"];
289 $siteinfo["text"] = $attr["content"];
292 $siteinfo["image"] = $attr["content"];
294 case "twitter:image":
295 $siteinfo["image"] = $attr["content"];
297 case "twitter:image:src":
298 $siteinfo["image"] = $attr["content"];
301 if (($siteinfo["type"] == "") || ($attr["content"] == "photo")) {
302 $siteinfo["type"] = $attr["content"];
305 case "twitter:description":
306 $siteinfo["text"] = $attr["content"];
308 case "twitter:title":
309 $siteinfo["title"] = $attr["content"];
312 $siteinfo["title"] = $attr["content"];
314 case "dc.description":
315 $siteinfo["text"] = $attr["content"];
318 $keywords = explode(",", $attr["content"]);
320 case "news_keywords":
321 $keywords = explode(",", $attr["content"]);
325 if ($siteinfo["type"] == "summary") {
326 $siteinfo["type"] = "link";
330 if (isset($keywords)) {
331 $siteinfo["keywords"] = array();
332 foreach ($keywords as $keyword) {
333 if (!in_array(trim($keyword), $siteinfo["keywords"])) {
334 $siteinfo["keywords"][] = trim($keyword);
339 //$list = $xpath->query("head/meta[@property]");
340 $list = $xpath->query("//meta[@property]");
341 foreach ($list as $node) {
343 if ($node->attributes->length) {
344 foreach ($node->attributes as $attribute) {
345 $attr[$attribute->name] = $attribute->value;
349 $attr["content"] = trim(html_entity_decode($attr["content"], ENT_QUOTES, "UTF-8"));
351 if ($attr["content"] != "") {
352 switch (strtolower($attr["property"])) {
354 $siteinfo["image"] = $attr["content"];
357 $siteinfo["title"] = $attr["content"];
359 case "og:description":
360 $siteinfo["text"] = $attr["content"];
366 if ((@$siteinfo["image"] == "") && !$no_guessing) {
367 $list = $xpath->query("//img[@src]");
368 foreach ($list as $node) {
370 if ($node->attributes->length) {
371 foreach ($node->attributes as $attribute) {
372 $attr[$attribute->name] = $attribute->value;
376 $src = self::completeUrl($attr["src"], $url);
377 $photodata = get_photo_info($src);
379 if (($photodata) && ($photodata[0] > 150) && ($photodata[1] > 150)) {
380 if ($photodata[0] > 300) {
381 $photodata[1] = round($photodata[1] * (300 / $photodata[0]));
384 if ($photodata[1] > 300) {
385 $photodata[0] = round($photodata[0] * (300 / $photodata[1]));
388 $siteinfo["images"][] = array("src" => $src,
389 "width" => $photodata[0],
390 "height" => $photodata[1]);
394 } elseif ($siteinfo["image"] != "") {
395 $src = self::completeUrl($siteinfo["image"], $url);
397 unset($siteinfo["image"]);
399 $photodata = get_photo_info($src);
401 if (($photodata) && ($photodata[0] > 10) && ($photodata[1] > 10)) {
402 $siteinfo["images"][] = array("src" => $src,
403 "width" => $photodata[0],
404 "height" => $photodata[1]);
408 if ((@$siteinfo["text"] == "") && (@$siteinfo["title"] != "") && !$no_guessing) {
411 $list = $xpath->query("//div[@class='article']");
412 foreach ($list as $node) {
413 if (strlen($node->nodeValue) > 40) {
414 $text .= " ".trim($node->nodeValue);
419 $list = $xpath->query("//div[@class='content']");
420 foreach ($list as $node) {
421 if (strlen($node->nodeValue) > 40) {
422 $text .= " ".trim($node->nodeValue);
427 // If none text was found then take the paragraph content
429 $list = $xpath->query("//p");
430 foreach ($list as $node) {
431 if (strlen($node->nodeValue) > 40) {
432 $text .= " ".trim($node->nodeValue);
438 $text = trim(str_replace(array("\n", "\r"), array(" ", " "), $text));
440 while (strpos($text, " ")) {
441 $text = trim(str_replace(" ", " ", $text));
444 $siteinfo["text"] = trim(html_entity_decode(substr($text, 0, 350), ENT_QUOTES, "UTF-8").'...');
448 logger("parseurl_getsiteinfo: Siteinfo for ".$url." ".print_r($siteinfo, true), LOGGER_DEBUG);
450 call_hooks("getsiteinfo", $siteinfo);
456 * @brief Convert tags from CSV to an array
458 * @param string $string Tags
459 * @return array with formatted Hashtags
461 public static function convertTagsToArray($string) {
462 $arr_tags = str_getcsv($string);
463 if (count($arr_tags)) {
464 // add the # sign to every tag
465 array_walk($arr_tags, array("self", "arrAddHashes"));
472 * @brief Add a hasht sign to a string
474 * This method is used as callback function
476 * @param string $tag The pure tag name
477 * @param int $k Counter for internal use
479 private static function arrAddHashes(&$tag, $k) {
484 * @brief Add a scheme to an url
486 * The src attribute of some html elements (e.g. images)
487 * can miss the scheme so we need to add the correct
490 * @param string $url The url which possibly does have
491 * a missing scheme (a link to an image)
492 * @param string $scheme The url with a correct scheme
493 * (e.g. the url from the webpage which does contain the image)
495 * @return string The url with a scheme
497 private static function completeUrl($url, $scheme) {
498 $urlarr = parse_url($url);
500 // If the url does allready have an scheme
501 // we can stop the process here
502 if (isset($urlarr["scheme"])) {
506 $schemearr = parse_url($scheme);
508 $complete = $schemearr["scheme"]."://".$schemearr["host"];
510 if (@$schemearr["port"] != "") {
511 $complete .= ":".$schemearr["port"];
514 if (strpos($urlarr["path"],"/") !== 0) {
518 $complete .= $urlarr["path"];
520 if (@$urlarr["query"] != "") {
521 $complete .= "?".$urlarr["query"];
524 if (@$urlarr["fragment"] != "") {
525 $complete .= "#".$urlarr["fragment"];