friendica/mod/parse_url.php

125 lines
2.4 KiB
PHP
Raw Normal View History

2010-07-23 07:41:45 +02:00
<?php
require_once('library/HTML5/Parser.php');
require_once('library/HTMLPurifier.auto.php');
2010-12-21 04:38:34 +01:00
2010-07-23 07:41:45 +02:00
function parse_url_content(&$a) {
2010-07-23 08:17:41 +02:00
logger('parse_url: ' . $_GET['url']);
$url = trim(hex2bin($_GET['url']));
logger('parse_url: ' . $url);
2010-07-23 07:41:45 +02:00
$text = null;
2011-07-12 02:23:42 +02:00
$template = "<br /><a href=\"%s\" >%s</a>%s<br />";
2010-07-23 07:41:45 +02:00
2010-12-26 00:01:02 +01:00
$arr = array('url' => $url, 'text' => '');
call_hooks('parse_link', $arr);
if(strlen($arr['text'])) {
echo $arr['text'];
killme();
}
if($url) {
2010-07-23 07:41:45 +02:00
$s = fetch_url($url);
} else {
2010-07-23 08:17:41 +02:00
echo '';
killme();
}
2010-12-21 04:38:34 +01:00
logger('parse_url: data: ' . $s, LOGGER_DATA);
2010-12-26 00:01:02 +01:00
2010-07-23 07:41:45 +02:00
if(! $s) {
2010-07-23 08:17:41 +02:00
echo sprintf($template,$url,$url,'');
2010-07-23 07:41:45 +02:00
killme();
}
2011-07-10 00:06:53 +02:00
if(strpos($s,'<title>')) {
$title = substr($s,strpos($s,'<title>')+7,64);
if(strpos($title,'<') !== false)
2011-07-12 02:23:42 +02:00
$title = strip_tags(substr($title,0,strpos($title,'<')));
2011-07-10 00:06:53 +02:00
}
$config = HTMLPurifier_Config::createDefault();
$config->set('Cache.DefinitionImpl', null);
$purifier = new HTMLPurifier($config);
$s = $purifier->purify($s);
2011-07-12 02:23:42 +02:00
// logger('parse_url: purified: ' . $s, LOGGER_DATA);
2010-12-21 04:38:34 +01:00
$dom = @HTML5_Parser::parse($s);
2010-07-23 07:41:45 +02:00
if(! $dom) {
echo sprintf($template,$url,$url,'');
killme();
}
2010-07-23 07:41:45 +02:00
$items = $dom->getElementsByTagName('title');
2010-07-23 08:17:41 +02:00
if($items) {
foreach($items as $item) {
2010-12-07 01:26:32 +01:00
$title = trim($item->textContent);
2010-07-23 08:17:41 +02:00
break;
}
}
$divs = $dom->getElementsByTagName('div');
if($divs) {
foreach($divs as $div) {
$class = $div->getAttribute('class');
2011-07-12 02:23:42 +02:00
if($class && (stristr($class,'article') || stristr($class,'content'))) {
$items = $div->getElementsByTagName('p');
if($items) {
foreach($items as $item) {
$text = $item->textContent;
2011-07-12 02:23:42 +02:00
if(stristr($text,'<script')) {
$text = '';
continue;
}
$text = strip_tags($text);
2011-07-12 02:23:42 +02:00
if(strlen($text) < 100) {
$text = '';
continue;
2011-07-12 02:23:42 +02:00
}
$text = substr($text,0,250) . '...' ;
break;
}
}
}
2011-07-12 02:23:42 +02:00
if($text)
break;
}
}
if(! $text) {
$items = $dom->getElementsByTagName('p');
if($items) {
foreach($items as $item) {
$text = $item->textContent;
2011-07-12 02:23:42 +02:00
if(stristr($text,'<script'))
continue;
$text = strip_tags($text);
2011-07-12 02:23:42 +02:00
if(strlen($text) < 100) {
$text = '';
continue;
2011-07-12 02:23:42 +02:00
}
$text = substr($text,0,250) . '...' ;
break;
}
2010-07-23 08:17:41 +02:00
}
}
if(strlen($text)) {
$text = '<br /><br /><blockquote>' . $text . '</blockquote><br />';
2010-07-23 07:41:45 +02:00
}
echo sprintf($template,$url,($title) ? $title : $url,$text);
2010-07-23 07:41:45 +02:00
killme();
}