diff options
author | kaniini <nenolod@gmail.com> | 2018-11-07 22:32:34 +0000 |
---|---|---|
committer | kaniini <nenolod@gmail.com> | 2018-11-07 22:32:34 +0000 |
commit | b451a92d78b184dda63e6647f815f89c0e37fd98 (patch) | |
tree | 08c91256dd3c5a1324f4c5484f23710fb0645ffd /lib/pleroma/web/common_api | |
parent | a764e6fdd436e6014ded4baf8ec402d25107f987 (diff) | |
parent | 9070588493bc896e909e05374ff64fb3f893ec53 (diff) | |
download | pleroma-b451a92d78b184dda63e6647f815f89c0e37fd98.tar.gz |
Merge branch 'runtime-config' into 'develop'
Runtime configuration
See merge request pleroma/pleroma!430
Diffstat (limited to 'lib/pleroma/web/common_api')
-rw-r--r-- | lib/pleroma/web/common_api/common_api.ex | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/lib/pleroma/web/common_api/common_api.ex b/lib/pleroma/web/common_api/common_api.ex index 8f47bb127..77e4dbbd7 100644 --- a/lib/pleroma/web/common_api/common_api.ex +++ b/lib/pleroma/web/common_api/common_api.ex @@ -70,15 +70,17 @@ defmodule Pleroma.Web.CommonAPI do def get_visibility(_), do: "public" - @instance Application.get_env(:pleroma, :instance) - @allowed_post_formats Keyword.get(@instance, :allowed_post_formats) - - defp get_content_type(content_type) when content_type in @allowed_post_formats, do: content_type - defp get_content_type(_), do: "text/plain" + defp get_content_type(content_type) do + if Enum.member?(Pleroma.Config.get([:instance, :allowed_post_formats]), content_type) do + content_type + else + "text/plain" + end + end - @limit Keyword.get(@instance, :limit) def post(user, %{"status" => status} = data) do visibility = get_visibility(data) + limit = Pleroma.Config.get([:instance, :limit]) with status <- String.trim(status), attachments <- attachments_from_ids(data["media_ids"]), @@ -98,7 +100,7 @@ defmodule Pleroma.Web.CommonAPI do context <- make_context(inReplyTo), cw <- data["spoiler_text"], full_payload <- String.trim(status <> (data["spoiler_text"] || "")), - length when length in 1..@limit <- String.length(full_payload), + length when length in 1..limit <- String.length(full_payload), object <- make_note_data( user.ap_id, |