mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-12-02 01:01:20 +00:00
5d837780f5
* Moving settings to Database. - Moves many settings into the database. Fixes #2285 - Adds a local_site and instance table. Fixes #2365 . Fixes #2368 - Separates SQL update an insert forms, to avoid runtime errors. - Adds TypedBuilder to all the SQL forms, instead of default. * Fix weird clippy issue. * Removing extra lines. * Some fixes from suggestions. * Fixing apub tests. * Using instance creation helper function. * Move forms to their own line. * Trying to fix local_site_data, still broken. * Testing out async * Testing out async 2 * Fixing federation tests. * Trying to fix check features 1. * Starting on adding diesel async. 1/4th done. * Added async to views and schema. * Adding some more async * Compiling now. * Added diesel async. Fixes #2465 * Running clippy --fix * Trying to fix cargo test on drone. * Trying new muslrust. * Trying a custom dns * Trying a custom dns 2 * Trying a custom dns 3 * Trying a custom dns 4 * Trying a custom dns 5 * Trying a custom dns 6 * Trying a custom dns 7 * Addressing PR comments. * Adding check_apub to all verify functions. * Reverting back drone. * Fixing merge * Fix docker images. * Adding missing discussion_languages. * Trying to fix federation tests. * Fix site setup user creation. * Fix clippy * Fix clippy 2 * Test api faster * Try to fix 1 * Try to fix 2 * What are these lines about * Trying to fix 3 * Moving federation test back to top. * Remove logging cat.
124 lines
3.8 KiB
Rust
124 lines
3.8 KiB
Rust
use crate::PerformCrud;
|
|
use actix_web::web::Data;
|
|
use lemmy_api_common::{
|
|
private_message::{CreatePrivateMessage, PrivateMessageResponse},
|
|
utils::{
|
|
check_person_block,
|
|
get_interface_language,
|
|
get_local_user_view_from_jwt,
|
|
local_site_to_slur_regex,
|
|
send_email_to_user,
|
|
},
|
|
};
|
|
use lemmy_apub::{
|
|
generate_local_apub_endpoint,
|
|
protocol::activities::{
|
|
create_or_update::private_message::CreateOrUpdatePrivateMessage,
|
|
CreateOrUpdateType,
|
|
},
|
|
EndpointType,
|
|
};
|
|
use lemmy_db_schema::{
|
|
source::{
|
|
local_site::LocalSite,
|
|
private_message::{PrivateMessage, PrivateMessageInsertForm, PrivateMessageUpdateForm},
|
|
},
|
|
traits::Crud,
|
|
};
|
|
use lemmy_db_views::structs::LocalUserView;
|
|
use lemmy_utils::{error::LemmyError, utils::remove_slurs, ConnectionId};
|
|
use lemmy_websocket::{send::send_pm_ws_message, LemmyContext, UserOperationCrud};
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
impl PerformCrud for CreatePrivateMessage {
|
|
type Response = PrivateMessageResponse;
|
|
|
|
#[tracing::instrument(skip(self, context, websocket_id))]
|
|
async fn perform(
|
|
&self,
|
|
context: &Data<LemmyContext>,
|
|
websocket_id: Option<ConnectionId>,
|
|
) -> Result<PrivateMessageResponse, LemmyError> {
|
|
let data: &CreatePrivateMessage = self;
|
|
let local_user_view =
|
|
get_local_user_view_from_jwt(&data.auth, context.pool(), context.secret()).await?;
|
|
let local_site = LocalSite::read(context.pool()).await?;
|
|
|
|
let content_slurs_removed = remove_slurs(
|
|
&data.content.to_owned(),
|
|
&local_site_to_slur_regex(&local_site),
|
|
);
|
|
|
|
check_person_block(local_user_view.person.id, data.recipient_id, context.pool()).await?;
|
|
|
|
let private_message_form = PrivateMessageInsertForm::builder()
|
|
.content(content_slurs_removed.to_owned())
|
|
.creator_id(local_user_view.person.id)
|
|
.recipient_id(data.recipient_id)
|
|
.build();
|
|
|
|
let inserted_private_message =
|
|
match PrivateMessage::create(context.pool(), &private_message_form).await {
|
|
Ok(private_message) => private_message,
|
|
Err(e) => {
|
|
return Err(LemmyError::from_error_message(
|
|
e,
|
|
"couldnt_create_private_message",
|
|
));
|
|
}
|
|
};
|
|
|
|
let inserted_private_message_id = inserted_private_message.id;
|
|
let protocol_and_hostname = context.settings().get_protocol_and_hostname();
|
|
let apub_id = generate_local_apub_endpoint(
|
|
EndpointType::PrivateMessage,
|
|
&inserted_private_message_id.to_string(),
|
|
&protocol_and_hostname,
|
|
)?;
|
|
let updated_private_message = PrivateMessage::update(
|
|
context.pool(),
|
|
inserted_private_message.id,
|
|
&PrivateMessageUpdateForm::builder()
|
|
.ap_id(Some(apub_id))
|
|
.build(),
|
|
)
|
|
.await
|
|
.map_err(|e| LemmyError::from_error_message(e, "couldnt_create_private_message"))?;
|
|
|
|
CreateOrUpdatePrivateMessage::send(
|
|
updated_private_message.into(),
|
|
&local_user_view.person.into(),
|
|
CreateOrUpdateType::Create,
|
|
context,
|
|
)
|
|
.await?;
|
|
|
|
let res = send_pm_ws_message(
|
|
inserted_private_message.id,
|
|
UserOperationCrud::CreatePrivateMessage,
|
|
websocket_id,
|
|
context,
|
|
)
|
|
.await?;
|
|
|
|
// Send email to the local recipient, if one exists
|
|
if res.private_message_view.recipient.local {
|
|
let recipient_id = data.recipient_id;
|
|
let local_recipient = LocalUserView::read_person(context.pool(), recipient_id).await?;
|
|
let lang = get_interface_language(&local_recipient);
|
|
let inbox_link = format!("{}/inbox", context.settings().get_protocol_and_hostname());
|
|
send_email_to_user(
|
|
&local_recipient,
|
|
&lang.notification_private_message_subject(&local_recipient.person.name),
|
|
&lang.notification_private_message_body(
|
|
&inbox_link,
|
|
&content_slurs_removed,
|
|
&local_recipient.person.name,
|
|
),
|
|
context.settings(),
|
|
);
|
|
}
|
|
|
|
Ok(res)
|
|
}
|
|
}
|