mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
39 lines
1 KiB
Elixir
39 lines
1 KiB
Elixir
defmodule PhilomenaWeb.Gallery.ImageController do
|
|
use PhilomenaWeb, :controller
|
|
|
|
alias Philomena.Galleries.Gallery
|
|
alias Philomena.Galleries
|
|
alias Philomena.Images.Image
|
|
|
|
plug PhilomenaWeb.FilterBannedUsersPlug
|
|
|
|
plug PhilomenaWeb.CanaryMapPlug, create: :edit, delete: :edit
|
|
plug :load_and_authorize_resource, model: Gallery, id_name: "gallery_id", persisted: true
|
|
|
|
plug PhilomenaWeb.CanaryMapPlug, create: :show, delete: :show
|
|
plug :load_and_authorize_resource, model: Image, id_name: "image_id", persisted: true
|
|
|
|
def create(conn, _params) do
|
|
case Galleries.add_image_to_gallery(conn.assigns.gallery, conn.assigns.image) do
|
|
{:ok, _gallery} ->
|
|
json(conn, %{})
|
|
|
|
_error ->
|
|
conn
|
|
|> put_status(:bad_request)
|
|
|> json(%{})
|
|
end
|
|
end
|
|
|
|
def delete(conn, _params) do
|
|
case Galleries.remove_image_from_gallery(conn.assigns.gallery, conn.assigns.image) do
|
|
{:ok, _gallery} ->
|
|
json(conn, %{})
|
|
|
|
_error ->
|
|
conn
|
|
|> put_status(:bad_request)
|
|
|> json(%{})
|
|
end
|
|
end
|
|
end
|