mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 12:37:58 +01:00
218 lines
4.7 KiB
Elixir
218 lines
4.7 KiB
Elixir
defmodule Philomena.Comments do
|
|
@moduledoc """
|
|
The Comments context.
|
|
"""
|
|
|
|
import Ecto.Query, warn: false
|
|
alias Ecto.Multi
|
|
alias Philomena.Repo
|
|
|
|
alias Philomena.Elasticsearch
|
|
alias Philomena.Reports.Report
|
|
alias Philomena.Comments.Comment
|
|
alias Philomena.Images.Image
|
|
alias Philomena.Images
|
|
alias Philomena.Notifications
|
|
alias Philomena.Versions
|
|
|
|
@doc """
|
|
Gets a single comment.
|
|
|
|
Raises `Ecto.NoResultsError` if the Comment does not exist.
|
|
|
|
## Examples
|
|
|
|
iex> get_comment!(123)
|
|
%Comment{}
|
|
|
|
iex> get_comment!(456)
|
|
** (Ecto.NoResultsError)
|
|
|
|
"""
|
|
def get_comment!(id), do: Repo.get!(Comment, id)
|
|
|
|
@doc """
|
|
Creates a comment.
|
|
|
|
## Examples
|
|
|
|
iex> create_comment(%{field: value})
|
|
{:ok, %Comment{}}
|
|
|
|
iex> create_comment(%{field: bad_value})
|
|
{:error, %Ecto.Changeset{}}
|
|
|
|
"""
|
|
def create_comment(image, attribution, params \\ %{}) do
|
|
comment =
|
|
Ecto.build_assoc(image, :comments)
|
|
|> Comment.creation_changeset(params, attribution)
|
|
|
|
image_query =
|
|
Image
|
|
|> where(id: ^image.id)
|
|
|
|
Multi.new
|
|
|> Multi.insert(:comment, comment)
|
|
|> Multi.update_all(:image, image_query, inc: [comments_count: 1])
|
|
|> Multi.run(:subscribe, fn _repo, _changes ->
|
|
Images.create_subscription(image, attribution[:user])
|
|
end)
|
|
|> Repo.isolated_transaction(:serializable)
|
|
end
|
|
|
|
def notify_comment(comment) do
|
|
spawn fn ->
|
|
image =
|
|
comment
|
|
|> Repo.preload(:image)
|
|
|> Map.fetch!(:image)
|
|
|
|
subscriptions =
|
|
image
|
|
|> Repo.preload(:subscriptions)
|
|
|> Map.fetch!(:subscriptions)
|
|
|
|
Notifications.notify(
|
|
comment,
|
|
subscriptions,
|
|
%{
|
|
actor_id: image.id,
|
|
actor_type: "Image",
|
|
actor_child_id: comment.id,
|
|
actor_child_type: "Comment",
|
|
action: "commented on"
|
|
}
|
|
)
|
|
end
|
|
|
|
comment
|
|
end
|
|
|
|
@doc """
|
|
Updates a comment.
|
|
|
|
## Examples
|
|
|
|
iex> update_comment(comment, %{field: new_value})
|
|
{:ok, %Comment{}}
|
|
|
|
iex> update_comment(comment, %{field: bad_value})
|
|
{:error, %Ecto.Changeset{}}
|
|
|
|
"""
|
|
def update_comment(%Comment{} = comment, editor, attrs) do
|
|
now = DateTime.utc_now() |> DateTime.truncate(:second)
|
|
current_body = comment.body
|
|
current_reason = comment.edit_reason
|
|
|
|
comment_changes =
|
|
Comment.changeset(comment, attrs, now)
|
|
|
|
Multi.new
|
|
|> Multi.update(:comment, comment_changes)
|
|
|> Multi.run(:version, fn _repo, _changes ->
|
|
Versions.create_version("Comment", comment.id, editor.id, %{
|
|
"body" => current_body,
|
|
"edit_reason" => current_reason
|
|
})
|
|
end)
|
|
|> Repo.isolated_transaction(:serializable)
|
|
end
|
|
|
|
@doc """
|
|
Deletes a Comment.
|
|
|
|
## Examples
|
|
|
|
iex> delete_comment(comment)
|
|
{:ok, %Comment{}}
|
|
|
|
iex> delete_comment(comment)
|
|
{:error, %Ecto.Changeset{}}
|
|
|
|
"""
|
|
def delete_comment(%Comment{} = comment) do
|
|
Repo.delete(comment)
|
|
end
|
|
|
|
def hide_comment(%Comment{} = comment, attrs, user) do
|
|
reports =
|
|
Report
|
|
|> where(reportable_type: "Comment", reportable_id: ^comment.id)
|
|
|> select([r], r.id)
|
|
|> update(set: [open: false, state: "closed"])
|
|
|
|
comment = Comment.hide_changeset(comment, attrs, user)
|
|
|
|
Multi.new()
|
|
|> Multi.update(:comment, comment)
|
|
|> Multi.update_all(:reports, reports, [])
|
|
|> Repo.transaction()
|
|
end
|
|
|
|
def unhide_comment(%Comment{} = comment) do
|
|
comment
|
|
|> Comment.unhide_changeset()
|
|
|> Repo.update()
|
|
end
|
|
|
|
def destroy_comment(%Comment{} = comment) do
|
|
comment
|
|
|> Comment.destroy_changeset()
|
|
|> Repo.update()
|
|
end
|
|
|
|
def migrate_comments(image, duplicate_of_image) do
|
|
{count, nil} =
|
|
Comment
|
|
|> where(image_id: ^image.id)
|
|
|> Repo.update_all(set: [image_id: duplicate_of_image.id])
|
|
|
|
Image
|
|
|> where(id: ^duplicate_of_image.id)
|
|
|> Repo.update_all(inc: [comments_count: count])
|
|
|
|
reindex_comments(duplicate_of_image)
|
|
end
|
|
|
|
@doc """
|
|
Returns an `%Ecto.Changeset{}` for tracking comment changes.
|
|
|
|
## Examples
|
|
|
|
iex> change_comment(comment)
|
|
%Ecto.Changeset{source: %Comment{}}
|
|
|
|
"""
|
|
def change_comment(%Comment{} = comment) do
|
|
Comment.changeset(comment, %{})
|
|
end
|
|
|
|
def reindex_comment(%Comment{} = comment) do
|
|
spawn fn ->
|
|
Comment
|
|
|> preload(^indexing_preloads())
|
|
|> where(id: ^comment.id)
|
|
|> Repo.one()
|
|
|> Elasticsearch.index_document(Comment)
|
|
end
|
|
|
|
comment
|
|
end
|
|
|
|
def reindex_comments(image) do
|
|
spawn fn ->
|
|
Comment
|
|
|> preload(^indexing_preloads())
|
|
|> where(image_id: ^image.id)
|
|
|> Elasticsearch.reindex(Comment)
|
|
end
|
|
|
|
image
|
|
end
|
|
|
|
def indexing_preloads do
|
|
[:user, image: :tags]
|
|
end
|
|
end
|