forked from AkkomaGang/akkoma
CommonValidations: Refactor same_domain?
This commit is contained in:
parent
9c96fc052a
commit
3655175639
1 changed files with 13 additions and 10 deletions
|
@ -126,18 +126,21 @@ def validate_fields_match(cng, fields) do
|
|||
end
|
||||
end
|
||||
|
||||
def same_domain?(cng, field_one \\ :actor, field_two \\ :object) do
|
||||
actor_uri =
|
||||
cng
|
||||
|> get_field(field_one)
|
||||
|> URI.parse()
|
||||
def same_domain?(cng, fields \\ [:actor, :object]) do
|
||||
unique_domains =
|
||||
fields
|
||||
|> Enum.map(fn field ->
|
||||
%URI{host: host} =
|
||||
cng
|
||||
|> get_field(field)
|
||||
|> URI.parse()
|
||||
|
||||
object_uri =
|
||||
cng
|
||||
|> get_field(field_two)
|
||||
|> URI.parse()
|
||||
host
|
||||
end)
|
||||
|> Enum.uniq()
|
||||
|> Enum.count()
|
||||
|
||||
object_uri.host == actor_uri.host
|
||||
unique_domains == 1
|
||||
end
|
||||
|
||||
# This figures out if a user is able to create, delete or modify something
|
||||
|
|
Loading…
Reference in a new issue