ttrss/plugins/af_unburn/init.php

84 lines
2.0 KiB
PHP
Raw Normal View History

2013-01-12 19:47:10 +01:00
<?php
class Af_Unburn extends Plugin {
private $host;
function about() {
return array(1.0,
2013-01-21 19:40:38 +01:00
"Resolves feedburner and similar feed redirector URLs (requires CURL)",
2013-01-12 19:47:10 +01:00
"fox");
}
function flags() {
return array("needs_curl" => true);
}
2013-01-12 19:47:10 +01: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"];
if (defined('NO_CURL') || !function_exists("curl_init") || ini_get("open_basedir"))
2013-01-12 19:47:10 +01:00
return $article;
if ((strpos($article["link"], "feedproxy.google.com") !== false ||
strpos($article["link"], "/~r/") !== false ||
strpos($article["link"], "feedsportal.com") !== false)) {
2013-01-12 19:47:10 +01:00
$ch = curl_init($article["link"]);
2013-03-20 09:15:06 +01:00
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_NOBODY, true);
curl_setopt($ch, CURLOPT_USERAGENT, SELF_USER_AGENT);
2013-01-12 19:47:10 +01:00
2013-09-30 11:27:14 +02:00
if (defined('_CURL_HTTP_PROXY')) {
curl_setopt($ch, CURLOPT_PROXY, _CURL_HTTP_PROXY);
}
@curl_exec($ch);
2013-01-12 19:47:10 +01:00
$real_url = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);
2013-01-13 07:56:54 +01:00
curl_close($ch);
2013-01-13 07:56:54 +01:00
if ($real_url) {
/* remove the rest of it */
2013-01-13 07:56:54 +01:00
$query = parse_url($real_url, PHP_URL_QUERY);
2013-01-13 07:56:54 +01:00
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]);
}
2013-01-13 07:56:54 +01:00
$new_query = http_build_query($args);
2013-01-13 07:56:54 +01:00
if ($new_query != $query) {
$real_url = str_replace("?$query", "?$new_query", $real_url);
}
2013-01-13 07:56:54 +01:00
}
$real_url = preg_replace("/\?$/", "", $real_url);
2013-01-31 21:34:57 +01:00
$article["plugin_data"] = "unburn,$owner_uid:" . $article["plugin_data"];
$article["link"] = $real_url;
}
2013-01-12 19:47:10 +01:00
}
return $article;
}
2013-03-20 09:15:06 +01:00
2013-04-19 15:31:56 +02:00
function api_version() {
return 2;
}
}