Browse Source

config: allow for accepted post formats to be configured

tags/v0.9.9
William Pitcock 5 years ago
parent
commit
285ac80c36
2 changed files with 12 additions and 2 deletions
  1. +6
    -1
      config/config.exs
  2. +6
    -1
      lib/pleroma/web/common_api/common_api.ex

+ 6
- 1
config/config.exs View File

@@ -74,7 +74,12 @@ config :pleroma, :instance,
rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
public: true,
quarantined_instances: [],
managed_config: true
managed_config: true,
allowed_post_formats: [
"text/plain",
"text/html",
"text/markdown"
]

config :pleroma, :markup,
# XXX - unfortunately, inline images must be enabled by default right now, because


+ 6
- 1
lib/pleroma/web/common_api/common_api.ex View File

@@ -73,6 +73,11 @@ 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"

@limit Keyword.get(@instance, :limit)
def post(user, %{"status" => status} = data) do
visibility = get_visibility(data)
@@ -90,7 +95,7 @@ defmodule Pleroma.Web.CommonAPI do
mentions,
attachments,
tags,
data["content_type"] || "text/plain",
get_content_type(data["content_type"]),
data["no_attachment_links"]
),
context <- make_context(inReplyTo),


Loading…
Cancel
Save