Browse Source

Fix addressing

mrf-hashtag-default
Haelwenn (lanodan) Monnier 3 years ago
parent
commit
96212b2e32
No known key found for this signature in database GPG Key ID: D5B7A8E43C997DEE
3 changed files with 23 additions and 18 deletions
  1. +5
    -2
      lib/pleroma/object/fetcher.ex
  2. +14
    -11
      lib/pleroma/web/activity_pub/object_validators/common_fixes.ex
  3. +4
    -5
      lib/pleroma/web/activity_pub/object_validators/create_generic_validator.ex

+ 5
- 2
lib/pleroma/object/fetcher.ex View File

@@ -4,6 +4,7 @@

defmodule Pleroma.Object.Fetcher do
alias Pleroma.HTTP
alias Pleroma.Maps
alias Pleroma.Object
alias Pleroma.Object.Containment
alias Pleroma.Repo
@@ -124,12 +125,14 @@ defmodule Pleroma.Object.Fetcher do
defp prepare_activity_params(data) do
%{
"type" => "Create",
"to" => data["to"] || [],
"cc" => data["cc"] || [],
# Should we seriously keep this attributedTo thing?
"actor" => data["actor"] || data["attributedTo"],
"object" => data
}
|> Maps.put_if_present("to", data["to"])
|> Maps.put_if_present("cc", data["cc"])
|> Maps.put_if_present("bto", data["bto"])
|> Maps.put_if_present("bcc", data["bcc"])
end

def fetch_object_from_id!(id, options \\ []) do


+ 14
- 11
lib/pleroma/web/activity_pub/object_validators/common_fixes.ex View File

@@ -9,9 +9,14 @@ defmodule Pleroma.Web.ActivityPub.ObjectValidators.CommonFixes do
alias Pleroma.Web.ActivityPub.Transmogrifier
alias Pleroma.Web.ActivityPub.Utils

def cast_recipients(message, field, field_fallback \\ []) do
def cast_and_filter_recipients(message, field, follower_collection, field_fallback \\ []) do
{:ok, data} = ObjectValidators.Recipients.cast(message[field] || field_fallback)

data =
Enum.reject(data, fn x ->
String.ends_with?(x, "/followers") and x != follower_collection
end)

Map.put(message, field, data)
end

@@ -24,11 +29,10 @@ defmodule Pleroma.Web.ActivityPub.ObjectValidators.CommonFixes do
data
|> Map.put("context", context)
|> Map.put("context_id", context_id)
|> cast_recipients("to")
|> cast_recipients("cc")
|> cast_recipients("bto")
|> cast_recipients("bcc")
|> Transmogrifier.fix_explicit_addressing(follower_collection)
|> cast_and_filter_recipients("to", follower_collection)
|> cast_and_filter_recipients("cc", follower_collection)
|> cast_and_filter_recipients("bto", follower_collection)
|> cast_and_filter_recipients("bcc", follower_collection)
|> Transmogrifier.fix_implicit_addressing(follower_collection)
end

@@ -36,11 +40,10 @@ defmodule Pleroma.Web.ActivityPub.ObjectValidators.CommonFixes do
%User{follower_address: follower_collection} = User.get_cached_by_ap_id(activity["actor"])

activity
|> cast_recipients("to")
|> cast_recipients("cc")
|> cast_recipients("bto")
|> cast_recipients("bcc")
|> Transmogrifier.fix_explicit_addressing(follower_collection)
|> cast_and_filter_recipients("to", follower_collection)
|> cast_and_filter_recipients("cc", follower_collection)
|> cast_and_filter_recipients("bto", follower_collection)
|> cast_and_filter_recipients("bcc", follower_collection)
|> Transmogrifier.fix_implicit_addressing(follower_collection)
end



+ 4
- 5
lib/pleroma/web/activity_pub/object_validators/create_generic_validator.ex View File

@@ -63,11 +63,10 @@ defmodule Pleroma.Web.ActivityPub.ObjectValidators.CreateGenericValidator do
%User{follower_address: follower_collection} = User.get_cached_by_ap_id(data["actor"])

data
|> CommonFixes.cast_recipients("to", object["to"])
|> CommonFixes.cast_recipients("cc", object["cc"])
|> CommonFixes.cast_recipients("bto", object["bto"])
|> CommonFixes.cast_recipients("bcc", object["bcc"])
|> Transmogrifier.fix_explicit_addressing(follower_collection)
|> CommonFixes.cast_and_filter_recipients("to", follower_collection, object["to"])
|> CommonFixes.cast_and_filter_recipients("cc", follower_collection, object["cc"])
|> CommonFixes.cast_and_filter_recipients("bto", follower_collection, object["bto"])
|> CommonFixes.cast_and_filter_recipients("bcc", follower_collection, object["bcc"])
|> Transmogrifier.fix_implicit_addressing(follower_collection)
end



Loading…
Cancel
Save