aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRoger Braun <rbraun@Bobble.local>2017-10-23 16:28:32 +0200
committerRoger Braun <rbraun@Bobble.local>2017-10-23 16:28:32 +0200
commit5912dd0f5dfaecc3732d2174867490c5a6b88c11 (patch)
tree49604bde6717dc628d85858d03a70824933cbb32 /lib
parent64bc38e009208fa4f4409f6930d5117dc291c2f5 (diff)
parentd0d50f8a6b1d22b4c45f7e2c2b2757d188f29349 (diff)
downloadpleroma-5912dd0f5dfaecc3732d2174867490c5a6b88c11.tar.gz
Merge branch 'develop' of ssh.gitgud.io:lambadalambda/pleroma into develop
Diffstat (limited to 'lib')
-rw-r--r--lib/pleroma/formatter.ex5
-rw-r--r--lib/pleroma/web/router.ex7
-rw-r--r--lib/pleroma/web/twitter_api/controllers/util_controller.ex5
3 files changed, 14 insertions, 3 deletions
diff --git a/lib/pleroma/formatter.ex b/lib/pleroma/formatter.ex
index a5eb3b268..f062d9a58 100644
--- a/lib/pleroma/formatter.ex
+++ b/lib/pleroma/formatter.ex
@@ -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
diff --git a/lib/pleroma/web/router.ex b/lib/pleroma/web/router.ex
index 8497685a6..cb818b3cc 100644
--- a/lib/pleroma/web/router.ex
+++ b/lib/pleroma/web/router.ex
@@ -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
diff --git a/lib/pleroma/web/twitter_api/controllers/util_controller.ex b/lib/pleroma/web/twitter_api/controllers/util_controller.ex
index 11d8fa6c2..792ae2a64 100644
--- a/lib/pleroma/web/twitter_api/controllers/util_controller.ex
+++ b/lib/pleroma/web/twitter_api/controllers/util_controller.ex
@@ -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