philomena/lib/philomena_web/controllers/image/navigate_controller.ex

63 lines
1.7 KiB
Elixir
Raw Normal View History

2019-11-30 03:33:15 +01:00
defmodule PhilomenaWeb.Image.NavigateController do
use PhilomenaWeb, :controller
2019-12-22 22:02:27 +01:00
alias PhilomenaWeb.ImageLoader
alias PhilomenaWeb.ImageNavigator
alias PhilomenaWeb.ImageScope
2019-11-30 03:33:15 +01:00
alias Philomena.Images.Image
alias Philomena.Images.Query
plug PhilomenaWeb.CanaryMapPlug, index: :show
plug :load_and_authorize_resource, model: Image, id_name: "image_id", persisted: true
def index(conn, %{"rel" => rel} = params) when rel in ~W(prev next) do
image = conn.assigns.image
filter = conn.assigns.compiled_filter
rel = String.to_existing_atom(rel)
next_image = ImageNavigator.find_consecutive(image, rel, params, compile_query(conn), filter)
scope = ImageScope.scope(conn)
2019-11-30 03:33:15 +01:00
conn
|> redirect(to: Routes.image_path(conn, :show, next_image, scope))
end
def index(conn, %{"rel" => "find"}) do
2019-12-22 22:02:27 +01:00
pagination = %{conn.assigns.image_pagination | page_number: 1}
2019-11-30 03:33:15 +01:00
2019-12-22 22:02:27 +01:00
# Find does not use the current search scope
# (although it probably should).
body = %{range: %{id: %{gt: conn.assigns.image.id}}}
2019-11-30 03:33:15 +01:00
2019-12-22 22:02:27 +01:00
{images, _tags} = ImageLoader.query(conn, body, queryable: Image, pagination: pagination)
2019-11-30 03:33:15 +01:00
2019-12-22 22:02:27 +01:00
page_num = page_for_offset(pagination.page_size, images.total_entries)
redirect(conn, to: Routes.search_path(conn, :index, q: "*", page: page_num))
2019-11-30 03:33:15 +01:00
end
defp page_for_offset(per_page, offset) do
2019-12-22 22:05:41 +01:00
offset
|> div(per_page)
|> Kernel.+(1)
2019-11-30 03:33:15 +01:00
|> to_string()
end
defp compile_query(conn) do
user = conn.assigns.current_user
{:ok, query} = Query.compile(user, match_all_if_blank(conn.params["q"]))
2019-11-30 03:33:15 +01:00
query
end
defp match_all_if_blank(nil), do: "*"
2020-01-11 05:20:19 +01:00
defp match_all_if_blank(input) do
case String.trim(input) == "" do
2020-01-11 05:20:19 +01:00
true -> "*"
false -> input
end
end
2019-12-22 22:02:27 +01:00
end