Add migration and schema for accounts

Add account name availability endpoint
This commit is contained in:
Pim Kunis 2021-06-22 23:04:37 +02:00
parent e6e4472b94
commit 6e039524a4
10 changed files with 107 additions and 43 deletions

View file

@ -1,35 +0,0 @@
defmodule MatrixServerWeb.UserSocket do
use Phoenix.Socket
## Channels
# channel "room:*", MatrixServerWeb.RoomChannel
# Socket params are passed from the client and can
# be used to verify and authenticate a user. After
# verification, you can put default assigns into
# the socket that will be set for all channels, ie
#
# {:ok, assign(socket, :user_id, verified_user_id)}
#
# To deny connection, return `:error`.
#
# See `Phoenix.Token` documentation for examples in
# performing token verification on connect.
@impl true
def connect(_params, socket, _connect_info) do
{:ok, socket}
end
# Socket id's are topics that allow you to identify all sockets for a given user:
#
# def id(socket), do: "user_socket:#{socket.assigns.user_id}"
#
# Would allow you to broadcast a "disconnect" event and terminate
# all active sockets and channels for a given user:
#
# MatrixServerWeb.Endpoint.broadcast("user_socket:#{user.id}", "disconnect", %{})
#
# Returning `nil` makes this socket anonymous.
@impl true
def id(_socket), do: nil
end

View file

@ -0,0 +1,28 @@
defmodule MatrixServerWeb.AccountController do
use MatrixServerWeb, :controller
alias MatrixServer.Account
def register(conn, _params) do
conn
end
def available(conn, params) do
localpart = Map.get(params, "username", "")
{status, data} =
case Account.available?(localpart) do
:ok ->
{200, %{available: true}}
{:error, :user_in_use} ->
{400, %{errcode: "M_USER_IN_USE", error: "Desired user ID is already taken."}}
{:error, :invalid_username} ->
{400, %{errocode: "M_INVALID_USERNAME", error: "Desired user ID is invalid."}}
end
conn
|> put_status(status)
|> json(data)
end
end

View file

@ -10,10 +10,6 @@ defmodule MatrixServerWeb.Endpoint do
signing_salt: "IGPHtnAo"
]
socket "/socket", MatrixServerWeb.UserSocket,
websocket: true,
longpoll: false
# Serve at "/" the static files from "priv/static" directory.
#
# You should set gzip to true if you are running phx.digest

View file

@ -5,7 +5,12 @@ defmodule MatrixServerWeb.Router do
plug :accepts, ["json"]
end
scope "/api", MatrixServerWeb do
scope "/_matrix", MatrixServerWeb do
pipe_through :api
scope "/client/r0", as: :client do
post "/register", AccountController, :register
get "/register/available", AccountController, :available
end
end
end