philomena/lib/philomena_web/controllers/gallery_controller.ex

72 lines
2.2 KiB
Elixir
Raw Normal View History

2019-11-18 05:47:09 +01:00
defmodule PhilomenaWeb.GalleryController do
use PhilomenaWeb, :controller
alias Philomena.Galleries.Gallery
import Ecto.Query
2019-11-18 15:25:56 +01:00
plug :load_resource, model: Gallery, only: [:show]
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
# stub
conn
|> redirect(to: Routes.search_path(conn, :index, q: "gallery_id:#{conn.assigns.gallery_id}"))
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
end