2018-11-06 10:30:27 +01:00
|
|
|
defmodule MobilizonWeb.Resolvers.User do
|
2019-01-03 14:59:59 +01:00
|
|
|
@moduledoc """
|
|
|
|
Handles the user-related GraphQL calls
|
|
|
|
"""
|
2019-09-08 00:05:54 +02:00
|
|
|
|
2019-09-18 17:32:37 +02:00
|
|
|
alias Mobilizon.{Actors, Config, Users, Events}
|
2019-03-05 17:23:05 +01:00
|
|
|
alias Mobilizon.Actors.Actor
|
2019-03-14 15:00:34 +01:00
|
|
|
alias Mobilizon.Service.Users.{ResetPassword, Activation}
|
2019-09-08 00:05:54 +02:00
|
|
|
alias Mobilizon.Users.User
|
|
|
|
|
2019-03-06 18:45:26 +01:00
|
|
|
import Mobilizon.Users.Guards
|
2019-09-08 00:05:54 +02:00
|
|
|
|
2018-11-28 17:16:23 +01:00
|
|
|
require Logger
|
2018-11-06 10:30:27 +01:00
|
|
|
|
|
|
|
@doc """
|
|
|
|
Find an user by it's ID
|
|
|
|
"""
|
|
|
|
def find_user(_parent, %{id: id}, _resolution) do
|
2019-03-05 17:23:05 +01:00
|
|
|
Users.get_user_with_actors(id)
|
2018-11-06 10:30:27 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Return current logged-in user
|
|
|
|
"""
|
2019-08-12 16:04:16 +02:00
|
|
|
def get_current_user(
|
|
|
|
_parent,
|
|
|
|
_args,
|
|
|
|
%{
|
|
|
|
context: %{
|
|
|
|
current_user: user
|
|
|
|
}
|
|
|
|
}
|
|
|
|
) do
|
2018-11-06 10:30:27 +01:00
|
|
|
{:ok, user}
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_current_user(_parent, _args, _resolution) do
|
|
|
|
{:error, "You need to be logged-in to view current user"}
|
|
|
|
end
|
|
|
|
|
2019-03-01 11:41:28 +01:00
|
|
|
@doc """
|
|
|
|
List instance users
|
|
|
|
"""
|
|
|
|
def list_and_count_users(
|
|
|
|
_parent,
|
|
|
|
%{page: page, limit: limit, sort: sort, direction: direction},
|
2019-03-06 18:45:26 +01:00
|
|
|
%{
|
2019-08-12 16:04:16 +02:00
|
|
|
context: %{
|
|
|
|
current_user: %User{
|
|
|
|
role: role
|
|
|
|
}
|
|
|
|
}
|
2019-03-06 18:45:26 +01:00
|
|
|
}
|
|
|
|
)
|
|
|
|
when is_moderator(role) do
|
2019-03-05 17:23:05 +01:00
|
|
|
total = Task.async(&Users.count_users/0)
|
|
|
|
elements = Task.async(fn -> Users.list_users(page, limit, sort, direction) end)
|
2019-03-01 11:41:28 +01:00
|
|
|
|
|
|
|
{:ok, %{total: Task.await(total), elements: Task.await(elements)}}
|
|
|
|
end
|
|
|
|
|
2019-03-06 18:45:26 +01:00
|
|
|
def list_and_count_users(_parent, _args, _resolution),
|
|
|
|
do: {:error, "You need to have admin access to list users"}
|
|
|
|
|
2018-11-12 23:30:47 +01:00
|
|
|
@doc """
|
2018-11-06 10:30:27 +01:00
|
|
|
Login an user. Returns a token and the user
|
|
|
|
"""
|
|
|
|
def login_user(_parent, %{email: email, password: password}, _resolution) do
|
2019-03-05 17:23:05 +01:00
|
|
|
with {:ok, %User{} = user} <- Users.get_user_by_email(email, true),
|
2019-08-12 17:41:41 +02:00
|
|
|
{:ok, %{access_token: access_token, refresh_token: refresh_token}} <-
|
|
|
|
Users.authenticate(%{user: user, password: password}) do
|
2019-08-12 16:04:16 +02:00
|
|
|
{:ok, %{access_token: access_token, refresh_token: refresh_token, user: user}}
|
2018-11-06 10:30:27 +01:00
|
|
|
else
|
|
|
|
{:error, :user_not_found} ->
|
|
|
|
{:error, "User with email not found"}
|
|
|
|
|
|
|
|
{:error, :unauthorized} ->
|
2019-01-21 15:08:22 +01:00
|
|
|
{:error, "Impossible to authenticate, either your email or password are invalid."}
|
2018-11-06 10:30:27 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-08-12 16:04:16 +02:00
|
|
|
@doc """
|
|
|
|
Refresh a token
|
|
|
|
"""
|
|
|
|
def refresh_token(
|
|
|
|
_parent,
|
|
|
|
%{
|
|
|
|
refresh_token: refresh_token
|
|
|
|
},
|
|
|
|
_context
|
|
|
|
) do
|
2019-08-12 17:41:41 +02:00
|
|
|
with {:ok, user, _claims} <- MobilizonWeb.Guardian.resource_from_token(refresh_token),
|
|
|
|
{:ok, _old, {exchanged_token, _claims}} <-
|
2019-08-13 08:43:37 +02:00
|
|
|
MobilizonWeb.Guardian.exchange(refresh_token, ["access", "refresh"], "access"),
|
2019-08-12 16:04:16 +02:00
|
|
|
{:ok, refresh_token} <- Users.generate_refresh_token(user) do
|
|
|
|
{:ok, %{access_token: exchanged_token, refresh_token: refresh_token}}
|
|
|
|
else
|
|
|
|
{:error, message} ->
|
|
|
|
Logger.debug("Cannot refresh user token: #{inspect(message)}")
|
|
|
|
{:error, "Cannot refresh the token"}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def refresh_token(_parent, _params, _context),
|
|
|
|
do: {:error, "You need to have an existing token to get a refresh token"}
|
|
|
|
|
2018-11-12 23:30:47 +01:00
|
|
|
@doc """
|
2019-03-22 10:53:38 +01:00
|
|
|
Register an user:
|
|
|
|
- check registrations are enabled
|
2018-11-06 10:30:27 +01:00
|
|
|
- create the user
|
|
|
|
- send a validation email to the user
|
|
|
|
"""
|
2019-01-25 13:59:58 +01:00
|
|
|
@spec create_user(any(), map(), any()) :: tuple()
|
|
|
|
def create_user(_parent, args, _resolution) do
|
2019-09-09 09:35:50 +02:00
|
|
|
with {:registrations_open, true} <-
|
|
|
|
{:registrations_open, Config.instance_registrations_open?()},
|
2019-03-22 10:53:38 +01:00
|
|
|
{:ok, %User{} = user} <- Users.register(args) do
|
2019-03-05 17:23:05 +01:00
|
|
|
Activation.send_confirmation_email(user)
|
2018-11-29 17:43:22 +01:00
|
|
|
{:ok, user}
|
2019-03-22 10:53:38 +01:00
|
|
|
else
|
|
|
|
{:registrations_open, false} ->
|
|
|
|
{:error, "Registrations are not enabled"}
|
|
|
|
|
2019-09-07 19:54:11 +02:00
|
|
|
error ->
|
|
|
|
error
|
2018-11-06 10:30:27 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Validate an user, get it's actor and a token
|
|
|
|
"""
|
|
|
|
def validate_user(_parent, %{token: token}, _resolution) do
|
2018-11-28 17:16:23 +01:00
|
|
|
with {:check_confirmation_token, {:ok, %User{} = user}} <-
|
2019-03-05 17:23:05 +01:00
|
|
|
{:check_confirmation_token, Activation.check_confirmation_token(token)},
|
|
|
|
{:get_actor, actor} <- {:get_actor, Users.get_actor_for_user(user)},
|
2019-08-12 17:41:41 +02:00
|
|
|
{:ok, %{access_token: access_token, refresh_token: refresh_token}} <-
|
|
|
|
Users.generate_tokens(user) do
|
|
|
|
{:ok,
|
|
|
|
%{
|
|
|
|
access_token: access_token,
|
|
|
|
refresh_token: refresh_token,
|
|
|
|
user: Map.put(user, :default_actor, actor)
|
|
|
|
}}
|
2018-11-28 17:16:23 +01:00
|
|
|
else
|
2019-09-07 19:54:11 +02:00
|
|
|
error ->
|
2018-11-28 17:16:23 +01:00
|
|
|
Logger.info("Unable to validate user with token #{token}")
|
2019-09-07 19:54:11 +02:00
|
|
|
Logger.debug(inspect(error))
|
2019-01-25 13:59:58 +01:00
|
|
|
{:error, "Unable to validate user"}
|
2018-11-06 10:30:27 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Send the confirmation email again.
|
|
|
|
We only do this to accounts unconfirmed
|
|
|
|
"""
|
|
|
|
def resend_confirmation_email(_parent, %{email: email, locale: locale}, _resolution) do
|
2019-03-05 17:23:05 +01:00
|
|
|
with {:ok, user} <- Users.get_user_by_email(email, false),
|
2018-11-06 10:32:53 +01:00
|
|
|
{:ok, email} <-
|
2019-03-05 17:23:05 +01:00
|
|
|
Activation.resend_confirmation_email(user, locale) do
|
2018-11-06 10:30:27 +01:00
|
|
|
{:ok, email}
|
|
|
|
else
|
|
|
|
{:error, :user_not_found} ->
|
|
|
|
{:error, "No user to validate with this email was found"}
|
2018-11-06 10:32:53 +01:00
|
|
|
|
2018-11-06 10:30:27 +01:00
|
|
|
{:error, :email_too_soon} ->
|
|
|
|
{:error, "You requested again a confirmation email too soon"}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Send an email to reset the password from an user
|
|
|
|
"""
|
|
|
|
def send_reset_password(_parent, %{email: email, locale: locale}, _resolution) do
|
2019-03-05 17:23:05 +01:00
|
|
|
with {:ok, user} <- Users.get_user_by_email(email, true),
|
2018-11-27 17:54:54 +01:00
|
|
|
{:ok, %Bamboo.Email{} = _email_html} <-
|
2019-03-05 17:23:05 +01:00
|
|
|
ResetPassword.send_password_reset_email(user, locale) do
|
2018-11-06 10:30:27 +01:00
|
|
|
{:ok, email}
|
|
|
|
else
|
|
|
|
{:error, :user_not_found} ->
|
2018-11-27 17:54:54 +01:00
|
|
|
# TODO : implement rate limits for this endpoint
|
|
|
|
{:error, "No user with this email was found"}
|
2018-11-06 10:32:53 +01:00
|
|
|
|
2018-11-06 10:30:27 +01:00
|
|
|
{:error, :email_too_soon} ->
|
|
|
|
{:error, "You requested again a confirmation email too soon"}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Reset the password from an user
|
|
|
|
"""
|
|
|
|
def reset_password(_parent, %{password: password, token: token}, _resolution) do
|
|
|
|
with {:ok, %User{} = user} <-
|
2019-03-05 17:23:05 +01:00
|
|
|
ResetPassword.check_reset_password_token(password, token),
|
2019-08-12 17:41:41 +02:00
|
|
|
{:ok, %{access_token: access_token, refresh_token: refresh_token}} <-
|
|
|
|
Users.authenticate(%{user: user, password: password}) do
|
2019-08-12 16:04:16 +02:00
|
|
|
{:ok, %{access_token: access_token, refresh_token: refresh_token, user: user}}
|
2018-11-06 10:30:27 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-12 23:30:47 +01:00
|
|
|
@doc "Change an user default actor"
|
2019-08-12 16:04:16 +02:00
|
|
|
def change_default_actor(
|
|
|
|
_parent,
|
|
|
|
%{preferred_username: username},
|
|
|
|
%{
|
|
|
|
context: %{
|
|
|
|
current_user: user
|
|
|
|
}
|
|
|
|
}
|
|
|
|
) do
|
2018-11-29 17:43:22 +01:00
|
|
|
with %Actor{id: actor_id} <- Actors.get_local_actor_by_name(username),
|
|
|
|
{:user_actor, true} <-
|
2019-03-05 17:23:05 +01:00
|
|
|
{:user_actor, actor_id in Enum.map(Users.get_actors_for_user(user), & &1.id)},
|
|
|
|
%User{} = user <- Users.update_user_default_actor(user.id, actor_id) do
|
2018-11-29 17:43:22 +01:00
|
|
|
{:ok, user}
|
|
|
|
else
|
|
|
|
{:user_actor, _} ->
|
|
|
|
{:error, :actor_not_from_user}
|
|
|
|
|
2019-09-07 19:54:11 +02:00
|
|
|
_error ->
|
2018-11-29 17:43:22 +01:00
|
|
|
{:error, :unable_to_change_default_actor}
|
2018-11-06 10:30:27 +01:00
|
|
|
end
|
|
|
|
end
|
2019-09-18 17:32:37 +02:00
|
|
|
|
|
|
|
@doc """
|
|
|
|
Returns the list of events for all of this user's identities are going to
|
|
|
|
"""
|
|
|
|
def user_participations(_parent, args, %{
|
|
|
|
context: %{current_user: %User{id: user_id}}
|
|
|
|
}) do
|
|
|
|
with participations <-
|
|
|
|
Events.list_participations_for_user(
|
|
|
|
user_id,
|
|
|
|
Map.get(args, :after_datetime),
|
|
|
|
Map.get(args, :before_datetime),
|
|
|
|
Map.get(args, :page),
|
|
|
|
Map.get(args, :limit)
|
|
|
|
) do
|
|
|
|
{:ok, participations}
|
|
|
|
end
|
|
|
|
end
|
2018-11-06 10:30:27 +01:00
|
|
|
end
|