1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Plugs.RateLimiter do
10 A keyword list of rate limiters where a key is a limiter name and value is the limiter configuration. The basic configuration is a tuple where:
12 * The first element: `scale` (Integer). The time scale in milliseconds.
13 * The second element: `limit` (Integer). How many requests to limit in the time scale provided.
15 It is also possible to have different limits for unauthenticated and authenticated users: the keyword value must be a list of two tuples where the first one is a config for unauthenticated users and the second one is for authenticated.
17 To disable a limiter set its value to `nil`.
21 config :pleroma, :rate_limit,
23 two: [{10_000, 10}, {10_000, 50}],
26 Here we have three limiters:
28 * `one` which is not over 10req/1s
29 * `two` which has two limits: 10req/10s for unauthenticated users and 50req/10s for authenticated users
30 * `foobar` which is disabled
36 plug(Pleroma.Plugs.RateLimiter, name: :limiter_name)
37 plug(Pleroma.Plugs.RateLimiter, options) # :name is a required option
41 * `name` required, always used to fetch the limit values from the config
42 * `bucket_name` overrides name for counting purposes (e.g. to have a separate limit for a set of actions)
43 * `params` appends values of specified request params (e.g. ["id"]) to bucket name
47 plug(Pleroma.Plugs.RateLimiter, [name: :one] when action == :one)
48 plug(Pleroma.Plugs.RateLimiter, [name: :two] when action in [:two, :three])
51 Pleroma.Plugs.RateLimiter,
52 [name: :status_id_action, bucket_name: "status_id_action:fav_unfav", params: ["id"]]
53 when action in ~w(fav_status unfav_status)a
56 or inside a router pipeline:
60 plug(Pleroma.Plugs.RateLimiter, name: :one)
64 import Pleroma.Web.TranslationHelpers
67 alias Pleroma.Plugs.RateLimiter.LimiterSupervisor
71 limiter_name = Keyword.get(opts, :name)
73 case Pleroma.Config.get([:rate_limit, limiter_name]) do
78 name_root = Keyword.get(opts, :bucket_name, limiter_name)
88 # Do not limit if there is no limiter configuration
89 def call(conn, nil), do: conn
91 def call(conn, settings) do
93 |> incorporate_conn_info(conn)
100 render_throttled_error(conn)
104 def inspect_bucket(conn, name_root, settings) do
107 |> incorporate_conn_info(conn)
109 bucket_name = make_bucket_name(%{settings | name: name_root})
110 key_name = make_key_name(settings)
111 limit = get_limits(settings)
113 case Cachex.get(bucket_name, key_name) do
114 {:error, :no_cache} ->
121 {value, limit - value}
125 defp check_rate(settings) do
126 bucket_name = make_bucket_name(settings)
127 key_name = make_key_name(settings)
128 limit = get_limits(settings)
130 case Cachex.get_and_update(bucket_name, key_name, &increment_value(&1, limit)) do
137 {:error, :no_cache} ->
138 initialize_buckets(settings)
143 defp increment_value(nil, _limit), do: {:commit, 1}
145 defp increment_value(val, limit) when val >= limit, do: {:ignore, val}
147 defp increment_value(val, _limit), do: {:commit, val + 1}
149 defp incorporate_conn_info(settings, %{assigns: %{user: %User{id: user_id}}, params: params}) do
150 Map.merge(settings, %{
153 conn_info: "#{user_id}"
157 defp incorporate_conn_info(settings, %{params: params} = conn) do
158 Map.merge(settings, %{
161 conn_info: "#{ip(conn)}"
165 defp ip(%{remote_ip: remote_ip}) do
171 defp render_throttled_error(conn) do
173 |> render_error(:too_many_requests, "Throttled")
177 defp make_key_name(settings) do
179 |> attach_params(settings)
180 |> attach_identity(settings)
183 defp get_scale(_, {scale, _}), do: scale
185 defp get_scale(:anon, [{scale, _}, {_, _}]), do: scale
187 defp get_scale(:user, [{_, _}, {scale, _}]), do: scale
189 defp get_limits(%{limits: {_scale, limit}}), do: limit
191 defp get_limits(%{mode: :user, limits: [_, {_, limit}]}), do: limit
193 defp get_limits(%{limits: [{_, limit}, _]}), do: limit
195 defp make_bucket_name(%{mode: :user, name: name_root}),
196 do: user_bucket_name(name_root)
198 defp make_bucket_name(%{mode: :anon, name: name_root}),
199 do: anon_bucket_name(name_root)
201 defp attach_params(input, %{conn_params: conn_params, opts: opts}) do
204 |> Keyword.get(:params, [])
206 |> Enum.map(&Map.get(conn_params, &1, ""))
209 "#{input}#{param_string}"
212 defp initialize_buckets(%{name: _name, limits: nil}), do: :ok
214 defp initialize_buckets(%{name: name, limits: limits}) do
215 LimiterSupervisor.add_limiter(anon_bucket_name(name), get_scale(:anon, limits))
216 LimiterSupervisor.add_limiter(user_bucket_name(name), get_scale(:user, limits))
219 defp attach_identity(base, %{mode: :user, conn_info: conn_info}),
220 do: "user:#{base}:#{conn_info}"
222 defp attach_identity(base, %{mode: :anon, conn_info: conn_info}),
223 do: "ip:#{base}:#{conn_info}"
225 defp user_bucket_name(name_root), do: "user:#{name_root}" |> String.to_atom()
226 defp anon_bucket_name(name_root), do: "anon:#{name_root}" |> String.to_atom()