diff options
author | Tusooa Zhu <tusooa@kazv.moe> | 2022-05-05 18:39:34 -0400 |
---|---|---|
committer | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2022-05-06 10:23:26 +0200 |
commit | e2d24eda5745310346b5e347efddbc68723612f0 (patch) | |
tree | 59a5e12139e63836ac9cbb1b91d91a3b38504fa2 /lib | |
parent | c3b2b71ea211d7e377186cace419703f5e3f2d68 (diff) | |
download | pleroma-e2d24eda5745310346b5e347efddbc68723612f0.tar.gz pleroma-e2d24eda5745310346b5e347efddbc68723612f0.zip |
Allow to skip cache in Cache plug
Ref: fix-local-public
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/plugs/cache.ex | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/lib/pleroma/web/plugs/cache.ex b/lib/pleroma/web/plugs/cache.ex index e2cf5759d..aaff36407 100644 --- a/lib/pleroma/web/plugs/cache.ex +++ b/lib/pleroma/web/plugs/cache.ex @@ -98,14 +98,19 @@ defmodule Pleroma.Web.Plugs.Cache do content_type = content_type(conn) conn = - unless opts[:tracking_fun] do - @cachex.put(:web_resp_cache, key, {content_type, body}, ttl: ttl) - conn - else - tracking_fun_data = Map.get(conn.assigns, :tracking_fun_data, nil) - @cachex.put(:web_resp_cache, key, {content_type, body, tracking_fun_data}, ttl: ttl) - - opts.tracking_fun.(conn, tracking_fun_data) + cond do + Map.get(conn.assigns, :skip_cache, false) -> + conn + + !opts[:tracking_fun] -> + @cachex.put(:web_resp_cache, key, {content_type, body}, ttl: ttl) + conn + + true -> + tracking_fun_data = Map.get(conn.assigns, :tracking_fun_data, nil) + @cachex.put(:web_resp_cache, key, {content_type, body, tracking_fun_data}, ttl: ttl) + + opts.tracking_fun.(conn, tracking_fun_data) end put_resp_header(conn, "x-cache", "MISS from Pleroma") |