mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
35 lines
1 KiB
Elixir
35 lines
1 KiB
Elixir
|
defmodule PhilomenaWeb.Gallery.SubscriptionController do
|
||
|
use PhilomenaWeb, :controller
|
||
|
|
||
|
alias Philomena.Galleries.Gallery
|
||
|
alias Philomena.Galleries
|
||
|
|
||
|
plug PhilomenaWeb.CanaryMapPlug, create: :show, delete: :show
|
||
|
plug :load_and_authorize_resource, model: Gallery, id_name: "gallery_id", persisted: true
|
||
|
|
||
|
def create(conn, _params) do
|
||
|
gallery = conn.assigns.gallery
|
||
|
user = conn.assigns.current_user
|
||
|
|
||
|
case Galleries.create_subscription(gallery, user) do
|
||
|
{:ok, _subscription} ->
|
||
|
render(conn, "_subscription.html", gallery: gallery, watching: true, layout: false)
|
||
|
|
||
|
{:error, _changeset} ->
|
||
|
render(conn, "_error.html", layout: false)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def delete(conn, _params) do
|
||
|
gallery = conn.assigns.gallery
|
||
|
user = conn.assigns.current_user
|
||
|
|
||
|
case Galleries.delete_subscription(gallery, user) do
|
||
|
{:ok, _subscription} ->
|
||
|
render(conn, "_subscription.html", gallery: gallery, watching: false, layout: false)
|
||
|
|
||
|
{:error, _changeset} ->
|
||
|
render(conn, "_error.html", layout: false)
|
||
|
end
|
||
|
end
|
||
|
end
|