2019-11-18 05:47:09 +01:00
|
|
|
defmodule PhilomenaWeb.GalleryController do
|
|
|
|
use PhilomenaWeb, :controller
|
|
|
|
|
2019-12-05 01:11:31 +01:00
|
|
|
alias PhilomenaWeb.ImageLoader
|
2019-12-05 05:12:49 +01:00
|
|
|
alias PhilomenaWeb.NotificationCountPlug
|
2019-12-05 01:11:31 +01:00
|
|
|
alias Philomena.ImageSorter
|
|
|
|
alias Philomena.Interactions
|
2019-11-18 05:47:09 +01:00
|
|
|
alias Philomena.Galleries.Gallery
|
2019-12-05 01:11:31 +01:00
|
|
|
alias Philomena.Galleries
|
2019-11-18 05:47:09 +01:00
|
|
|
import Ecto.Query
|
|
|
|
|
2019-12-05 01:11:31 +01:00
|
|
|
plug PhilomenaWeb.FilterBannedUsersPlug when action in [:new, :create, :edit, :update, :delete]
|
2019-12-05 01:53:31 +01:00
|
|
|
plug :load_and_authorize_resource, model: Gallery, except: [:index], preload: [:creator, thumbnail: :tags]
|
2019-11-18 05:47:09 +01:00
|
|
|
|
|
|
|
def index(conn, params) do
|
|
|
|
galleries =
|
|
|
|
Gallery.search_records(
|
|
|
|
%{
|
|
|
|
query: %{
|
|
|
|
bool: %{
|
|
|
|
must: parse_search(params)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
sort: parse_sort(params),
|
|
|
|
},
|
|
|
|
conn.assigns.pagination,
|
2019-11-18 05:51:39 +01:00
|
|
|
Gallery |> preload([:creator, thumbnail: :tags])
|
2019-11-18 05:47:09 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
render(conn, "index.html", galleries: galleries, layout_class: "layout--wide")
|
|
|
|
end
|
|
|
|
|
2019-11-18 15:25:56 +01:00
|
|
|
def show(conn, _params) do
|
2019-12-05 01:11:31 +01:00
|
|
|
gallery = conn.assigns.gallery
|
2019-12-05 05:12:49 +01:00
|
|
|
user = conn.assigns.current_user
|
2019-12-05 01:11:31 +01:00
|
|
|
query = "gallery_id:#{gallery.id}"
|
|
|
|
params = Map.put(conn.params, "q", query)
|
|
|
|
sort = ImageSorter.parse_sort(%{"sf" => "gallery_id:#{gallery.id}", "sd" => position_order(gallery)})
|
|
|
|
|
|
|
|
{:ok, images} = ImageLoader.search_string(conn, query, queries: sort.queries, sorts: sort.sorts)
|
2019-12-05 05:12:49 +01:00
|
|
|
interactions = Interactions.user_interactions(images, user)
|
|
|
|
|
|
|
|
watching = Galleries.subscribed?(gallery, user)
|
|
|
|
gallery_images = Jason.encode!(Enum.map(images, & &1.id))
|
|
|
|
|
|
|
|
Galleries.clear_notification(gallery, user)
|
2019-12-05 01:11:31 +01:00
|
|
|
|
|
|
|
conn
|
2019-12-05 05:12:49 +01:00
|
|
|
|> NotificationCountPlug.call([])
|
2019-12-05 01:11:31 +01:00
|
|
|
|> Map.put(:params, params)
|
2019-12-05 05:12:49 +01:00
|
|
|
|> assign(:clientside_data, [gallery_images: gallery_images])
|
|
|
|
|> render("show.html", layout_class: "layout--wide", watching: watching, gallery: gallery, images: images, interactions: interactions)
|
2019-12-05 01:11:31 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def new(conn, _params) do
|
|
|
|
changeset = Galleries.change_gallery(%Gallery{})
|
|
|
|
render(conn, "new.html", changeset: changeset)
|
|
|
|
end
|
|
|
|
|
|
|
|
def create(conn, %{"gallery" => gallery_params}) do
|
|
|
|
user = conn.assigns.current_user
|
|
|
|
|
|
|
|
case Galleries.create_gallery(user, gallery_params) do
|
|
|
|
{:ok, gallery} ->
|
|
|
|
Galleries.reindex_gallery(gallery)
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_flash(:info, "Gallery successfully created.")
|
|
|
|
|> redirect(to: Routes.gallery_path(conn, :show, gallery))
|
|
|
|
|
|
|
|
{:error, changeset} ->
|
|
|
|
conn
|
|
|
|
|> render("new.html", changeset: changeset)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def edit(conn, _params) do
|
|
|
|
gallery = conn.assigns.gallery
|
|
|
|
changeset = Galleries.change_gallery(gallery)
|
|
|
|
|
|
|
|
render(conn, "edit.html", gallery: gallery, changeset: changeset)
|
|
|
|
end
|
|
|
|
|
|
|
|
def update(conn, %{"gallery" => gallery_params}) do
|
|
|
|
gallery = conn.assigns.gallery
|
|
|
|
|
|
|
|
case Galleries.update_gallery(gallery, gallery_params) do
|
|
|
|
{:ok, gallery} ->
|
|
|
|
Galleries.reindex_gallery(gallery)
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_flash(:info, "Gallery successfully updated.")
|
|
|
|
|> redirect(to: Routes.gallery_path(conn, :show, gallery))
|
|
|
|
|
|
|
|
{:error, changeset} ->
|
|
|
|
conn
|
|
|
|
|> render("edit.html", gallery: gallery, changeset: changeset)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def delete(conn, _params) do
|
|
|
|
gallery = conn.assigns.gallery
|
|
|
|
|
|
|
|
{:ok, _gallery} = Galleries.delete_gallery(gallery)
|
|
|
|
Galleries.unindex_gallery(gallery)
|
|
|
|
|
2019-11-18 15:25:56 +01:00
|
|
|
conn
|
2019-12-05 01:11:31 +01:00
|
|
|
|> put_flash(:info, "Gallery successfully destroyed.")
|
|
|
|
|> redirect(to: Routes.gallery_path(conn, :index))
|
2019-11-18 05:47:09 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
defp parse_search(%{"gallery" => gallery_params}) do
|
|
|
|
parse_title(gallery_params) ++
|
|
|
|
parse_creator(gallery_params) ++
|
|
|
|
parse_included_image(gallery_params) ++
|
|
|
|
parse_description(gallery_params)
|
|
|
|
end
|
|
|
|
defp parse_search(_params), do: [%{match_all: %{}}]
|
|
|
|
|
|
|
|
defp parse_title(%{"title" => title}) when is_binary(title) and title not in [nil, ""],
|
|
|
|
do: [%{wildcard: %{title: "*" <> String.downcase(title) <> "*"}}]
|
|
|
|
defp parse_title(_params), do: []
|
|
|
|
|
|
|
|
defp parse_creator(%{"creator" => creator}) when is_binary(creator) and creator not in [nil, ""],
|
|
|
|
do: [%{term: %{creator: String.downcase(creator)}}]
|
|
|
|
defp parse_creator(_params), do: []
|
|
|
|
|
|
|
|
defp parse_included_image(%{"include_image" => image_id}) when is_binary(image_id) and image_id not in [nil, ""] do
|
|
|
|
with {image_id, _rest} <- Integer.parse(image_id) do
|
|
|
|
[%{term: %{image_id: image_id}}]
|
|
|
|
else
|
|
|
|
_ ->
|
|
|
|
[]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
defp parse_included_image(_params), do: []
|
|
|
|
|
|
|
|
defp parse_description(%{"description" => description}) when is_binary(description) and description not in [nil, ""],
|
|
|
|
do: [%{match: %{description: %{query: description, operator: :and}}}]
|
|
|
|
defp parse_description(_params), do: []
|
|
|
|
|
|
|
|
defp parse_sort(%{"gallery" => %{"sf" => sf, "sd" => sd}})
|
|
|
|
when sf in ["created_at", "updated_at", "image_count", "_score"]
|
|
|
|
and sd in ["desc", "asc"]
|
|
|
|
do
|
|
|
|
%{sf => sd}
|
|
|
|
end
|
|
|
|
defp parse_sort(_params) do
|
|
|
|
%{created_at: :desc}
|
|
|
|
end
|
2019-12-05 01:11:31 +01:00
|
|
|
|
|
|
|
defp position_order(%{order_position_asc: true}), do: "asc"
|
|
|
|
defp position_order(_gallery), do: "desc"
|
2019-11-18 05:47:09 +01:00
|
|
|
end
|