refactoring for gun api modules
[akkoma] / lib / pleroma / plugs / idempotency_plug.ex
index 442573d603617911cb9af522bbcada910e699b4e..e99c5d279b5661cdb9d4b4d973ccf27633baee7d 100644 (file)
@@ -11,7 +11,9 @@ defmodule Pleroma.Plugs.IdempotencyPlug do
   @impl true
   def init(opts), do: opts
 
-  # Sending idempotency keys in `GET` and `DELETE` requests has no effect and should be avoided, as these requests are idempotent by definition.
+  # Sending idempotency keys in `GET` and `DELETE` requests has no effect
+  # and should be avoided, as these requests are idempotent by definition.
+
   @impl true
   def call(%{method: method} = conn, _) when method in ["POST", "PUT", "PATCH"] do
     case get_req_header(conn, "idempotency-key") do
@@ -27,16 +29,16 @@ defmodule Pleroma.Plugs.IdempotencyPlug do
       {:ok, nil} ->
         cache_resposnse(conn, key)
 
-      {atom, message} when atom in [:ignore, :error] ->
-        render_error(conn, message)
-
       {:ok, record} ->
         send_cached(conn, key, record)
+
+      {atom, message} when atom in [:ignore, :error] ->
+        render_error(conn, message)
     end
   end
 
   defp cache_resposnse(conn, key) do
-    Plug.Conn.register_before_send(conn, fn conn ->
+    register_before_send(conn, fn conn ->
       [request_id] = get_resp_header(conn, "x-request-id")
       content_type = get_content_type(conn)