2020-07-09 17:24:28 +02:00
|
|
|
defmodule Mobilizon.Discussions do
|
2020-02-18 08:57:00 +01:00
|
|
|
@moduledoc """
|
2020-07-09 17:24:28 +02:00
|
|
|
The discussions context
|
2020-02-18 08:57:00 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
import EctoEnum
|
|
|
|
import Ecto.Query
|
|
|
|
|
|
|
|
alias Ecto.Changeset
|
|
|
|
alias Ecto.Multi
|
|
|
|
alias Mobilizon.Actors.Actor
|
2020-07-09 17:24:28 +02:00
|
|
|
alias Mobilizon.Discussions.{Comment, Discussion}
|
2020-02-18 08:57:00 +01:00
|
|
|
alias Mobilizon.Storage.{Page, Repo}
|
|
|
|
|
|
|
|
defenum(
|
|
|
|
CommentVisibility,
|
|
|
|
:comment_visibility,
|
|
|
|
[
|
|
|
|
:public,
|
|
|
|
:unlisted,
|
|
|
|
:private,
|
|
|
|
:moderated,
|
|
|
|
:invite
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
defenum(
|
|
|
|
CommentModeration,
|
|
|
|
:comment_moderation,
|
|
|
|
[
|
|
|
|
:allow_all,
|
|
|
|
:moderated,
|
|
|
|
:closed
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
@comment_preloads [
|
|
|
|
:actor,
|
|
|
|
:event,
|
|
|
|
:attributed_to,
|
|
|
|
:in_reply_to_comment,
|
|
|
|
:origin_comment,
|
|
|
|
:replies,
|
|
|
|
:tags,
|
2020-07-09 17:24:28 +02:00
|
|
|
:mentions,
|
2021-02-26 14:04:10 +01:00
|
|
|
:discussion,
|
|
|
|
:media
|
2020-02-18 08:57:00 +01:00
|
|
|
]
|
|
|
|
|
2020-07-09 17:24:28 +02:00
|
|
|
@discussion_preloads [
|
2020-02-18 08:57:00 +01:00
|
|
|
:last_comment,
|
|
|
|
:comments,
|
|
|
|
:creator,
|
|
|
|
:actor
|
|
|
|
]
|
|
|
|
|
|
|
|
@public_visibility [:public, :unlisted]
|
|
|
|
|
2021-01-18 12:09:40 +01:00
|
|
|
@doc """
|
|
|
|
Callback for Absinthe Ecto Dataloader
|
|
|
|
"""
|
2021-01-22 19:11:13 +01:00
|
|
|
# sobelow_skip ["SQL.Query"]
|
2021-01-18 12:09:40 +01:00
|
|
|
@spec data :: Dataloader.Ecto.t()
|
2020-02-18 08:57:00 +01:00
|
|
|
def data do
|
|
|
|
Dataloader.Ecto.new(Repo, query: &query/2)
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Query for comment dataloader
|
|
|
|
|
|
|
|
We only get first comment of thread, and count replies.
|
|
|
|
Read: https://hexdocs.pm/absinthe/ecto.html#dataloader
|
|
|
|
"""
|
2021-09-24 16:46:42 +02:00
|
|
|
@spec query(atom(), map()) :: Ecto.Query.t()
|
2021-05-17 11:36:28 +02:00
|
|
|
def query(Comment, %{top_level: true}) do
|
2020-02-18 08:57:00 +01:00
|
|
|
Comment
|
|
|
|
|> join(:left, [c], r in Comment, on: r.origin_comment_id == c.id)
|
|
|
|
|> where([c, _], is_nil(c.in_reply_to_comment_id))
|
2020-06-18 16:50:47 +02:00
|
|
|
# TODO: This was added because we don't want to count deleted comments in total_replies.
|
|
|
|
# However, it also excludes all top-level comments with deleted replies from being selected
|
|
|
|
# |> where([_, r], is_nil(r.deleted_at))
|
2020-02-18 08:57:00 +01:00
|
|
|
|> group_by([c], c.id)
|
2021-06-10 09:36:25 +02:00
|
|
|
|> order_by([c], desc: :is_announcement, asc: :published_at)
|
2020-02-18 08:57:00 +01:00
|
|
|
|> select([c, r], %{c | total_replies: count(r.id)})
|
|
|
|
end
|
|
|
|
|
2021-05-17 11:36:28 +02:00
|
|
|
def query(Comment, _) do
|
2021-06-10 09:36:25 +02:00
|
|
|
order_by(Comment, [c], asc: :is_announcement, asc: :published_at)
|
2021-05-17 11:36:28 +02:00
|
|
|
end
|
|
|
|
|
2020-02-18 08:57:00 +01:00
|
|
|
def query(queryable, _) do
|
|
|
|
queryable
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Gets a single comment.
|
|
|
|
"""
|
|
|
|
@spec get_comment(integer | String.t()) :: Comment.t() | nil
|
|
|
|
def get_comment(nil), do: nil
|
|
|
|
def get_comment(id), do: Repo.get(Comment, id)
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Gets a single comment.
|
|
|
|
Raises `Ecto.NoResultsError` if the comment does not exist.
|
|
|
|
"""
|
|
|
|
@spec get_comment!(integer | String.t()) :: Comment.t()
|
|
|
|
def get_comment!(id), do: Repo.get!(Comment, id)
|
|
|
|
|
2021-01-18 12:09:40 +01:00
|
|
|
@doc """
|
|
|
|
Get a single comment by it's ID and all associations preloaded
|
|
|
|
"""
|
2020-08-27 11:53:24 +02:00
|
|
|
@spec get_comment_with_preload(String.t() | integer() | nil) :: Comment.t() | nil
|
2020-02-18 08:57:00 +01:00
|
|
|
def get_comment_with_preload(nil), do: nil
|
|
|
|
|
|
|
|
def get_comment_with_preload(id) do
|
|
|
|
Comment
|
|
|
|
|> where(id: ^id)
|
|
|
|
|> preload_for_comment()
|
|
|
|
|> Repo.one()
|
|
|
|
end
|
|
|
|
|
|
|
|
@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)
|
|
|
|
|
|
|
|
@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
|
|
|
|
query = from(c in Comment, where: c.url == ^url)
|
|
|
|
|
|
|
|
comment =
|
|
|
|
query
|
|
|
|
|> preload_for_comment()
|
|
|
|
|> Repo.one()
|
|
|
|
|
|
|
|
case comment do
|
|
|
|
%Comment{} = comment ->
|
|
|
|
{:ok, comment}
|
|
|
|
|
|
|
|
nil ->
|
|
|
|
{:error, :comment_not_found}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Gets a comment by its URL, with all associations loaded.
|
|
|
|
Raises `Ecto.NoResultsError` if the comment does not exist.
|
|
|
|
"""
|
2021-09-24 16:46:42 +02:00
|
|
|
@spec get_comment_from_url_with_preload!(String.t()) :: Comment.t()
|
2020-02-18 08:57:00 +01:00
|
|
|
def get_comment_from_url_with_preload!(url) do
|
|
|
|
Comment
|
|
|
|
|> Repo.get_by!(url: url)
|
|
|
|
|> Repo.preload(@comment_preloads)
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Gets a comment by its UUID, with all associations loaded.
|
|
|
|
"""
|
2021-09-24 16:46:42 +02:00
|
|
|
@spec get_comment_from_uuid_with_preload(String.t()) :: Comment.t() | nil
|
2020-02-18 08:57:00 +01:00
|
|
|
def get_comment_from_uuid_with_preload(uuid) do
|
|
|
|
Comment
|
|
|
|
|> Repo.get_by(uuid: uuid)
|
|
|
|
|> Repo.preload(@comment_preloads)
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Gets paginated replies for root comment
|
|
|
|
"""
|
|
|
|
@spec get_thread_replies(integer()) :: [Comment.t()]
|
|
|
|
def get_thread_replies(parent_id) do
|
|
|
|
parent_id
|
|
|
|
|> public_replies_for_thread_query()
|
|
|
|
|> Repo.all()
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Creates a comment.
|
|
|
|
"""
|
|
|
|
@spec create_comment(map) :: {:ok, Comment.t()} | {:error, Changeset.t()}
|
|
|
|
def create_comment(attrs \\ %{}) do
|
|
|
|
with {:ok, %Comment{} = comment} <-
|
|
|
|
%Comment{}
|
|
|
|
|> Comment.changeset(attrs)
|
|
|
|
|> Repo.insert(),
|
|
|
|
%Comment{} = comment <- Repo.preload(comment, @comment_preloads) do
|
|
|
|
{:ok, comment}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Updates a comment.
|
|
|
|
"""
|
|
|
|
@spec update_comment(Comment.t(), map) :: {:ok, Comment.t()} | {:error, Changeset.t()}
|
|
|
|
def update_comment(%Comment{} = comment, attrs) do
|
|
|
|
comment
|
|
|
|
|> Comment.update_changeset(attrs)
|
|
|
|
|> Repo.update()
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Deletes a comment
|
|
|
|
|
|
|
|
But actually just empty the fields so that threads are not broken.
|
|
|
|
"""
|
2020-08-27 11:53:24 +02:00
|
|
|
@spec delete_comment(Comment.t(), Keyword.t()) :: {:ok, Comment.t()} | {:error, Changeset.t()}
|
|
|
|
def delete_comment(%Comment{} = comment, options \\ []) do
|
|
|
|
if Keyword.get(options, :force, false) == false do
|
|
|
|
with {:ok, %Comment{} = comment} <-
|
|
|
|
comment
|
|
|
|
|> Comment.delete_changeset()
|
|
|
|
|> Repo.update(),
|
|
|
|
%Comment{} = comment <- get_comment_with_preload(comment.id) do
|
|
|
|
{:ok, comment}
|
|
|
|
end
|
|
|
|
else
|
2021-09-10 11:27:59 +02:00
|
|
|
Repo.delete(comment)
|
2020-08-27 11:53:24 +02:00
|
|
|
end
|
2020-02-18 08:57:00 +01:00
|
|
|
end
|
|
|
|
|
2021-01-18 12:09:40 +01:00
|
|
|
@doc """
|
|
|
|
Returns a paginated list of local comments
|
|
|
|
"""
|
2020-08-31 17:26:08 +02:00
|
|
|
@spec list_local_comments(integer | nil, integer | nil) :: Page.t()
|
|
|
|
def list_local_comments(page \\ nil, limit \\ nil) do
|
|
|
|
Comment
|
|
|
|
|> where([c], c.visibility == ^:public)
|
|
|
|
|> where([c], is_nil(c.deleted_at))
|
|
|
|
|> where([c], is_nil(c.discussion_id))
|
|
|
|
|> preload_for_comment()
|
|
|
|
|> Page.build_page(page, limit)
|
|
|
|
end
|
|
|
|
|
2020-02-18 08:57:00 +01:00
|
|
|
@doc """
|
|
|
|
Returns the list of public comments for the actor.
|
|
|
|
"""
|
2020-07-09 17:24:28 +02:00
|
|
|
@spec list_public_comments_for_actor(Actor.t(), integer | nil, integer | nil) :: Page.t()
|
2020-02-18 08:57:00 +01:00
|
|
|
def list_public_comments_for_actor(%Actor{id: actor_id}, page \\ nil, limit \\ nil) do
|
2020-07-09 17:24:28 +02:00
|
|
|
actor_id
|
|
|
|
|> public_comments_for_actor_query()
|
|
|
|
|> Page.build_page(page, limit)
|
2020-02-18 08:57:00 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
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: []
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2021-01-18 12:09:40 +01:00
|
|
|
@doc """
|
|
|
|
Get all the comments contained into a discussion
|
|
|
|
"""
|
2020-07-09 17:24:28 +02:00
|
|
|
@spec get_comments_for_discussion(integer, integer | nil, integer | nil) :: Page.t()
|
|
|
|
def get_comments_for_discussion(discussion_id, page \\ nil, limit \\ nil) do
|
2020-02-18 08:57:00 +01:00
|
|
|
Comment
|
2020-07-09 17:24:28 +02:00
|
|
|
|> where([c], c.discussion_id == ^discussion_id)
|
2020-02-18 08:57:00 +01:00
|
|
|
|> order_by(asc: :inserted_at)
|
|
|
|
|> Page.build_page(page, limit)
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
2020-10-15 11:04:05 +02:00
|
|
|
Counts local comments under events
|
2020-02-18 08:57:00 +01:00
|
|
|
"""
|
2020-10-15 11:04:05 +02:00
|
|
|
@spec count_local_comments_under_events :: integer
|
|
|
|
def count_local_comments_under_events do
|
|
|
|
count_local_comments_query()
|
|
|
|
|> filter_comments_under_events()
|
|
|
|
|> Repo.one()
|
|
|
|
end
|
2020-02-18 08:57:00 +01:00
|
|
|
|
2020-09-30 10:42:19 +02:00
|
|
|
@doc """
|
|
|
|
Counts all comments.
|
|
|
|
"""
|
2020-10-15 11:04:05 +02:00
|
|
|
@spec count_comments_under_events :: integer
|
|
|
|
def count_comments_under_events do
|
|
|
|
count_comments_query()
|
|
|
|
|> filter_comments_under_events()
|
|
|
|
|> Repo.one()
|
|
|
|
end
|
2020-09-30 10:42:19 +02:00
|
|
|
|
2021-01-18 12:09:40 +01:00
|
|
|
@doc """
|
|
|
|
Get a discussion by it's ID
|
|
|
|
"""
|
2021-03-04 11:43:35 +01:00
|
|
|
@spec get_discussion(String.t() | integer()) :: Discussion.t() | nil
|
2020-07-09 17:24:28 +02:00
|
|
|
def get_discussion(discussion_id) do
|
|
|
|
Discussion
|
|
|
|
|> Repo.get(discussion_id)
|
|
|
|
|> Repo.preload(@discussion_preloads)
|
|
|
|
end
|
|
|
|
|
2021-01-18 12:09:40 +01:00
|
|
|
@doc """
|
|
|
|
Get a discussion by it's URL
|
|
|
|
"""
|
2020-07-09 17:24:28 +02:00
|
|
|
@spec get_discussion_by_url(String.t() | nil) :: Discussion.t() | nil
|
|
|
|
def get_discussion_by_url(nil), do: nil
|
|
|
|
|
|
|
|
def get_discussion_by_url(discussion_url) do
|
|
|
|
Discussion
|
|
|
|
|> Repo.get_by(url: discussion_url)
|
|
|
|
|> Repo.preload(@discussion_preloads)
|
|
|
|
end
|
|
|
|
|
2021-01-18 12:09:40 +01:00
|
|
|
@doc """
|
|
|
|
Get a discussion by it's slug
|
|
|
|
"""
|
2021-09-24 16:46:42 +02:00
|
|
|
@spec get_discussion_by_slug(String.t()) :: Discussion.t() | nil
|
2020-07-09 17:24:28 +02:00
|
|
|
def get_discussion_by_slug(discussion_slug) do
|
|
|
|
Discussion
|
|
|
|
|> Repo.get_by(slug: discussion_slug)
|
|
|
|
|> Repo.preload(@discussion_preloads)
|
2020-02-18 08:57:00 +01:00
|
|
|
end
|
|
|
|
|
2021-01-18 12:09:40 +01:00
|
|
|
@doc """
|
|
|
|
Get a paginated list of discussions for a group actor
|
|
|
|
"""
|
2020-08-27 11:53:24 +02:00
|
|
|
@spec find_discussions_for_actor(Actor.t(), integer | nil, integer | nil) :: Page.t()
|
|
|
|
def find_discussions_for_actor(%Actor{id: actor_id}, page \\ nil, limit \\ nil) do
|
2020-07-09 17:24:28 +02:00
|
|
|
Discussion
|
2020-02-18 08:57:00 +01:00
|
|
|
|> where([c], c.actor_id == ^actor_id)
|
2020-07-09 17:24:28 +02:00
|
|
|
|> preload(^@discussion_preloads)
|
2020-08-14 11:32:23 +02:00
|
|
|
|> order_by(desc: :updated_at)
|
2020-02-18 08:57:00 +01:00
|
|
|
|> Page.build_page(page, limit)
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
2020-07-09 17:24:28 +02:00
|
|
|
Creates a discussion.
|
2020-02-18 08:57:00 +01:00
|
|
|
"""
|
2021-09-28 19:40:37 +02:00
|
|
|
@spec create_discussion(map()) :: {:ok, Discussion.t()} | {:error, atom(), Changeset.t(), map()}
|
|
|
|
def create_discussion(attrs) do
|
2020-07-09 17:24:28 +02:00
|
|
|
with {:ok, %{comment: %Comment{} = _comment, discussion: %Discussion{} = discussion}} <-
|
2020-02-18 08:57:00 +01:00
|
|
|
Multi.new()
|
|
|
|
|> Multi.insert(
|
|
|
|
:comment,
|
2020-07-09 17:24:28 +02:00
|
|
|
Comment.changeset(
|
|
|
|
%Comment{},
|
|
|
|
Map.merge(attrs, %{actor_id: attrs.creator_id, attributed_to_id: attrs.actor_id})
|
|
|
|
)
|
2020-02-18 08:57:00 +01:00
|
|
|
)
|
2020-07-09 17:24:28 +02:00
|
|
|
|> Multi.insert(:discussion, fn %{comment: %Comment{id: comment_id}} ->
|
|
|
|
Discussion.changeset(
|
|
|
|
%Discussion{},
|
2020-02-18 08:57:00 +01:00
|
|
|
Map.merge(attrs, %{last_comment_id: comment_id})
|
|
|
|
)
|
|
|
|
end)
|
2020-07-09 17:24:28 +02:00
|
|
|
|> Multi.update(:comment_discussion, fn %{
|
|
|
|
comment: %Comment{} = comment,
|
|
|
|
discussion: %Discussion{
|
|
|
|
id: discussion_id,
|
|
|
|
url: discussion_url
|
|
|
|
}
|
|
|
|
} ->
|
|
|
|
Changeset.change(comment, %{discussion_id: discussion_id, url: discussion_url})
|
2020-02-18 08:57:00 +01:00
|
|
|
end)
|
2021-03-04 11:43:35 +01:00
|
|
|
|> Repo.transaction(),
|
|
|
|
%Discussion{} = discussion <- Repo.preload(discussion, @discussion_preloads) do
|
2020-07-09 17:24:28 +02:00
|
|
|
{:ok, discussion}
|
2020-02-18 08:57:00 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-01-18 12:09:40 +01:00
|
|
|
@doc """
|
|
|
|
Create a response to a discussion
|
|
|
|
"""
|
2021-09-28 19:40:37 +02:00
|
|
|
@spec reply_to_discussion(Discussion.t(), map()) ::
|
|
|
|
{:ok, Discussion.t()} | {:error, atom(), Ecto.Changeset.t(), map()}
|
2020-07-09 17:24:28 +02:00
|
|
|
def reply_to_discussion(%Discussion{id: discussion_id} = discussion, attrs \\ %{}) do
|
2021-09-28 19:40:37 +02:00
|
|
|
attrs =
|
|
|
|
Map.merge(attrs, %{
|
|
|
|
discussion_id: discussion_id,
|
|
|
|
actor_id: Map.get(attrs, :creator_id, Map.get(attrs, :actor_id))
|
|
|
|
})
|
|
|
|
|
|
|
|
changeset =
|
|
|
|
Comment.changeset(
|
|
|
|
%Comment{},
|
|
|
|
attrs
|
|
|
|
)
|
|
|
|
|
2020-07-09 17:24:28 +02:00
|
|
|
with {:ok, %{comment: %Comment{} = comment, discussion: %Discussion{} = discussion}} <-
|
2020-02-18 08:57:00 +01:00
|
|
|
Multi.new()
|
|
|
|
|> Multi.insert(
|
|
|
|
:comment,
|
2021-09-28 19:40:37 +02:00
|
|
|
changeset
|
2020-02-18 08:57:00 +01:00
|
|
|
)
|
2020-07-09 17:24:28 +02:00
|
|
|
|> Multi.update(:discussion, fn %{comment: %Comment{id: comment_id}} ->
|
|
|
|
Discussion.changeset(
|
|
|
|
discussion,
|
2020-02-18 08:57:00 +01:00
|
|
|
%{last_comment_id: comment_id}
|
|
|
|
)
|
|
|
|
end)
|
2021-03-04 11:43:35 +01:00
|
|
|
|> Repo.transaction(),
|
|
|
|
# Discussion is not updated
|
|
|
|
%Comment{} = comment <- Repo.preload(comment, @comment_preloads) do
|
2021-09-28 19:40:37 +02:00
|
|
|
{:ok, %Discussion{discussion | last_comment: comment}}
|
2020-02-18 08:57:00 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
2020-07-09 17:24:28 +02:00
|
|
|
Update a discussion. Only their title for now.
|
2020-02-18 08:57:00 +01:00
|
|
|
"""
|
2020-07-09 17:24:28 +02:00
|
|
|
@spec update_discussion(Discussion.t(), map()) ::
|
|
|
|
{:ok, Discussion.t()} | {:error, Changeset.t()}
|
|
|
|
def update_discussion(%Discussion{} = discussion, attrs \\ %{}) do
|
|
|
|
discussion
|
|
|
|
|> Discussion.changeset(attrs)
|
2020-02-18 08:57:00 +01:00
|
|
|
|> Repo.update()
|
|
|
|
end
|
|
|
|
|
2020-07-09 17:24:28 +02:00
|
|
|
@doc """
|
|
|
|
Delete a discussion.
|
|
|
|
"""
|
2021-09-28 19:40:37 +02:00
|
|
|
@spec delete_discussion(Discussion.t()) ::
|
|
|
|
{:ok, %{comments: {integer() | nil, any()}}} | {:error, :comments, Changeset.t(), map()}
|
2020-08-27 11:53:24 +02:00
|
|
|
def delete_discussion(%Discussion{id: discussion_id}) do
|
|
|
|
Multi.new()
|
|
|
|
|> Multi.delete_all(:comments, fn _ ->
|
|
|
|
where(Comment, [c], c.discussion_id == ^discussion_id)
|
|
|
|
end)
|
|
|
|
# |> Multi.delete(:discussion, discussion)
|
|
|
|
|> Repo.transaction()
|
2020-07-09 17:24:28 +02:00
|
|
|
end
|
|
|
|
|
2021-09-28 19:40:37 +02:00
|
|
|
@spec public_comments_for_actor_query(String.t() | integer()) :: Ecto.Query.t()
|
2020-02-18 08:57:00 +01:00
|
|
|
defp public_comments_for_actor_query(actor_id) do
|
|
|
|
Comment
|
|
|
|
|> where([c], c.actor_id == ^actor_id and c.visibility in ^@public_visibility)
|
|
|
|
|> order_by([c], desc: :id)
|
|
|
|
|> preload_for_comment()
|
|
|
|
end
|
|
|
|
|
2021-09-28 19:40:37 +02:00
|
|
|
@spec public_replies_for_thread_query(String.t() | integer()) :: Ecto.Query.t()
|
2020-02-18 08:57:00 +01:00
|
|
|
defp public_replies_for_thread_query(comment_id) do
|
|
|
|
Comment
|
|
|
|
|> where([c], c.origin_comment_id == ^comment_id and c.visibility in ^@public_visibility)
|
|
|
|
|> group_by([c], [c.in_reply_to_comment_id, c.id])
|
|
|
|
|> preload_for_comment()
|
|
|
|
end
|
|
|
|
|
|
|
|
@spec count_local_comments_query :: Ecto.Query.t()
|
|
|
|
defp count_local_comments_query do
|
2020-10-15 11:04:05 +02:00
|
|
|
count_comments_query()
|
|
|
|
|> where([c], local: true)
|
2020-02-18 08:57:00 +01:00
|
|
|
end
|
|
|
|
|
2020-09-30 10:42:19 +02:00
|
|
|
@spec count_comments_query :: Ecto.Query.t()
|
|
|
|
defp count_comments_query do
|
|
|
|
from(
|
|
|
|
c in Comment,
|
|
|
|
select: count(c.id),
|
|
|
|
where: c.visibility in ^@public_visibility
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2021-09-24 16:46:42 +02:00
|
|
|
@spec filter_comments_under_events(Ecto.Queryable.t()) :: Ecto.Query.t()
|
2020-10-15 11:04:05 +02:00
|
|
|
defp filter_comments_under_events(query) do
|
|
|
|
where(query, [c], is_nil(c.discussion_id) and not is_nil(c.event_id))
|
|
|
|
end
|
|
|
|
|
2021-09-24 16:46:42 +02:00
|
|
|
@spec preload_for_comment(Ecto.Queryable.t()) :: Ecto.Query.t()
|
2020-02-18 08:57:00 +01:00
|
|
|
defp preload_for_comment(query), do: preload(query, ^@comment_preloads)
|
|
|
|
end
|