defmodule PhilomenaWeb.Image.FeatureController do use PhilomenaWeb, :controller alias Philomena.Images.Image alias Philomena.Images alias Philomena.Tags plug PhilomenaWeb.CanaryMapPlug, create: :hide plug :load_and_authorize_resource, model: Image, id_name: "image_id", persisted: true plug :verify_not_deleted def create(conn, _params) do {:ok, %{image: image}} = Images.feature_image(conn.assigns.current_user, conn.assigns.image) Tags.reindex_tags(image.added_tags) conn |> put_flash(:info, "Image marked as featured image.") |> redirect(to: Routes.image_path(conn, :show, image)) end defp verify_not_deleted(conn, _opts) do case conn.assigns.image.hidden_from_users do true -> conn |> put_flash(:error, "Cannot feature a hidden image.") |> redirect(to: Routes.image_path(conn, :show, conn.assigns.image)) _false -> conn end end end