2021-06-22 12:09:25 +00:00
|
|
|
defmodule MatrixServerWeb.Router do
|
|
|
|
use MatrixServerWeb, :router
|
|
|
|
|
2021-06-25 23:14:09 +00:00
|
|
|
alias MatrixServerWeb.Plug.Authenticate
|
|
|
|
|
2021-06-25 22:29:33 +00:00
|
|
|
pipeline :public do
|
2021-06-22 12:09:25 +00:00
|
|
|
plug :accepts, ["json"]
|
|
|
|
end
|
|
|
|
|
2021-06-25 22:29:33 +00:00
|
|
|
pipeline :authenticated do
|
|
|
|
plug :accepts, ["json"]
|
2021-06-25 23:14:09 +00:00
|
|
|
plug Authenticate
|
2021-06-25 22:29:33 +00:00
|
|
|
end
|
|
|
|
|
2021-06-22 21:04:37 +00:00
|
|
|
scope "/_matrix", MatrixServerWeb do
|
2021-06-25 22:29:33 +00:00
|
|
|
pipe_through :public
|
2021-06-22 21:04:37 +00:00
|
|
|
|
|
|
|
scope "/client/r0", as: :client do
|
2021-06-25 15:43:12 +00:00
|
|
|
post "/register", AuthController, :register
|
|
|
|
get "/login", AuthController, :login
|
2021-06-22 21:04:37 +00:00
|
|
|
get "/register/available", AccountController, :available
|
|
|
|
end
|
2021-06-22 23:49:47 +00:00
|
|
|
|
|
|
|
get "/client/versions", InfoController, :versions
|
2021-06-22 12:09:25 +00:00
|
|
|
end
|
2021-06-25 22:29:33 +00:00
|
|
|
|
|
|
|
scope "/_matrix", MatrixServerWeb do
|
|
|
|
pipe_through :authenticated
|
|
|
|
|
|
|
|
scope "/client/r0", as: :client do
|
|
|
|
get "/account/whoami", AccountController, :whoami
|
|
|
|
end
|
|
|
|
end
|
2021-06-22 12:09:25 +00:00
|
|
|
end
|