summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2017-05-18 12:56:45 +0300
committerAndrew Dolgov <[email protected]>2017-05-18 12:56:45 +0300
commit7611f0c052976b7c2b804b41d1b9805311cc32bb (patch)
tree8ab1f124d8bf24632a38dc1b9d2ed4b7c626760f /plugins
parent485902c305a323407d5212d91b375b66b2e6efbc (diff)
af_zz_imgproxy: add optional no-cache mode
Diffstat (limited to 'plugins')
-rw-r--r--plugins/af_zz_imgproxy/init.php20
1 files changed, 15 insertions, 5 deletions
diff --git a/plugins/af_zz_imgproxy/init.php b/plugins/af_zz_imgproxy/init.php
index c85ec6427..7de0c0229 100644
--- a/plugins/af_zz_imgproxy/init.php
+++ b/plugins/af_zz_imgproxy/init.php
@@ -66,9 +66,14 @@ class Af_Zz_ImgProxy extends Plugin {
$data = fetch_file_contents(array("url" => $url));
if ($data) {
- if (file_put_contents($local_filename, $data)) {
- $mimetype = mime_content_type($local_filename);
- header("Content-type: $mimetype");
+
+ $disable_cache = $this->host->get($this, "disable_cache");
+
+ if (!$disable_cache) {
+ if (file_put_contents($local_filename, $data)) {
+ $mimetype = mime_content_type($local_filename);
+ header("Content-type: $mimetype");
+ }
}
print $data;
@@ -226,8 +231,11 @@ class Af_Zz_ImgProxy extends Plugin {
$proxy_all = $this->host->get($this, "proxy_all");
print_checkbox("proxy_all", $proxy_all);
+ print "&nbsp;<label for=\"proxy_all\">" . __("Enable proxy for all remote images.") . "</label><br/>";
- print "&nbsp;<label for=\"proxy_all\">" . __("Enable proxy for all remote images.") . "</label>";
+ $disable_cache = $this->host->get($this, "disable_cache");
+ print_checkbox("disable_cache", $disable_cache);
+ print "&nbsp;<label for=\"disable_cache\">" . __("Don't cache files locally.") . "</label>";
print "<p>"; print_button("submit", __("Save"));
@@ -238,8 +246,10 @@ class Af_Zz_ImgProxy extends Plugin {
function save() {
$proxy_all = checkbox_to_sql_bool($_POST["proxy_all"]) == "true";
+ $disable_cache = checkbox_to_sql_bool($_POST["disable_cache"]) == "true";
- $this->host->set($this, "proxy_all", $proxy_all);
+ $this->host->set($this, "proxy_all", $proxy_all, false);
+ $this->host->set($this, "disable_cache", $disable_cache);
echo __("Configuration saved");
}