2021-08-17 18:04:58 +00:00
|
|
|
use crate::{
|
|
|
|
messages::{SendComment, SendCommunityRoomMessage, SendPost, SendUserRoomMessage},
|
|
|
|
LemmyContext,
|
|
|
|
OperationType,
|
|
|
|
};
|
|
|
|
use lemmy_api_common::{
|
|
|
|
comment::CommentResponse,
|
|
|
|
community::CommunityResponse,
|
|
|
|
person::PrivateMessageResponse,
|
|
|
|
post::PostResponse,
|
2022-05-03 17:44:13 +00:00
|
|
|
utils::{blocking, check_person_block, get_user_lang, send_email_to_user},
|
2021-08-17 18:04:58 +00:00
|
|
|
};
|
2021-10-16 13:33:38 +00:00
|
|
|
use lemmy_db_schema::{
|
|
|
|
newtypes::{CommentId, CommunityId, LocalUserId, PersonId, PostId, PrivateMessageId},
|
2021-10-18 21:36:44 +00:00
|
|
|
source::{
|
|
|
|
comment::Comment,
|
|
|
|
person::Person,
|
|
|
|
person_mention::{PersonMention, PersonMentionForm},
|
|
|
|
post::Post,
|
|
|
|
},
|
|
|
|
traits::{Crud, DeleteableOrRemoveable},
|
2022-06-22 12:05:41 +00:00
|
|
|
SubscribedType,
|
2021-10-16 13:33:38 +00:00
|
|
|
};
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_db_views::structs::{CommentView, LocalUserView, PostView, PrivateMessageView};
|
|
|
|
use lemmy_db_views_actor::structs::CommunityView;
|
2022-06-02 14:33:41 +00:00
|
|
|
use lemmy_utils::{error::LemmyError, utils::MentionData, ConnectionId};
|
2021-08-17 18:04:58 +00:00
|
|
|
|
2022-01-06 19:10:20 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2021-08-17 18:04:58 +00:00
|
|
|
pub async fn send_post_ws_message<OP: ToString + Send + OperationType + 'static>(
|
|
|
|
post_id: PostId,
|
|
|
|
op: OP,
|
|
|
|
websocket_id: Option<ConnectionId>,
|
|
|
|
person_id: Option<PersonId>,
|
|
|
|
context: &LemmyContext,
|
|
|
|
) -> Result<PostResponse, LemmyError> {
|
2021-10-27 13:34:18 +00:00
|
|
|
let post_view = blocking(context.pool(), move |conn| {
|
2021-08-17 18:04:58 +00:00
|
|
|
PostView::read(conn, post_id, person_id)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
let res = PostResponse { post_view };
|
|
|
|
|
|
|
|
context.chat_server().do_send(SendPost {
|
|
|
|
op,
|
|
|
|
post: res.clone(),
|
|
|
|
websocket_id,
|
|
|
|
});
|
|
|
|
|
|
|
|
Ok(res)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: in many call sites in apub crate, we are setting an empty vec for recipient_ids,
|
|
|
|
// we should get the actual recipient actors from somewhere
|
2022-01-06 19:10:20 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2021-08-17 18:04:58 +00:00
|
|
|
pub async fn send_comment_ws_message_simple<OP: ToString + Send + OperationType + 'static>(
|
|
|
|
comment_id: CommentId,
|
|
|
|
op: OP,
|
|
|
|
context: &LemmyContext,
|
|
|
|
) -> Result<CommentResponse, LemmyError> {
|
|
|
|
send_comment_ws_message(comment_id, op, None, None, None, vec![], context).await
|
|
|
|
}
|
|
|
|
|
2022-01-06 19:10:20 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2021-08-17 18:04:58 +00:00
|
|
|
pub async fn send_comment_ws_message<OP: ToString + Send + OperationType + 'static>(
|
|
|
|
comment_id: CommentId,
|
|
|
|
op: OP,
|
|
|
|
websocket_id: Option<ConnectionId>,
|
|
|
|
form_id: Option<String>,
|
|
|
|
person_id: Option<PersonId>,
|
|
|
|
recipient_ids: Vec<LocalUserId>,
|
|
|
|
context: &LemmyContext,
|
|
|
|
) -> Result<CommentResponse, LemmyError> {
|
|
|
|
let mut view = blocking(context.pool(), move |conn| {
|
|
|
|
CommentView::read(conn, comment_id, person_id)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
if view.comment.deleted || view.comment.removed {
|
|
|
|
view.comment = view.comment.blank_out_deleted_or_removed_info();
|
|
|
|
}
|
|
|
|
|
2021-09-04 12:47:41 +00:00
|
|
|
let mut res = CommentResponse {
|
2021-08-17 18:04:58 +00:00
|
|
|
comment_view: view,
|
|
|
|
recipient_ids,
|
2021-09-04 12:47:41 +00:00
|
|
|
// The sent out form id should be null
|
|
|
|
form_id: None,
|
2021-08-17 18:04:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
context.chat_server().do_send(SendComment {
|
|
|
|
op,
|
|
|
|
comment: res.clone(),
|
|
|
|
websocket_id,
|
|
|
|
});
|
|
|
|
|
2021-09-04 12:47:41 +00:00
|
|
|
// The recipient_ids should be empty for returns
|
|
|
|
res.recipient_ids = Vec::new();
|
|
|
|
res.form_id = form_id;
|
|
|
|
|
2021-08-17 18:04:58 +00:00
|
|
|
Ok(res)
|
|
|
|
}
|
|
|
|
|
2022-01-06 19:10:20 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2021-08-17 18:04:58 +00:00
|
|
|
pub async fn send_community_ws_message<OP: ToString + Send + OperationType + 'static>(
|
|
|
|
community_id: CommunityId,
|
|
|
|
op: OP,
|
|
|
|
websocket_id: Option<ConnectionId>,
|
|
|
|
person_id: Option<PersonId>,
|
|
|
|
context: &LemmyContext,
|
|
|
|
) -> Result<CommunityResponse, LemmyError> {
|
2021-10-27 13:34:18 +00:00
|
|
|
let community_view = blocking(context.pool(), move |conn| {
|
2021-08-17 18:04:58 +00:00
|
|
|
CommunityView::read(conn, community_id, person_id)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
let res = CommunityResponse { community_view };
|
|
|
|
|
|
|
|
// Strip out the person id and subscribed when sending to others
|
|
|
|
let mut res_mut = res.clone();
|
2022-06-22 12:05:41 +00:00
|
|
|
res_mut.community_view.subscribed = SubscribedType::NotSubscribed;
|
2021-08-17 18:04:58 +00:00
|
|
|
|
|
|
|
context.chat_server().do_send(SendCommunityRoomMessage {
|
|
|
|
op,
|
|
|
|
response: res_mut,
|
|
|
|
community_id: res.community_view.community.id,
|
|
|
|
websocket_id,
|
|
|
|
});
|
|
|
|
|
|
|
|
Ok(res)
|
|
|
|
}
|
|
|
|
|
2022-01-06 19:10:20 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2021-08-17 18:04:58 +00:00
|
|
|
pub async fn send_pm_ws_message<OP: ToString + Send + OperationType + 'static>(
|
|
|
|
private_message_id: PrivateMessageId,
|
|
|
|
op: OP,
|
|
|
|
websocket_id: Option<ConnectionId>,
|
|
|
|
context: &LemmyContext,
|
|
|
|
) -> Result<PrivateMessageResponse, LemmyError> {
|
|
|
|
let mut view = blocking(context.pool(), move |conn| {
|
|
|
|
PrivateMessageView::read(conn, private_message_id)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
// Blank out deleted or removed info
|
|
|
|
if view.private_message.deleted {
|
|
|
|
view.private_message = view.private_message.blank_out_deleted_or_removed_info();
|
|
|
|
}
|
|
|
|
|
|
|
|
let res = PrivateMessageResponse {
|
|
|
|
private_message_view: view,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Send notifications to the local recipient, if one exists
|
|
|
|
if res.private_message_view.recipient.local {
|
|
|
|
let recipient_id = res.private_message_view.recipient.id;
|
|
|
|
let local_recipient = blocking(context.pool(), move |conn| {
|
|
|
|
LocalUserView::read_person(conn, recipient_id)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
context.chat_server().do_send(SendUserRoomMessage {
|
|
|
|
op,
|
|
|
|
response: res.clone(),
|
|
|
|
local_recipient_id: local_recipient.local_user.id,
|
|
|
|
websocket_id,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(res)
|
|
|
|
}
|
2021-10-18 21:36:44 +00:00
|
|
|
|
2022-01-06 19:10:20 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2021-10-18 21:36:44 +00:00
|
|
|
pub async fn send_local_notifs(
|
|
|
|
mentions: Vec<MentionData>,
|
|
|
|
comment: &Comment,
|
|
|
|
person: &Person,
|
|
|
|
post: &Post,
|
|
|
|
do_send_email: bool,
|
|
|
|
context: &LemmyContext,
|
|
|
|
) -> Result<Vec<LocalUserId>, LemmyError> {
|
|
|
|
let mut recipient_ids = Vec::new();
|
2022-03-24 15:25:51 +00:00
|
|
|
let inbox_link = format!("{}/inbox", context.settings().get_protocol_and_hostname());
|
2021-10-18 21:36:44 +00:00
|
|
|
|
|
|
|
// Send the local mentions
|
|
|
|
for mention in mentions
|
|
|
|
.iter()
|
|
|
|
.filter(|m| m.is_local(&context.settings().hostname) && m.name.ne(&person.name))
|
|
|
|
.collect::<Vec<&MentionData>>()
|
|
|
|
{
|
|
|
|
let mention_name = mention.name.clone();
|
|
|
|
let user_view = blocking(context.pool(), move |conn| {
|
|
|
|
LocalUserView::read_from_name(conn, &mention_name)
|
|
|
|
})
|
|
|
|
.await?;
|
|
|
|
if let Ok(mention_user_view) = user_view {
|
|
|
|
// TODO
|
|
|
|
// At some point, make it so you can't tag the parent creator either
|
|
|
|
// This can cause two notifications, one for reply and the other for mention
|
|
|
|
recipient_ids.push(mention_user_view.local_user.id);
|
|
|
|
|
|
|
|
let user_mention_form = PersonMentionForm {
|
|
|
|
recipient_id: mention_user_view.person.id,
|
|
|
|
comment_id: comment.id,
|
|
|
|
read: None,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Allow this to fail softly, since comment edits might re-update or replace it
|
|
|
|
// Let the uniqueness handle this fail
|
|
|
|
blocking(context.pool(), move |conn| {
|
|
|
|
PersonMention::create(conn, &user_mention_form)
|
|
|
|
})
|
|
|
|
.await?
|
|
|
|
.ok();
|
|
|
|
|
|
|
|
// Send an email to those local users that have notifications on
|
|
|
|
if do_send_email {
|
2022-03-24 15:25:51 +00:00
|
|
|
let lang = get_user_lang(&mention_user_view);
|
2021-10-18 21:36:44 +00:00
|
|
|
send_email_to_user(
|
|
|
|
&mention_user_view,
|
2022-03-24 15:25:51 +00:00
|
|
|
&lang.notification_mentioned_by_subject(&person.name),
|
2022-05-13 16:24:29 +00:00
|
|
|
&lang.notification_mentioned_by_body(&comment.content, &inbox_link, &person.name),
|
2021-10-18 21:36:44 +00:00
|
|
|
&context.settings(),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send notifs to the parent commenter / poster
|
|
|
|
match comment.parent_id {
|
|
|
|
Some(parent_id) => {
|
|
|
|
let parent_comment =
|
|
|
|
blocking(context.pool(), move |conn| Comment::read(conn, parent_id)).await?;
|
|
|
|
if let Ok(parent_comment) = parent_comment {
|
2021-12-05 17:45:40 +00:00
|
|
|
// Get the parent commenter local_user
|
|
|
|
let parent_creator_id = parent_comment.creator_id;
|
|
|
|
|
|
|
|
// Only add to recipients if that person isn't blocked
|
|
|
|
let creator_blocked = check_person_block(person.id, parent_creator_id, context.pool())
|
|
|
|
.await
|
|
|
|
.is_err();
|
|
|
|
|
2021-10-18 21:36:44 +00:00
|
|
|
// Don't send a notif to yourself
|
2021-12-05 17:45:40 +00:00
|
|
|
if parent_comment.creator_id != person.id && !creator_blocked {
|
2021-10-18 21:36:44 +00:00
|
|
|
let user_view = blocking(context.pool(), move |conn| {
|
2021-12-05 17:45:40 +00:00
|
|
|
LocalUserView::read_person(conn, parent_creator_id)
|
2021-10-18 21:36:44 +00:00
|
|
|
})
|
|
|
|
.await?;
|
|
|
|
if let Ok(parent_user_view) = user_view {
|
|
|
|
recipient_ids.push(parent_user_view.local_user.id);
|
|
|
|
|
|
|
|
if do_send_email {
|
2022-03-24 15:25:51 +00:00
|
|
|
let lang = get_user_lang(&parent_user_view);
|
2021-10-18 21:36:44 +00:00
|
|
|
send_email_to_user(
|
|
|
|
&parent_user_view,
|
2022-05-13 16:24:29 +00:00
|
|
|
&lang.notification_comment_reply_subject(&person.name),
|
|
|
|
&lang.notification_comment_reply_body(&comment.content, &inbox_link, &person.name),
|
2021-10-18 21:36:44 +00:00
|
|
|
&context.settings(),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Its a post
|
2021-12-05 17:45:40 +00:00
|
|
|
// Don't send a notif to yourself
|
2021-10-18 21:36:44 +00:00
|
|
|
None => {
|
2021-12-05 17:45:40 +00:00
|
|
|
// Only add to recipients if that person isn't blocked
|
|
|
|
let creator_blocked = check_person_block(person.id, post.creator_id, context.pool())
|
|
|
|
.await
|
|
|
|
.is_err();
|
|
|
|
|
|
|
|
if post.creator_id != person.id && !creator_blocked {
|
2021-10-18 21:36:44 +00:00
|
|
|
let creator_id = post.creator_id;
|
|
|
|
let parent_user = blocking(context.pool(), move |conn| {
|
|
|
|
LocalUserView::read_person(conn, creator_id)
|
|
|
|
})
|
|
|
|
.await?;
|
|
|
|
if let Ok(parent_user_view) = parent_user {
|
|
|
|
recipient_ids.push(parent_user_view.local_user.id);
|
|
|
|
|
|
|
|
if do_send_email {
|
2022-03-24 15:25:51 +00:00
|
|
|
let lang = get_user_lang(&parent_user_view);
|
2021-10-18 21:36:44 +00:00
|
|
|
send_email_to_user(
|
|
|
|
&parent_user_view,
|
2022-03-24 15:25:51 +00:00
|
|
|
&lang.notification_post_reply_subject(&person.name),
|
2022-05-13 16:24:29 +00:00
|
|
|
&lang.notification_post_reply_body(&comment.content, &inbox_link, &person.name),
|
2021-10-18 21:36:44 +00:00
|
|
|
&context.settings(),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
Ok(recipient_ids)
|
|
|
|
}
|