2019-12-16 06:25:06 +01:00
|
|
|
defmodule PhilomenaWeb.Image.FileController do
|
|
|
|
use PhilomenaWeb, :controller
|
|
|
|
|
|
|
|
alias Philomena.Images.Image
|
|
|
|
alias Philomena.Images
|
|
|
|
|
|
|
|
plug PhilomenaWeb.CanaryMapPlug, update: :hide
|
|
|
|
plug :load_and_authorize_resource, model: Image, id_name: "image_id", persisted: true
|
|
|
|
plug :verify_not_deleted
|
2020-05-02 05:02:20 +02:00
|
|
|
plug PhilomenaWeb.ScraperPlug, params_name: "image", params_key: "image"
|
2019-12-16 06:25:06 +01:00
|
|
|
|
|
|
|
def update(conn, %{"image" => image_params}) do
|
|
|
|
case Images.update_file(conn.assigns.image, image_params) do
|
|
|
|
{:ok, %{image: image}} ->
|
2020-01-11 05:20:19 +01:00
|
|
|
spawn(fn ->
|
2019-12-16 06:25:06 +01:00
|
|
|
Images.repair_image(image)
|
2020-01-11 05:20:19 +01:00
|
|
|
end)
|
|
|
|
|
2019-12-31 00:33:20 +01:00
|
|
|
Images.reindex_image(image)
|
2019-12-16 06:25:06 +01:00
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_flash(:info, "Successfully updated file.")
|
|
|
|
|> redirect(to: Routes.image_path(conn, :show, image))
|
|
|
|
|
|
|
|
_error ->
|
|
|
|
conn
|
|
|
|
|> put_flash(:error, "Failed to update file!")
|
|
|
|
|> redirect(to: Routes.image_path(conn, :show, conn.assigns.image))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp verify_not_deleted(conn, _opts) do
|
|
|
|
case conn.assigns.image.hidden_from_users do
|
|
|
|
true ->
|
|
|
|
conn
|
|
|
|
|> put_flash(:error, "Cannot replace a hidden image.")
|
|
|
|
|> redirect(to: Routes.image_path(conn, :show, conn.assigns.image))
|
2020-05-04 09:18:36 +02:00
|
|
|
|> halt()
|
2019-12-16 06:25:06 +01:00
|
|
|
|
|
|
|
_false ->
|
|
|
|
conn
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|