forked from AkkomaGang/akkoma
CommonAPI: If no visibility is given, return parent visibility.
This commit is contained in:
parent
d4b08dd838
commit
2997fe1ba9
1 changed files with 8 additions and 1 deletions
|
@ -46,10 +46,17 @@ def unfavorite(id_or_ap_id, user) do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def get_visibility(%{"visibility" => visibility}), do: visibility
|
||||||
|
def get_visibility(%{"in_reply_to_status_id" => status_id}) do
|
||||||
|
inReplyTo = get_replied_to_activity(status_id)
|
||||||
|
Pleroma.Web.MastodonAPI.StatusView.get_visibility(inReplyTo.data["object"])
|
||||||
|
end
|
||||||
|
def get_visibility(_), do: "public"
|
||||||
|
|
||||||
@instance Application.get_env(:pleroma, :instance)
|
@instance Application.get_env(:pleroma, :instance)
|
||||||
@limit Keyword.get(@instance, :limit)
|
@limit Keyword.get(@instance, :limit)
|
||||||
def post(user, %{"status" => status} = data) do
|
def post(user, %{"status" => status} = data) do
|
||||||
visibility = data["visibility"] || "public"
|
visibility = get_visibility(data)
|
||||||
with status <- String.trim(status),
|
with status <- String.trim(status),
|
||||||
length when length in 1..@limit <- String.length(status),
|
length when length in 1..@limit <- String.length(status),
|
||||||
attachments <- attachments_from_ids(data["media_ids"]),
|
attachments <- attachments_from_ids(data["media_ids"]),
|
||||||
|
|
Loading…
Reference in a new issue