2f2c538cc9
Signed-off-by: Thomas Citharel <tcit@tcit.fr> Make Logger.debug calls lazy Signed-off-by: Thomas Citharel <tcit@tcit.fr> Add missing @moduledocs Signed-off-by: Thomas Citharel <tcit@tcit.fr> Refactor according to credo Signed-off-by: Thomas Citharel <tcit@tcit.fr> Final fixes and add credo to CI Signed-off-by: Thomas Citharel <tcit@tcit.fr> Closes #52
43 lines
1.1 KiB
Elixir
43 lines
1.1 KiB
Elixir
defmodule MobilizonWeb.Resolvers.Person do
|
|
@moduledoc """
|
|
Handles the person-related GraphQL calls
|
|
"""
|
|
alias Mobilizon.Actors
|
|
alias Mobilizon.Service.ActivityPub
|
|
|
|
@deprecated "Use find_person/3 or find_group/3 instead"
|
|
def find_actor(_parent, %{preferred_username: name}, _resolution) do
|
|
case ActivityPub.find_or_make_actor_from_nickname(name) do
|
|
{:ok, actor} ->
|
|
{:ok, actor}
|
|
|
|
_ ->
|
|
{:error, "Actor with name #{name} not found"}
|
|
end
|
|
end
|
|
|
|
@doc """
|
|
Find a person
|
|
"""
|
|
def find_person(_parent, %{preferred_username: name}, _resolution) do
|
|
case ActivityPub.find_or_make_person_from_nickname(name) do
|
|
{:ok, actor} ->
|
|
{:ok, actor}
|
|
|
|
_ ->
|
|
{:error, "Person with name #{name} not found"}
|
|
end
|
|
end
|
|
|
|
@doc """
|
|
Returns the current actor for the currently logged-in user
|
|
"""
|
|
def get_current_person(_parent, _args, %{context: %{current_user: user}}) do
|
|
{:ok, Actors.get_actor_for_user(user)}
|
|
end
|
|
|
|
def get_current_person(_parent, _args, _resolution) do
|
|
{:error, "You need to be logged-in to view current person"}
|
|
end
|
|
end
|