friendica/mod/parse_url.php

109 lines
1.9 KiB
PHP
Raw Normal View History

2010-07-23 05:41:45 +00:00
<?php
require_once('library/HTML5/Parser.php');
require_once('include/oembed.php');
2010-12-21 03:38:34 +00:00
2010-07-23 05:41:45 +00:00
function parse_url_content(&$a) {
2010-07-23 06:17:41 +00:00
logger('parse_url: ' . $_GET['url']);
$url = trim(hex2bin($_GET['url']));
logger('parse_url: ' . $url);
2010-07-23 05:41:45 +00:00
$text = null;
$template = "<a href=\"%s\" >%s</a>\n%s";
2010-07-23 05:41:45 +00:00
2010-12-25 23:01:02 +00:00
$arr = array('url' => $url, 'text' => '');
call_hooks('parse_link', $arr);
if(strlen($arr['text'])) {
echo $arr['text'];
killme();
}
if($url) {
// fetch link with oembed
if ($a->config['system']['embed_all']){
$j = oembed_fetch_url($url);
if ($j->type!="error"){
echo oembed_format_object($j);
killme();
}
}
2010-07-23 05:41:45 +00:00
$s = fetch_url($url);
} else {
2010-07-23 06:17:41 +00:00
echo '';
killme();
}
2010-12-21 03:38:34 +00:00
2010-12-25 23:01:02 +00:00
2010-07-23 05:41:45 +00:00
if(! $s) {
2010-07-23 06:17:41 +00:00
echo sprintf($template,$url,$url,'');
2010-07-23 05:41:45 +00:00
killme();
}
2010-12-21 03:38:34 +00:00
$dom = @HTML5_Parser::parse($s);
2010-07-23 05:41:45 +00:00
if(! $dom)
return $ret;
$items = $dom->getElementsByTagName('title');
2010-07-23 06:17:41 +00:00
if($items) {
foreach($items as $item) {
2010-12-07 00:26:32 +00:00
$title = trim($item->textContent);
2010-07-23 06:17:41 +00:00
break;
}
}
$divs = $dom->getElementsByTagName('div');
if($divs) {
foreach($divs as $div) {
$class = $div->getAttribute('class');
if($class && stristr($class,'article')) {
$items = $div->getElementsByTagName('p');
if($items) {
foreach($items as $item) {
if($item->getElementsByTagName('script'))
continue;
$text = $item->textContent;
$text = strip_tags($text);
if(strlen($text) < 100)
continue;
$text = substr($text,0,250) . '...' ;
break;
}
}
}
}
}
if(! $text) {
$items = $dom->getElementsByTagName('p');
if($items) {
foreach($items as $item) {
if($item->getElementsByTagName('script'))
continue;
$text = $item->textContent;
$text = strip_tags($text);
if(strlen($text) < 100)
continue;
$text = substr($text,0,250) . '...' ;
break;
}
2010-07-23 06:17:41 +00:00
}
}
if(strlen($text)) {
$text = '<br />' . $text;
2010-07-23 05:41:45 +00:00
}
2010-07-23 06:17:41 +00:00
echo sprintf($template,$url,$title,$text);
2010-07-23 05:41:45 +00:00
killme();
}