Add type restriction to activitypub fetcher

Mainly because Mastodon only returns notes, not the other activities.
This commit is contained in:
Roger Braun 2017-09-09 12:05:17 +02:00
parent 95cedd6000
commit a22f2e683b
1 changed files with 7 additions and 0 deletions

View File

@ -133,6 +133,12 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
end
defp restrict_actor(query, _), do: query
defp restrict_type(query, %{"type" => type}) do
from activity in query,
where: fragment("?->>'type' = ?", activity.data, ^type)
end
defp restrict_type(query, _), do: query
def fetch_activities(recipients, opts \\ %{}) do
base_query = from activity in Activity,
limit: 20,
@ -144,6 +150,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
|> restrict_local(opts)
|> restrict_max(opts)
|> restrict_actor(opts)
|> restrict_type(opts)
|> Repo.all
|> Enum.reverse
end