Add an API endpoint for emoji.

This commit is contained in:
eal 2017-10-19 22:51:56 +03:00
parent 38f3908c14
commit fe7804e42d
3 changed files with 14 additions and 3 deletions

View File

@ -122,4 +122,9 @@ defmodule Pleroma.Formatter do
def get_emoji(text) do
Enum.filter(@emoji, fn ({emoji, _}) -> String.contains?(text, ":#{emoji}:") end)
end
def get_custom_emoji() do
@emoji
|> Enum.into %{}
end
end

View File

@ -33,14 +33,15 @@ defmodule Pleroma.Web.Router do
plug :accepts, ["html", "json"]
end
pipeline :password_reset do
plug :accepts, ["html"]
pipeline :pleroma_api do
plug :accepts, ["html", "json"]
end
scope "/api/pleroma", Pleroma.Web.TwitterAPI do
pipe_through :password_reset
pipe_through :pleroma_api
get "/password_reset/:token", UtilController, :show_password_reset
post "/password_reset", UtilController, :password_reset
get "/emoji", UtilController, :emoji
end
scope "/oauth", Pleroma.Web.OAuth do

View File

@ -1,6 +1,7 @@
defmodule Pleroma.Web.TwitterAPI.UtilController do
use Pleroma.Web, :controller
alias Pleroma.Web
alias Pleroma.Formatter
alias Pleroma.{Repo, PasswordResetToken, User}
@ -68,4 +69,8 @@ defmodule Pleroma.Web.TwitterAPI.UtilController do
_ -> json(conn, version)
end
end
def emoji(conn, _params) do
json conn, Formatter.get_custom_emoji()
end
end