Skip to content
Snippets Groups Projects
Commit c6210183 authored by eal's avatar eal
Browse files

Add mastodon API endpoint for custom emoji.

parent ed1eb5de
No related branches found
No related tags found
No related merge requests found
......@@ -125,6 +125,5 @@ defmodule Pleroma.Formatter do
def get_custom_emoji() do
@emoji
|> Enum.into %{}
end
end
......@@ -61,6 +61,19 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
json(conn, response)
end
def custom_emojis(conn, _params) do
mastodon_emoji = Pleroma.Formatter.get_custom_emoji()
|> Enum.map(fn {shortcode, relative_url} ->
url = to_string URI.merge(Web.base_url(), relative_url)
%{
"shortcode" => shortcode,
"static_url" => url,
"url" => url
}
end)
json conn, mastodon_emoji
end
defp add_link_headers(conn, method, activities) do
last = List.last(activities)
first = List.first(activities)
......
......@@ -91,6 +91,7 @@ defmodule Pleroma.Web.Router do
pipe_through :api
get "/instance", MastodonAPIController, :masto_instance
post "/apps", MastodonAPIController, :create_app
get "/custom_emojis", MastodonAPIController, :custom_emojis
get "/timelines/public", MastodonAPIController, :public_timeline
get "/timelines/tag/:tag", MastodonAPIController, :hashtag_timeline
......
......@@ -71,6 +71,6 @@ defmodule Pleroma.Web.TwitterAPI.UtilController do
end
def emoji(conn, _params) do
json conn, Formatter.get_custom_emoji()
json conn, Enum.into(Formatter.get_custom_emoji(), %{})
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment