From: Tusooa Zhu Date: Thu, 5 May 2022 22:39:34 +0000 (-0400) Subject: Allow to skip cache in Cache plug X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=932e5df19ed53121db85acb055e06a3fd32775ff;p=akkoma Allow to skip cache in Cache plug Ref: fix-local-public --- diff --git a/lib/pleroma/web/plugs/cache.ex b/lib/pleroma/web/plugs/cache.ex index 935b2d834..b0e44db07 100644 --- a/lib/pleroma/web/plugs/cache.ex +++ b/lib/pleroma/web/plugs/cache.ex @@ -100,20 +100,19 @@ defmodule Pleroma.Web.Plugs.Cache do should_cache = not Map.get(conn.assigns, :skip_cache, false) conn = - unless opts[:tracking_fun] do - if should_cache do - @cachex.put(:web_resp_cache, key, {content_type, body}, ttl: ttl) - end + cond do + Map.get(conn.assigns, :skip_cache, false) -> + conn - conn - else - tracking_fun_data = Map.get(conn.assigns, :tracking_fun_data, nil) + !opts[:tracking_fun] -> + @cachex.put(:web_resp_cache, key, {content_type, body}, ttl: ttl) + conn - if should_cache do + 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) - end - opts.tracking_fun.(conn, tracking_fun_data) + opts.tracking_fun.(conn, tracking_fun_data) end put_resp_header(conn, "x-cache", "MISS from Pleroma")