2018-11-06 09:30:27 +00:00
|
|
|
defmodule MobilizonWeb.Resolvers.Event do
|
2018-11-07 15:09:28 +00:00
|
|
|
alias Mobilizon.Service.ActivityPub
|
2018-11-12 22:30:47 +00:00
|
|
|
alias Mobilizon.Actors
|
2018-11-07 15:09:28 +00:00
|
|
|
|
2018-11-06 09:30:27 +00:00
|
|
|
def list_events(_parent, _args, _resolution) do
|
|
|
|
{:ok, Mobilizon.Events.list_events()}
|
|
|
|
end
|
|
|
|
|
|
|
|
def find_event(_parent, %{uuid: uuid}, _resolution) do
|
|
|
|
case Mobilizon.Events.get_event_full_by_uuid(uuid) do
|
|
|
|
nil ->
|
|
|
|
{:error, "Event with UUID #{uuid} not found"}
|
|
|
|
|
|
|
|
event ->
|
|
|
|
{:ok, event}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-12 22:30:47 +00:00
|
|
|
@doc """
|
|
|
|
List participant for event (separate request)
|
|
|
|
"""
|
2018-11-06 09:30:27 +00:00
|
|
|
def list_participants_for_event(_parent, %{uuid: uuid}, _resolution) do
|
|
|
|
{:ok, Mobilizon.Events.list_participants_for_event(uuid)}
|
|
|
|
end
|
|
|
|
|
2018-11-12 22:30:47 +00:00
|
|
|
@doc """
|
|
|
|
List participants for event (through an event request)
|
|
|
|
"""
|
|
|
|
def list_participants_for_event(%{uuid: uuid}, _args, _resolution) do
|
|
|
|
{:ok, Mobilizon.Events.list_participants_for_event(uuid)}
|
|
|
|
end
|
|
|
|
|
2018-11-06 09:30:27 +00:00
|
|
|
@doc """
|
|
|
|
Search events by title
|
|
|
|
"""
|
|
|
|
def search_events(_parent, %{search: search, page: page, limit: limit}, _resolution) do
|
|
|
|
{:ok, Mobilizon.Events.find_events_by_name(search, page, limit)}
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Search events and actors by title
|
|
|
|
"""
|
|
|
|
def search_events_and_actors(_parent, %{search: search, page: page, limit: limit}, _resolution) do
|
2018-11-12 22:30:47 +00:00
|
|
|
search = String.trim(search)
|
2018-11-07 15:09:42 +00:00
|
|
|
|
2018-11-06 09:30:27 +00:00
|
|
|
found =
|
2018-11-07 15:09:28 +00:00
|
|
|
case String.contains?(search, "@") do
|
|
|
|
true ->
|
|
|
|
with {:ok, actor} <- ActivityPub.find_or_make_actor_from_nickname(search) do
|
|
|
|
actor
|
|
|
|
else
|
|
|
|
{:error, _err} ->
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
Mobilizon.Events.find_events_by_name(search, page, limit) ++
|
|
|
|
Mobilizon.Actors.find_actors_by_username_or_name(search, page, limit)
|
|
|
|
end
|
2018-11-06 09:30:27 +00:00
|
|
|
|
|
|
|
require Logger
|
|
|
|
Logger.debug(inspect(found))
|
|
|
|
{:ok, found}
|
|
|
|
end
|
|
|
|
|
|
|
|
def create_event(_parent, args, %{context: %{current_user: user}}) do
|
2018-11-12 22:36:51 +00:00
|
|
|
organizer_actor_id = Map.get(args, :organizer_actor_id) || Actors.get_actor_for_user(user).id
|
|
|
|
args = args |> Map.put(:organizer_actor_id, organizer_actor_id)
|
2018-11-06 09:30:27 +00:00
|
|
|
Mobilizon.Events.create_event(args)
|
|
|
|
end
|
|
|
|
|
|
|
|
def create_event(_parent, _args, _resolution) do
|
|
|
|
{:error, "You need to be logged-in to create events"}
|
|
|
|
end
|
|
|
|
end
|