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
|
2022-05-27 02:35:45 +02:00
|
|
|
Images.remove_hash(conn.assigns.image)
|
|
|
|
|
2019-12-16 06:25:06 +01:00
|
|
|
case Images.update_file(conn.assigns.image, image_params) do
|
2020-09-06 07:30:53 +02:00
|
|
|
{:ok, image} ->
|
2019-12-16 06:25:06 +01:00
|
|
|
conn
|
|
|
|
|> put_flash(:info, "Successfully updated file.")
|
2024-04-29 02:55:27 +02:00
|
|
|
|> redirect(to: ~p"/images/#{image}")
|
2019-12-16 06:25:06 +01:00
|
|
|
|
|
|
|
_error ->
|
|
|
|
conn
|
|
|
|
|> put_flash(:error, "Failed to update file!")
|
2024-04-29 02:55:27 +02:00
|
|
|
|> redirect(to: ~p"/images/#{conn.assigns.image}")
|
2019-12-16 06:25:06 +01:00
|
|
|
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.")
|
2024-04-29 02:55:27 +02:00
|
|
|
|> redirect(to: ~p"/images/#{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
|