]> git.wh0rd.org - tt-rss.git/blob - plugins/af_unburn/init.php
prevent article filters from modifying article GUID; add separate plugin_data field...
[tt-rss.git] / plugins / af_unburn / init.php
1 <?php
2 class Af_Unburn extends Plugin {
3
4 private $link;
5 private $host;
6
7 function about() {
8 return array(1.0,
9 "Resolves feedburner and similar feed redirector URLs (requires CURL)",
10 "fox");
11 }
12
13 function init($host) {
14 $this->link = $host->get_link();
15 $this->host = $host;
16
17 $host->add_hook($host::HOOK_ARTICLE_FILTER, $this);
18 }
19
20 function hook_article_filter($article) {
21 $owner_uid = $article["owner_uid"];
22
23 if (!function_exists("curl_init"))
24 return $article;
25
26 if ((strpos($article["link"], "feedproxy.google.com") !== FALSE ||
27 strpos($article["link"], "/~r/") !== FALSE ||
28 strpos($article["link"], "feedsportal.com") !== FALSE) &&
29 strpos($article["plugin_data"], "unburn,$owner_uid:") === FALSE) {
30
31 $ch = curl_init($article["link"]);
32 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
33 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
34 curl_setopt($ch, CURLOPT_HEADER, true);
35 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
36
37 $contents = @curl_exec($ch);
38
39 $real_url = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);
40
41 curl_close($ch);
42
43 if ($real_url) {
44 /* remove the rest of it */
45
46 $query = parse_url($real_url, PHP_URL_QUERY);
47
48 if ($query && strpos($query, "utm_source") !== FALSE) {
49 $args = array();
50 parse_str($query, $args);
51
52 foreach (array("utm_source", "utm_medium", "utm_campaign") as $param) {
53 if (isset($args[$param])) unset($args[$param]);
54 }
55
56 $new_query = http_build_query($args);
57
58 if ($new_query != $query) {
59 $real_url = str_replace("?$query", "?$new_query", $real_url);
60 }
61 }
62
63 $real_url = preg_replace("/\?$/", "", $real_url);
64
65 $article["plugin_data"] = "unburn,$owner_uid:" . $article["plugin_data"];
66 $article["link"] = $real_url;
67 }
68 }
69
70 return $article;
71 }
72 }
73 ?>