mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
48 lines
1.2 KiB
Elixir
48 lines
1.2 KiB
Elixir
defmodule PhilomenaWeb.ImageController do
|
|
use PhilomenaWeb, :controller
|
|
|
|
alias Philomena.{Images.Image, Comments.Comment, Tags.Tag, Textile.Renderer}
|
|
alias Philomena.Repo
|
|
import Ecto.Query
|
|
|
|
plug :load_and_authorize_resource, model: Image, only: :show, preload: [:user, :tags]
|
|
|
|
def index(conn, _params) do
|
|
query = conn.assigns.compiled_filter
|
|
|
|
images =
|
|
Image.search_records(
|
|
%{
|
|
query: %{bool: %{must_not: [query, %{term: %{hidden_from_users: true}}]}},
|
|
sort: %{created_at: :desc}
|
|
},
|
|
conn.assigns.pagination,
|
|
Image |> preload([:tags, :user])
|
|
)
|
|
|
|
render(conn, "index.html", images: images)
|
|
end
|
|
|
|
def show(conn, %{"id" => _id}) do
|
|
comments =
|
|
Comment
|
|
|> where(image_id: ^conn.assigns.image.id)
|
|
|> preload([:user, :image])
|
|
|> order_by(desc: :created_at)
|
|
|> limit(25)
|
|
|> Repo.all()
|
|
|
|
rendered =
|
|
comments
|
|
|> Renderer.render_collection()
|
|
|
|
comments =
|
|
Enum.zip(comments, rendered)
|
|
|
|
description =
|
|
%{body: conn.assigns.image.description}
|
|
|> Renderer.render_one()
|
|
|
|
render(conn, "show.html", image: conn.assigns.image, comments: comments, description: description)
|
|
end
|
|
end
|