summaryrefslogtreecommitdiff
path: root/plugins/af_unburn/init.php
blob: 0cf945f8d104369f19117e6132c39406100c2d1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
class Af_Unburn extends Plugin {

	private $link;
	private $host;

	function about() {
		return array(1.0,
			"Resolves feedburner and similar feed redirector 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;

		if ((strpos($article["link"], "feedproxy.google.com") !== FALSE ||
		  		strpos($article["link"], "/~r/") !== FALSE ||
		  		strpos($article["link"], "feedsportal.com") !== FALSE)	&&
			strpos($article["plugin_data"], "unburn,$owner_uid:") === FALSE) {

			$ch = curl_init($article["link"]);
			curl_setopt($ch, CURLOPT_TIMEOUT, 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);

			curl_close($ch);

			if ($real_url) {
				/* 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);
					}
				}

				$real_url = preg_replace("/\?$/", "", $real_url);

				$article["plugin_data"] = "unburn,$owner_uid:" . $article["plugin_data"];
				$article["link"] = $real_url;
			}
		}

		return $article;
	}
}
?>