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-08-06 21:14:27 +00:00
|
|
|
pipeline :authenticate_client do
|
2021-06-25 22:29:33 +00:00
|
|
|
plug :accepts, ["json"]
|
2021-06-25 23:14:09 +00:00
|
|
|
plug Authenticate
|
2021-06-25 22:29:33 +00:00
|
|
|
end
|
|
|
|
|
2021-08-06 21:14:27 +00:00
|
|
|
pipeline :authenticate_server do
|
|
|
|
plug :accepts, ["json"]
|
|
|
|
# TODO: Add plug to verify peer.
|
|
|
|
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
|
|
|
|
2021-08-06 21:14:27 +00:00
|
|
|
scope "/client", Client do
|
|
|
|
scope "/r0" do
|
|
|
|
post "/register", RegisterController, :register
|
|
|
|
get "/register/available", AccountController, :available
|
|
|
|
get "/login", LoginController, :login_types
|
|
|
|
post "/login", LoginController, :login
|
|
|
|
end
|
|
|
|
|
|
|
|
get "/versions", InfoController, :versions
|
2021-06-22 21:04:37 +00:00
|
|
|
end
|
2021-06-22 23:49:47 +00:00
|
|
|
|
2021-08-06 21:14:27 +00:00
|
|
|
scope "/key/v2", Federation do
|
2021-08-06 13:52:03 +00:00
|
|
|
get "/server", KeyController, :get_signing_keys
|
|
|
|
end
|
2021-06-22 12:09:25 +00:00
|
|
|
end
|
2021-06-25 22:29:33 +00:00
|
|
|
|
2021-08-06 21:14:27 +00:00
|
|
|
scope "/_matrix", MatrixServerWeb.Client do
|
|
|
|
pipe_through :authenticate_client
|
2021-06-25 22:29:33 +00:00
|
|
|
|
2021-07-13 15:08:07 +00:00
|
|
|
scope "/client/r0" do
|
2021-06-25 22:29:33 +00:00
|
|
|
get "/account/whoami", AccountController, :whoami
|
2021-06-27 20:24:54 +00:00
|
|
|
post "/logout", AccountController, :logout
|
|
|
|
post "/logout/all", AccountController, :logout_all
|
2021-07-10 21:16:00 +00:00
|
|
|
post "/createRoom", RoomController, :create
|
2021-07-30 13:56:24 +00:00
|
|
|
|
|
|
|
scope "/directory/room" do
|
|
|
|
put "/:alias", AliasesController, :create
|
|
|
|
end
|
2021-06-25 22:29:33 +00:00
|
|
|
end
|
|
|
|
end
|
2021-06-26 20:02:18 +00:00
|
|
|
|
2021-08-06 21:14:27 +00:00
|
|
|
scope "/_matrix", MatrixServerWeb.Federation do
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
scope "/", MatrixServerWeb.Client do
|
2021-06-26 20:02:18 +00:00
|
|
|
match :*, "/*path", InfoController, :unrecognized
|
|
|
|
end
|
2021-06-22 12:09:25 +00:00
|
|
|
end
|