forked from AkkomaGang/akkoma
Fix tests.
This commit is contained in:
parent
c8d418acdd
commit
9aabff4883
2 changed files with 14 additions and 8 deletions
|
@ -40,18 +40,23 @@ def insert(map, local \\ true) when is_map(map) do
|
|||
end
|
||||
|
||||
def stream_out(activity) do
|
||||
public = "https://www.w3.org/ns/activitystreams#Public"
|
||||
|
||||
if activity.data["type"] in ["Create", "Announce"] do
|
||||
Pleroma.Web.Streamer.stream("user", activity)
|
||||
|
||||
visibility = Pleroma.Web.MastodonAPI.StatusView.get_visibility(activity.data["object"])
|
||||
if Enum.member?(activity.data["to"], public) do
|
||||
Pleroma.Web.Streamer.stream("public", activity)
|
||||
|
||||
case visibility do
|
||||
"public" ->
|
||||
Pleroma.Web.Streamer.stream("public", activity)
|
||||
if activity.local, do: Pleroma.Web.Streamer.stream("public:local", activity)
|
||||
|
||||
"direct" ->
|
||||
Pleroma.Web.Streamer.stream("direct", activity)
|
||||
if activity.local do
|
||||
Pleroma.Web.Streamer.stream("public:local", activity)
|
||||
end
|
||||
else
|
||||
if !Enum.member?(activity.data["cc"] || [], public) &&
|
||||
!Enum.member?(
|
||||
activity.data["to"],
|
||||
User.get_by_ap_id(activity.data["actor"]).follower_address
|
||||
), do: Pleroma.Web.Streamer.stream("direct", activity)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -195,6 +195,7 @@ def get_visibility(object) do
|
|||
cond do
|
||||
public in to -> "public"
|
||||
public in cc -> "unlisted"
|
||||
# this should use the sql for the object's activity
|
||||
Enum.any?(to, &String.contains?(&1, "/followers")) -> "private"
|
||||
true -> "direct"
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue