2013-01-12 19:47:10 +01:00
|
|
|
<?php
|
|
|
|
class Af_Unburn extends Plugin {
|
|
|
|
|
|
|
|
private $link;
|
|
|
|
private $host;
|
|
|
|
|
|
|
|
function about() {
|
|
|
|
return array(1.0,
|
|
|
|
"Resolve feedburner URLs (requires CURL)",
|
|
|
|
"fox");
|
|
|
|
}
|
|
|
|
|
|
|
|
function init($host) {
|
|
|
|
$this->link = $host->get_link();
|
|
|
|
$this->host = $host;
|
|
|
|
|
|
|
|
$host->add_hook($host::HOOK_ARTICLE_FILTER, $this);
|
|
|
|
}
|
|
|
|
|
|
|
|
function hook_article_filter($article) {
|
|
|
|
$owner_uid = $article["owner_uid"];
|
|
|
|
|
|
|
|
if (!function_exists("curl_init"))
|
|
|
|
return $article;
|
|
|
|
|
2013-01-14 08:11:03 +01:00
|
|
|
if ((strpos($article["link"], "feedproxy.google.com") !== FALSE ||
|
|
|
|
strpos($article["link"], "feedsportal.com") !== FALSE) &&
|
2013-01-12 19:47:10 +01:00
|
|
|
strpos($article["guid"], "unburn,$owner_uid:") === FALSE) {
|
|
|
|
|
|
|
|
$ch = curl_init($article["link"]);
|
|
|
|
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
|
|
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|
|
|
curl_setopt($ch, CURLOPT_HEADER, true);
|
|
|
|
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
|
|
|
|
|
|
|
|
$contents = @curl_exec($ch);
|
|
|
|
|
|
|
|
$real_url = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);
|
|
|
|
|
2013-01-13 07:56:54 +01:00
|
|
|
curl_close($ch);
|
|
|
|
|
2013-01-12 19:47:10 +01:00
|
|
|
if ($real_url) {
|
2013-01-13 07:56:54 +01:00
|
|
|
/* remove the rest of it */
|
|
|
|
|
|
|
|
$query = parse_url($real_url, PHP_URL_QUERY);
|
|
|
|
|
|
|
|
if ($query && strpos($query, "utm_source") !== FALSE) {
|
|
|
|
$args = array();
|
|
|
|
parse_str($query, $args);
|
|
|
|
|
|
|
|
foreach (array("utm_source", "utm_medium", "utm_campaign") as $param) {
|
|
|
|
if (isset($args[$param])) unset($args[$param]);
|
|
|
|
}
|
|
|
|
|
|
|
|
$new_query = http_build_query($args);
|
|
|
|
|
|
|
|
if ($new_query != $query) {
|
|
|
|
$real_url = str_replace("?$query", "?$new_query", $real_url);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-12 19:47:10 +01:00
|
|
|
$article["guid"] = "unburn,$owner_uid:" . $article["guid"];
|
|
|
|
$article["link"] = $real_url;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $article;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|