]> git.wh0rd.org - tt-rss.git/blame - plugins/af_zz_imgproxy/init.php
Update CONTRIBUTING.md
[tt-rss.git] / plugins / af_zz_imgproxy / init.php
CommitLineData
c4ebf01e
AD
1<?php
2class Af_Zz_ImgProxy extends Plugin {
3 private $host;
4
5 function about() {
6 return array(1.0,
c93d43c6 7 "Load insecure images via built-in proxy",
c4ebf01e
AD
8 "fox");
9 }
10
78f1116d 11 private $ssl_known_whitelist = "imgur.com gfycat.com i.reddituploads.com pbs.twimg.com i.redd.it i.sli.mg media.tumblr.com";
ecab4354 12
4daaf234
AD
13 function is_public_method($method) {
14 return $method === "imgproxy";
15 }
16
c4ebf01e
AD
17 function init($host) {
18 $this->host = $host;
19
20 $host->add_hook($host::HOOK_RENDER_ARTICLE, $this);
21 $host->add_hook($host::HOOK_RENDER_ARTICLE_CDM, $this);
58210301 22 $host->add_hook($host::HOOK_ENCLOSURE_ENTRY, $this);
8cf37284
AD
23
24 $host->add_hook($host::HOOK_PREFS_TAB, $this);
c4ebf01e
AD
25 }
26
58210301 27 function hook_enclosure_entry($enc) {
dc2c4b13 28 if (preg_match("/image/", $enc["content_type"])) {
bc83dcb3 29 $proxy_all = $this->host->get($this, "proxy_all");
58210301 30
41bead9b 31 $enc["content_url"] = $this->rewrite_url_if_needed($enc["content_url"], $proxy_all);
bc83dcb3 32 }
58210301
AD
33
34 return $enc;
35 }
36
c4ebf01e
AD
37 function hook_render_article($article) {
38 return $this->hook_render_article_cdm($article);
39 }
40
c93d43c6 41 public function imgproxy() {
4daaf234 42
c93d43c6 43 $url = rewrite_relative_url(SELF_URL_PATH, $_REQUEST["url"]);
c4ebf01e 44
2187322c
AD
45 // called without user context, let's just redirect to original URL
46 if (!$_SESSION["uid"]) {
47 header("Location: $url");
48 return;
49 }
50
41bead9b 51 $local_filename = CACHE_DIR . "/images/" . sha1($url);
c4ebf01e 52
51198e7e 53 if ($_REQUEST["debug"] == "1") { print $url . "\n" . $local_filename; die; }
c4ebf01e 54
38b3998b 55 header("Content-Disposition: inline; filename=\"".basename($local_filename)."\"");
c4ebf01e 56
c93d43c6 57 if (file_exists($local_filename)) {
38b3998b
AD
58 $mimetype = mime_content_type($local_filename);
59 header("Content-type: $mimetype");
60
61 $stamp = gmdate("D, d M Y H:i:s", filemtime($local_filename)). " GMT";
62 header("Last-Modified: $stamp", true);
63
c93d43c6 64 readfile($local_filename);
c4ebf01e 65 } else {
c55fb22b 66 $data = fetch_file_contents(array("url" => $url));
51198e7e 67
c93d43c6 68 if ($data) {
38b3998b
AD
69 if (file_put_contents($local_filename, $data)) {
70 $mimetype = mime_content_type($local_filename);
71 header("Content-type: $mimetype");
72 }
73
c93d43c6 74 print $data;
bf639865
AD
75 } else {
76 global $fetch_last_error;
77 global $fetch_last_error_code;
78 global $fetch_last_error_content;
79
c55fb22b 80 if (function_exists("imagecreate") && !isset($_REQUEST["text"])) {
093d4633 81 $img = imagecreate(450, 75);
bf639865
AD
82
83 $bg = imagecolorallocate($img, 255, 255, 255);
84 $textcolor = imagecolorallocate($img, 255, 0, 0);
85
093d4633 86 imagerectangle($img, 0, 0, 450-1, 75-1, $textcolor);
bf639865
AD
87
88 imagestring($img, 5, 5, 5, "Proxy request failed", $textcolor);
093d4633 89 imagestring($img, 5, 5, 30, truncate_middle($url, 46, "..."), $textcolor);
bf639865
AD
90 imagestring($img, 5, 5, 55, "HTTP Code: $fetch_last_error_code", $textcolor);
91
92 header("Content-type: image/png");
93 print imagepng($img);
94 imagedestroy($img);
95
96 } else {
97 header("Content-type: text/html");
98
99 http_response_code(400);
100
101 print "<h1>Proxy request failed.</h1>";
102 print "<p>Fetch error $fetch_last_error ($fetch_last_error_code)</p>";
103 print "<p>URL: $url</p>";
104 print "<textarea cols='80' rows='25'>" . htmlspecialchars($fetch_last_error_content) . "</textarea>";
105 }
c93d43c6 106 }
c4ebf01e 107 }
c4ebf01e
AD
108 }
109
41bead9b 110 function rewrite_url_if_needed($url, $all_remote = false) {
c4ebf01e
AD
111 $scheme = parse_url($url, PHP_URL_SCHEME);
112
8cf37284
AD
113 if ($all_remote) {
114 $host = parse_url($url, PHP_URL_HOST);
115 $self_host = parse_url(SELF_URL_PATH, PHP_URL_HOST);
116
117 $is_remote = $host != $self_host;
118 } else {
119 $is_remote = false;
120 }
121
122 if (($scheme != 'https' && $scheme != "") || $is_remote) {
123 if (strpos($url, "data:") !== 0) {
ecab4354
AD
124 $parts = parse_url($url);
125
126 foreach (explode(" " , $this->ssl_known_whitelist) as $host) {
127 if (strpos($parts['host'], $host) !== FALSE) {
128 $parts['scheme'] = 'https';
129
130 return build_url($parts);
131 }
132 }
133
134 return get_self_url_prefix() . "/public.php?op=pluginhandler&plugin=af_zz_imgproxy&pmethod=imgproxy&url=" .
51198e7e 135 urlencode($url);
8cf37284 136 }
c4ebf01e
AD
137 }
138
139 return $url;
140 }
141
142 function hook_render_article_cdm($article, $api_mode = false) {
143
144 $need_saving = false;
8cf37284 145 $proxy_all = $this->host->get($this, "proxy_all");
c4ebf01e
AD
146
147 $doc = new DOMDocument();
148 if (@$doc->loadHTML($article["content"])) {
149 $xpath = new DOMXPath($doc);
150 $imgs = $xpath->query("//img[@src]");
151
152 foreach ($imgs as $img) {
41bead9b 153 $new_src = $this->rewrite_url_if_needed($img->getAttribute("src"), $proxy_all);
c4ebf01e
AD
154
155 if ($new_src != $img->getAttribute("src")) {
156 $img->setAttribute("src", $new_src);
c55fb22b 157 $img->removeAttribute("srcset");
c4ebf01e
AD
158
159 $need_saving = true;
160 }
161 }
162
163 $vids = $xpath->query("//video");
164
165 foreach ($vids as $vid) {
166 if ($vid->hasAttribute("poster")) {
41bead9b 167 $new_src = $this->rewrite_url_if_needed($vid->getAttribute("poster"), $proxy_all);
c4ebf01e
AD
168
169 if ($new_src != $vid->getAttribute("poster")) {
170 $vid->setAttribute("poster", $new_src);
171
172 $need_saving = true;
173 }
174 }
175
176 $vsrcs = $xpath->query("source", $vid);
177
178 foreach ($vsrcs as $vsrc) {
41bead9b 179 $new_src = $this->rewrite_url_if_needed($vsrc->getAttribute("src"), $proxy_all);
c4ebf01e
AD
180
181 if ($new_src != $vsrc->getAttribute("src")) {
182 $vid->setAttribute("src", $new_src);
183
184 $need_saving = true;
185 }
186 }
187 }
188 }
189
190 if ($need_saving) $article["content"] = $doc->saveXML();
191
192 return $article;
193 }
194
8cf37284
AD
195 function hook_prefs_tab($args) {
196 if ($args != "prefFeeds") return;
197
dc8bd8a6 198 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Image proxy settings (af_zz_imgproxy)')."\">";
8cf37284
AD
199
200 print "<form dojoType=\"dijit.form.Form\">";
201
202 print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt\">
203 evt.preventDefault();
204 if (this.validate()) {
205 console.log(dojo.objectToQuery(this.getValues()));
206 new Ajax.Request('backend.php', {
207 parameters: dojo.objectToQuery(this.getValues()),
208 onComplete: function(transport) {
209 notify_info(transport.responseText);
210 }
211 });
212 //this.reset();
213 }
214 </script>";
215
216 print_hidden("op", "pluginhandler");
217 print_hidden("method", "save");
218 print_hidden("plugin", "af_zz_imgproxy");
219
220 $proxy_all = $this->host->get($this, "proxy_all");
221 print_checkbox("proxy_all", $proxy_all);
222
223 print "&nbsp;<label for=\"proxy_all\">" . __("Enable proxy for all remote images.") . "</label>";
224
225 print "<p>"; print_button("submit", __("Save"));
226
227 print "</form>";
228
229 print "</div>";
230 }
231
232 function save() {
233 $proxy_all = checkbox_to_sql_bool($_POST["proxy_all"]) == "true";
234
235 $this->host->set($this, "proxy_all", $proxy_all);
236
237 echo __("Configuration saved");
238 }
239
c4ebf01e
AD
240 function api_version() {
241 return 2;
242 }
243}