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
|
2019-11-30 03:33:15 +01:00
|
|
|
alias Philomena.Images.Image
|
|
|
|
alias Philomena.Images.Query
|
|
|
|
alias Philomena.ImageNavigator
|
|
|
|
|
|
|
|
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 = Philomena.ImageScope.scope(conn)
|
|
|
|
|
|
|
|
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.image_path(conn, :index, 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
|
|
|
|
|
2019-12-08 16:00:54 +01:00
|
|
|
{:ok, query} = Query.compile(user, match_all_if_blank(conn.params["q"]))
|
2019-11-30 03:33:15 +01:00
|
|
|
|
|
|
|
query
|
|
|
|
end
|
2019-12-08 16:00:54 +01:00
|
|
|
|
|
|
|
defp match_all_if_blank(nil), do: "*"
|
|
|
|
defp match_all_if_blank(input) do
|
|
|
|
case String.trim(input) == "" do
|
|
|
|
true -> "*"
|
|
|
|
false -> input
|
|
|
|
end
|
|
|
|
end
|
2019-12-22 22:02:27 +01:00
|
|
|
end
|