mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 20:37:59 +01:00
32 lines
936 B
Elixir
32 lines
936 B
Elixir
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
|