]> git.mxchange.org Git - friendica.git/blobdiff - mod/parse_url.php
Removed commented code
[friendica.git] / mod / parse_url.php
index 481cb89361b6f70be3b104891f923af8661499ef..23075ad775e64a6bc73b7c47a3b4f3726fff45b2 100644 (file)
@@ -1,14 +1,14 @@
 <?php
-/**
+/** 
  * @file mod/parse_url.php
- *
+ * 
  * @todo https://developers.google.com/+/plugins/snippet/
- *
+ * 
  * @verbatim
  * <meta itemprop="name" content="Toller Titel">
  * <meta itemprop="description" content="Eine tolle Beschreibung">
  * <meta itemprop="image" content="http://maple.libertreeproject.org/images/tree-icon.png">
- *
+ * 
  * <body itemscope itemtype="http://schema.org/Product">
  *   <h1 itemprop="name">Shiny Trinket</h1>
  *   <img itemprop="image" src="{image-url}" />
@@ -27,7 +27,6 @@ if(!function_exists('deletenode')) {
        }
 }
 
-if(! function_exists('completeurl')) {
 function completeurl($url, $scheme) {
        $urlarr = parse_url($url);
 
@@ -54,9 +53,7 @@ function completeurl($url, $scheme) {
 
        return($complete);
 }
-}
 
-if(! function_exists('parseurl_getsiteinfo_cached')) {
 function parseurl_getsiteinfo_cached($url, $no_guessing = false, $do_oembed = true) {
 
        if ($url == "")
@@ -75,14 +72,15 @@ function parseurl_getsiteinfo_cached($url, $no_guessing = false, $do_oembed = tr
 
        $data = parseurl_getsiteinfo($url, $no_guessing, $do_oembed);
 
-       q("INSERT INTO `parsed_url` (`url`, `guessing`, `oembed`, `content`, `created`) VALUES ('%s', %d, %d, '%s', '%s')",
-               dbesc(normalise_link($url)), intval(!$no_guessing), intval($do_oembed), dbesc(serialize($data)), dbesc(datetime_convert()));
+       q("INSERT INTO `parsed_url` (`url`, `guessing`, `oembed`, `content`, `created`) VALUES ('%s', %d, %d, '%s', '%s')
+                ON DUPLICATE KEY UPDATE `content` = '%s', `created` = '%s'",
+               dbesc(normalise_link($url)), intval(!$no_guessing), intval($do_oembed),
+               dbesc(serialize($data)), dbesc(datetime_convert()),
+               dbesc(serialize($data)), dbesc(datetime_convert()));
 
        return $data;
 }
-}
 
-if(! function_exists('parseurl_getsiteinfo')) {
 function parseurl_getsiteinfo($url, $no_guessing = false, $do_oembed = true, $count = 1) {
        require_once("include/network.php");
        require_once("include/Photo.php");
@@ -91,6 +89,13 @@ function parseurl_getsiteinfo($url, $no_guessing = false, $do_oembed = true, $co
 
        $siteinfo = array();
 
+       // Check if the URL does contain a scheme
+       $scheme = parse_url($url, PHP_URL_SCHEME);
+
+       if ($scheme == "") {
+               $url = "http://".trim($url, "/");
+       }
+
        if ($count > 10) {
                logger("parseurl_getsiteinfo: Endless loop detected for ".$url, LOGGER_DEBUG);
                return($siteinfo);
@@ -104,6 +109,8 @@ function parseurl_getsiteinfo($url, $no_guessing = false, $do_oembed = true, $co
        $siteinfo["url"] = $url;
        $siteinfo["type"] = "link";
 
+       $check_cert = get_config('system','verifyssl');
+
        $stamp1 = microtime(true);
 
        $ch = curl_init();
@@ -112,8 +119,9 @@ function parseurl_getsiteinfo($url, $no_guessing = false, $do_oembed = true, $co
        curl_setopt($ch, CURLOPT_NOBODY, 1);
        curl_setopt($ch, CURLOPT_TIMEOUT, 3);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
-       //curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
        curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent());
+       curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, (($check_cert) ? true : false));
+       curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, (($check_cert) ? 2 : false));
 
        $header = curl_exec($ch);
        $curl_info = @curl_getinfo($ch);
@@ -144,8 +152,9 @@ function parseurl_getsiteinfo($url, $no_guessing = false, $do_oembed = true, $co
 
                $oembed_data = oembed_fetch_url($url);
 
-               if ($oembed_data->type != "error")
+               if (!in_array($oembed_data->type, array("error", "rich"))) {
                        $siteinfo["type"] = $oembed_data->type;
+               }
 
                if (($oembed_data->type == "link") AND ($siteinfo["type"] != "photo")) {
                        if (isset($oembed_data->title))
@@ -167,6 +176,8 @@ function parseurl_getsiteinfo($url, $no_guessing = false, $do_oembed = true, $co
        curl_setopt($ch, CURLOPT_TIMEOUT, 10);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent());
+       curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, (($check_cert) ? true : false));
+       curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, (($check_cert) ? 2 : false));
 
        $header = curl_exec($ch);
        $curl_info = @curl_getinfo($ch);
@@ -237,10 +248,9 @@ function parseurl_getsiteinfo($url, $no_guessing = false, $do_oembed = true, $co
                }
        }
 
-       //$list = $xpath->query("head/title");
        $list = $xpath->query("//title");
-       foreach ($list as $node)
-               $siteinfo["title"] =  html_entity_decode($node->nodeValue, ENT_QUOTES, "UTF-8");
+       if ($list->length > 0)
+               $siteinfo["title"] = $list->item(0)->nodeValue;
 
        //$list = $xpath->query("head/meta[@name]");
        $list = $xpath->query("//meta[@name]");
@@ -405,17 +415,15 @@ function parseurl_getsiteinfo($url, $no_guessing = false, $do_oembed = true, $co
 
        return($siteinfo);
 }
-}
 
-if(! function_exists('arr_add_hashes')) {
 function arr_add_hashes(&$item,$k) {
        $item = '#' . $item;
 }
-}
 
-if(! function_exists('parse_url_content')) {
 function parse_url_content(&$a) {
 
+       require_once("include/items.php");
+
        $text = null;
        $str_tags = '';
 
@@ -493,79 +501,16 @@ function parse_url_content(&$a) {
 
        $siteinfo = parseurl_getsiteinfo($url);
 
-//     if ($textmode) {
-//             require_once("include/items.php");
-//
-//             echo add_page_info_data($siteinfo);
-//             killme();
-//     }
-
-       $url= $siteinfo["url"];
-
-       // If the link contains BBCode stuff, make a short link out of this to avoid parsing problems
-       if (strpos($url, '[') OR strpos($url, ']')) {
-               require_once("include/network.php");
-               $url = short_link($url);
-       }
-
-       $sitedata = "";
-
-       if($siteinfo["title"] != "") {
-               $text = $siteinfo["text"];
-               $title = $siteinfo["title"];
-       }
-
-       $image = "";
-
-       if (($siteinfo["type"] != "video") AND (sizeof($siteinfo["images"]) > 0)){
-               /* Execute below code only if image is present in siteinfo */
-
-               $total_images = 0;
-               $max_images = get_config('system','max_bookmark_images');
-               if($max_images === false)
-                       $max_images = 2;
-               else
-                       $max_images = intval($max_images);
-
-               foreach ($siteinfo["images"] as $imagedata) {
-                       if($textmode)
-                               $image .= '[img='.$imagedata["width"].'x'.$imagedata["height"].']'.$imagedata["src"].'[/img]' . "\n";
-                       else
-                               $image .= '<img height="'.$imagedata["height"].'" width="'.$imagedata["width"].'" src="'.$imagedata["src"].'" alt="photo" /><br />';
-                       $total_images ++;
-                       if($max_images && $max_images >= $total_images)
-                               break;
-               }
-       }
-
-       if(strlen($text)) {
-               if($textmode)
-                       $text = '[quote]'.trim($text).'[/quote]';
-               else
-                       $text = '<blockquote>'.htmlspecialchars(trim($text)).'</blockquote>';
-       }
-
-       if($image)
-               $text = $br.$br.$image.$text;
-       else
-               $text = $br.$text;
-
-       $title = str_replace(array("\r","\n"),array('',''),$title);
-
-       $result = sprintf($template,$url,($title) ? $title : $url,$text) . $str_tags;
+       unset($siteinfo["keywords"]);
 
-       logger('parse_url: returns: ' . $result);
+       $info = add_page_info_data($siteinfo);
 
-       $sitedata .=  trim($result);
+       if (!$textmode)
+               // Replace ' with ’ - not perfect - but the richtext editor has problems otherwise
+               $info = str_replace(array("&#039;"), array("&#8217;"), $info);
 
-       if (($siteinfo["type"] == "video") AND ($url != ""))
-               echo "[class=type-video]".$sitedata."[/class]";
-       elseif (($siteinfo["type"] != "photo"))
-               echo "[class=type-link]".$sitedata."[/class]";
-       else
-               echo "[class=type-photo]".$title.$br.$image."[/class]";
+       echo $info;
 
        killme();
 }
-}
 ?>