Merge branch 'feature/update-welcome-setting-in-description' of git.pleroma.social...
[akkoma] / lib / pleroma / web / activity_pub / object_validators / common_validations.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Web.ActivityPub.ObjectValidators.CommonValidations do
6 import Ecto.Changeset
7
8 alias Pleroma.Activity
9 alias Pleroma.Object
10 alias Pleroma.User
11
12 def validate_recipients_presence(cng, fields \\ [:to, :cc]) do
13 non_empty =
14 fields
15 |> Enum.map(fn field -> get_field(cng, field) end)
16 |> Enum.any?(fn
17 [] -> false
18 _ -> true
19 end)
20
21 if non_empty do
22 cng
23 else
24 fields
25 |> Enum.reduce(cng, fn field, cng ->
26 cng
27 |> add_error(field, "no recipients in any field")
28 end)
29 end
30 end
31
32 def validate_actor_presence(cng, options \\ []) do
33 field_name = Keyword.get(options, :field_name, :actor)
34
35 cng
36 |> validate_change(field_name, fn field_name, actor ->
37 case User.get_cached_by_ap_id(actor) do
38 %User{deactivated: true} ->
39 [{field_name, "user is deactivated"}]
40
41 %User{} ->
42 []
43
44 _ ->
45 [{field_name, "can't find user"}]
46 end
47 end)
48 end
49
50 def validate_object_presence(cng, options \\ []) do
51 field_name = Keyword.get(options, :field_name, :object)
52 allowed_types = Keyword.get(options, :allowed_types, false)
53
54 cng
55 |> validate_change(field_name, fn field_name, object_id ->
56 object = Object.get_cached_by_ap_id(object_id) || Activity.get_by_ap_id(object_id)
57
58 cond do
59 !object ->
60 [{field_name, "can't find object"}]
61
62 object && allowed_types && object.data["type"] not in allowed_types ->
63 [{field_name, "object not in allowed types"}]
64
65 true ->
66 []
67 end
68 end)
69 end
70
71 def validate_object_or_user_presence(cng, options \\ []) do
72 field_name = Keyword.get(options, :field_name, :object)
73 options = Keyword.put(options, :field_name, field_name)
74
75 actor_cng =
76 cng
77 |> validate_actor_presence(options)
78
79 object_cng =
80 cng
81 |> validate_object_presence(options)
82
83 if actor_cng.valid?, do: actor_cng, else: object_cng
84 end
85 end