2019-10-06 23:31:48 +02:00
|
|
|
defmodule PhilomenaWeb.TopicController do
|
|
|
|
use PhilomenaWeb, :controller
|
|
|
|
|
2019-12-02 16:02:48 +01:00
|
|
|
alias PhilomenaWeb.NotificationCountPlug
|
2019-11-19 04:38:22 +01:00
|
|
|
alias Philomena.{Forums.Forum, Topics.Topic, Posts.Post, Polls.Poll, PollOptions.PollOption}
|
2024-07-08 00:09:20 +02:00
|
|
|
alias Philomena.{Topics, Polls, Posts}
|
2019-12-20 04:41:19 +01:00
|
|
|
alias Philomena.PollVotes
|
2021-09-29 22:24:38 +02:00
|
|
|
alias PhilomenaWeb.MarkdownRenderer
|
2019-10-06 23:31:48 +02:00
|
|
|
alias Philomena.Repo
|
|
|
|
import Ecto.Query
|
|
|
|
|
2020-07-21 16:50:33 +02:00
|
|
|
plug PhilomenaWeb.LimitPlug,
|
|
|
|
[time: 300, error: "You may only make a new topic once every 5 minutes."]
|
|
|
|
when action in [:create]
|
|
|
|
|
2019-11-19 04:38:22 +01:00
|
|
|
plug PhilomenaWeb.FilterBannedUsersPlug when action in [:new, :create]
|
|
|
|
plug PhilomenaWeb.UserAttributionPlug when action in [:new, :create]
|
2019-11-29 07:26:05 +01:00
|
|
|
plug PhilomenaWeb.AdvertPlug when action in [:show]
|
2019-11-29 17:43:53 +01:00
|
|
|
|
2020-05-07 04:58:03 +02:00
|
|
|
plug PhilomenaWeb.CanaryMapPlug, new: :show, create: :show, update: :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-10-06 23:31:48 +02:00
|
|
|
|
2020-05-07 04:58:03 +02:00
|
|
|
plug PhilomenaWeb.LoadTopicPlug, [param: "id"] when action in [:show, :update]
|
|
|
|
plug :verify_authorized when action in [:update]
|
2019-12-14 20:46:50 +01:00
|
|
|
|
|
|
|
def show(conn, params) do
|
2019-10-06 23:59:47 +02:00
|
|
|
forum = conn.assigns.forum
|
2019-12-14 20:46:50 +01:00
|
|
|
topic = conn.assigns.topic
|
2019-10-06 23:59:47 +02:00
|
|
|
|
2019-12-01 06:03:45 +01:00
|
|
|
user = conn.assigns.current_user
|
|
|
|
|
2024-07-08 00:09:20 +02:00
|
|
|
Topics.clear_topic_notification(topic, user)
|
2019-12-01 06:03:45 +01:00
|
|
|
|
2019-12-02 15:55:48 +01:00
|
|
|
# Update the notification ticker in the header
|
|
|
|
conn = NotificationCountPlug.call(conn)
|
|
|
|
|
2019-10-06 23:59:47 +02:00
|
|
|
conn = conn |> assign(:topic, topic)
|
2019-10-09 01:40:26 +02:00
|
|
|
%{page_number: page} = conn.assigns.pagination
|
2019-10-06 23:59:47 +02:00
|
|
|
|
2019-11-11 18:57:02 +01:00
|
|
|
page =
|
|
|
|
with {post_id, _extra} <- Integer.parse(params["post_id"] || ""),
|
2020-01-11 05:20:19 +01:00
|
|
|
[post] <- Post |> where(id: ^post_id) |> Repo.all() do
|
2019-11-11 18:57:02 +01:00
|
|
|
div(post.topic_position, 25) + 1
|
|
|
|
else
|
|
|
|
_ ->
|
|
|
|
page
|
|
|
|
end
|
|
|
|
|
2019-10-06 23:31:48 +02:00
|
|
|
posts =
|
|
|
|
Post
|
|
|
|
|> where(topic_id: ^conn.assigns.topic.id)
|
2019-10-09 01:37:14 +02:00
|
|
|
|> where([p], p.topic_position >= ^(25 * (page - 1)) and p.topic_position < ^(25 * page))
|
2019-10-07 00:06:22 +02:00
|
|
|
|> order_by(asc: :created_at)
|
2019-12-12 00:58:00 +01:00
|
|
|
|> preload([:deleted_by, :topic, topic: :forum, user: [awards: :badge]])
|
2019-10-09 01:40:26 +02:00
|
|
|
|> Repo.all()
|
|
|
|
|
2021-09-29 22:24:38 +02:00
|
|
|
rendered = MarkdownRenderer.render_collection(posts, conn)
|
2019-11-11 00:35:52 +01:00
|
|
|
|
2020-01-11 05:20:19 +01:00
|
|
|
posts = Enum.zip(posts, rendered)
|
2019-11-11 00:35:52 +01:00
|
|
|
|
2020-01-11 05:20:19 +01:00
|
|
|
posts = %Scrivener.Page{
|
|
|
|
entries: posts,
|
|
|
|
page_number: page,
|
|
|
|
page_size: 25,
|
|
|
|
total_entries: topic.post_count,
|
|
|
|
total_pages: div(topic.post_count + 25 - 1, 25)
|
|
|
|
}
|
2019-10-06 23:31:48 +02:00
|
|
|
|
2020-01-11 05:20:19 +01:00
|
|
|
watching = Topics.subscribed?(topic, conn.assigns.current_user)
|
2019-11-17 19:05:50 +01:00
|
|
|
|
2020-01-11 05:20:19 +01:00
|
|
|
voted = PollVotes.voted?(topic.poll, conn.assigns.current_user)
|
2019-12-20 04:41:19 +01:00
|
|
|
|
2020-07-21 17:51:12 +02:00
|
|
|
poll_active = Polls.active?(topic.poll)
|
|
|
|
|
2019-11-18 04:31:28 +01:00
|
|
|
changeset =
|
|
|
|
%Post{}
|
|
|
|
|> Posts.change_post()
|
|
|
|
|
2020-05-07 04:58:03 +02:00
|
|
|
topic_changeset = Topics.change_topic(conn.assigns.topic)
|
|
|
|
|
2019-12-16 20:24:38 +01:00
|
|
|
title = "#{topic.title} - #{forum.name} - Forums"
|
|
|
|
|
2020-01-11 05:20:19 +01:00
|
|
|
render(conn, "show.html",
|
|
|
|
title: title,
|
|
|
|
posts: posts,
|
|
|
|
changeset: changeset,
|
2020-05-07 04:58:03 +02:00
|
|
|
topic_changeset: topic_changeset,
|
2020-01-11 05:20:19 +01:00
|
|
|
watching: watching,
|
2020-07-21 17:51:12 +02:00
|
|
|
voted: voted,
|
|
|
|
poll_active: poll_active
|
2020-01-11 05:20:19 +01:00
|
|
|
)
|
2019-10-06 23:31:48 +02:00
|
|
|
end
|
2019-11-19 04:38:22 +01:00
|
|
|
|
|
|
|
def new(conn, _params) do
|
|
|
|
changeset =
|
|
|
|
%Topic{poll: %Poll{options: [%PollOption{}, %PollOption{}]}, posts: [%Post{}]}
|
|
|
|
|> Topics.change_topic()
|
|
|
|
|
2019-12-16 20:24:38 +01:00
|
|
|
render(conn, "new.html", title: "New Topic", changeset: changeset)
|
2019-11-19 04:38:22 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def create(conn, %{"topic" => topic_params}) do
|
|
|
|
attributes = conn.assigns.attributes
|
|
|
|
forum = conn.assigns.forum
|
|
|
|
|
|
|
|
case Topics.create_topic(forum, attributes, topic_params) do
|
|
|
|
{:ok, %{topic: topic}} ->
|
|
|
|
post = hd(topic.posts)
|
2020-10-27 03:30:14 +01:00
|
|
|
Topics.notify_topic(topic, post)
|
2019-11-19 04:38:22 +01:00
|
|
|
|
2020-07-04 19:13:05 +02:00
|
|
|
if forum.access_level == "normal" do
|
|
|
|
PhilomenaWeb.Endpoint.broadcast!(
|
|
|
|
"firehose",
|
|
|
|
"post:create",
|
2020-07-06 20:20:50 +02:00
|
|
|
PhilomenaWeb.Api.Json.Forum.Topic.PostView.render("firehose.json", %{
|
|
|
|
post: post,
|
|
|
|
topic: topic,
|
|
|
|
forum: forum
|
|
|
|
})
|
2020-07-04 19:13:05 +02:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2019-11-19 04:38:22 +01:00
|
|
|
conn
|
|
|
|
|> put_flash(:info, "Successfully posted topic.")
|
2024-04-29 02:55:27 +02:00
|
|
|
|> redirect(to: ~p"/forums/#{forum}/topics/#{topic}")
|
2019-11-19 04:38:22 +01:00
|
|
|
|
|
|
|
{:error, :topic, changeset, _} ->
|
|
|
|
conn
|
|
|
|
|> render("new.html", changeset: changeset)
|
|
|
|
|
|
|
|
_error ->
|
|
|
|
conn
|
|
|
|
|> put_flash(:error, "There was an error with your submission. Please try again.")
|
2024-04-29 02:55:27 +02:00
|
|
|
|> redirect(to: ~p"/forums/#{forum}/topics/new")
|
2019-11-19 04:38:22 +01:00
|
|
|
end
|
|
|
|
end
|
2020-05-07 04:58:03 +02:00
|
|
|
|
|
|
|
def update(conn, %{"topic" => topic_params}) do
|
|
|
|
case Topics.update_topic_title(conn.assigns.topic, topic_params) do
|
|
|
|
{:ok, topic} ->
|
|
|
|
conn
|
|
|
|
|> put_flash(:info, "Successfully updated topic.")
|
2024-04-29 02:55:27 +02:00
|
|
|
|> redirect(to: ~p"/forums/#{conn.assigns.forum}/topics/#{topic}")
|
2020-05-07 04:58:03 +02:00
|
|
|
|
|
|
|
{:error, _changeset} ->
|
|
|
|
conn
|
|
|
|
|> put_flash(:error, "There was an error with your submission. Please try again.")
|
2024-04-29 02:55:27 +02:00
|
|
|
|> redirect(to: ~p"/forums/#{conn.assigns.forum}/topics/#{conn.assigns.topic}")
|
2020-05-07 04:58:03 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp verify_authorized(conn, _opts) do
|
|
|
|
case Canada.Can.can?(conn.assigns.current_user, :edit, conn.assigns.topic) do
|
|
|
|
true -> conn
|
|
|
|
_false -> PhilomenaWeb.NotAuthorizedPlug.call(conn)
|
|
|
|
end
|
|
|
|
end
|
2019-10-06 23:31:48 +02:00
|
|
|
end
|