mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
153 lines
2.9 KiB
Elixir
153 lines
2.9 KiB
Elixir
defmodule Philomena.Reports do
|
|
@moduledoc """
|
|
The Reports context.
|
|
"""
|
|
|
|
import Ecto.Query, warn: false
|
|
alias Philomena.Repo
|
|
|
|
alias Philomena.Elasticsearch
|
|
alias Philomena.Reports.Report
|
|
alias Philomena.Polymorphic
|
|
|
|
@doc """
|
|
Returns the list of reports.
|
|
|
|
## Examples
|
|
|
|
iex> list_reports()
|
|
[%Report{}, ...]
|
|
|
|
"""
|
|
def list_reports do
|
|
Repo.all(Report)
|
|
end
|
|
|
|
@doc """
|
|
Gets a single report.
|
|
|
|
Raises `Ecto.NoResultsError` if the Report does not exist.
|
|
|
|
## Examples
|
|
|
|
iex> get_report!(123)
|
|
%Report{}
|
|
|
|
iex> get_report!(456)
|
|
** (Ecto.NoResultsError)
|
|
|
|
"""
|
|
def get_report!(id), do: Repo.get!(Report, id)
|
|
|
|
@doc """
|
|
Creates a report.
|
|
|
|
## Examples
|
|
|
|
iex> create_report(%{field: value})
|
|
{:ok, %Report{}}
|
|
|
|
iex> create_report(%{field: bad_value})
|
|
{:error, %Ecto.Changeset{}}
|
|
|
|
"""
|
|
def create_report(reportable_id, reportable_type, attribution, attrs \\ %{}) do
|
|
%Report{reportable_id: reportable_id, reportable_type: reportable_type}
|
|
|> Report.creation_changeset(attrs, attribution)
|
|
|> Repo.insert()
|
|
end
|
|
|
|
@doc """
|
|
Updates a report.
|
|
|
|
## Examples
|
|
|
|
iex> update_report(report, %{field: new_value})
|
|
{:ok, %Report{}}
|
|
|
|
iex> update_report(report, %{field: bad_value})
|
|
{:error, %Ecto.Changeset{}}
|
|
|
|
"""
|
|
def update_report(%Report{} = report, attrs) do
|
|
report
|
|
|> Report.changeset(attrs)
|
|
|> Repo.update()
|
|
end
|
|
|
|
@doc """
|
|
Deletes a Report.
|
|
|
|
## Examples
|
|
|
|
iex> delete_report(report)
|
|
{:ok, %Report{}}
|
|
|
|
iex> delete_report(report)
|
|
{:error, %Ecto.Changeset{}}
|
|
|
|
"""
|
|
def delete_report(%Report{} = report) do
|
|
Repo.delete(report)
|
|
end
|
|
|
|
@doc """
|
|
Returns an `%Ecto.Changeset{}` for tracking report changes.
|
|
|
|
## Examples
|
|
|
|
iex> change_report(report)
|
|
%Ecto.Changeset{source: %Report{}}
|
|
|
|
"""
|
|
def change_report(%Report{} = report) do
|
|
Report.changeset(report, %{})
|
|
end
|
|
|
|
def claim_report(%Report{} = report, user) do
|
|
report
|
|
|> Report.claim_changeset(user)
|
|
|> Repo.update()
|
|
end
|
|
|
|
def unclaim_report(%Report{} = report) do
|
|
report
|
|
|> Report.unclaim_changeset()
|
|
|> Repo.update()
|
|
end
|
|
|
|
def close_report(%Report{} = report, user) do
|
|
report
|
|
|> Report.close_changeset(user)
|
|
|> Repo.update()
|
|
end
|
|
|
|
def reindex_reports(report_ids) do
|
|
spawn fn ->
|
|
Report
|
|
|> where([r], r.id in ^report_ids)
|
|
|> preload([:user, :admin])
|
|
|> Repo.all()
|
|
|> Polymorphic.load_polymorphic(reportable: [reportable_id: :reportable_type])
|
|
|> Enum.map(&Elasticsearch.index_document(&1, Report))
|
|
end
|
|
|
|
report_ids
|
|
end
|
|
|
|
def reindex_report(%Report{} = report) do
|
|
reindex_reports([report.id])
|
|
|
|
report
|
|
end
|
|
|
|
def count_reports(user) do
|
|
if Canada.Can.can?(user, :index, Report) do
|
|
Report
|
|
|> where(open: true)
|
|
|> Repo.aggregate(:count, :id)
|
|
else
|
|
nil
|
|
end
|
|
end
|
|
end
|