mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
128 lines
3.5 KiB
Elixir
128 lines
3.5 KiB
Elixir
defmodule PhilomenaWeb.ConversationController do
|
|
use PhilomenaWeb, :controller
|
|
|
|
alias PhilomenaWeb.NotificationCountPlug
|
|
alias Philomena.{Conversations, Conversations.Conversation, Conversations.Message}
|
|
alias PhilomenaWeb.MarkdownRenderer
|
|
alias Philomena.Repo
|
|
import Ecto.Query
|
|
|
|
plug PhilomenaWeb.FilterBannedUsersPlug when action in [:new, :create]
|
|
|
|
plug PhilomenaWeb.LimitPlug,
|
|
[time: 60, error: "You may only create a conversation once every minute."]
|
|
when action in [:create]
|
|
|
|
plug :load_and_authorize_resource,
|
|
model: Conversation,
|
|
id_field: "slug",
|
|
only: :show,
|
|
preload: [:to, :from]
|
|
|
|
def index(conn, %{"with" => partner}) do
|
|
user = conn.assigns.current_user
|
|
|
|
Conversation
|
|
|> where(
|
|
[c],
|
|
(c.from_id == ^user.id and c.to_id == ^partner and not c.from_hidden) or
|
|
(c.to_id == ^user.id and c.from_id == ^partner and not c.to_hidden)
|
|
)
|
|
|> load_conversations(conn)
|
|
end
|
|
|
|
def index(conn, _params) do
|
|
user = conn.assigns.current_user
|
|
|
|
Conversation
|
|
|> where(
|
|
[c],
|
|
(c.from_id == ^user.id and not c.from_hidden) or (c.to_id == ^user.id and not c.to_hidden)
|
|
)
|
|
|> load_conversations(conn)
|
|
end
|
|
|
|
defp load_conversations(queryable, conn) do
|
|
conversations =
|
|
queryable
|
|
|> join(
|
|
:inner_lateral,
|
|
[c],
|
|
_ in fragment("SELECT COUNT(*) FROM messages m WHERE m.conversation_id = ?", c.id),
|
|
on: true
|
|
)
|
|
|> order_by(desc: :last_message_at)
|
|
|> preload([:to, :from])
|
|
|> select([c, cnt], {c, cnt.count})
|
|
|> Repo.paginate(conn.assigns.scrivener)
|
|
|
|
render(conn, "index.html", title: "Conversations", conversations: conversations)
|
|
end
|
|
|
|
def show(conn, _params) do
|
|
conversation = conn.assigns.conversation
|
|
user = conn.assigns.current_user
|
|
pref = load_direction(user)
|
|
|
|
messages =
|
|
Message
|
|
|> where(conversation_id: ^conversation.id)
|
|
|> order_by([{^pref, :created_at}])
|
|
|> preload([:from])
|
|
|> Repo.paginate(conn.assigns.scrivener)
|
|
|
|
rendered =
|
|
messages.entries
|
|
|> MarkdownRenderer.render_collection(conn)
|
|
|
|
messages = %{messages | entries: Enum.zip(messages.entries, rendered)}
|
|
|
|
changeset =
|
|
%Message{}
|
|
|> Conversations.change_message()
|
|
|
|
conversation
|
|
|> Conversations.mark_conversation_read(user)
|
|
|
|
# Update the conversation ticker in the header
|
|
conn = NotificationCountPlug.call(conn)
|
|
|
|
render(conn, "show.html",
|
|
title: "Showing Conversation",
|
|
conversation: conversation,
|
|
messages: messages,
|
|
changeset: changeset
|
|
)
|
|
end
|
|
|
|
def new(conn, params) do
|
|
changeset =
|
|
%Conversation{recipient: params["recipient"], messages: [%Message{}]}
|
|
|> Conversations.change_conversation()
|
|
|
|
render(conn, "new.html", title: "New Conversation", changeset: changeset)
|
|
end
|
|
|
|
def create(conn, %{"conversation" => conversation_params}) do
|
|
user = conn.assigns.current_user
|
|
|
|
case Conversations.create_conversation(user, conversation_params) do
|
|
{:ok, conversation} ->
|
|
if not hd(conversation.messages).approved do
|
|
Conversations.report_non_approved(conversation.id)
|
|
Conversations.set_as_read(conversation)
|
|
end
|
|
|
|
conn
|
|
|> put_flash(:info, "Conversation successfully created.")
|
|
|> redirect(to: ~p"/conversations/#{conversation}")
|
|
|
|
{:error, changeset} ->
|
|
conn
|
|
|> render("new.html", changeset: changeset)
|
|
end
|
|
end
|
|
|
|
defp load_direction(%{messages_newest_first: false}), do: :asc
|
|
defp load_direction(_user), do: :desc
|
|
end
|