philomena/lib/philomena_web/controllers/topic/stick_controller.ex

53 lines
1.5 KiB
Elixir
Raw Normal View History

2019-12-14 00:31:42 +01:00
defmodule PhilomenaWeb.Topic.StickController do
import Plug.Conn
use PhilomenaWeb, :controller
2019-12-14 20:46:50 +01:00
alias Philomena.Forums.Forum
2019-12-14 00:31:42 +01:00
alias Philomena.Topics.Topic
alias Philomena.Topics
2019-12-14 20:46:50 +01:00
plug PhilomenaWeb.CanaryMapPlug, create: :show
2020-01-11 05:20:19 +01:00
plug :load_and_authorize_resource,
model: Forum,
id_name: "forum_id",
id_field: "short_name",
persisted: true
2019-12-14 20:46:50 +01:00
plug PhilomenaWeb.LoadTopicPlug
plug PhilomenaWeb.CanaryMapPlug, create: :hide, delete: :hide
plug :authorize_resource, model: Topic, persisted: true
2019-12-14 00:31:42 +01:00
def create(conn, _opts) do
topic = conn.assigns.topic
case Topics.stick_topic(topic) do
{:ok, topic} ->
conn
|> put_flash(:info, "Topic successfully stickied!")
2019-12-14 17:43:26 +01:00
|> redirect(to: Routes.forum_topic_path(conn, :show, topic.forum, topic))
2019-12-14 20:46:50 +01:00
2019-12-14 00:31:42 +01:00
{:error, _changeset} ->
conn
|> put_flash(:error, "Unable to stick the topic!")
2019-12-14 17:43:26 +01:00
|> redirect(to: Routes.forum_topic_path(conn, :show, topic.forum, topic))
2019-12-14 00:31:42 +01:00
end
end
def delete(conn, _opts) do
topic = conn.assigns.topic
case Topics.unstick_topic(topic) do
{:ok, topic} ->
conn
|> put_flash(:info, "Topic successfully unstickied!")
2019-12-14 17:43:26 +01:00
|> redirect(to: Routes.forum_topic_path(conn, :show, topic.forum, topic))
2019-12-14 20:46:50 +01:00
2019-12-14 00:31:42 +01:00
{:error, _changeset} ->
conn
|> put_flash(:error, "Unable to unstick the topic!")
2019-12-14 17:43:26 +01:00
|> redirect(to: Routes.forum_topic_path(conn, :show, topic.forum, topic))
2019-12-14 00:31:42 +01:00
end
end
end