2013-01-12 18:47:10 +00:00
|
|
|
<?php
|
|
|
|
class Af_Unburn extends Plugin {
|
|
|
|
private $host;
|
|
|
|
|
|
|
|
function about() {
|
|
|
|
return array(1.0,
|
2013-01-21 18:40:38 +00:00
|
|
|
"Resolves feedburner and similar feed redirector URLs (requires CURL)",
|
2013-01-12 18:47:10 +00:00
|
|
|
"fox");
|
|
|
|
}
|
|
|
|
|
2016-01-26 08:45:47 +00:00
|
|
|
function flags() {
|
|
|
|
return array("needs_curl" => true);
|
|
|
|
}
|
|
|
|
|
2013-01-12 18:47:10 +00:00
|
|
|
function init($host) {
|
|
|
|
$this->host = $host;
|
|
|
|
|
|
|
|
$host->add_hook($host::HOOK_ARTICLE_FILTER, $this);
|
|
|
|
}
|
|
|
|
|
|
|
|
function hook_article_filter($article) {
|
|
|
|
$owner_uid = $article["owner_uid"];
|
|
|
|
|
2015-11-20 10:34:52 +00:00
|
|
|
if (defined('NO_CURL') || !function_exists("curl_init") || ini_get("open_basedir"))
|
2013-01-12 18:47:10 +00:00
|
|
|
return $article;
|
|
|
|
|
2020-09-17 16:02:27 +00:00
|
|
|
if ((strpos($article["link"], "feedproxy.google.com") !== false ||
|
|
|
|
strpos($article["link"], "/~r/") !== false ||
|
|
|
|
strpos($article["link"], "feedsportal.com") !== false)) {
|
2013-01-12 18:47:10 +00:00
|
|
|
|
2015-11-19 17:05:17 +00:00
|
|
|
$ch = curl_init($article["link"]);
|
2013-03-20 08:15:06 +00:00
|
|
|
|
2013-02-23 08:07:46 +00:00
|
|
|
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
|
|
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|
|
|
curl_setopt($ch, CURLOPT_HEADER, true);
|
2015-11-19 17:05:17 +00:00
|
|
|
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
|
2015-12-25 11:59:51 +00:00
|
|
|
curl_setopt($ch, CURLOPT_NOBODY, true);
|
2013-02-23 08:07:46 +00:00
|
|
|
curl_setopt($ch, CURLOPT_USERAGENT, SELF_USER_AGENT);
|
2013-01-12 18:47:10 +00:00
|
|
|
|
2013-09-30 09:27:14 +00:00
|
|
|
if (defined('_CURL_HTTP_PROXY')) {
|
|
|
|
curl_setopt($ch, CURLOPT_PROXY, _CURL_HTTP_PROXY);
|
|
|
|
}
|
|
|
|
|
2014-08-18 14:41:19 +00:00
|
|
|
@curl_exec($ch);
|
2013-01-12 18:47:10 +00:00
|
|
|
|
2013-02-23 08:07:46 +00:00
|
|
|
$real_url = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);
|
2013-01-13 06:56:54 +00:00
|
|
|
|
2013-02-23 08:07:46 +00:00
|
|
|
curl_close($ch);
|
2013-01-13 06:56:54 +00:00
|
|
|
|
2013-02-23 08:07:46 +00:00
|
|
|
if ($real_url) {
|
|
|
|
/* remove the rest of it */
|
2013-01-13 06:56:54 +00:00
|
|
|
|
2013-02-23 08:07:46 +00:00
|
|
|
$query = parse_url($real_url, PHP_URL_QUERY);
|
2013-01-13 06:56:54 +00:00
|
|
|
|
2020-09-17 16:02:27 +00:00
|
|
|
if ($query && strpos($query, "utm_source") !== false) {
|
2013-02-23 08:07:46 +00:00
|
|
|
$args = array();
|
|
|
|
parse_str($query, $args);
|
|
|
|
|
|
|
|
foreach (array("utm_source", "utm_medium", "utm_campaign") as $param) {
|
|
|
|
if (isset($args[$param])) unset($args[$param]);
|
|
|
|
}
|
2013-01-13 06:56:54 +00:00
|
|
|
|
2013-02-23 08:07:46 +00:00
|
|
|
$new_query = http_build_query($args);
|
2013-01-13 06:56:54 +00:00
|
|
|
|
2013-02-23 08:07:46 +00:00
|
|
|
if ($new_query != $query) {
|
|
|
|
$real_url = str_replace("?$query", "?$new_query", $real_url);
|
|
|
|
}
|
2013-01-13 06:56:54 +00:00
|
|
|
}
|
|
|
|
|
2013-02-23 08:07:46 +00:00
|
|
|
$real_url = preg_replace("/\?$/", "", $real_url);
|
2013-01-31 20:34:57 +00:00
|
|
|
|
2013-02-23 08:07:46 +00:00
|
|
|
$article["link"] = $real_url;
|
|
|
|
}
|
2013-01-12 18:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $article;
|
|
|
|
}
|
2013-03-20 08:15:06 +00:00
|
|
|
|
2013-04-19 13:31:56 +00:00
|
|
|
function api_version() {
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
2017-04-26 17:57:36 +00:00
|
|
|
}
|