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
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
defmodule Pleroma.Web.TwitterAPI.UtilController do
use Pleroma.Web, :controller
alias Pleroma.Web
+ alias Pleroma.Formatter
alias Pleroma.{Repo, PasswordResetToken, User}
_ -> json(conn, version)
end
end
+
+ def emoji(conn, _params) do
+ json conn, Formatter.get_custom_emoji()
+ end
end