mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2025-03-01 04:41:00 +00:00
45 lines
1.4 KiB
Rust
45 lines
1.4 KiB
Rust
use rocket::{
|
|
request::LenientForm,
|
|
response::Redirect
|
|
};
|
|
use serde_json;
|
|
use validator::Validate;
|
|
|
|
use plume_common::activity_pub::broadcast;
|
|
use plume_models::{
|
|
blogs::Blog,
|
|
comments::*,
|
|
db_conn::DbConn,
|
|
instance::Instance,
|
|
posts::Post,
|
|
users::User
|
|
};
|
|
use inbox::Inbox;
|
|
|
|
#[derive(FromForm, Debug, Validate)]
|
|
struct NewCommentForm {
|
|
pub responding_to: Option<i32>,
|
|
#[validate(length(min = "1"))]
|
|
pub content: String
|
|
}
|
|
|
|
#[post("/~/<blog_name>/<slug>/comment", data = "<data>")]
|
|
fn create(blog_name: String, slug: String, data: LenientForm<NewCommentForm>, user: User, conn: DbConn) -> Redirect {
|
|
let blog = Blog::find_by_fqn(&*conn, blog_name.clone()).unwrap();
|
|
let post = Post::find_by_slug(&*conn, slug.clone(), blog.id).unwrap();
|
|
let form = data.get();
|
|
|
|
let (new_comment, id) = NewComment::build()
|
|
.content(form.content.clone())
|
|
.in_response_to_id(form.responding_to.clone())
|
|
.post(post)
|
|
.author(user.clone())
|
|
.create(&*conn);
|
|
|
|
let instance = Instance::get_local(&*conn).unwrap();
|
|
instance.received(&*conn, serde_json::to_value(new_comment.clone()).expect("JSON serialization error"))
|
|
.expect("We are not compatible with ourselve: local broadcast failed (new comment)");
|
|
broadcast(&user, new_comment, user.get_followers(&*conn));
|
|
|
|
Redirect::to(format!("/~/{}/{}/#comment-{}", blog_name, slug, id))
|
|
}
|