]> git.mxchange.org Git - friendica.git/blob - mod/parse_url.php
Merge pull request #1120 from silke/deprecated-themes
[friendica.git] / mod / parse_url.php
1 <?php
2 /* To-Do
3 https://developers.google.com/+/plugins/snippet/
4
5 <meta itemprop="name" content="Toller Titel">
6 <meta itemprop="description" content="Eine tolle Beschreibung">
7 <meta itemprop="image" content="http://maple.libertreeproject.org/images/tree-icon.png">
8
9 <body itemscope itemtype="http://schema.org/Product">
10   <h1 itemprop="name">Shiny Trinket</h1>
11   <img itemprop="image" src="{image-url}" />
12   <p itemprop="description">Shiny trinkets are shiny.</p>
13 </body>
14 */
15
16 if(!function_exists('deletenode')) {
17         function deletenode(&$doc, $node)
18         {
19                 $xpath = new DomXPath($doc);
20                 $list = $xpath->query("//".$node);
21                 foreach ($list as $child)
22                         $child->parentNode->removeChild($child);
23         }
24 }
25
26 function completeurl($url, $scheme) {
27         $urlarr = parse_url($url);
28
29         if (isset($urlarr["scheme"]))
30                 return($url);
31
32         $schemearr = parse_url($scheme);
33
34         $complete = $schemearr["scheme"]."://".$schemearr["host"];
35
36         if (@$schemearr["port"] != "")
37                 $complete .= ":".$schemearr["port"];
38
39                 if(strpos($urlarr['path'],'/') !== 0)
40                         $complete .= '/';
41
42         $complete .= $urlarr["path"];
43
44         if (@$urlarr["query"] != "")
45                 $complete .= "?".$urlarr["query"];
46
47         if (@$urlarr["fragment"] != "")
48                 $complete .= "#".$urlarr["fragment"];
49
50         return($complete);
51 }
52
53 function parseurl_getsiteinfo($url, $no_guessing = false, $do_oembed = true, $count = 1) {
54
55         $a = get_app();
56
57         $siteinfo = array();
58
59         if ($count > 10) {
60                 logger("parseurl_getsiteinfo: Endless loop detected for ".$url, LOGGER_DEBUG);
61                 return($siteinfo);
62         }
63
64         $url = trim($url, "'");
65         $url = trim($url, '"');
66         $siteinfo["url"] = $url;
67         $siteinfo["type"] = "link";
68
69         $ch = curl_init();
70         curl_setopt($ch, CURLOPT_URL, $url);
71         curl_setopt($ch, CURLOPT_HEADER, 1);
72         curl_setopt($ch, CURLOPT_NOBODY, 0);
73         curl_setopt($ch, CURLOPT_TIMEOUT, 3);
74         curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
75         //curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
76         curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent());
77
78         $header = curl_exec($ch);
79         $curl_info = @curl_getinfo($ch);
80         $http_code = $curl_info['http_code'];
81         curl_close($ch);
82
83         if ((($curl_info['http_code'] == "301") OR ($curl_info['http_code'] == "302") OR ($curl_info['http_code'] == "303") OR ($curl_info['http_code'] == "307"))
84                 AND (($curl_info['redirect_url'] != "") OR ($curl_info['location'] != ""))) {
85                 if ($curl_info['redirect_url'] != "")
86                         $siteinfo = parseurl_getsiteinfo($curl_info['redirect_url'], $no_guessing, $do_oembed, ++$count);
87                 else
88                         $siteinfo = parseurl_getsiteinfo($curl_info['location'], $no_guessing, $do_oembed, ++$count);
89                 return($siteinfo);
90         }
91
92         if ($do_oembed) {
93                 require_once("include/oembed.php");
94
95                 $oembed_data = oembed_fetch_url($url);
96
97                 if ($oembed_data->type != "error")
98                         $siteinfo["type"] = $oembed_data->type;
99         }
100
101         // Fetch the first mentioned charset. Can be in body or header
102         $charset = "";
103         if (preg_match('/charset=(.*?)['."'".'"\s\n]/', $header, $matches))
104                 $charset = trim(trim(trim(array_pop($matches)), ';,'));
105
106         if ($charset == "")
107                 $charset = "utf-8";
108
109         $pos = strpos($header, "\r\n\r\n");
110
111         if ($pos)
112                 $body = trim(substr($header, $pos));
113         else
114                 $body = $header;
115
116         if (($charset != '') AND (strtoupper($charset) != "UTF-8")) {
117                 logger("parseurl_getsiteinfo: detected charset ".$charset, LOGGER_DEBUG);
118                 //$body = mb_convert_encoding($body, "UTF-8", $charset);
119                 $body = iconv($charset, "UTF-8//TRANSLIT", $body);
120         }
121
122         $body = mb_convert_encoding($body, 'HTML-ENTITIES', "UTF-8");
123
124         $doc = new DOMDocument();
125         @$doc->loadHTML($body);
126
127         deletenode($doc, 'style');
128         deletenode($doc, 'script');
129         deletenode($doc, 'option');
130         deletenode($doc, 'h1');
131         deletenode($doc, 'h2');
132         deletenode($doc, 'h3');
133         deletenode($doc, 'h4');
134         deletenode($doc, 'h5');
135         deletenode($doc, 'h6');
136         deletenode($doc, 'ol');
137         deletenode($doc, 'ul');
138
139         $xpath = new DomXPath($doc);
140
141         $list = $xpath->query("//meta[@content]");
142         foreach ($list as $node) {
143                 $attr = array();
144                 if ($node->attributes->length)
145                         foreach ($node->attributes as $attribute)
146                                 $attr[$attribute->name] = $attribute->value;
147
148                 if (@$attr["http-equiv"] == 'refresh') {
149                         $path = $attr["content"];
150                         $pathinfo = explode(";", $path);
151                         $content = "";
152                         foreach ($pathinfo AS $value) {
153                                 if (substr(strtolower($value), 0, 4) == "url=")
154                                         $content = substr($value, 4);
155                         }
156                         if ($content != "") {
157                                 $siteinfo = parseurl_getsiteinfo($content, $no_guessing, $do_oembed, ++$count);
158                                 return($siteinfo);
159                         }
160                 }
161         }
162
163         //$list = $xpath->query("head/title");
164         $list = $xpath->query("//title");
165         foreach ($list as $node)
166                 $siteinfo["title"] =  html_entity_decode($node->nodeValue, ENT_QUOTES, "UTF-8");
167
168         //$list = $xpath->query("head/meta[@name]");
169         $list = $xpath->query("//meta[@name]");
170         foreach ($list as $node) {
171                 $attr = array();
172                 if ($node->attributes->length)
173                         foreach ($node->attributes as $attribute)
174                                 $attr[$attribute->name] = $attribute->value;
175
176                 $attr["content"] = trim(html_entity_decode($attr["content"], ENT_QUOTES, "UTF-8"));
177
178                 if ($attr["content"] != "")
179                         switch (strtolower($attr["name"])) {
180                                 case "fulltitle":
181                                         $siteinfo["title"] = $attr["content"];
182                                         break;
183                                 case "description":
184                                         $siteinfo["text"] = $attr["content"];
185                                         break;
186                                 case "twitter:image":
187                                         $siteinfo["image"] = $attr["content"];
188                                         break;
189                                 case "twitter:card":
190                                         if (($siteinfo["type"] == "") OR ($attr["content"] == "photo"))
191                                                 $siteinfo["type"] = $attr["content"];
192                                         break;
193                                 case "twitter:description":
194                                         $siteinfo["text"] = $attr["content"];
195                                         break;
196                                 case "twitter:title":
197                                         $siteinfo["title"] = $attr["content"];
198                                         break;
199                                 case "dc.title":
200                                         $siteinfo["title"] = $attr["content"];
201                                         break;
202                                 case "dc.description":
203                                         $siteinfo["text"] = $attr["content"];
204                                         break;
205                         }
206                 if ($siteinfo["type"] == "summary")
207                         $siteinfo["type"] = "link";
208         }
209
210         //$list = $xpath->query("head/meta[@property]");
211         $list = $xpath->query("//meta[@property]");
212         foreach ($list as $node) {
213                 $attr = array();
214                 if ($node->attributes->length)
215                         foreach ($node->attributes as $attribute)
216                                 $attr[$attribute->name] = $attribute->value;
217
218                 $attr["content"] = trim(html_entity_decode($attr["content"], ENT_QUOTES, "UTF-8"));
219
220                 if ($attr["content"] != "")
221                         switch (strtolower($attr["property"])) {
222                                 case "og:image":
223                                         $siteinfo["image"] = $attr["content"];
224                                         break;
225                                 case "og:title":
226                                         $siteinfo["title"] = $attr["content"];
227                                         break;
228                                 case "og:description":
229                                         $siteinfo["text"] = $attr["content"];
230                                         break;
231                         }
232         }
233
234         if (isset($oembed_data) AND ($oembed_data->type == "link") AND ($siteinfo["type"] != "photo")) {
235                 if (isset($oembed_data->title) AND (trim($oembed_data->title) != ""))
236                         $siteinfo["title"] = $oembed_data->title;
237                 if (isset($oembed_data->description) AND (trim($oembed_data->description) != ""))
238                         $siteinfo["text"] = trim($oembed_data->description);
239                 if (isset($oembed_data->thumbnail_url) AND (trim($oembed_data->thumbnail_url) != ""))
240                         $siteinfo["image"] = $oembed_data->thumbnail_url;
241         }
242
243         if ((@$siteinfo["image"] == "") AND !$no_guessing) {
244             $list = $xpath->query("//img[@src]");
245             foreach ($list as $node) {
246                 $attr = array();
247                 if ($node->attributes->length)
248                     foreach ($node->attributes as $attribute)
249                         $attr[$attribute->name] = $attribute->value;
250
251                         $src = completeurl($attr["src"], $url);
252                         $photodata = @getimagesize($src);
253
254                         if (($photodata) && ($photodata[0] > 150) and ($photodata[1] > 150)) {
255                                 if ($photodata[0] > 300) {
256                                         $photodata[1] = round($photodata[1] * (300 / $photodata[0]));
257                                         $photodata[0] = 300;
258                                 }
259                                 if ($photodata[1] > 300) {
260                                         $photodata[0] = round($photodata[0] * (300 / $photodata[1]));
261                                         $photodata[1] = 300;
262                                 }
263                                 $siteinfo["images"][] = array("src"=>$src,
264                                                                 "width"=>$photodata[0],
265                                                                 "height"=>$photodata[1]);
266                         }
267
268                 }
269     } else {
270                 $src = completeurl($siteinfo["image"], $url);
271
272                 unset($siteinfo["image"]);
273
274                 $photodata = @getimagesize($src);
275
276                 if (($photodata) && ($photodata[0] > 10) and ($photodata[1] > 10))
277                         $siteinfo["images"][] = array("src"=>$src,
278                                                         "width"=>$photodata[0],
279                                                         "height"=>$photodata[1]);
280         }
281
282         if ((@$siteinfo["text"] == "") AND (@$siteinfo["title"] != "") AND !$no_guessing) {
283                 $text = "";
284
285                 $list = $xpath->query("//div[@class='article']");
286                 foreach ($list as $node)
287                         if (strlen($node->nodeValue) > 40)
288                                 $text .= " ".trim($node->nodeValue);
289
290                 if ($text == "") {
291                         $list = $xpath->query("//div[@class='content']");
292                         foreach ($list as $node)
293                                 if (strlen($node->nodeValue) > 40)
294                                         $text .= " ".trim($node->nodeValue);
295                 }
296
297                 // If none text was found then take the paragraph content
298                 if ($text == "") {
299                         $list = $xpath->query("//p");
300                         foreach ($list as $node)
301                                 if (strlen($node->nodeValue) > 40)
302                                         $text .= " ".trim($node->nodeValue);
303                 }
304
305                 if ($text != "") {
306                         $text = trim(str_replace(array("\n", "\r"), array(" ", " "), $text));
307
308                         while (strpos($text, "  "))
309                                 $text = trim(str_replace("  ", " ", $text));
310
311                         $siteinfo["text"] = trim(html_entity_decode(substr($text,0,350), ENT_QUOTES, "UTF-8").'...');
312                 }
313         }
314
315         logger("parseurl_getsiteinfo: Siteinfo for ".$url." ".print_r($siteinfo, true), LOGGER_DEBUG);
316
317         return($siteinfo);
318 }
319
320 function arr_add_hashes(&$item,$k) {
321         $item = '#' . $item;
322 }
323
324 function parse_url_content(&$a) {
325
326         $text = null;
327         $str_tags = '';
328
329         $textmode = false;
330
331         if(local_user() && (! feature_enabled(local_user(),'richtext')))
332                 $textmode = true;
333
334         //if($textmode)
335         $br = (($textmode) ? "\n" : '<br />');
336
337         if(x($_GET,'binurl'))
338                 $url = trim(hex2bin($_GET['binurl']));
339         else
340                 $url = trim($_GET['url']);
341
342         if($_GET['title'])
343                 $title = strip_tags(trim($_GET['title']));
344
345         if($_GET['description'])
346                 $text = strip_tags(trim($_GET['description']));
347
348         if($_GET['tags']) {
349                 $arr_tags = str_getcsv($_GET['tags']);
350                 if(count($arr_tags)) {
351                         array_walk($arr_tags,'arr_add_hashes');
352                         $str_tags = $br . implode(' ',$arr_tags) . $br;
353                 }
354         }
355
356         logger('parse_url: ' . $url);
357
358         if($textmode)
359                 $template = '[bookmark=%s]%s[/bookmark]%s';
360         else
361                 $template = "<a class=\"bookmark\" href=\"%s\" >%s</a>%s";
362
363         $arr = array('url' => $url, 'text' => '');
364
365         call_hooks('parse_link', $arr);
366
367         if(strlen($arr['text'])) {
368                 echo $arr['text'];
369                 killme();
370         }
371
372
373         if($url && $title && $text) {
374
375                 $title = str_replace(array("\r","\n"),array('',''),$title);
376
377                 if($textmode)
378                         $text = '[quote]' . trim($text) . '[/quote]' . $br;
379                 else {
380                         $text = '<blockquote>' . htmlspecialchars(trim($text)) . '</blockquote><br />';
381                         $title = htmlspecialchars($title);
382                 }
383
384                 $result = sprintf($template,$url,($title) ? $title : $url,$text) . $str_tags;
385
386                 logger('parse_url (unparsed): returns: ' . $result);
387
388                 echo $result;
389                 killme();
390         }
391
392         $siteinfo = parseurl_getsiteinfo($url);
393
394         $url= $siteinfo["url"];
395
396         $sitedata = "";
397
398         if($siteinfo["title"] == "") {
399                 $sitedata .= sprintf($template,$url,$url,'') . $str_tags;
400                 killme();
401         } else {
402                 $text = $siteinfo["text"];
403                 $title = $siteinfo["title"];
404         }
405
406         $image = "";
407
408         if (($siteinfo["type"] != "video") AND (sizeof($siteinfo["images"]) > 0)){
409                 /* Execute below code only if image is present in siteinfo */
410
411                 $total_images = 0;
412                 $max_images = get_config('system','max_bookmark_images');
413                 if($max_images === false)
414                         $max_images = 2;
415                 else
416                         $max_images = intval($max_images);
417
418                 foreach ($siteinfo["images"] as $imagedata) {
419                         if($textmode)
420                                 $image .= '[img='.$imagedata["width"].'x'.$imagedata["height"].']'.$imagedata["src"].'[/img]' . "\n";
421                         else
422                                 $image .= '<img height="'.$imagedata["height"].'" width="'.$imagedata["width"].'" src="'.$imagedata["src"].'" alt="photo" /><br />';
423                         $total_images ++;
424                         if($max_images && $max_images >= $total_images)
425                                 break;
426                 }
427         }
428
429         if(strlen($text)) {
430                 if($textmode)
431                         $text = '[quote]'.trim($text).'[/quote]';
432                 else
433                         $text = '<blockquote>'.htmlspecialchars(trim($text)).'</blockquote>';
434         }
435
436         if($image)
437                 $text = $br.$br.$image.$text;
438         else
439                 $text = $br.$text;
440
441         $title = str_replace(array("\r","\n"),array('',''),$title);
442
443         $result = sprintf($template,$url,($title) ? $title : $url,$text) . $str_tags;
444
445         logger('parse_url: returns: ' . $result);
446
447         $sitedata .=  trim($result);
448
449         if (($siteinfo["type"] == "video") AND ($url != ""))
450                 echo "[class=type-video]".$sitedata."[/class]";
451         elseif (($siteinfo["type"] != "photo"))
452                 echo "[class=type-link]".$sitedata."[/class]";
453         else
454                 echo "[class=type-photo]".$title.$br.$image."[/class]";
455
456         killme();
457 }
458 ?>