philomena/lib/philomena_web/controllers/comment_controller.ex
2019-11-30 20:06:08 -05:00

39 lines
1 KiB
Elixir

defmodule PhilomenaWeb.CommentController do
use PhilomenaWeb, :controller
alias Philomena.{Comments.Query, Comments.Comment, Textile.Renderer}
import Ecto.Query
def index(conn, params) do
cq = params["cq"] || "created_at.gt:1 week ago"
{:ok, query} = Query.compile(conn.assigns.current_user, cq)
comments =
Comment.search_records(
%{
query: %{
bool: %{
must: query,
must_not: [
%{terms: %{image_tag_ids: conn.assigns.current_filter.hidden_tag_ids}},
%{term: %{hidden_from_users: true}}
]
}
},
sort: %{posted_at: :desc}
},
conn.assigns.pagination,
Comment |> preload([image: [:tags], user: [awards: :badge]])
)
rendered =
comments.entries
|> Renderer.render_collection()
comments =
%{comments | entries: Enum.zip(rendered, comments.entries)}
render(conn, "index.html", comments: comments)
end
end