philomena/lib/philomena_web/controllers/comment_controller.ex
2020-01-10 23:20:19 -05:00

54 lines
1.5 KiB
Elixir

defmodule PhilomenaWeb.CommentController do
use PhilomenaWeb, :controller
alias Philomena.Elasticsearch
alias Philomena.{Comments.Query, Comments.Comment, Textile.Renderer}
import Ecto.Query
def index(conn, params) do
cq = params["cq"] || "created_at.gte:1 week ago"
params = Map.put(conn.params, "cq", cq)
conn = Map.put(conn, :params, params)
user = conn.assigns.current_user
user
|> Query.compile(cq)
|> render_index(conn, user)
end
defp render_index({:ok, query}, conn, user) do
comments =
Elasticsearch.search_records(
Comment,
%{
query: %{
bool: %{
must: [query | filters(user)],
must_not: %{
terms: %{image_tag_ids: conn.assigns.current_filter.hidden_tag_ids}
}
}
},
sort: %{posted_at: :desc}
},
conn.assigns.pagination,
Comment |> preload([:deleted_by, image: [:tags], user: [awards: :badge]])
)
rendered = Renderer.render_collection(comments.entries, conn)
comments = %{comments | entries: Enum.zip(rendered, comments.entries)}
render(conn, "index.html", title: "Comments", comments: comments)
end
defp render_index({:error, msg}, conn, _user) do
render(conn, "index.html", title: "Comments", error: msg, comments: [])
end
defp filters(%{role: role}) when role in ["moderator", "admin"], do: []
defp filters(_user),
do: [%{term: %{hidden_from_users: false}}]
end