summaryrefslogtreecommitdiff
path: root/plugins/af_zz_imgproxy/init.php
blob: b13117570b2847d19fe2401b9da6d24772a3b3c1 (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?php
class Af_Zz_ImgProxy extends Plugin {
	private $host;

	function about() {
		return array(1.0,
			"Load insecure images via built-in proxy (no caching)",
			"fox");
	}

	function flags() {
		return array("needs_curl" => true);
	}

	function init($host) {
		$this->host = $host;

		$host->add_hook($host::HOOK_RENDER_ARTICLE, $this);
		$host->add_hook($host::HOOK_RENDER_ARTICLE_CDM, $this);
		$host->add_hook($host::HOOK_RENDER_ARTICLE_API, $this);
	}

	function hook_render_article($article) {
		return $this->hook_render_article_cdm($article);
	}

	function hook_render_article_api($headline) {
		return $this->hook_render_article_cdm($headline["headline"], true);
	}

	/*public function vidproxy() {
		$url = $_REQUEST["url"];

		if (preg_match("/\.(mp4|webm|gifv)/", $url, $matches)) {
			$type = $matches[1];
			$embed_url = $url;

			if ($type == "gifv") {
				$type = "mp4";
				$embed_url = str_replace(".gifv", ".mp4", $embed_url);
			}

			header("Content-type: text/html");

			$embed_url = htmlspecialchars("backend.php?op=pluginhandler&plugin=af_zz_imgproxy&method=imgproxy&url=" .
				urlencode($embed_url));

			print "<video class=\"\" autoplay=\"true\" controls=\"true\" loop=\"true\">";
			print "<source src=\"$embed_url\" type=\"video/$type\">";
			print "</video>";
		} else {
			header("Location: " . htmlspecialchars($url));
		}
	}*/

	public function imgproxy() {
		$url = rewrite_relative_url(SELF_URL_PATH, $_REQUEST["url"]);

		if (function_exists("getimagesize")) {
			$is = @getimagesize($url);
			header("Content-type: " . $is["mime"]);
		}

		print fetch_file_contents(array("url" => $url));
	}

	function rewrite_url_if_needed($url) {
		$scheme = parse_url($url, PHP_URL_SCHEME);

		if ($scheme != 'https' && $scheme != "") {
			$url = "backend.php?op=pluginhandler&plugin=af_zz_imgproxy&method=imgproxy&url=" .
				htmlspecialchars($url);

		}

		return $url;
	}

	function hook_render_article_cdm($article, $api_mode = false) {

		$need_saving = false;

		$doc = new DOMDocument();
		if (@$doc->loadHTML($article["content"])) {
			$xpath = new DOMXPath($doc);
			$imgs = $xpath->query("//img[@src]");

			foreach ($imgs as $img) {
				$new_src = $this->rewrite_url_if_needed($img->getAttribute("src"));

				if ($new_src != $img->getAttribute("src")) {
					$img->setAttribute("src", $new_src);

					$need_saving = true;
				}
			}

			$vids = $xpath->query("//video");

			foreach ($vids as $vid) {
				if ($vid->hasAttribute("poster")) {
					$new_src = $this->rewrite_url_if_needed($vid->getAttribute("poster"));

					if ($new_src != $vid->getAttribute("poster")) {
						$vid->setAttribute("poster", $new_src);

						$need_saving = true;
					}
				}

				$vsrcs = $xpath->query("source", $vid);

				foreach ($vsrcs as $vsrc) {
					$new_src = $this->rewrite_url_if_needed($vsrc->getAttribute("src"));

					if ($new_src != $vsrc->getAttribute("src")) {
						$vid->setAttribute("src", $new_src);

						$need_saving = true;
					}
				}
			}
		}

		if ($need_saving) $article["content"] = $doc->saveXML();

		return $article;
	}

	function api_version() {
		return 2;
	}
}