2019-08-18 18:17:05 +02:00
|
|
|
defmodule PhilomenaWeb.ImageController do
|
|
|
|
use PhilomenaWeb, :controller
|
|
|
|
|
2019-11-11 00:35:52 +01:00
|
|
|
alias Philomena.{Images.Image, Comments.Comment, Textile.Renderer}
|
2019-10-05 02:51:56 +02:00
|
|
|
alias Philomena.Repo
|
2019-08-19 04:03:12 +02:00
|
|
|
import Ecto.Query
|
2019-08-18 18:17:05 +02:00
|
|
|
|
2019-10-04 03:03:33 +02:00
|
|
|
plug :load_and_authorize_resource, model: Image, only: :show, preload: [:tags, :user]
|
2019-08-29 03:14:54 +02:00
|
|
|
|
2019-08-18 18:17:05 +02:00
|
|
|
def index(conn, _params) do
|
2019-10-01 03:21:48 +02:00
|
|
|
query = conn.assigns.compiled_filter
|
2019-08-29 03:35:01 +02:00
|
|
|
|
2019-08-19 04:03:12 +02:00
|
|
|
images =
|
|
|
|
Image.search_records(
|
|
|
|
%{
|
2019-10-06 23:45:26 +02:00
|
|
|
query: %{bool: %{must_not: [query, %{term: %{hidden_from_users: true}}]}},
|
2019-08-29 03:14:54 +02:00
|
|
|
sort: %{created_at: :desc}
|
2019-08-19 04:03:12 +02:00
|
|
|
},
|
2019-10-09 01:19:57 +02:00
|
|
|
conn.assigns.pagination,
|
2019-10-04 03:03:33 +02:00
|
|
|
Image |> preload([:tags, :user])
|
2019-08-19 04:03:12 +02:00
|
|
|
)
|
|
|
|
|
2019-08-18 18:17:05 +02:00
|
|
|
render(conn, "index.html", images: images)
|
|
|
|
end
|
|
|
|
|
2019-10-04 01:58:54 +02:00
|
|
|
def show(conn, %{"id" => _id}) do
|
2019-10-05 02:51:56 +02:00
|
|
|
comments =
|
|
|
|
Comment
|
|
|
|
|> where(image_id: ^conn.assigns.image.id)
|
|
|
|
|> preload([:user, :image])
|
|
|
|
|> order_by(desc: :created_at)
|
|
|
|
|> limit(25)
|
|
|
|
|> Repo.all()
|
|
|
|
|
2019-11-11 00:35:52 +01:00
|
|
|
rendered =
|
|
|
|
comments
|
|
|
|
|> Renderer.render_collection()
|
|
|
|
|
|
|
|
comments =
|
|
|
|
Enum.zip(comments, rendered)
|
|
|
|
|
2019-11-11 23:57:29 +01:00
|
|
|
description =
|
|
|
|
%{body: conn.assigns.image.description}
|
|
|
|
|> Renderer.render_one()
|
|
|
|
|
|
|
|
render(conn, "show.html", image: conn.assigns.image, comments: comments, description: description)
|
2019-08-18 18:17:05 +02:00
|
|
|
end
|
|
|
|
end
|