forked from AkkomaGang/akkoma
Add a fake option to lazy_put_actvity_defaults
This commit is contained in:
parent
42b779527c
commit
cd387f8693
2 changed files with 20 additions and 12 deletions
|
@ -115,7 +115,7 @@ def decrease_replies_count_if_reply(_object), do: :noop
|
|||
|
||||
def insert(map, local \\ true, fake \\ false) when is_map(map) do
|
||||
with nil <- Activity.normalize(map),
|
||||
map <- lazy_put_activity_defaults(map),
|
||||
map <- lazy_put_activity_defaults(map, fake),
|
||||
:ok <- check_actor_is_active(map["actor"]),
|
||||
{_, true} <- {:remote_limit_error, check_remote_limit(map)},
|
||||
{:ok, map} <- MRF.filter(map),
|
||||
|
|
|
@ -175,7 +175,8 @@ def maybe_federate(_), do: :ok
|
|||
Adds an id and a published data if they aren't there,
|
||||
also adds it to an included object
|
||||
"""
|
||||
def lazy_put_activity_defaults(map) do
|
||||
def lazy_put_activity_defaults(map, fake \\ false) do
|
||||
unless fake do
|
||||
%{data: %{"id" => context}, id: context_id} = create_context(map["context"])
|
||||
|
||||
map =
|
||||
|
@ -191,6 +192,13 @@ def lazy_put_activity_defaults(map) do
|
|||
else
|
||||
map
|
||||
end
|
||||
else
|
||||
map
|
||||
|> Map.put_new("id", "pleroma:fakeid")
|
||||
|> Map.put_new_lazy("published", &make_date/0)
|
||||
|> Map.put_new("context", "pleroma:fakecontext")
|
||||
|> Map.put_new("context_id", -1)
|
||||
end
|
||||
end
|
||||
|
||||
@doc """
|
||||
|
|
Loading…
Reference in a new issue