forked from AkkomaGang/akkoma
Skip cache when /objects or /activities is authenticated
Ref: fix-local-public
This commit is contained in:
parent
932e5df19e
commit
3fd87b6a75
1 changed files with 10 additions and 9 deletions
|
@ -100,17 +100,18 @@ defp cache_resp(conn, opts) do
|
||||||
should_cache = not Map.get(conn.assigns, :skip_cache, false)
|
should_cache = not Map.get(conn.assigns, :skip_cache, false)
|
||||||
|
|
||||||
conn =
|
conn =
|
||||||
cond do
|
unless opts[:tracking_fun] do
|
||||||
Map.get(conn.assigns, :skip_cache, false) ->
|
if should_cache do
|
||||||
conn
|
|
||||||
|
|
||||||
!opts[:tracking_fun] ->
|
|
||||||
@cachex.put(:web_resp_cache, key, {content_type, body}, ttl: ttl)
|
@cachex.put(:web_resp_cache, key, {content_type, body}, ttl: ttl)
|
||||||
conn
|
end
|
||||||
|
|
||||||
true ->
|
conn
|
||||||
|
else
|
||||||
tracking_fun_data = Map.get(conn.assigns, :tracking_fun_data, nil)
|
tracking_fun_data = Map.get(conn.assigns, :tracking_fun_data, nil)
|
||||||
|
|
||||||
|
if should_cache do
|
||||||
@cachex.put(:web_resp_cache, key, {content_type, body, tracking_fun_data}, ttl: ttl)
|
@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
|
end
|
||||||
|
|
Loading…
Reference in a new issue