]> git.wh0rd.org - tt-rss.git/blame - plugins/af_unburn/init.php
allow NO_CURL to disable several CURL-related checks in plugins
[tt-rss.git] / plugins / af_unburn / init.php
CommitLineData
9b725068
AD
1<?php
2class Af_Unburn extends Plugin {
9b725068
AD
3 private $host;
4
5 function about() {
6 return array(1.0,
6368785e 7 "Resolves feedburner and similar feed redirector URLs (requires CURL)",
9b725068
AD
8 "fox");
9 }
10
11 function init($host) {
9b725068
AD
12 $this->host = $host;
13
14 $host->add_hook($host::HOOK_ARTICLE_FILTER, $this);
15 }
16
17 function hook_article_filter($article) {
18 $owner_uid = $article["owner_uid"];
19
aa03bac4 20 if (defined('NO_CURL') || !function_exists("curl_init") || ini_get("open_basedir"))
9b725068
AD
21 return $article;
22
eb161344 23 if ((strpos($article["link"], "feedproxy.google.com") !== FALSE ||
a90952ec 24 strpos($article["link"], "/~r/") !== FALSE ||
e02555c1 25 strpos($article["link"], "feedsportal.com") !== FALSE)) {
9b725068 26
4c467026 27 $ch = curl_init($article["link"]);
81153e6b 28
e02555c1
AD
29 curl_setopt($ch, CURLOPT_TIMEOUT, 5);
30 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
31 curl_setopt($ch, CURLOPT_HEADER, true);
4c467026 32 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
e02555c1 33 curl_setopt($ch, CURLOPT_USERAGENT, SELF_USER_AGENT);
9b725068 34
05f14a7d
AD
35 if (defined('_CURL_HTTP_PROXY')) {
36 curl_setopt($ch, CURLOPT_PROXY, _CURL_HTTP_PROXY);
37 }
38
129d6263 39 @curl_exec($ch);
9b725068 40
e02555c1 41 $real_url = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);
8c685908 42
e02555c1 43 curl_close($ch);
8c685908 44
e02555c1
AD
45 if ($real_url) {
46 /* remove the rest of it */
8c685908 47
e02555c1 48 $query = parse_url($real_url, PHP_URL_QUERY);
8c685908 49
e02555c1
AD
50 if ($query && strpos($query, "utm_source") !== FALSE) {
51 $args = array();
52 parse_str($query, $args);
53
54 foreach (array("utm_source", "utm_medium", "utm_campaign") as $param) {
55 if (isset($args[$param])) unset($args[$param]);
56 }
8c685908 57
e02555c1 58 $new_query = http_build_query($args);
8c685908 59
e02555c1
AD
60 if ($new_query != $query) {
61 $real_url = str_replace("?$query", "?$new_query", $real_url);
62 }
8c685908 63 }
8c685908 64
e02555c1 65 $real_url = preg_replace("/\?$/", "", $real_url);
1e6463fd 66
e02555c1
AD
67 $article["plugin_data"] = "unburn,$owner_uid:" . $article["plugin_data"];
68 $article["link"] = $real_url;
69 }
9b725068
AD
70 }
71
72 return $article;
73 }
81153e6b 74
106a3de9
AD
75 function api_version() {
76 return 2;
77 }
78
9b725068
AD
79}
80?>