1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Plugs.Cache do
7 Caches successful GET responses.
9 To enable the cache add the plug to a router pipeline or controller:
11 plug(Pleroma.Plugs.Cache)
15 To configure the plug you need to pass settings as the second argument to the `plug/2` macro:
17 plug(Pleroma.Plugs.Cache, [ttl: nil, query_params: true])
21 - `ttl`: An expiration time (time-to-live). This value should be in milliseconds or `nil` to disable expiration. Defaults to `nil`.
22 - `query_params`: Take URL query string into account (`true`), ignore it (`false`) or limit to specific params only (list). Defaults to `true`.
23 - `tracking_fun`: A function that is called on successfull responses, no matter if the request is cached or not. It should accept a conn as the first argument and the value assigned to `tracking_fun_data` as the second.
25 Additionally, you can overwrite the TTL inside a controller action by assigning `cache_ttl` to the connection struct:
27 def index(conn, _params) do
28 ttl = 60_000 # one minute
31 |> assign(:cache_ttl, ttl)
32 |> render("index.html")
37 import Phoenix.Controller, only: [current_path: 1, json: 2]
42 @defaults %{ttl: nil, query_params: true}
45 def init([]), do: @defaults
49 Map.merge(@defaults, opts)
53 def call(%{method: "GET"} = conn, opts) do
54 key = cache_key(conn, opts)
56 case Cachex.get(:web_resp_cache, key) do
58 cache_resp(conn, opts)
60 {:ok, {content_type, body, tracking_fun_data}} ->
61 conn = opts.tracking_fun.(conn, tracking_fun_data)
63 send_cached(conn, {content_type, body})
66 send_cached(conn, record)
68 {atom, message} when atom in [:ignore, :error] ->
69 render_error(conn, message)
73 def call(conn, _), do: conn
75 # full path including query params
76 defp cache_key(conn, %{query_params: true}), do: current_path(conn)
78 # request path without query params
79 defp cache_key(conn, %{query_params: false}), do: conn.request_path
81 # request path with specific query params
82 defp cache_key(conn, %{query_params: query_params}) when is_list(query_params) do
85 |> Map.take(query_params)
88 conn.request_path <> "?" <> query_string
91 defp cache_resp(conn, opts) do
92 register_before_send(conn, fn
93 %{status: 200, resp_body: body} = conn ->
94 ttl = Map.get(conn.assigns, :cache_ttl, opts.ttl)
95 key = cache_key(conn, opts)
96 content_type = content_type(conn)
99 unless opts[:tracking_fun] do
100 Cachex.put(:web_resp_cache, key, {content_type, body}, ttl: ttl)
103 tracking_fun_data = Map.get(conn.assigns, :tracking_fun_data, nil)
104 Cachex.put(:web_resp_cache, key, {content_type, body, tracking_fun_data}, ttl: ttl)
106 opts.tracking_fun.(conn, tracking_fun_data)
109 put_resp_header(conn, "x-cache", "MISS from Pleroma")
116 defp content_type(conn) do
118 |> Plug.Conn.get_resp_header("content-type")
122 defp send_cached(conn, {content_type, body}) do
124 |> put_resp_content_type(content_type, nil)
125 |> put_resp_header("x-cache", "HIT from Pleroma")
126 |> send_resp(:ok, body)
130 defp render_error(conn, message) do
132 |> put_status(:internal_server_error)
133 |> json(%{error: message})