2018-10-11 17:37:39 +02:00
|
|
|
defmodule Mobilizon.Events do
|
2017-12-08 09:58:14 +01:00
|
|
|
@moduledoc """
|
|
|
|
The Events context.
|
|
|
|
"""
|
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
import Geo.PostGIS
|
|
|
|
|
2019-09-08 01:49:56 +02:00
|
|
|
import Ecto.Query
|
2019-09-13 01:01:17 +02:00
|
|
|
import EctoEnum
|
2019-09-08 01:49:56 +02:00
|
|
|
|
|
|
|
import Mobilizon.Storage.Ecto
|
2017-12-08 09:58:14 +01:00
|
|
|
|
2018-10-11 17:37:39 +02:00
|
|
|
alias Mobilizon.Actors.Actor
|
|
|
|
alias Mobilizon.Addresses.Address
|
2019-09-16 02:07:44 +02:00
|
|
|
|
|
|
|
alias Mobilizon.Events.{
|
|
|
|
Comment,
|
|
|
|
Event,
|
|
|
|
FeedToken,
|
|
|
|
Participant,
|
|
|
|
Session,
|
|
|
|
Tag,
|
|
|
|
TagRelation,
|
|
|
|
Track
|
|
|
|
}
|
|
|
|
|
2019-09-08 01:49:56 +02:00
|
|
|
alias Mobilizon.Storage.{Page, Repo}
|
|
|
|
alias Mobilizon.Users.User
|
2017-12-08 09:58:14 +01:00
|
|
|
|
2019-09-13 01:01:17 +02:00
|
|
|
defenum(EventVisibility, :event_visibility, [
|
|
|
|
:public,
|
|
|
|
:unlisted,
|
|
|
|
:restricted,
|
|
|
|
:private
|
|
|
|
])
|
|
|
|
|
|
|
|
defenum(JoinOptions, :join_options, [
|
|
|
|
:free,
|
|
|
|
:restricted,
|
|
|
|
:invite
|
|
|
|
])
|
|
|
|
|
|
|
|
defenum(EventStatus, :event_status, [
|
|
|
|
:tentative,
|
|
|
|
:confirmed,
|
|
|
|
:cancelled
|
|
|
|
])
|
|
|
|
|
|
|
|
defenum(EventCategory, :event_category, [
|
|
|
|
:business,
|
|
|
|
:conference,
|
|
|
|
:birthday,
|
|
|
|
:demonstration,
|
|
|
|
:meeting
|
|
|
|
])
|
|
|
|
|
|
|
|
defenum(CommentVisibility, :comment_visibility, [
|
|
|
|
:public,
|
|
|
|
:unlisted,
|
|
|
|
:private,
|
|
|
|
:moderated,
|
|
|
|
:invite
|
|
|
|
])
|
|
|
|
|
|
|
|
defenum(CommentModeration, :comment_moderation, [
|
|
|
|
:allow_all,
|
|
|
|
:moderated,
|
|
|
|
:closed
|
|
|
|
])
|
|
|
|
|
|
|
|
defenum(ParticipantRole, :participant_role, [
|
|
|
|
:not_approved,
|
2019-09-30 13:48:47 +02:00
|
|
|
:rejected,
|
2019-09-13 01:01:17 +02:00
|
|
|
:participant,
|
|
|
|
:moderator,
|
|
|
|
:administrator,
|
|
|
|
:creator
|
|
|
|
])
|
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@public_visibility [:public, :unlisted]
|
|
|
|
|
|
|
|
@event_preloads [
|
|
|
|
:organizer_actor,
|
|
|
|
:sessions,
|
|
|
|
:tracks,
|
|
|
|
:tags,
|
|
|
|
:participants,
|
|
|
|
:physical_address,
|
|
|
|
:picture
|
|
|
|
]
|
|
|
|
|
|
|
|
@comment_preloads [:actor, :attributed_to, :in_reply_to_comment]
|
|
|
|
|
2019-04-11 18:25:32 +02:00
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Gets a single event.
|
2019-04-11 18:25:32 +02:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec get_event(integer | String.t()) :: {:ok, Event.t()} | {:error, :event_not_found}
|
|
|
|
def get_event(id) do
|
|
|
|
case Repo.get(Event, id) do
|
|
|
|
%Event{} = event ->
|
|
|
|
{:ok, event}
|
2018-12-04 12:06:34 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
nil ->
|
|
|
|
{:error, :event_not_found}
|
2018-08-24 12:31:41 +02:00
|
|
|
end
|
2018-07-09 14:19:24 +02:00
|
|
|
end
|
|
|
|
|
2017-12-08 09:58:14 +01:00
|
|
|
@doc """
|
|
|
|
Gets a single event.
|
2019-09-16 02:07:44 +02:00
|
|
|
Raises `Ecto.NoResultsError` if the event does not exist.
|
2017-12-08 09:58:14 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec get_event!(integer | String.t()) :: Event.t()
|
2017-12-08 09:58:14 +01:00
|
|
|
def get_event!(id), do: Repo.get!(Event, id)
|
|
|
|
|
2019-01-25 17:06:57 +01:00
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Gets a single event, with all associations loaded.
|
2019-01-25 17:06:57 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec get_event_with_preload(integer | String.t()) ::
|
|
|
|
{:ok, Event.t()} | {:error, :event_not_found}
|
|
|
|
def get_event_with_preload(id) do
|
2019-01-25 17:06:57 +01:00
|
|
|
case Repo.get(Event, id) do
|
2019-09-16 02:07:44 +02:00
|
|
|
%Event{} = event ->
|
|
|
|
{:ok, Repo.preload(event, @event_preloads)}
|
2019-01-25 17:06:57 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
nil ->
|
|
|
|
{:error, :event_not_found}
|
|
|
|
end
|
2018-05-17 11:32:23 +02:00
|
|
|
end
|
|
|
|
|
2018-08-24 11:34:00 +02:00
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Gets a single event, with all associations loaded.
|
|
|
|
Raises `Ecto.NoResultsError` if the event does not exist.
|
2018-08-24 11:34:00 +02:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec get_event_with_preload!(integer | String.t()) :: Event.t()
|
|
|
|
def get_event_with_preload!(id) do
|
|
|
|
Event
|
|
|
|
|> Repo.get!(id)
|
|
|
|
|> Repo.preload(@event_preloads)
|
2018-08-24 11:34:00 +02:00
|
|
|
end
|
|
|
|
|
2018-01-16 19:45:09 +01:00
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Gets an event by its URL.
|
2018-01-16 19:45:09 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec get_event_by_url(String.t()) :: Event.t() | nil
|
|
|
|
def get_event_by_url(url) do
|
|
|
|
url
|
|
|
|
|> event_by_url_query()
|
2019-01-14 15:56:07 +01:00
|
|
|
|> Repo.one()
|
2018-01-16 19:45:09 +01:00
|
|
|
end
|
|
|
|
|
2018-05-17 11:32:23 +02:00
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Gets an event by its URL.
|
|
|
|
Raises `Ecto.NoResultsError` if the event does not exist.
|
2018-05-17 11:32:23 +02:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec get_event_by_url!(String.t()) :: Event.t()
|
|
|
|
def get_event_by_url!(url) do
|
|
|
|
url
|
|
|
|
|> event_by_url_query()
|
|
|
|
|> Repo.one!()
|
2018-05-17 11:32:23 +02:00
|
|
|
end
|
|
|
|
|
2019-08-14 17:45:11 +02:00
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Gets an event by its URL, with all associations loaded.
|
2019-08-14 17:45:11 +02:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec get_public_event_by_url_with_preload(String.t()) ::
|
|
|
|
{:ok, Event.t()} | {:error, :event_not_found}
|
|
|
|
def get_public_event_by_url_with_preload(url) do
|
|
|
|
event =
|
|
|
|
url
|
|
|
|
|> event_by_url_query()
|
|
|
|
|> filter_public_visibility()
|
2019-10-02 17:59:07 +02:00
|
|
|
|> filter_draft()
|
2019-09-16 02:07:44 +02:00
|
|
|
|> preload_for_event()
|
|
|
|
|> Repo.one()
|
|
|
|
|
|
|
|
case event do
|
2019-08-14 17:45:11 +02:00
|
|
|
%Event{} = event ->
|
2019-09-16 02:07:44 +02:00
|
|
|
{:ok, event}
|
2019-08-14 17:45:11 +02:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
nil ->
|
|
|
|
{:error, :event_not_found}
|
2018-12-14 17:41:55 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Gets an event by its URL, with all associations loaded.
|
|
|
|
Raises `Ecto.NoResultsError` if the event does not exist.
|
2018-12-14 17:41:55 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec get_public_event_by_url_with_preload(String.t()) :: Event.t()
|
|
|
|
def get_public_event_by_url_with_preload!(url) do
|
|
|
|
url
|
|
|
|
|> event_by_url_query()
|
|
|
|
|> filter_public_visibility()
|
2019-10-02 17:59:07 +02:00
|
|
|
|> filter_draft()
|
2019-09-16 02:07:44 +02:00
|
|
|
|> preload_for_event()
|
|
|
|
|> Repo.one!()
|
2018-05-17 11:32:23 +02:00
|
|
|
end
|
|
|
|
|
2018-11-06 10:30:27 +01:00
|
|
|
@doc """
|
2019-10-02 17:59:07 +02:00
|
|
|
Gets a public event by its UUID, with all associations loaded.
|
2018-11-06 10:30:27 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec get_public_event_by_uuid_with_preload(String.t()) :: Event.t() | nil
|
|
|
|
def get_public_event_by_uuid_with_preload(uuid) do
|
|
|
|
uuid
|
|
|
|
|> event_by_uuid_query()
|
|
|
|
|> filter_public_visibility()
|
2019-10-02 17:59:07 +02:00
|
|
|
|> filter_draft()
|
|
|
|
|> preload_for_event()
|
|
|
|
|> Repo.one()
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Gets an event by its UUID, with all associations loaded.
|
|
|
|
"""
|
|
|
|
@spec get_own_event_by_uuid_with_preload(String.t(), integer()) :: Event.t() | nil
|
|
|
|
def get_own_event_by_uuid_with_preload(uuid, user_id) do
|
|
|
|
uuid
|
|
|
|
|> event_by_uuid_query()
|
|
|
|
|> user_events_query(user_id)
|
2019-09-16 02:07:44 +02:00
|
|
|
|> preload_for_event()
|
|
|
|
|> Repo.one()
|
2018-11-06 10:30:27 +01:00
|
|
|
end
|
|
|
|
|
2018-05-30 14:27:21 +02:00
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Gets an actor's eventual upcoming public event.
|
2018-05-30 14:27:21 +02:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec get_upcoming_public_event_for_actor(Actor.t(), String.t() | nil) :: Event.t() | nil
|
|
|
|
def get_upcoming_public_event_for_actor(%Actor{id: actor_id}, not_event_uuid \\ nil) do
|
|
|
|
actor_id
|
|
|
|
|> upcoming_public_event_for_actor_query()
|
|
|
|
|> filter_public_visibility()
|
|
|
|
|> filter_not_event_uuid(not_event_uuid)
|
2019-10-02 17:59:07 +02:00
|
|
|
|> filter_draft()
|
2019-09-16 02:07:44 +02:00
|
|
|
|> Repo.one()
|
2018-05-30 14:27:21 +02:00
|
|
|
end
|
|
|
|
|
2017-12-08 09:58:14 +01:00
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Creates an event.
|
2017-12-08 09:58:14 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec create_event(map) :: {:ok, Event.t()} | {:error, Ecto.Changeset.t()}
|
2017-12-08 09:58:14 +01:00
|
|
|
def create_event(attrs \\ %{}) do
|
2019-10-02 17:59:07 +02:00
|
|
|
with {:ok, %Event{draft: false} = event} <- do_create_event(attrs),
|
2018-11-06 10:30:27 +01:00
|
|
|
{:ok, %Participant{} = _participant} <-
|
2019-10-02 17:59:07 +02:00
|
|
|
create_participant(%{
|
2018-12-14 17:41:55 +01:00
|
|
|
actor_id: event.organizer_actor_id,
|
2019-02-07 16:37:40 +01:00
|
|
|
role: :creator,
|
2018-11-06 10:30:27 +01:00
|
|
|
event_id: event.id
|
2019-10-02 17:59:07 +02:00
|
|
|
}) do
|
2019-07-26 11:30:28 +02:00
|
|
|
{:ok, event}
|
2019-10-02 17:59:07 +02:00
|
|
|
else
|
|
|
|
# We don't create a creator participant if the event is a draft
|
|
|
|
{:ok, %Event{draft: true} = event} -> {:ok, event}
|
|
|
|
err -> err
|
2019-07-26 11:30:28 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec do_create_event(map) :: {:ok, Event.t()} | {:error, Ecto.Changeset.t()}
|
2019-07-26 11:30:28 +02:00
|
|
|
defp do_create_event(attrs) do
|
2019-09-16 02:07:44 +02:00
|
|
|
with {:ok, %Event{} = event} <-
|
|
|
|
%Event{}
|
|
|
|
|> Event.changeset(attrs)
|
|
|
|
|> Repo.insert(),
|
2019-07-30 10:35:29 +02:00
|
|
|
%Event{} = event <-
|
2019-09-16 02:07:44 +02:00
|
|
|
Repo.preload(event, [:tags, :organizer_actor, :physical_address, :picture]),
|
2019-07-26 11:30:28 +02:00
|
|
|
{:has_tags, true, _} <- {:has_tags, Map.has_key?(attrs, "tags"), event} do
|
|
|
|
event
|
|
|
|
|> Ecto.Changeset.change()
|
|
|
|
|> Ecto.Changeset.put_assoc(:tags, attrs["tags"])
|
|
|
|
|> Repo.update()
|
|
|
|
else
|
|
|
|
{:has_tags, false, event} ->
|
2019-09-16 02:07:44 +02:00
|
|
|
{:ok, event}
|
2019-07-26 11:30:28 +02:00
|
|
|
|
|
|
|
error ->
|
|
|
|
error
|
2018-06-14 17:25:55 +02:00
|
|
|
end
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Updates an event.
|
2017-12-08 09:58:14 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec update_event(Event.t(), map) :: {:ok, Event.t()} | {:error, Ecto.Changeset.t()}
|
2019-10-02 17:59:07 +02:00
|
|
|
def update_event(
|
|
|
|
%Event{draft: old_draft_status, id: event_id, organizer_actor_id: organizer_actor_id} =
|
|
|
|
old_event,
|
|
|
|
attrs
|
|
|
|
) do
|
2019-09-30 18:18:04 +02:00
|
|
|
with %Ecto.Changeset{changes: changes} = changeset <-
|
|
|
|
old_event |> Repo.preload(:tags) |> Event.update_changeset(attrs) do
|
2019-10-02 17:59:07 +02:00
|
|
|
with {:ok, %Event{draft: new_draft_status} = new_event} <- Repo.update(changeset) do
|
|
|
|
# If the event is no longer a draft
|
|
|
|
if old_draft_status == true && new_draft_status == false do
|
|
|
|
{:ok, %Participant{} = _participant} =
|
|
|
|
create_participant(%{
|
|
|
|
event_id: event_id,
|
|
|
|
role: :creator,
|
|
|
|
actor_id: organizer_actor_id
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2019-10-14 15:44:16 +02:00
|
|
|
Cachex.del(:ics, "event_#{new_event.uuid}")
|
|
|
|
|
2019-09-30 18:18:04 +02:00
|
|
|
Mobilizon.Service.Events.Tool.calculate_event_diff_and_send_notifications(
|
|
|
|
old_event,
|
|
|
|
new_event,
|
|
|
|
changes
|
|
|
|
)
|
|
|
|
|
|
|
|
{:ok, new_event}
|
|
|
|
end
|
|
|
|
end
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Deletes an event.
|
|
|
|
"""
|
|
|
|
@spec delete_event(Event.t()) :: {:ok, Event.t()} | {:error, Ecto.Changeset.t()}
|
|
|
|
def delete_event(%Event{} = event), do: Repo.delete(event)
|
2017-12-08 09:58:14 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@doc """
|
|
|
|
Deletes an event.
|
|
|
|
Raises an exception if it fails.
|
|
|
|
"""
|
|
|
|
@spec delete_event(Event.t()) :: Event.t()
|
|
|
|
def delete_event!(%Event{} = event), do: Repo.delete!(event)
|
2017-12-08 09:58:14 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@doc """
|
|
|
|
Returns the list of events.
|
2017-12-08 09:58:14 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec list_events(integer | nil, integer | nil, atom, atom, boolean, boolean) :: [Event.t()]
|
|
|
|
def list_events(
|
|
|
|
page \\ nil,
|
|
|
|
limit \\ nil,
|
|
|
|
sort \\ :begins_on,
|
|
|
|
direction \\ :asc,
|
|
|
|
is_unlisted \\ false,
|
|
|
|
is_future \\ true
|
|
|
|
) do
|
2019-09-18 00:37:31 +02:00
|
|
|
query = from(e in Event, preload: [:organizer_actor, :participants])
|
|
|
|
|
|
|
|
query
|
2019-09-16 02:07:44 +02:00
|
|
|
|> Page.paginate(page, limit)
|
|
|
|
|> sort(sort, direction)
|
|
|
|
|> filter_future_events(is_future)
|
|
|
|
|> filter_unlisted(is_unlisted)
|
2019-10-02 17:59:07 +02:00
|
|
|
|> filter_draft()
|
2019-09-16 02:07:44 +02:00
|
|
|
|> Repo.all()
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|
|
|
|
|
2019-01-25 17:06:57 +01:00
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Returns the list of events with the same tags.
|
2019-01-25 17:06:57 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec list_events_by_tags([Tag.t()], integer) :: [Event.t()]
|
|
|
|
def list_events_by_tags(tags, limit \\ 2) do
|
|
|
|
tags
|
|
|
|
|> Enum.map(& &1.id)
|
|
|
|
|> events_by_tags_query(limit)
|
2019-10-02 17:59:07 +02:00
|
|
|
|> filter_draft()
|
2019-09-16 02:07:44 +02:00
|
|
|
|> Repo.all()
|
2019-01-25 17:06:57 +01:00
|
|
|
end
|
|
|
|
|
2017-12-08 09:58:14 +01:00
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Lists public events for the actor, with all associations loaded.
|
|
|
|
"""
|
|
|
|
@spec list_public_events_for_actor(Actor.t(), integer | nil, integer | nil) ::
|
|
|
|
{:ok, [Event.t()], integer}
|
|
|
|
def list_public_events_for_actor(%Actor{id: actor_id}, page \\ nil, limit \\ nil) do
|
|
|
|
events =
|
|
|
|
actor_id
|
|
|
|
|> event_for_actor_query()
|
|
|
|
|> filter_public_visibility()
|
2019-10-02 17:59:07 +02:00
|
|
|
|> filter_draft()
|
2019-09-16 02:07:44 +02:00
|
|
|
|> preload_for_event()
|
|
|
|
|> Page.paginate(page, limit)
|
|
|
|
|> Repo.all()
|
2017-12-08 09:58:14 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
events_count =
|
|
|
|
actor_id
|
|
|
|
|> count_events_for_actor_query()
|
|
|
|
|> Repo.one()
|
2017-12-08 09:58:14 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
{:ok, events, events_count}
|
|
|
|
end
|
2017-12-08 09:58:14 +01:00
|
|
|
|
2019-10-02 17:59:07 +02:00
|
|
|
@spec list_drafts_for_user(integer, integer | nil, integer | nil) :: [Event.t()]
|
|
|
|
def list_drafts_for_user(user_id, page \\ nil, limit \\ nil) do
|
|
|
|
Event
|
|
|
|
|> user_events_query(user_id)
|
|
|
|
|> filter_draft(true)
|
|
|
|
|> Page.paginate(page, limit)
|
|
|
|
|> Repo.all()
|
|
|
|
end
|
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@doc """
|
|
|
|
Finds close events to coordinates.
|
|
|
|
Radius is in meters and defaults to 50km.
|
2017-12-08 09:58:14 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec find_close_events(number, number, number, number) :: [Event.t()]
|
|
|
|
def find_close_events(lon, lat, radius \\ 50_000, srid \\ 4326) do
|
|
|
|
"SRID=#{srid};POINT(#{lon} #{lat})"
|
|
|
|
|> Geo.WKT.decode!()
|
|
|
|
|> close_events_query(radius)
|
2019-10-02 17:59:07 +02:00
|
|
|
|> filter_draft()
|
2019-09-16 02:07:44 +02:00
|
|
|
|> Repo.all()
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Counts local events.
|
2017-12-08 09:58:14 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec count_local_events :: integer
|
|
|
|
def count_local_events do
|
|
|
|
count_local_events_query()
|
|
|
|
|> filter_public_visibility()
|
2019-10-02 17:59:07 +02:00
|
|
|
|> filter_draft()
|
2019-09-16 02:07:44 +02:00
|
|
|
|> Repo.one()
|
2019-02-14 14:19:55 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Builds a page struct for events by their name.
|
2019-02-14 14:19:55 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec build_events_by_name(String.t(), integer | nil, integer | nil) :: Page.t()
|
|
|
|
def build_events_by_name(name, page \\ nil, limit \\ nil) do
|
|
|
|
name
|
|
|
|
|> String.trim()
|
|
|
|
|> events_by_name_query()
|
|
|
|
|> Page.build_page(page, limit)
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Gets a single tag.
|
2019-09-16 02:07:44 +02:00
|
|
|
"""
|
|
|
|
@spec get_tag(integer | String.t()) :: Tag.t() | nil
|
|
|
|
def get_tag(id), do: Repo.get(Tag, id)
|
2017-12-08 09:58:14 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@doc """
|
|
|
|
Gets a single tag.
|
|
|
|
Raises `Ecto.NoResultsError` if the tag does not exist.
|
2017-12-08 09:58:14 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec get_tag!(integer | String.t()) :: Tag.t()
|
2017-12-08 09:58:14 +01:00
|
|
|
def get_tag!(id), do: Repo.get!(Tag, id)
|
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@doc """
|
|
|
|
Gets a tag by its slug.
|
|
|
|
"""
|
|
|
|
@spec get_tag_by_slug(String.t()) :: Tag.t() | nil
|
2019-09-13 01:01:17 +02:00
|
|
|
def get_tag_by_slug(slug) do
|
2019-09-16 02:07:44 +02:00
|
|
|
slug
|
|
|
|
|> tag_by_slug_query()
|
|
|
|
|> Repo.one()
|
2019-09-13 01:01:17 +02:00
|
|
|
end
|
|
|
|
|
2019-07-26 11:30:28 +02:00
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Gets an existing tag or creates the new one.
|
2019-07-26 11:30:28 +02:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec get_or_create_tag(map) :: {:ok, Tag.t()} | {:error, Ecto.Changeset.t()}
|
|
|
|
def get_or_create_tag(%{"name" => "#" <> title}) do
|
2019-07-26 11:30:28 +02:00
|
|
|
case Repo.get_by(Tag, title: title) do
|
|
|
|
%Tag{} = tag ->
|
|
|
|
{:ok, tag}
|
|
|
|
|
|
|
|
nil ->
|
|
|
|
create_tag(%{"title" => title})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-12-08 09:58:14 +01:00
|
|
|
@doc """
|
|
|
|
Creates a tag.
|
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec create_tag(map) :: {:ok, Tag.t()} | {:error, Ecto.Changeset.t()}
|
2017-12-08 09:58:14 +01:00
|
|
|
def create_tag(attrs \\ %{}) do
|
|
|
|
%Tag{}
|
|
|
|
|> Tag.changeset(attrs)
|
|
|
|
|> Repo.insert()
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Updates a tag.
|
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec update_tag(Tag.t(), map) :: {:ok, Tag.t()} | {:error, Ecto.Changeset.t()}
|
2017-12-08 09:58:14 +01:00
|
|
|
def update_tag(%Tag{} = tag, attrs) do
|
|
|
|
tag
|
|
|
|
|> Tag.changeset(attrs)
|
|
|
|
|> Repo.update()
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Deletes a tag.
|
|
|
|
"""
|
|
|
|
@spec delete_tag(Tag.t()) :: {:ok, Tag.t()} | {:error, Ecto.Changeset.t()}
|
|
|
|
def delete_tag(%Tag{} = tag), do: Repo.delete(tag)
|
2017-12-08 09:58:14 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@doc """
|
|
|
|
Returns the list of tags.
|
2017-12-08 09:58:14 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec list_tags(integer | nil, integer | nil) :: [Tag.t()]
|
|
|
|
def list_tags(page \\ nil, limit \\ nil) do
|
|
|
|
Tag
|
|
|
|
|> Page.paginate(page, limit)
|
|
|
|
|> Repo.all()
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Returns the list of tags for the event.
|
2017-12-08 09:58:14 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec list_tags_for_event(integer | String.t(), integer | nil, integer | nil) :: [Tag.t()]
|
|
|
|
def list_tags_for_event(event_id, page \\ nil, limit \\ nil) do
|
|
|
|
event_id
|
|
|
|
|> tags_for_event_query()
|
|
|
|
|> Page.paginate(page, limit)
|
|
|
|
|> Repo.all()
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@doc """
|
|
|
|
Checks whether two tags are linked or not.
|
|
|
|
"""
|
|
|
|
@spec are_tags_linked(Tag.t(), Tag.t()) :: boolean
|
|
|
|
def are_tags_linked(%Tag{id: tag1_id}, %Tag{id: tag2_id}) do
|
|
|
|
tag_relation =
|
|
|
|
tag1_id
|
|
|
|
|> tags_linked_query(tag2_id)
|
|
|
|
|> Repo.one()
|
|
|
|
|
|
|
|
!!tag_relation
|
|
|
|
end
|
2019-02-14 14:19:55 +01:00
|
|
|
|
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Creates a relation between two tags.
|
2019-02-14 14:19:55 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec create_tag_relation(map) :: {:ok, TagRelation.t()} | {:error, Ecto.Changeset.t()}
|
2019-02-14 14:19:55 +01:00
|
|
|
def create_tag_relation(attrs \\ {}) do
|
|
|
|
%TagRelation{}
|
|
|
|
|> TagRelation.changeset(attrs)
|
2019-09-16 02:07:44 +02:00
|
|
|
|> Repo.insert(
|
|
|
|
conflict_target: [:tag_id, :link_id],
|
|
|
|
on_conflict: [inc: [weight: 1]]
|
|
|
|
)
|
2019-02-14 14:19:55 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Removes a tag relation.
|
2019-02-14 14:19:55 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec delete_tag_relation(TagRelation.t()) ::
|
|
|
|
{:ok, TagRelation.t()} | {:error, Ecto.Changeset.t()}
|
2019-02-14 14:19:55 +01:00
|
|
|
def delete_tag_relation(%TagRelation{} = tag_relation) do
|
|
|
|
Repo.delete(tag_relation)
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Returns the tags neighbors for a given tag
|
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
We can't rely on the single many_to_many relation since we also want tags that
|
|
|
|
link to our tag, not just tags linked by this one.
|
2019-02-14 14:19:55 +01:00
|
|
|
|
|
|
|
The SQL query looks like this:
|
|
|
|
```sql
|
|
|
|
SELECT * FROM tags t
|
|
|
|
RIGHT JOIN (
|
|
|
|
SELECT weight, link_id AS id
|
|
|
|
FROM tag_relations t2
|
|
|
|
WHERE tag_id = 1
|
|
|
|
UNION ALL
|
|
|
|
SELECT tag_id AS id, weight
|
|
|
|
FROM tag_relations t2
|
|
|
|
WHERE link_id = 1
|
|
|
|
) tr
|
|
|
|
ON t.id = tr.id
|
|
|
|
ORDER BY tr.weight
|
|
|
|
DESC;
|
|
|
|
```
|
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec list_tag_neighbors(Tag.t(), integer, integer) :: [Tag.t()]
|
|
|
|
def list_tag_neighbors(%Tag{id: tag_id}, relation_minimum \\ 1, limit \\ 10) do
|
|
|
|
tag_id
|
|
|
|
|> tag_relation_subquery()
|
|
|
|
|> tag_relation_union_subquery(tag_id)
|
|
|
|
|> tag_neighbors_query(relation_minimum, limit)
|
|
|
|
|> Repo.all()
|
2019-02-14 14:19:55 +01:00
|
|
|
end
|
|
|
|
|
2017-12-08 09:58:14 +01:00
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Gets a single participant.
|
2019-09-20 18:22:03 +02:00
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
iex> get_participant(123)
|
|
|
|
%Participant{}
|
|
|
|
|
|
|
|
iex> get_participant(456)
|
|
|
|
nil
|
|
|
|
|
|
|
|
"""
|
|
|
|
@spec get_participant(integer) :: Participant.t()
|
|
|
|
def get_participant(participant_id) do
|
|
|
|
Participant
|
|
|
|
|> where([p], p.id == ^participant_id)
|
|
|
|
|> preload([p], [:event, :actor])
|
|
|
|
|> Repo.one()
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Gets a single participation for an event and actor.
|
2019-09-16 02:07:44 +02:00
|
|
|
"""
|
|
|
|
@spec get_participant(integer | String.t(), integer | String.t()) ::
|
|
|
|
{:ok, Participant.t()} | {:error, :participant_not_found}
|
|
|
|
def get_participant(event_id, actor_id) do
|
|
|
|
case Repo.get_by(Participant, event_id: event_id, actor_id: actor_id) do
|
|
|
|
%Participant{} = participant ->
|
|
|
|
{:ok, participant}
|
2017-12-08 09:58:14 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
nil ->
|
|
|
|
{:error, :participant_not_found}
|
|
|
|
end
|
|
|
|
end
|
2017-12-08 09:58:14 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@doc """
|
2019-09-20 18:22:03 +02:00
|
|
|
Gets a single participation for an event and actor.
|
|
|
|
|
|
|
|
Raises `Ecto.NoResultsError` if the Participant does not exist.
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
iex> get_participant!(123, 19)
|
|
|
|
%Participant{}
|
|
|
|
|
|
|
|
iex> get_participant!(456, 5)
|
|
|
|
** (Ecto.NoResultsError)
|
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
"""
|
|
|
|
@spec get_participant!(integer | String.t(), integer | String.t()) :: Participant.t()
|
|
|
|
def get_participant!(event_id, actor_id) do
|
|
|
|
Repo.get_by!(Participant, event_id: event_id, actor_id: actor_id)
|
|
|
|
end
|
2017-12-08 09:58:14 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@doc """
|
|
|
|
Gets a participant by its URL.
|
2017-12-08 09:58:14 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec get_participant_by_url(String.t()) :: Participant.t() | nil
|
|
|
|
def get_participant_by_url(url) do
|
|
|
|
url
|
|
|
|
|> participant_by_url_query()
|
|
|
|
|> Repo.one()
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|
|
|
|
|
2019-09-20 18:22:03 +02:00
|
|
|
@default_participant_roles [:participant, :moderator, :administrator, :creator]
|
2018-01-13 23:33:03 +01:00
|
|
|
|
|
|
|
@doc """
|
2019-09-20 18:22:03 +02:00
|
|
|
Returns the list of participants for an event.
|
|
|
|
Default behaviour is to not return :not_approved participants
|
2018-01-13 23:33:03 +01:00
|
|
|
"""
|
2019-09-20 18:22:03 +02:00
|
|
|
@spec list_participants_for_event(String.t(), list(atom()), integer | nil, integer | nil) ::
|
|
|
|
[Participant.t()]
|
2019-09-22 11:22:16 +02:00
|
|
|
def list_participants_for_event(
|
2019-09-26 16:38:58 +02:00
|
|
|
id,
|
2019-09-22 11:22:16 +02:00
|
|
|
roles \\ @default_participant_roles,
|
|
|
|
page \\ nil,
|
|
|
|
limit \\ nil
|
|
|
|
) do
|
2019-09-26 16:38:58 +02:00
|
|
|
id
|
2019-09-20 18:22:03 +02:00
|
|
|
|> list_participants_for_event_query()
|
|
|
|
|> filter_role(roles)
|
|
|
|
|> Page.paginate(page, limit)
|
|
|
|
|> Repo.all()
|
2018-01-13 23:33:03 +01:00
|
|
|
end
|
|
|
|
|
2019-09-18 17:32:37 +02:00
|
|
|
@doc """
|
|
|
|
Returns the list of participations for an actor.
|
|
|
|
|
|
|
|
Default behaviour is to not return :not_approved participants
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
iex> list_event_participations_for_user(5)
|
|
|
|
[%Participant{}, ...]
|
|
|
|
|
|
|
|
"""
|
2019-09-20 18:22:03 +02:00
|
|
|
@spec list_participations_for_user(
|
|
|
|
integer,
|
|
|
|
DateTime.t() | nil,
|
|
|
|
DateTime.t() | nil,
|
|
|
|
integer | nil,
|
|
|
|
integer | nil
|
|
|
|
) :: list(Participant.t())
|
|
|
|
def list_participations_for_user(user_id, after_datetime, before_datetime, page, limit) do
|
2019-09-18 17:32:37 +02:00
|
|
|
user_id
|
2019-09-20 18:22:03 +02:00
|
|
|
|> list_participations_for_user_query()
|
|
|
|
|> participation_filter_begins_on(after_datetime, before_datetime)
|
2019-09-18 17:32:37 +02:00
|
|
|
|> Page.paginate(page, limit)
|
2019-09-20 18:22:03 +02:00
|
|
|
|> Repo.all()
|
2019-09-18 17:32:37 +02:00
|
|
|
end
|
|
|
|
|
2018-01-13 23:33:03 +01:00
|
|
|
@doc """
|
2019-09-20 18:22:03 +02:00
|
|
|
Returns the list of moderator participants for an event.
|
2018-01-13 23:33:03 +01:00
|
|
|
|
2019-09-20 18:22:03 +02:00
|
|
|
## Examples
|
2018-01-13 23:33:03 +01:00
|
|
|
|
2019-09-20 18:22:03 +02:00
|
|
|
iex> moderator_for_event?(5, 3)
|
|
|
|
true
|
2019-09-16 02:07:44 +02:00
|
|
|
|
2019-09-20 18:22:03 +02:00
|
|
|
"""
|
|
|
|
@spec moderator_for_event?(integer, integer) :: boolean
|
|
|
|
def moderator_for_event?(event_id, actor_id) do
|
|
|
|
!(Repo.one(
|
|
|
|
from(
|
|
|
|
p in Participant,
|
|
|
|
where:
|
|
|
|
p.event_id == ^event_id and
|
|
|
|
p.actor_id ==
|
|
|
|
^actor_id and p.role in ^[:moderator, :administrator, :creator]
|
|
|
|
)
|
|
|
|
) == nil)
|
2019-02-01 15:38:35 +01:00
|
|
|
end
|
|
|
|
|
2018-12-14 17:41:55 +01:00
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Returns the list of organizers participants for an event.
|
2019-09-18 17:32:37 +02:00
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
iex> list_organizers_participants_for_event(id)
|
|
|
|
[%Participant{role: :creator}, ...]
|
2018-12-14 17:41:55 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec list_organizers_participants_for_event(
|
|
|
|
integer | String.t(),
|
|
|
|
integer | nil,
|
|
|
|
integer | nil
|
|
|
|
) ::
|
|
|
|
[Participant.t()]
|
|
|
|
def list_organizers_participants_for_event(event_id, page \\ nil, limit \\ nil) do
|
|
|
|
event_id
|
|
|
|
|> organizers_participants_for_event()
|
|
|
|
|> Page.paginate(page, limit)
|
|
|
|
|> Repo.all()
|
2018-01-13 23:33:03 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Returns the list of event participation requests for an actor.
|
2018-01-13 23:33:03 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec list_requests_for_actor(Actor.t()) :: [Participant.t()]
|
|
|
|
def list_requests_for_actor(%Actor{id: actor_id}) do
|
|
|
|
actor_id
|
|
|
|
|> requests_for_actor_query()
|
|
|
|
|> Repo.all()
|
2018-01-13 23:33:03 +01:00
|
|
|
end
|
|
|
|
|
2018-01-16 19:45:09 +01:00
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Returns the list of participations for an actor.
|
2018-01-16 19:45:09 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec list_event_participations_for_actor(Actor.t(), integer | nil, integer | nil) ::
|
2019-09-26 16:38:58 +02:00
|
|
|
[Participant.t()]
|
2019-09-16 02:07:44 +02:00
|
|
|
def list_event_participations_for_actor(%Actor{id: actor_id}, page \\ nil, limit \\ nil) do
|
|
|
|
actor_id
|
|
|
|
|> event_participations_for_actor_query()
|
|
|
|
|> Page.paginate(page, limit)
|
|
|
|
|> Repo.all()
|
2018-01-16 19:45:09 +01:00
|
|
|
end
|
|
|
|
|
2018-12-14 17:41:55 +01:00
|
|
|
@doc """
|
2019-09-21 23:59:07 +02:00
|
|
|
Counts approved participants.
|
2018-12-14 17:41:55 +01:00
|
|
|
"""
|
2019-09-21 23:59:07 +02:00
|
|
|
@spec count_approved_participants(integer | String.t()) :: integer
|
|
|
|
def count_approved_participants(event_id) do
|
|
|
|
event_id
|
|
|
|
|> count_participants_query()
|
|
|
|
|> filter_approved_role()
|
|
|
|
|> Repo.aggregate(:count, :id)
|
2018-01-13 23:33:03 +01:00
|
|
|
end
|
|
|
|
|
2019-10-11 11:50:06 +02:00
|
|
|
@doc """
|
|
|
|
Counts participant participants.
|
|
|
|
"""
|
|
|
|
@spec count_participant_participants(integer | String.t()) :: integer
|
|
|
|
def count_participant_participants(event_id) do
|
|
|
|
event_id
|
|
|
|
|> count_participants_query()
|
|
|
|
|> filter_participant_role()
|
|
|
|
|> Repo.aggregate(:count, :id)
|
|
|
|
end
|
|
|
|
|
2018-01-13 23:33:03 +01:00
|
|
|
@doc """
|
2019-09-21 23:59:07 +02:00
|
|
|
Counts unapproved participants.
|
2018-01-13 23:33:03 +01:00
|
|
|
"""
|
2019-09-21 23:59:07 +02:00
|
|
|
@spec count_unapproved_participants(integer | String.t()) :: integer
|
|
|
|
def count_unapproved_participants(event_id) do
|
|
|
|
event_id
|
|
|
|
|> count_participants_query()
|
|
|
|
|> filter_unapproved_role()
|
|
|
|
|> Repo.aggregate(:count, :id)
|
2018-01-16 19:45:09 +01:00
|
|
|
end
|
|
|
|
|
2019-09-30 13:48:47 +02:00
|
|
|
@doc """
|
|
|
|
Counts rejected participants.
|
|
|
|
"""
|
|
|
|
@spec count_rejected_participants(integer | String.t()) :: integer
|
|
|
|
def count_rejected_participants(event_id) do
|
|
|
|
event_id
|
|
|
|
|> count_participants_query()
|
|
|
|
|> filter_rejected_role()
|
|
|
|
|> Repo.aggregate(:count, :id)
|
|
|
|
end
|
|
|
|
|
2019-09-20 18:22:03 +02:00
|
|
|
@doc """
|
|
|
|
Gets the default participant role depending on the event join options.
|
|
|
|
"""
|
|
|
|
@spec get_default_participant_role(Event.t()) :: :participant | :not_approved
|
|
|
|
def get_default_participant_role(%Event{join_options: :free}), do: :participant
|
|
|
|
def get_default_participant_role(%Event{join_options: _}), do: :not_approved
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Creates a participant.
|
|
|
|
"""
|
|
|
|
@spec create_participant(map) :: {:ok, Participant.t()} | {:error, Ecto.Changeset.t()}
|
|
|
|
def create_participant(attrs \\ %{}) do
|
|
|
|
with {:ok, %Participant{} = participant} <-
|
|
|
|
%Participant{}
|
|
|
|
|> Participant.changeset(attrs)
|
|
|
|
|> Repo.insert() do
|
|
|
|
{:ok, Repo.preload(participant, [:event, :actor])}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Updates a participant.
|
|
|
|
"""
|
|
|
|
@spec update_participant(Participant.t(), map) ::
|
|
|
|
{:ok, Participant.t()} | {:error, Ecto.Changeset.t()}
|
|
|
|
def update_participant(%Participant{} = participant, attrs) do
|
|
|
|
participant
|
|
|
|
|> Participant.changeset(attrs)
|
|
|
|
|> Repo.update()
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Deletes a participant.
|
|
|
|
"""
|
|
|
|
@spec delete_participant(Participant.t()) ::
|
|
|
|
{:ok, Participant.t()} | {:error, Ecto.Changeset.t()}
|
|
|
|
def delete_participant(%Participant{} = participant), do: Repo.delete(participant)
|
|
|
|
|
2018-01-13 23:33:03 +01:00
|
|
|
@doc """
|
|
|
|
Gets a single session.
|
2019-09-16 02:07:44 +02:00
|
|
|
Raises `Ecto.NoResultsError` if the session does not exist.
|
2018-01-13 23:33:03 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec get_session!(integer | String.t()) :: Session.t()
|
2018-01-13 23:33:03 +01:00
|
|
|
def get_session!(id), do: Repo.get!(Session, id)
|
2017-12-08 09:58:14 +01:00
|
|
|
|
|
|
|
@doc """
|
2018-01-13 23:33:03 +01:00
|
|
|
Creates a session.
|
2017-12-08 09:58:14 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec create_session(map) :: {:ok, Session.t()} | {:error, Ecto.Changeset.t()}
|
2018-01-13 23:33:03 +01:00
|
|
|
def create_session(attrs \\ %{}) do
|
|
|
|
%Session{}
|
|
|
|
|> Session.changeset(attrs)
|
2017-12-08 09:58:14 +01:00
|
|
|
|> Repo.insert()
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
2018-01-13 23:33:03 +01:00
|
|
|
Updates a session.
|
2017-12-08 09:58:14 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec update_session(Session.t(), map) :: {:ok, Session.t()} | {:error, Ecto.Changeset.t()}
|
2018-01-13 23:33:03 +01:00
|
|
|
def update_session(%Session{} = session, attrs) do
|
|
|
|
session
|
|
|
|
|> Session.changeset(attrs)
|
2017-12-08 09:58:14 +01:00
|
|
|
|> Repo.update()
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Deletes a session.
|
2017-12-08 09:58:14 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec delete_session(Session.t()) :: {:ok, Session.t()} | {:error, Ecto.Changeset.t()}
|
|
|
|
def delete_session(%Session{} = session), do: Repo.delete(session)
|
2017-12-08 09:58:14 +01:00
|
|
|
|
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Returns the list of sessions.
|
2017-12-08 09:58:14 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec list_sessions :: [Session.t()]
|
|
|
|
def list_sessions, do: Repo.all(Session)
|
2017-12-08 09:58:14 +01:00
|
|
|
|
2018-12-14 17:41:55 +01:00
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Returns the list of sessions for the event.
|
2018-12-14 17:41:55 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec list_sessions_for_event(Event.t()) :: [Session.t()]
|
|
|
|
def list_sessions_for_event(%Event{id: event_id}) do
|
|
|
|
event_id
|
|
|
|
|> sessions_for_event_query()
|
|
|
|
|> Repo.all()
|
2018-12-14 17:41:55 +01:00
|
|
|
end
|
|
|
|
|
2017-12-08 09:58:14 +01:00
|
|
|
@doc """
|
2018-01-13 23:33:03 +01:00
|
|
|
Gets a single track.
|
2019-09-16 02:07:44 +02:00
|
|
|
Raises `Ecto.NoResultsError` if the track does not exist.
|
2017-12-08 09:58:14 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec get_track!(integer | String.t()) :: Track.t()
|
2018-01-13 23:33:03 +01:00
|
|
|
def get_track!(id), do: Repo.get!(Track, id)
|
2017-12-08 09:58:14 +01:00
|
|
|
|
|
|
|
@doc """
|
2018-01-13 23:33:03 +01:00
|
|
|
Creates a track.
|
2017-12-08 09:58:14 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec create_track(map) :: {:ok, Track.t()} | {:error, Ecto.Changeset.t()}
|
2018-01-13 23:33:03 +01:00
|
|
|
def create_track(attrs \\ %{}) do
|
|
|
|
%Track{}
|
|
|
|
|> Track.changeset(attrs)
|
2017-12-08 09:58:14 +01:00
|
|
|
|> Repo.insert()
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
2018-01-13 23:33:03 +01:00
|
|
|
Updates a track.
|
2017-12-08 09:58:14 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec update_track(Track.t(), map) :: {:ok, Track.t()} | {:error, Ecto.Changeset.t()}
|
2018-01-13 23:33:03 +01:00
|
|
|
def update_track(%Track{} = track, attrs) do
|
|
|
|
track
|
|
|
|
|> Track.changeset(attrs)
|
2017-12-08 09:58:14 +01:00
|
|
|
|> Repo.update()
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Deletes a track.
|
2017-12-08 09:58:14 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec delete_track(Track.t()) :: {:ok, Track.t()} | {:error, Ecto.Changeset.t()}
|
|
|
|
def delete_track(%Track{} = track), do: Repo.delete(track)
|
2017-12-08 09:58:14 +01:00
|
|
|
|
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Returns the list of tracks.
|
2017-12-08 09:58:14 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec list_tracks :: [Track.t()]
|
|
|
|
def list_tracks, do: Repo.all(Track)
|
2018-05-17 11:32:23 +02:00
|
|
|
|
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Returns the list of sessions for the track.
|
2018-05-17 11:32:23 +02:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec list_sessions_for_track(Track.t()) :: [Session.t()]
|
|
|
|
def list_sessions_for_track(%Track{id: track_id}) do
|
|
|
|
track_id
|
|
|
|
|> sessions_for_track_query()
|
|
|
|
|> Repo.all()
|
2018-08-24 11:34:00 +02:00
|
|
|
end
|
|
|
|
|
2018-05-17 11:32:23 +02:00
|
|
|
@doc """
|
|
|
|
Gets a single comment.
|
2019-09-16 02:07:44 +02:00
|
|
|
Raises `Ecto.NoResultsError` if the comment does not exist.
|
2018-05-17 11:32:23 +02:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec get_comment!(integer | String.t()) :: Comment.t()
|
2018-05-17 11:32:23 +02:00
|
|
|
def get_comment!(id), do: Repo.get!(Comment, id)
|
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@doc """
|
|
|
|
Gets a comment by its URL.
|
|
|
|
"""
|
|
|
|
@spec get_comment_from_url(String.t()) :: Comment.t() | nil
|
|
|
|
def get_comment_from_url(url), do: Repo.get_by(Comment, url: url)
|
2018-12-14 17:41:55 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@doc """
|
|
|
|
Gets a comment by its URL.
|
|
|
|
Raises `Ecto.NoResultsError` if the comment does not exist.
|
|
|
|
"""
|
|
|
|
@spec get_comment_from_url!(String.t()) :: Comment.t()
|
|
|
|
def get_comment_from_url!(url), do: Repo.get_by!(Comment, url: url)
|
2018-11-12 09:05:31 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@doc """
|
|
|
|
Gets a comment by its URL, with all associations loaded.
|
|
|
|
"""
|
|
|
|
@spec get_comment_from_url_with_preload(String.t()) ::
|
|
|
|
{:ok, Comment.t()} | {:error, :comment_not_found}
|
|
|
|
def get_comment_from_url_with_preload(url) do
|
2019-09-18 00:37:31 +02:00
|
|
|
query = from(c in Comment, where: c.url == ^url)
|
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
comment =
|
2019-09-18 00:37:31 +02:00
|
|
|
query
|
2019-09-16 02:07:44 +02:00
|
|
|
|> preload_for_comment()
|
|
|
|
|> Repo.one()
|
2018-12-14 17:41:55 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
case comment do
|
|
|
|
%Comment{} = comment ->
|
|
|
|
{:ok, comment}
|
2018-12-14 17:41:55 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
nil ->
|
|
|
|
{:error, :comment_not_found}
|
|
|
|
end
|
|
|
|
end
|
2018-12-14 17:41:55 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@doc """
|
|
|
|
Gets a comment by its URL, with all associations loaded.
|
|
|
|
Raises `Ecto.NoResultsError` if the comment does not exist.
|
|
|
|
"""
|
|
|
|
@spec get_comment_from_url_with_preload(String.t()) :: Comment.t()
|
|
|
|
def get_comment_from_url_with_preload!(url) do
|
|
|
|
Comment
|
|
|
|
|> Repo.get_by!(url: url)
|
|
|
|
|> Repo.preload(@comment_preloads)
|
|
|
|
end
|
2018-11-12 09:05:31 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@doc """
|
|
|
|
Gets a comment by its UUID, with all associations loaded.
|
|
|
|
"""
|
|
|
|
@spec get_comment_from_uuid_with_preload(String.t()) :: Comment.t()
|
|
|
|
def get_comment_from_uuid_with_preload(uuid) do
|
|
|
|
Comment
|
|
|
|
|> Repo.get_by(uuid: uuid)
|
|
|
|
|> Repo.preload(@comment_preloads)
|
2018-11-12 09:05:31 +01:00
|
|
|
end
|
2018-06-14 17:25:55 +02:00
|
|
|
|
2018-05-17 11:32:23 +02:00
|
|
|
@doc """
|
|
|
|
Creates a comment.
|
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec create_comment(map) :: {:ok, Comment.t()} | {:error, Ecto.Changeset.t()}
|
2018-05-17 11:32:23 +02:00
|
|
|
def create_comment(attrs \\ %{}) do
|
2019-07-30 10:35:29 +02:00
|
|
|
with {:ok, %Comment{} = comment} <-
|
|
|
|
%Comment{}
|
|
|
|
|> Comment.changeset(attrs)
|
|
|
|
|> Repo.insert(),
|
2019-09-16 02:07:44 +02:00
|
|
|
%Comment{} = comment <- Repo.preload(comment, @comment_preloads) do
|
2019-07-30 10:35:29 +02:00
|
|
|
{:ok, comment}
|
|
|
|
end
|
2018-05-17 11:32:23 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Updates a comment.
|
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec update_comment(Comment.t(), map) :: {:ok, Comment.t()} | {:error, Ecto.Changeset.t()}
|
2018-05-17 11:32:23 +02:00
|
|
|
def update_comment(%Comment{} = comment, attrs) do
|
|
|
|
comment
|
|
|
|
|> Comment.changeset(attrs)
|
|
|
|
|> Repo.update()
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Deletes a comment.
|
|
|
|
"""
|
|
|
|
@spec delete_comment(Comment.t()) :: {:ok, Comment.t()} | {:error, Ecto.Changeset.t()}
|
|
|
|
def delete_comment(%Comment{} = comment), do: Repo.delete(comment)
|
2018-05-17 11:32:23 +02:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@doc """
|
|
|
|
Returns the list of public comments.
|
|
|
|
"""
|
|
|
|
@spec list_comments :: [Comment.t()]
|
|
|
|
def list_comments do
|
|
|
|
Repo.all(from(c in Comment, where: c.visibility == ^:public))
|
|
|
|
end
|
2018-05-17 11:32:23 +02:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@doc """
|
|
|
|
Returns the list of public comments for the actor.
|
|
|
|
"""
|
|
|
|
@spec list_public_events_for_actor(Actor.t(), integer | nil, integer | nil) ::
|
|
|
|
{:ok, [Comment.t()], integer}
|
|
|
|
def list_public_comments_for_actor(%Actor{id: actor_id}, page \\ nil, limit \\ nil) do
|
|
|
|
comments =
|
|
|
|
actor_id
|
|
|
|
|> public_comments_for_actor_query()
|
|
|
|
|> Page.paginate(page, limit)
|
|
|
|
|> Repo.all()
|
2018-05-17 11:32:23 +02:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
count_comments =
|
|
|
|
actor_id
|
|
|
|
|> count_comments_query()
|
|
|
|
|> Repo.one()
|
2018-05-17 11:32:23 +02:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
{:ok, comments, count_comments}
|
2018-05-17 11:32:23 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Returns the list of comments by an actor and a list of ids.
|
|
|
|
"""
|
|
|
|
@spec list_comments_by_actor_and_ids(integer | String.t(), [integer | String.t()]) ::
|
|
|
|
[Comment.t()]
|
|
|
|
def list_comments_by_actor_and_ids(actor_id, comment_ids \\ [])
|
|
|
|
def list_comments_by_actor_and_ids(_actor_id, []), do: []
|
2018-05-17 11:32:23 +02:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
def list_comments_by_actor_and_ids(actor_id, comment_ids) do
|
|
|
|
Comment
|
|
|
|
|> where([c], c.id in ^comment_ids)
|
|
|
|
|> where([c], c.actor_id == ^actor_id)
|
|
|
|
|> Repo.all()
|
|
|
|
end
|
2018-05-17 11:32:23 +02:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@doc """
|
|
|
|
Counts local comments.
|
|
|
|
"""
|
|
|
|
@spec count_local_comments :: integer
|
|
|
|
def count_local_comments, do: Repo.one(count_local_comments_query())
|
2018-05-17 11:32:23 +02:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@doc """
|
|
|
|
Gets a single feed token.
|
2018-05-17 11:32:23 +02:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec get_feed_token(String.t()) :: FeedToken.t() | nil
|
|
|
|
def get_feed_token(token) do
|
|
|
|
token
|
|
|
|
|> feed_token_query()
|
|
|
|
|> Repo.one()
|
2018-05-17 11:32:23 +02:00
|
|
|
end
|
2019-03-08 12:25:06 +01:00
|
|
|
|
|
|
|
@doc """
|
|
|
|
Gets a single feed token.
|
2019-09-16 02:07:44 +02:00
|
|
|
Raises `Ecto.NoResultsError` if the feed token does not exist.
|
|
|
|
"""
|
|
|
|
@spec get_feed_token!(String.t()) :: FeedToken.t()
|
|
|
|
def get_feed_token!(token) do
|
|
|
|
token
|
|
|
|
|> feed_token_query()
|
|
|
|
|> Repo.one!()
|
|
|
|
end
|
2019-03-08 12:25:06 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@doc """
|
|
|
|
Creates a feed token.
|
|
|
|
"""
|
|
|
|
@spec create_feed_token(map) :: {:ok, FeedToken.t()} | {:error, Ecto.Changeset.t()}
|
|
|
|
def create_feed_token(attrs \\ %{}) do
|
|
|
|
attrs = Map.put(attrs, "token", Ecto.UUID.generate())
|
2019-03-08 12:25:06 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
%FeedToken{}
|
|
|
|
|> FeedToken.changeset(attrs)
|
|
|
|
|> Repo.insert()
|
|
|
|
end
|
2019-03-08 12:25:06 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@doc """
|
|
|
|
Updates a feed token.
|
|
|
|
"""
|
|
|
|
@spec update_feed_token(FeedToken.t(), map) ::
|
|
|
|
{:ok, FeedToken.t()} | {:error, Ecto.Changeset.t()}
|
|
|
|
def update_feed_token(%FeedToken{} = feed_token, attrs) do
|
|
|
|
feed_token
|
|
|
|
|> FeedToken.changeset(attrs)
|
|
|
|
|> Repo.update()
|
|
|
|
end
|
2019-03-08 12:25:06 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@doc """
|
|
|
|
Deletes a feed token.
|
2019-03-08 12:25:06 +01:00
|
|
|
"""
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec delete_feed_token(FeedToken.t()) :: {:ok, FeedToken.t()} | {:error, Ecto.Changeset.t()}
|
|
|
|
def delete_feed_token(%FeedToken{} = feed_token), do: Repo.delete(feed_token)
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Returns the list of feed tokens for an user.
|
|
|
|
"""
|
|
|
|
@spec list_feed_tokens_for_user(User.t()) :: [FeedTokens.t()]
|
|
|
|
def list_feed_tokens_for_user(%User{id: user_id}) do
|
|
|
|
user_id
|
|
|
|
|> feed_token_for_user_query()
|
|
|
|
|> Repo.all()
|
2019-03-08 12:25:06 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
2019-09-16 02:07:44 +02:00
|
|
|
Returns the list of feed tokens for an actor.
|
|
|
|
"""
|
|
|
|
@spec list_feed_tokens_for_actor(Actor.t()) :: [FeedTokens.t()]
|
|
|
|
def list_feed_tokens_for_actor(%Actor{id: actor_id, domain: nil}) do
|
|
|
|
actor_id
|
|
|
|
|> feed_token_for_actor_query()
|
|
|
|
|> Repo.all()
|
|
|
|
end
|
2019-03-08 12:25:06 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec event_by_url_query(String.t()) :: Ecto.Query.t()
|
|
|
|
defp event_by_url_query(url) do
|
|
|
|
from(e in Event, where: e.url == ^url)
|
|
|
|
end
|
2019-03-08 12:25:06 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec event_by_uuid_query(String.t()) :: Ecto.Query.t()
|
|
|
|
defp event_by_uuid_query(uuid) do
|
|
|
|
from(e in Event, where: e.uuid == ^uuid)
|
|
|
|
end
|
2019-03-08 12:25:06 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec event_for_actor_query(integer | String.t()) :: Ecto.Query.t()
|
|
|
|
defp event_for_actor_query(actor_id) do
|
|
|
|
from(
|
|
|
|
e in Event,
|
|
|
|
where: e.organizer_actor_id == ^actor_id,
|
|
|
|
order_by: [desc: :id]
|
|
|
|
)
|
|
|
|
end
|
2019-03-08 12:25:06 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec upcoming_public_event_for_actor_query(integer | String.t()) :: Ecto.Query.t()
|
|
|
|
defp upcoming_public_event_for_actor_query(actor_id) do
|
|
|
|
from(
|
|
|
|
e in Event,
|
|
|
|
where:
|
|
|
|
e.organizer_actor_id == ^actor_id and
|
|
|
|
e.begins_on > ^DateTime.utc_now(),
|
|
|
|
order_by: [asc: :begins_on],
|
|
|
|
limit: 1,
|
|
|
|
preload: [
|
|
|
|
:organizer_actor,
|
|
|
|
:tags,
|
|
|
|
:participants,
|
|
|
|
:physical_address
|
|
|
|
]
|
|
|
|
)
|
|
|
|
end
|
2019-03-08 12:25:06 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec close_events_query(Geo.geometry(), number) :: Ecto.Query.t()
|
|
|
|
defp close_events_query(point, radius) do
|
2019-03-08 12:25:06 +01:00
|
|
|
from(
|
2019-09-16 02:07:44 +02:00
|
|
|
e in Event,
|
|
|
|
join: a in Address,
|
|
|
|
on: a.id == e.physical_address_id,
|
|
|
|
where: e.visibility == ^:public and st_dwithin_in_meters(^point, a.geom, ^radius),
|
|
|
|
preload: :organizer_actor
|
2019-03-08 12:25:06 +01:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2019-10-02 17:59:07 +02:00
|
|
|
@spec user_events_query(Ecto.Query.t(), number()) :: Ecto.Query.t()
|
|
|
|
defp user_events_query(query, user_id) do
|
|
|
|
from(
|
|
|
|
e in query,
|
|
|
|
join: a in Actor,
|
|
|
|
on: a.id == e.organizer_actor_id,
|
|
|
|
where: a.user_id == ^user_id
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec events_by_name_query(String.t()) :: Ecto.Query.t()
|
|
|
|
defp events_by_name_query(name) do
|
2019-03-08 18:52:27 +01:00
|
|
|
from(
|
2019-09-16 02:07:44 +02:00
|
|
|
e in Event,
|
|
|
|
where:
|
|
|
|
e.visibility == ^:public and
|
|
|
|
fragment("f_unaccent(?) %> f_unaccent(?)", e.title, ^name),
|
|
|
|
order_by: fragment("word_similarity(?, ?) desc", e.title, ^name),
|
|
|
|
preload: [:organizer_actor]
|
2019-03-08 18:52:27 +01:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec events_by_tags_query([integer], integer) :: Ecto.Query.t()
|
|
|
|
def events_by_tags_query(tags_ids, limit) do
|
2019-03-08 18:52:27 +01:00
|
|
|
from(
|
2019-09-16 02:07:44 +02:00
|
|
|
e in Event,
|
|
|
|
distinct: e.uuid,
|
|
|
|
join: te in "events_tags",
|
|
|
|
on: e.id == te.event_id,
|
|
|
|
where: e.begins_on > ^DateTime.utc_now(),
|
|
|
|
where: e.visibility in ^@public_visibility,
|
|
|
|
where: te.tag_id in ^tags_ids,
|
|
|
|
order_by: [asc: e.begins_on],
|
|
|
|
limit: ^limit
|
2019-03-08 18:52:27 +01:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec count_events_for_actor_query(integer | String.t()) :: Ecto.Query.t()
|
|
|
|
defp count_events_for_actor_query(actor_id) do
|
|
|
|
from(
|
|
|
|
e in Event,
|
|
|
|
select: count(e.id),
|
|
|
|
where: e.organizer_actor_id == ^actor_id
|
|
|
|
)
|
|
|
|
end
|
2019-03-08 12:25:06 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec count_local_events_query :: Ecto.Query.t()
|
|
|
|
defp count_local_events_query do
|
|
|
|
from(e in Event, select: count(e.id), where: e.local == ^true)
|
|
|
|
end
|
2019-03-08 12:25:06 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec tag_by_slug_query(String.t()) :: Ecto.Query.t()
|
|
|
|
defp tag_by_slug_query(slug) do
|
|
|
|
from(t in Tag, where: t.slug == ^slug)
|
|
|
|
end
|
2019-03-08 12:25:06 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec tags_for_event_query(integer) :: Ecto.Query.t()
|
|
|
|
defp tags_for_event_query(event_id) do
|
|
|
|
from(
|
|
|
|
t in Tag,
|
|
|
|
join: e in "events_tags",
|
|
|
|
on: t.id == e.tag_id,
|
|
|
|
where: e.event_id == ^event_id
|
|
|
|
)
|
|
|
|
end
|
2019-03-08 12:25:06 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec tags_linked_query(integer, integer) :: Ecto.Query.t()
|
|
|
|
defp tags_linked_query(tag1_id, tag2_id) do
|
|
|
|
from(
|
|
|
|
tr in TagRelation,
|
|
|
|
where:
|
|
|
|
tr.tag_id == ^min(tag1_id, tag2_id) and
|
|
|
|
tr.link_id == ^max(tag1_id, tag2_id)
|
|
|
|
)
|
|
|
|
end
|
2019-03-08 18:52:27 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec tag_relation_subquery(integer) :: Ecto.Query.t()
|
|
|
|
defp tag_relation_subquery(tag_id) do
|
|
|
|
from(
|
|
|
|
tr in TagRelation,
|
|
|
|
select: %{id: tr.tag_id, weight: tr.weight},
|
|
|
|
where: tr.link_id == ^tag_id
|
|
|
|
)
|
2019-03-08 12:25:06 +01:00
|
|
|
end
|
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec tag_relation_union_subquery(Ecto.Query.t(), integer) :: Ecto.Query.t()
|
|
|
|
defp tag_relation_union_subquery(subquery, tag_id) do
|
|
|
|
from(
|
|
|
|
tr in TagRelation,
|
|
|
|
select: %{id: tr.link_id, weight: tr.weight},
|
|
|
|
union_all: ^subquery,
|
|
|
|
where: tr.tag_id == ^tag_id
|
|
|
|
)
|
|
|
|
end
|
2019-03-08 12:25:06 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec tag_neighbors_query(Ecto.Query.t(), integer, integer) :: Ecto.Query.t()
|
|
|
|
defp tag_neighbors_query(subquery, relation_minimum, limit) do
|
|
|
|
from(
|
|
|
|
t in Tag,
|
|
|
|
right_join: q in subquery(subquery),
|
|
|
|
on: [id: t.id],
|
|
|
|
where: q.weight >= ^relation_minimum,
|
|
|
|
limit: ^limit,
|
|
|
|
order_by: [desc: q.weight]
|
|
|
|
)
|
|
|
|
end
|
2019-03-08 12:25:06 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec participant_by_url_query(String.t()) :: Ecto.Query.t()
|
|
|
|
defp participant_by_url_query(url) do
|
|
|
|
from(
|
|
|
|
p in Participant,
|
|
|
|
where: p.url == ^url,
|
|
|
|
preload: [:actor, :event]
|
|
|
|
)
|
|
|
|
end
|
2019-03-08 12:25:06 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
defp organizers_participants_for_event(event_id) do
|
|
|
|
from(
|
|
|
|
p in Participant,
|
|
|
|
where: p.event_id == ^event_id and p.role == ^:creator,
|
|
|
|
preload: [:actor]
|
|
|
|
)
|
2019-03-08 12:25:06 +01:00
|
|
|
end
|
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec requests_for_actor_query(integer) :: Ecto.Query.t()
|
|
|
|
defp requests_for_actor_query(actor_id) do
|
|
|
|
from(p in Participant, where: p.actor_id == ^actor_id and p.role == ^:not_approved)
|
|
|
|
end
|
2019-03-08 12:25:06 +01:00
|
|
|
|
2019-09-21 23:59:07 +02:00
|
|
|
@spec count_participants_query(integer) :: Ecto.Query.t()
|
|
|
|
defp count_participants_query(event_id) do
|
|
|
|
from(p in Participant, where: p.event_id == ^event_id)
|
|
|
|
end
|
2019-03-08 12:25:06 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec event_participations_for_actor_query(integer) :: Ecto.Query.t()
|
|
|
|
def event_participations_for_actor_query(actor_id) do
|
|
|
|
from(
|
2019-09-26 16:38:58 +02:00
|
|
|
p in Participant,
|
|
|
|
join: e in Event,
|
2019-09-16 02:07:44 +02:00
|
|
|
on: p.event_id == e.id,
|
2019-09-26 16:38:58 +02:00
|
|
|
where: p.actor_id == ^actor_id and p.role != ^:not_approved,
|
|
|
|
preload: [:event]
|
2019-09-16 02:07:44 +02:00
|
|
|
)
|
|
|
|
end
|
2019-03-08 12:25:06 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec sessions_for_event_query(integer) :: Ecto.Query.t()
|
|
|
|
defp sessions_for_event_query(event_id) do
|
|
|
|
from(
|
|
|
|
s in Session,
|
|
|
|
join: e in Event,
|
|
|
|
on: s.event_id == e.id,
|
|
|
|
where: e.id == ^event_id
|
|
|
|
)
|
|
|
|
end
|
2019-03-08 12:25:06 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec sessions_for_track_query(integer) :: Ecto.Query.t()
|
|
|
|
defp sessions_for_track_query(track_id) do
|
|
|
|
from(s in Session, where: s.track_id == ^track_id)
|
|
|
|
end
|
2019-03-08 12:25:06 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
defp public_comments_for_actor_query(actor_id) do
|
|
|
|
from(
|
|
|
|
c in Comment,
|
|
|
|
where: c.actor_id == ^actor_id and c.visibility in ^@public_visibility,
|
|
|
|
order_by: [desc: :id],
|
|
|
|
preload: [
|
|
|
|
:actor,
|
|
|
|
:in_reply_to_comment,
|
|
|
|
:origin_comment,
|
|
|
|
:event
|
|
|
|
]
|
|
|
|
)
|
2019-03-08 12:25:06 +01:00
|
|
|
end
|
|
|
|
|
2019-09-20 18:22:03 +02:00
|
|
|
@spec list_participants_for_event_query(String.t()) :: Ecto.Query.t()
|
2019-09-26 16:38:58 +02:00
|
|
|
defp list_participants_for_event_query(event_id) do
|
2019-09-20 18:22:03 +02:00
|
|
|
from(
|
|
|
|
p in Participant,
|
|
|
|
join: e in Event,
|
|
|
|
on: p.event_id == e.id,
|
2019-09-26 16:38:58 +02:00
|
|
|
where: e.id == ^event_id,
|
2019-09-20 18:22:03 +02:00
|
|
|
preload: [:actor]
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2019-09-30 18:18:04 +02:00
|
|
|
@spec list_participants_for_event_query(String.t()) :: Ecto.Query.t()
|
|
|
|
def list_local_emails_user_participants_for_event_query(event_id) do
|
|
|
|
Participant
|
|
|
|
|> join(:inner, [p], a in Actor, on: p.actor_id == a.id and is_nil(a.domain))
|
|
|
|
|> join(:left, [_p, a], u in User, on: a.user_id == u.id)
|
|
|
|
|> where([p], p.event_id == ^event_id)
|
|
|
|
|> select([_p, a, u], {a, u})
|
|
|
|
end
|
|
|
|
|
2019-09-20 18:22:03 +02:00
|
|
|
@spec list_participations_for_user_query(integer()) :: Ecto.Query.t()
|
|
|
|
defp list_participations_for_user_query(user_id) do
|
|
|
|
from(
|
|
|
|
p in Participant,
|
|
|
|
join: e in Event,
|
|
|
|
join: a in Actor,
|
|
|
|
on: p.actor_id == a.id,
|
|
|
|
on: p.event_id == e.id,
|
|
|
|
where: a.user_id == ^user_id and p.role != ^:not_approved,
|
|
|
|
preload: [:event, :actor]
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec count_comments_query(integer) :: Ecto.Query.t()
|
|
|
|
defp count_comments_query(actor_id) do
|
|
|
|
from(c in Comment, select: count(c.id), where: c.actor_id == ^actor_id)
|
|
|
|
end
|
2019-03-08 12:25:06 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec count_local_comments_query :: Ecto.Query.t()
|
|
|
|
defp count_local_comments_query do
|
|
|
|
from(
|
|
|
|
c in Comment,
|
|
|
|
select: count(c.id),
|
|
|
|
where: c.local == ^true and c.visibility in ^@public_visibility
|
|
|
|
)
|
|
|
|
end
|
2019-03-08 12:25:06 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec feed_token_query(String.t()) :: Ecto.Query.t()
|
|
|
|
defp feed_token_query(token) do
|
|
|
|
from(ftk in FeedToken, where: ftk.token == ^token, preload: [:actor, :user])
|
|
|
|
end
|
2019-03-08 12:25:06 +01:00
|
|
|
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec feed_token_for_user_query(integer) :: Ecto.Query.t()
|
|
|
|
defp feed_token_for_user_query(user_id) do
|
|
|
|
from(tk in FeedToken, where: tk.user_id == ^user_id, preload: [:actor, :user])
|
|
|
|
end
|
|
|
|
|
|
|
|
@spec feed_token_for_actor_query(integer) :: Ecto.Query.t()
|
|
|
|
defp feed_token_for_actor_query(actor_id) do
|
|
|
|
from(tk in FeedToken, where: tk.actor_id == ^actor_id, preload: [:actor, :user])
|
|
|
|
end
|
|
|
|
|
|
|
|
@spec filter_public_visibility(Ecto.Query.t()) :: Ecto.Query.t()
|
|
|
|
defp filter_public_visibility(query) do
|
|
|
|
from(e in query, where: e.visibility in ^@public_visibility)
|
|
|
|
end
|
|
|
|
|
|
|
|
@spec filter_not_event_uuid(Ecto.Query.t(), String.t() | nil) :: Ecto.Query.t()
|
|
|
|
defp filter_not_event_uuid(query, nil), do: query
|
|
|
|
|
|
|
|
defp filter_not_event_uuid(query, not_event_uuid) do
|
|
|
|
from(e in query, where: e.uuid != ^not_event_uuid)
|
|
|
|
end
|
|
|
|
|
2019-10-02 17:59:07 +02:00
|
|
|
@spec filter_draft(Ecto.Query.t(), boolean) :: Ecto.Query.t()
|
|
|
|
defp filter_draft(query, is_draft \\ false) do
|
|
|
|
from(e in query, where: e.draft == ^is_draft)
|
|
|
|
end
|
|
|
|
|
2019-10-09 16:37:39 +02:00
|
|
|
# Currently happening events are also future events
|
2019-09-16 02:07:44 +02:00
|
|
|
@spec filter_future_events(Ecto.Query.t(), boolean) :: Ecto.Query.t()
|
|
|
|
defp filter_future_events(query, true) do
|
2019-10-09 16:37:39 +02:00
|
|
|
from(q in query,
|
|
|
|
where: q.begins_on > ^DateTime.utc_now() or q.ends_on > ^DateTime.utc_now()
|
|
|
|
)
|
2019-03-08 12:25:06 +01:00
|
|
|
end
|
2019-09-16 02:07:44 +02:00
|
|
|
|
|
|
|
defp filter_future_events(query, false), do: query
|
|
|
|
|
|
|
|
@spec filter_unlisted(Ecto.Query.t(), boolean) :: Ecto.Query.t()
|
|
|
|
defp filter_unlisted(query, true) do
|
|
|
|
from(q in query, where: q.visibility in ^@public_visibility)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp filter_unlisted(query, false) do
|
|
|
|
from(q in query, where: q.visibility == ^:public)
|
|
|
|
end
|
|
|
|
|
2019-09-21 23:59:07 +02:00
|
|
|
@spec filter_approved_role(Ecto.Query.t()) :: Ecto.Query.t()
|
|
|
|
defp filter_approved_role(query) do
|
2019-09-30 13:48:47 +02:00
|
|
|
from(p in query, where: p.role not in ^[:not_approved, :rejected])
|
2019-09-16 02:07:44 +02:00
|
|
|
end
|
|
|
|
|
2019-10-11 11:50:06 +02:00
|
|
|
@spec filter_participant_role(Ecto.Query.t()) :: Ecto.Query.t()
|
|
|
|
defp filter_participant_role(query) do
|
|
|
|
from(p in query, where: p.role == ^:participant)
|
|
|
|
end
|
|
|
|
|
2019-09-21 23:59:07 +02:00
|
|
|
@spec filter_unapproved_role(Ecto.Query.t()) :: Ecto.Query.t()
|
|
|
|
defp filter_unapproved_role(query) do
|
|
|
|
from(p in query, where: p.role == ^:not_approved)
|
|
|
|
end
|
|
|
|
|
2019-09-30 13:48:47 +02:00
|
|
|
@spec filter_rejected_role(Ecto.Query.t()) :: Ecto.Query.t()
|
|
|
|
defp filter_rejected_role(query) do
|
|
|
|
from(p in query, where: p.role == ^:rejected)
|
|
|
|
end
|
|
|
|
|
2019-09-20 18:22:03 +02:00
|
|
|
@spec filter_role(Ecto.Query.t(), list(atom())) :: Ecto.Query.t()
|
|
|
|
defp filter_role(query, []), do: query
|
|
|
|
|
|
|
|
defp filter_role(query, roles) do
|
|
|
|
where(query, [p], p.role in ^roles)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp participation_filter_begins_on(query, nil, nil),
|
|
|
|
do: participation_order_begins_on_desc(query)
|
|
|
|
|
|
|
|
defp participation_filter_begins_on(query, %DateTime{} = after_datetime, nil) do
|
|
|
|
query
|
|
|
|
|> where([_p, e, _a], e.begins_on > ^after_datetime)
|
|
|
|
|> participation_order_begins_on_asc()
|
|
|
|
end
|
|
|
|
|
|
|
|
defp participation_filter_begins_on(query, nil, %DateTime{} = before_datetime) do
|
|
|
|
query
|
|
|
|
|> where([_p, e, _a], e.begins_on < ^before_datetime)
|
|
|
|
|> participation_order_begins_on_desc()
|
|
|
|
end
|
|
|
|
|
|
|
|
defp participation_order_begins_on_asc(query),
|
|
|
|
do: order_by(query, [_p, e, _a], asc: e.begins_on)
|
|
|
|
|
|
|
|
defp participation_order_begins_on_desc(query),
|
|
|
|
do: order_by(query, [_p, e, _a], desc: e.begins_on)
|
2019-09-16 02:07:44 +02:00
|
|
|
|
|
|
|
@spec preload_for_event(Ecto.Query.t()) :: Ecto.Query.t()
|
|
|
|
defp preload_for_event(query), do: preload(query, ^@event_preloads)
|
|
|
|
|
|
|
|
@spec preload_for_comment(Ecto.Query.t()) :: Ecto.Query.t()
|
|
|
|
defp preload_for_comment(query), do: preload(query, ^@comment_preloads)
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|