Add key- and valuePlaceholders for quarantined_instances and mrf_simple
[akkoma] / lib / pleroma / web / activity_pub / mrf / simple_policy.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Web.ActivityPub.MRF.SimplePolicy do
6 @moduledoc "Filter activities depending on their origin instance"
7 @behaviour Pleroma.Web.ActivityPub.MRF.Policy
8
9 alias Pleroma.Config
10 alias Pleroma.FollowingRelationship
11 alias Pleroma.User
12 alias Pleroma.Web.ActivityPub.MRF
13
14 require Pleroma.Constants
15
16 defp check_accept(%{host: actor_host} = _actor_info, object) do
17 accepts =
18 instance_list(:accept)
19 |> MRF.subdomains_regex()
20
21 cond do
22 accepts == [] -> {:ok, object}
23 actor_host == Config.get([Pleroma.Web.Endpoint, :url, :host]) -> {:ok, object}
24 MRF.subdomain_match?(accepts, actor_host) -> {:ok, object}
25 true -> {:reject, "[SimplePolicy] host not in accept list"}
26 end
27 end
28
29 defp check_reject(%{host: actor_host} = _actor_info, object) do
30 rejects =
31 instance_list(:reject)
32 |> MRF.subdomains_regex()
33
34 if MRF.subdomain_match?(rejects, actor_host) do
35 {:reject, "[SimplePolicy] host in reject list"}
36 else
37 {:ok, object}
38 end
39 end
40
41 defp check_media_removal(
42 %{host: actor_host} = _actor_info,
43 %{"type" => "Create", "object" => %{"attachment" => child_attachment}} = object
44 )
45 when length(child_attachment) > 0 do
46 media_removal =
47 instance_list(:media_removal)
48 |> MRF.subdomains_regex()
49
50 object =
51 if MRF.subdomain_match?(media_removal, actor_host) do
52 child_object = Map.delete(object["object"], "attachment")
53 Map.put(object, "object", child_object)
54 else
55 object
56 end
57
58 {:ok, object}
59 end
60
61 defp check_media_removal(_actor_info, object), do: {:ok, object}
62
63 defp check_media_nsfw(
64 %{host: actor_host} = _actor_info,
65 %{
66 "type" => "Create",
67 "object" => %{} = _child_object
68 } = object
69 ) do
70 media_nsfw =
71 instance_list(:media_nsfw)
72 |> MRF.subdomains_regex()
73
74 object =
75 if MRF.subdomain_match?(media_nsfw, actor_host) do
76 Kernel.put_in(object, ["object", "sensitive"], true)
77 else
78 object
79 end
80
81 {:ok, object}
82 end
83
84 defp check_media_nsfw(_actor_info, object), do: {:ok, object}
85
86 defp check_ftl_removal(%{host: actor_host} = _actor_info, object) do
87 timeline_removal =
88 instance_list(:federated_timeline_removal)
89 |> MRF.subdomains_regex()
90
91 object =
92 with true <- MRF.subdomain_match?(timeline_removal, actor_host),
93 user <- User.get_cached_by_ap_id(object["actor"]),
94 true <- Pleroma.Constants.as_public() in object["to"] do
95 to = List.delete(object["to"], Pleroma.Constants.as_public()) ++ [user.follower_address]
96
97 cc = List.delete(object["cc"], user.follower_address) ++ [Pleroma.Constants.as_public()]
98
99 object
100 |> Map.put("to", to)
101 |> Map.put("cc", cc)
102 else
103 _ -> object
104 end
105
106 {:ok, object}
107 end
108
109 defp intersection(list1, list2) do
110 list1 -- list1 -- list2
111 end
112
113 defp check_followers_only(%{host: actor_host} = _actor_info, object) do
114 followers_only =
115 instance_list(:followers_only)
116 |> MRF.subdomains_regex()
117
118 object =
119 with true <- MRF.subdomain_match?(followers_only, actor_host),
120 user <- User.get_cached_by_ap_id(object["actor"]) do
121 # Don't use Map.get/3 intentionally, these must not be nil
122 fixed_to = object["to"] || []
123 fixed_cc = object["cc"] || []
124
125 to = FollowingRelationship.followers_ap_ids(user, fixed_to)
126 cc = FollowingRelationship.followers_ap_ids(user, fixed_cc)
127
128 object
129 |> Map.put("to", intersection([user.follower_address | to], fixed_to))
130 |> Map.put("cc", intersection([user.follower_address | cc], fixed_cc))
131 else
132 _ -> object
133 end
134
135 {:ok, object}
136 end
137
138 defp check_report_removal(%{host: actor_host} = _actor_info, %{"type" => "Flag"} = object) do
139 report_removal =
140 instance_list(:report_removal)
141 |> MRF.subdomains_regex()
142
143 if MRF.subdomain_match?(report_removal, actor_host) do
144 {:reject, "[SimplePolicy] host in report_removal list"}
145 else
146 {:ok, object}
147 end
148 end
149
150 defp check_report_removal(_actor_info, object), do: {:ok, object}
151
152 defp check_avatar_removal(%{host: actor_host} = _actor_info, %{"icon" => _icon} = object) do
153 avatar_removal =
154 instance_list(:avatar_removal)
155 |> MRF.subdomains_regex()
156
157 if MRF.subdomain_match?(avatar_removal, actor_host) do
158 {:ok, Map.delete(object, "icon")}
159 else
160 {:ok, object}
161 end
162 end
163
164 defp check_avatar_removal(_actor_info, object), do: {:ok, object}
165
166 defp check_banner_removal(%{host: actor_host} = _actor_info, %{"image" => _image} = object) do
167 banner_removal =
168 instance_list(:banner_removal)
169 |> MRF.subdomains_regex()
170
171 if MRF.subdomain_match?(banner_removal, actor_host) do
172 {:ok, Map.delete(object, "image")}
173 else
174 {:ok, object}
175 end
176 end
177
178 defp check_banner_removal(_actor_info, object), do: {:ok, object}
179
180 defp check_object(%{"object" => object} = activity) do
181 with {:ok, _object} <- filter(object) do
182 {:ok, activity}
183 end
184 end
185
186 defp check_object(object), do: {:ok, object}
187
188 defp instance_list(config_key) do
189 Config.get([:mrf_simple, config_key])
190 |> MRF.instance_list_from_tuples()
191 end
192
193 @impl true
194 def filter(%{"type" => "Delete", "actor" => actor} = object) do
195 %{host: actor_host} = URI.parse(actor)
196
197 reject_deletes =
198 instance_list(:reject_deletes)
199 |> MRF.subdomains_regex()
200
201 if MRF.subdomain_match?(reject_deletes, actor_host) do
202 {:reject, "[SimplePolicy] host in reject_deletes list"}
203 else
204 {:ok, object}
205 end
206 end
207
208 @impl true
209 def filter(%{"actor" => actor} = object) do
210 actor_info = URI.parse(actor)
211
212 with {:ok, object} <- check_accept(actor_info, object),
213 {:ok, object} <- check_reject(actor_info, object),
214 {:ok, object} <- check_media_removal(actor_info, object),
215 {:ok, object} <- check_media_nsfw(actor_info, object),
216 {:ok, object} <- check_ftl_removal(actor_info, object),
217 {:ok, object} <- check_followers_only(actor_info, object),
218 {:ok, object} <- check_report_removal(actor_info, object),
219 {:ok, object} <- check_object(object) do
220 {:ok, object}
221 else
222 {:reject, nil} -> {:reject, "[SimplePolicy]"}
223 {:reject, _} = e -> e
224 _ -> {:reject, "[SimplePolicy]"}
225 end
226 end
227
228 def filter(%{"id" => actor, "type" => obj_type} = object)
229 when obj_type in ["Application", "Group", "Organization", "Person", "Service"] do
230 actor_info = URI.parse(actor)
231
232 with {:ok, object} <- check_accept(actor_info, object),
233 {:ok, object} <- check_reject(actor_info, object),
234 {:ok, object} <- check_avatar_removal(actor_info, object),
235 {:ok, object} <- check_banner_removal(actor_info, object) do
236 {:ok, object}
237 else
238 {:reject, nil} -> {:reject, "[SimplePolicy]"}
239 {:reject, _} = e -> e
240 _ -> {:reject, "[SimplePolicy]"}
241 end
242 end
243
244 def filter(object) when is_binary(object) do
245 uri = URI.parse(object)
246
247 with {:ok, object} <- check_accept(uri, object),
248 {:ok, object} <- check_reject(uri, object) do
249 {:ok, object}
250 else
251 {:reject, nil} -> {:reject, "[SimplePolicy]"}
252 {:reject, _} = e -> e
253 _ -> {:reject, "[SimplePolicy]"}
254 end
255 end
256
257 def filter(object), do: {:ok, object}
258
259 @impl true
260 def describe do
261 exclusions = Config.get([:mrf, :transparency_exclusions]) |> MRF.instance_list_from_tuples()
262
263 mrf_simple_excluded =
264 Config.get(:mrf_simple)
265 |> Enum.map(fn {k, v} -> {k, Enum.reject(v, fn {v, _} -> v in exclusions end)} end)
266
267 mrf_simple =
268 mrf_simple_excluded
269 |> Enum.map(fn {k, v} ->
270 {k, Enum.map(v, fn {instance, _} -> instance end)}
271 end)
272 |> Enum.into(%{})
273
274 # This is for backwards compatibility. We originally didn't sent
275 # extra info like a reason why an instance was rejected/quarantined/etc.
276 # Because we didn't want to break backwards compatibility it was decided
277 # to add an extra "info" key.
278 mrf_simple_info =
279 mrf_simple_excluded
280 |> Enum.map(fn {k, v} -> {k, Enum.reject(v, fn {_, reason} -> reason == "" end)} end)
281 |> Enum.reject(fn {_, v} -> v == [] end)
282 |> Enum.map(fn {k, l} ->
283 {k, l |> Enum.map(fn {i, r} -> {i, %{"reason" => r}} end) |> Enum.into(%{})}
284 end)
285 |> Enum.into(%{})
286
287 {:ok, %{mrf_simple: mrf_simple, mrf_simple_info: mrf_simple_info}}
288 end
289
290 @impl true
291 def config_description do
292 %{
293 key: :mrf_simple,
294 related_policy: "Pleroma.Web.ActivityPub.MRF.SimplePolicy",
295 label: "MRF Simple",
296 description: "Simple ingress policies",
297 children:
298 [
299 %{
300 key: :media_removal,
301 description:
302 "List of instances to strip media attachments from and the reason for doing so"
303 },
304 %{
305 key: :media_nsfw,
306 label: "Media NSFW",
307 description:
308 "List of instances to tag all media as NSFW (sensitive) from and the reason for doing so"
309 },
310 %{
311 key: :federated_timeline_removal,
312 description:
313 "List of instances to remove from the Federated (aka The Whole Known Network) Timeline and the reason for doing so"
314 },
315 %{
316 key: :reject,
317 description:
318 "List of instances to reject activities from (except deletes) and the reason for doing so"
319 },
320 %{
321 key: :accept,
322 description:
323 "List of instances to only accept activities from (except deletes) and the reason for doing so"
324 },
325 %{
326 key: :followers_only,
327 description:
328 "Force posts from the given instances to be visible by followers only and the reason for doing so"
329 },
330 %{
331 key: :report_removal,
332 description: "List of instances to reject reports from and the reason for doing so"
333 },
334 %{
335 key: :avatar_removal,
336 description: "List of instances to strip avatars from and the reason for doing so"
337 },
338 %{
339 key: :banner_removal,
340 description: "List of instances to strip banners from and the reason for doing so"
341 },
342 %{
343 key: :reject_deletes,
344 description: "List of instances to reject deletions from and the reason for doing so"
345 }
346 ]
347 |> Enum.map(fn setting ->
348 Map.merge(
349 setting,
350 %{
351 type: {:list, :tuple},
352 key_placeholder: "instance",
353 value_placeholder: "reason",
354 suggestions: [{"example.com", "Some reason"}, {"*.example.com", "Another reason"}]
355 }
356 )
357 end)
358 }
359 end
360 end