2010-07-23 07:41:45 +02:00
|
|
|
<?php
|
2016-11-27 23:41:55 +01:00
|
|
|
|
2017-01-09 13:14:25 +01:00
|
|
|
/**
|
2015-12-25 23:17:34 +01:00
|
|
|
* @file mod/parse_url.php
|
2016-11-25 16:59:31 +01:00
|
|
|
* @brief The parse_url module
|
2017-01-09 13:14:25 +01:00
|
|
|
*
|
2017-01-27 04:57:53 +01:00
|
|
|
* This module does parse an url for embeddable content (audio, video, image files or link)
|
|
|
|
* information and does format this information to BBCode
|
2017-01-09 13:14:25 +01:00
|
|
|
*
|
|
|
|
* @see ParseUrl::getSiteinfo() for more information about scraping embeddable content
|
2012-07-18 21:06:38 +02:00
|
|
|
*/
|
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-01-04 18:03:15 +01:00
|
|
|
use Friendica\Util\ParseUrl;
|
2012-09-06 01:26:11 +02:00
|
|
|
|
2016-11-24 01:11:22 +01:00
|
|
|
require_once("include/items.php");
|
2012-07-12 23:41:04 +02:00
|
|
|
|
2017-01-09 13:14:25 +01:00
|
|
|
function parse_url_content(App $a) {
|
2016-01-14 23:59:51 +01:00
|
|
|
|
2016-11-24 01:11:22 +01:00
|
|
|
$text = null;
|
|
|
|
$str_tags = "";
|
2016-01-14 23:59:51 +01:00
|
|
|
|
2017-01-27 04:57:53 +01:00
|
|
|
$br = "\n";
|
2014-02-22 15:46:19 +01:00
|
|
|
|
2016-11-24 01:11:22 +01:00
|
|
|
if (x($_GET,"binurl")) {
|
|
|
|
$url = trim(hex2bin($_GET["binurl"]));
|
|
|
|
} else {
|
|
|
|
$url = trim($_GET["url"]);
|
2016-11-12 21:23:00 +01:00
|
|
|
}
|
|
|
|
|
2016-11-24 01:11:22 +01:00
|
|
|
if ($_GET["title"]) {
|
|
|
|
$title = strip_tags(trim($_GET["title"]));
|
2014-07-14 08:37:40 +02:00
|
|
|
}
|
|
|
|
|
2016-11-24 01:11:22 +01:00
|
|
|
if ($_GET["description"]) {
|
|
|
|
$text = strip_tags(trim($_GET["description"]));
|
2013-03-02 14:46:06 +01:00
|
|
|
}
|
|
|
|
|
2016-11-24 01:11:22 +01:00
|
|
|
if ($_GET["tags"]) {
|
|
|
|
$arr_tags = ParseUrl::convertTagsToArray($_GET["tags"]);
|
|
|
|
if (count($arr_tags)) {
|
|
|
|
$str_tags = $br . implode(" ", $arr_tags) . $br;
|
2015-04-05 20:40:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 01:11:22 +01:00
|
|
|
// Add url scheme if it is missing
|
|
|
|
$arrurl = parse_url($url);
|
|
|
|
if (!x($arrurl, "scheme")) {
|
|
|
|
if (x($arrurl, "host")) {
|
|
|
|
$url = "http:".$url;
|
|
|
|
} else {
|
|
|
|
$url = "http://".$url;
|
2015-03-07 23:14:26 +01:00
|
|
|
}
|
2013-02-24 12:54:53 +01:00
|
|
|
}
|
|
|
|
|
2016-11-24 01:11:22 +01:00
|
|
|
logger("prse_url: " . $url);
|
|
|
|
|
2016-11-25 16:59:31 +01:00
|
|
|
// Check if the URL is an image, video or audio file. If so format
|
|
|
|
// the URL with the corresponding BBCode media tag
|
2016-11-24 01:11:22 +01:00
|
|
|
$redirects = 0;
|
|
|
|
// Fetch the header of the URL
|
|
|
|
$result = z_fetch_url($url, false, $redirects, array("novalidate" => true, "nobody" => true));
|
2017-03-21 17:02:59 +01:00
|
|
|
if($result["success"]) {
|
2016-11-24 01:11:22 +01:00
|
|
|
// Convert the header fields into an array
|
|
|
|
$hdrs = array();
|
|
|
|
$h = explode("\n", $result["header"]);
|
|
|
|
foreach ($h as $l) {
|
|
|
|
list($k,$v) = array_map("trim", explode(":", trim($l), 2));
|
|
|
|
$hdrs[$k] = $v;
|
|
|
|
}
|
|
|
|
if (array_key_exists("Content-Type", $hdrs)) {
|
|
|
|
$type = $hdrs["Content-Type"];
|
|
|
|
}
|
|
|
|
if ($type) {
|
2017-03-21 17:02:59 +01:00
|
|
|
if(stripos($type, "image/") !== false) {
|
2016-11-24 01:11:22 +01:00
|
|
|
echo $br . "[img]" . $url . "[/img]" . $br;
|
|
|
|
killme();
|
2014-04-04 10:58:31 +02:00
|
|
|
}
|
2016-11-24 01:11:22 +01:00
|
|
|
if (stripos($type, "video/") !== false) {
|
|
|
|
echo $br . "[video]" . $url . "[/video]" . $br;
|
|
|
|
killme();
|
2014-04-04 10:58:31 +02:00
|
|
|
}
|
2016-11-24 01:11:22 +01:00
|
|
|
if (stripos($type, "audio/") !== false) {
|
|
|
|
echo $br . "[audio]" . $url . "[/audio]" . $br;
|
|
|
|
killme();
|
2012-07-12 08:20:27 +02:00
|
|
|
}
|
2015-03-07 23:14:26 +01:00
|
|
|
}
|
2012-07-12 08:20:27 +02:00
|
|
|
}
|
2012-07-12 01:17:33 +02:00
|
|
|
|
2017-01-27 04:57:53 +01:00
|
|
|
$template = "[bookmark=%s]%s[/bookmark]%s";
|
2010-07-23 07:41:45 +02:00
|
|
|
|
2016-11-24 01:11:22 +01:00
|
|
|
$arr = array("url" => $url, "text" => "");
|
2010-12-26 00:01:02 +01:00
|
|
|
|
2016-11-24 01:11:22 +01:00
|
|
|
call_hooks("parse_link", $arr);
|
2010-12-26 00:01:02 +01:00
|
|
|
|
2016-11-24 01:11:22 +01:00
|
|
|
if (strlen($arr["text"])) {
|
|
|
|
echo $arr["text"];
|
2010-12-26 00:01:02 +01:00
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|
2016-11-25 16:59:31 +01:00
|
|
|
// If there is allready some content information submitted we don't
|
|
|
|
// need to parse the url for content.
|
2016-11-24 01:11:22 +01:00
|
|
|
if ($url && $title && $text) {
|
2011-09-20 07:21:55 +02:00
|
|
|
|
2016-11-24 01:11:22 +01:00
|
|
|
$title = str_replace(array("\r","\n"),array("",""),$title);
|
2014-02-16 17:35:01 +01:00
|
|
|
|
2017-01-27 04:57:53 +01:00
|
|
|
$text = "[quote]" . trim($text) . "[/quote]" . $br;
|
2011-09-20 07:21:55 +02:00
|
|
|
|
2016-11-24 01:11:22 +01:00
|
|
|
$result = sprintf($template, $url, ($title) ? $title : $url, $text) . $str_tags;
|
2011-09-20 07:21:55 +02:00
|
|
|
|
2016-11-24 01:11:22 +01:00
|
|
|
logger("parse_url (unparsed): returns: " . $result);
|
2011-09-20 07:21:55 +02:00
|
|
|
|
|
|
|
echo $result;
|
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|
2016-11-25 16:59:31 +01:00
|
|
|
// Fetch the information directly from the webpage
|
2016-11-24 01:11:22 +01:00
|
|
|
$siteinfo = ParseUrl::getSiteinfo($url);
|
2011-09-20 07:21:55 +02:00
|
|
|
|
2016-04-17 20:43:41 +02:00
|
|
|
unset($siteinfo["keywords"]);
|
2014-01-05 16:22:42 +01:00
|
|
|
|
2016-11-24 01:11:22 +01:00
|
|
|
// Format it as BBCode attachment
|
2016-04-18 20:57:01 +02:00
|
|
|
$info = add_page_info_data($siteinfo);
|
|
|
|
|
|
|
|
echo $info;
|
|
|
|
|
2010-07-23 07:41:45 +02:00
|
|
|
killme();
|
2011-05-23 10:37:09 +02:00
|
|
|
}
|
2016-11-28 15:26:51 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Legacy function to call ParseUrl::getSiteinfoCached
|
2017-01-09 13:14:25 +01:00
|
|
|
*
|
2016-11-28 15:26:51 +01:00
|
|
|
* Note: We have moved the function to ParseUrl.php. This function is only for
|
|
|
|
* legacy support and will be remove in the future
|
2017-01-09 13:14:25 +01:00
|
|
|
*
|
2016-11-28 15:26:51 +01:00
|
|
|
* @param type $url The url of the page which should be scraped
|
|
|
|
* @param type $no_guessing If true the parse doens't search for
|
|
|
|
* preview pictures
|
|
|
|
* @param type $do_oembed The false option is used by the function fetch_oembed()
|
|
|
|
* to avoid endless loops
|
2017-01-09 13:14:25 +01:00
|
|
|
*
|
2016-11-28 15:26:51 +01:00
|
|
|
* @return array which contains needed data for embedding
|
2017-01-09 13:14:25 +01:00
|
|
|
*
|
2016-11-28 15:26:51 +01:00
|
|
|
* @see ParseUrl::getSiteinfoCached()
|
2017-01-09 13:14:25 +01:00
|
|
|
*
|
2016-11-28 15:26:51 +01:00
|
|
|
* @todo Remove this function after all Addons has been changed to use
|
|
|
|
* ParseUrl::getSiteinfoCached
|
|
|
|
*/
|
|
|
|
function parseurl_getsiteinfo_cached($url, $no_guessing = false, $do_oembed = true) {
|
|
|
|
$siteinfo = ParseUrl::getSiteinfoCached($url, $no_guessing, $do_oembed);
|
|
|
|
return $siteinfo;
|
|
|
|
}
|