2020-01-21 07:02:03 +01:00
|
|
|
use crate::template_utils::Ructe;
|
2018-09-09 17:08:53 +02:00
|
|
|
use activitypub::object::Note;
|
2019-04-30 12:04:25 +02:00
|
|
|
use rocket::{
|
|
|
|
request::LenientForm,
|
|
|
|
response::{Flash, Redirect},
|
|
|
|
};
|
2019-03-20 17:56:17 +01:00
|
|
|
use validator::Validate;
|
2018-05-10 11:44:57 +02:00
|
|
|
|
2019-01-05 22:30:28 +01:00
|
|
|
use std::time::Duration;
|
|
|
|
|
2020-01-21 07:02:03 +01:00
|
|
|
use crate::routes::errors::ErrorPage;
|
|
|
|
use crate::template_utils::IntoContext;
|
2019-03-20 17:56:17 +01:00
|
|
|
use plume_common::{
|
2022-05-02 16:23:28 +02:00
|
|
|
activity_pub::{broadcast, broadcast07, ActivityStream, ApRequest},
|
2019-03-20 17:56:17 +01:00
|
|
|
utils,
|
|
|
|
};
|
2018-06-23 18:36:11 +02:00
|
|
|
use plume_models::{
|
2021-01-30 13:44:29 +01:00
|
|
|
blogs::Blog, comments::*, db_conn::DbConn, inbox::inbox, instance::Instance, medias::Media,
|
|
|
|
mentions::Mention, posts::Post, safe_string::SafeString, tags::Tag, users::User, Error,
|
|
|
|
PlumeRocket, CONFIG,
|
2018-05-19 09:39:59 +02:00
|
|
|
};
|
2018-05-10 11:44:57 +02:00
|
|
|
|
2019-03-12 19:40:54 +01:00
|
|
|
#[derive(Default, FromForm, Debug, Validate)]
|
2018-12-06 18:54:16 +01:00
|
|
|
pub struct NewCommentForm {
|
2018-06-27 00:19:18 +02:00
|
|
|
pub responding_to: Option<i32>,
|
2022-01-06 20:55:49 +01:00
|
|
|
#[validate(length(min = 1, message = "Your comment can't be empty"))]
|
2018-11-07 15:57:31 +01:00
|
|
|
pub content: String,
|
|
|
|
pub warning: String,
|
2018-05-10 11:44:57 +02:00
|
|
|
}
|
|
|
|
|
2018-12-06 18:54:16 +01:00
|
|
|
#[post("/~/<blog_name>/<slug>/comment", data = "<form>")]
|
2019-03-20 17:56:17 +01:00
|
|
|
pub fn create(
|
|
|
|
blog_name: String,
|
|
|
|
slug: String,
|
|
|
|
form: LenientForm<NewCommentForm>,
|
|
|
|
user: User,
|
2021-01-30 13:44:29 +01:00
|
|
|
conn: DbConn,
|
2019-04-17 19:31:47 +02:00
|
|
|
rockets: PlumeRocket,
|
2019-04-30 12:04:25 +02:00
|
|
|
) -> Result<Flash<Redirect>, Ructe> {
|
2021-01-30 13:44:29 +01:00
|
|
|
let blog = Blog::find_by_fqn(&conn, &blog_name).expect("comments::create: blog error");
|
|
|
|
let post = Post::find_by_slug(&conn, &slug, blog.id).expect("comments::create: post error");
|
2018-07-06 11:51:19 +02:00
|
|
|
form.validate()
|
|
|
|
.map(|_| {
|
2018-12-29 09:36:07 +01:00
|
|
|
let (html, mentions, _hashtags) = utils::md_to_html(
|
|
|
|
form.content.as_ref(),
|
2019-05-04 17:33:50 +02:00
|
|
|
Some(
|
2019-05-10 22:59:34 +02:00
|
|
|
&Instance::get_local()
|
2019-05-04 17:33:50 +02:00
|
|
|
.expect("comments::create: local instance error")
|
|
|
|
.public_domain,
|
|
|
|
),
|
2019-03-22 19:51:36 +01:00
|
|
|
true,
|
2019-04-06 19:20:33 +02:00
|
|
|
Some(Media::get_media_processor(&conn, vec![&user])),
|
2018-12-29 09:36:07 +01:00
|
|
|
);
|
2019-03-20 17:56:17 +01:00
|
|
|
let comm = Comment::insert(
|
2021-01-30 13:44:29 +01:00
|
|
|
&conn,
|
2019-03-20 17:56:17 +01:00
|
|
|
NewComment {
|
|
|
|
content: SafeString::new(html.as_ref()),
|
|
|
|
in_response_to_id: form.responding_to,
|
|
|
|
post_id: post.id,
|
|
|
|
author_id: user.id,
|
|
|
|
ap_url: None,
|
|
|
|
sensitive: !form.warning.is_empty(),
|
|
|
|
spoiler_text: form.warning.clone(),
|
|
|
|
public_visibility: true,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.expect("comments::create: insert error");
|
|
|
|
let new_comment = comm
|
2022-05-02 16:23:28 +02:00
|
|
|
.create_activity07(&conn)
|
2019-03-20 17:56:17 +01:00
|
|
|
.expect("comments::create: activity error");
|
2018-05-19 00:04:30 +02:00
|
|
|
|
2018-09-09 17:08:53 +02:00
|
|
|
// save mentions
|
|
|
|
for ment in mentions {
|
2018-12-29 09:36:07 +01:00
|
|
|
Mention::from_activity(
|
2021-01-30 13:44:29 +01:00
|
|
|
&conn,
|
|
|
|
&Mention::build_activity(&conn, &ment)
|
2019-03-20 17:56:17 +01:00
|
|
|
.expect("comments::create: build mention error"),
|
2019-03-26 12:45:17 +01:00
|
|
|
comm.id,
|
|
|
|
false,
|
2019-03-20 17:56:17 +01:00
|
|
|
true,
|
|
|
|
)
|
|
|
|
.expect("comments::create: mention save error");
|
2018-09-09 17:08:53 +02:00
|
|
|
}
|
|
|
|
|
2021-01-30 13:44:29 +01:00
|
|
|
comm.notify(&conn).expect("comments::create: notify error");
|
2019-05-04 17:15:41 +02:00
|
|
|
|
2018-09-09 17:08:53 +02:00
|
|
|
// federate
|
2021-01-30 13:44:29 +01:00
|
|
|
let dest = User::one_by_instance(&conn).expect("comments::create: dest error");
|
2018-07-26 17:51:41 +02:00
|
|
|
let user_clone = user.clone();
|
2021-01-11 21:27:52 +01:00
|
|
|
rockets.worker.execute(move || {
|
2022-05-02 16:23:28 +02:00
|
|
|
broadcast07(&user_clone, new_comment, dest, CONFIG.proxy().cloned())
|
2021-01-11 21:27:52 +01:00
|
|
|
});
|
2018-06-21 12:28:42 +02:00
|
|
|
|
2019-04-30 12:04:25 +02:00
|
|
|
Flash::success(
|
2021-01-15 17:13:45 +01:00
|
|
|
Redirect::to(uri!(
|
|
|
|
super::posts::details: blog = blog_name,
|
|
|
|
slug = slug,
|
|
|
|
responding_to = _
|
|
|
|
)),
|
2019-05-14 12:54:16 +02:00
|
|
|
i18n!(&rockets.intl.catalog, "Your comment has been posted."),
|
2019-03-20 17:56:17 +01:00
|
|
|
)
|
2018-07-06 11:51:19 +02:00
|
|
|
})
|
|
|
|
.map_err(|errors| {
|
|
|
|
// TODO: de-duplicate this code
|
2021-01-30 13:44:29 +01:00
|
|
|
let comments = CommentTree::from_post(&conn, &post, Some(&user))
|
2019-03-20 17:56:17 +01:00
|
|
|
.expect("comments::create: comments error");
|
2018-05-10 17:36:32 +02:00
|
|
|
|
2021-01-30 13:44:29 +01:00
|
|
|
let previous = form.responding_to.and_then(|r| Comment::get(&conn, r).ok());
|
2018-12-06 18:54:16 +01:00
|
|
|
|
2018-12-29 09:36:07 +01:00
|
|
|
render!(posts::details(
|
2021-01-30 13:44:29 +01:00
|
|
|
&(&conn, &rockets).to_context(),
|
2018-12-06 18:54:16 +01:00
|
|
|
post.clone(),
|
|
|
|
blog,
|
|
|
|
&*form,
|
|
|
|
errors,
|
2021-01-30 13:44:29 +01:00
|
|
|
Tag::for_post(&conn, post.id).expect("comments::create: tags error"),
|
2018-12-24 11:23:04 +01:00
|
|
|
comments,
|
2018-12-06 18:54:16 +01:00
|
|
|
previous,
|
2021-01-30 13:44:29 +01:00
|
|
|
post.count_likes(&conn)
|
2019-03-20 17:56:17 +01:00
|
|
|
.expect("comments::create: count likes error"),
|
2021-01-30 13:44:29 +01:00
|
|
|
post.count_reshares(&conn)
|
2019-03-20 17:56:17 +01:00
|
|
|
.expect("comments::create: count reshares error"),
|
2021-01-30 13:44:29 +01:00
|
|
|
user.has_liked(&conn, &post)
|
2019-03-20 17:56:17 +01:00
|
|
|
.expect("comments::create: liked error"),
|
2021-01-30 13:44:29 +01:00
|
|
|
user.has_reshared(&conn, &post)
|
2019-03-20 17:56:17 +01:00
|
|
|
.expect("comments::create: reshared error"),
|
|
|
|
user.is_following(
|
|
|
|
&*conn,
|
2021-01-30 13:44:29 +01:00
|
|
|
post.get_authors(&conn)
|
2019-03-20 17:56:17 +01:00
|
|
|
.expect("comments::create: authors error")[0]
|
|
|
|
.id
|
|
|
|
)
|
|
|
|
.expect("comments::create: following error"),
|
2021-01-30 13:44:29 +01:00
|
|
|
post.get_authors(&conn)
|
2019-03-20 17:56:17 +01:00
|
|
|
.expect("comments::create: authors error")[0]
|
|
|
|
.clone()
|
2018-12-29 09:36:07 +01:00
|
|
|
))
|
2018-09-09 12:53:22 +02:00
|
|
|
})
|
2018-05-10 11:44:57 +02:00
|
|
|
}
|
2018-09-09 17:08:53 +02:00
|
|
|
|
2018-12-23 11:13:36 +01:00
|
|
|
#[post("/~/<blog>/<slug>/comment/<id>/delete")]
|
2019-03-20 17:56:17 +01:00
|
|
|
pub fn delete(
|
|
|
|
blog: String,
|
|
|
|
slug: String,
|
|
|
|
id: i32,
|
|
|
|
user: User,
|
2021-01-30 13:44:29 +01:00
|
|
|
conn: DbConn,
|
2019-04-17 19:31:47 +02:00
|
|
|
rockets: PlumeRocket,
|
2019-04-30 12:04:25 +02:00
|
|
|
) -> Result<Flash<Redirect>, ErrorPage> {
|
2021-01-30 13:44:29 +01:00
|
|
|
if let Ok(comment) = Comment::get(&conn, id) {
|
2018-12-23 11:13:36 +01:00
|
|
|
if comment.author_id == user.id {
|
2021-01-30 13:44:29 +01:00
|
|
|
let dest = User::one_by_instance(&conn)?;
|
|
|
|
let delete_activity = comment.build_delete(&conn)?;
|
2019-04-17 19:31:47 +02:00
|
|
|
inbox(
|
2021-01-30 13:44:29 +01:00
|
|
|
&conn,
|
2019-04-17 19:31:47 +02:00
|
|
|
serde_json::to_value(&delete_activity).map_err(Error::from)?,
|
|
|
|
)?;
|
|
|
|
|
2019-01-05 22:30:28 +01:00
|
|
|
let user_c = user.clone();
|
2021-01-11 21:27:52 +01:00
|
|
|
rockets.worker.execute(move || {
|
|
|
|
broadcast(&user_c, delete_activity, dest, CONFIG.proxy().cloned())
|
|
|
|
});
|
2019-04-17 19:31:47 +02:00
|
|
|
rockets
|
|
|
|
.worker
|
|
|
|
.execute_after(Duration::from_secs(10 * 60), move || {
|
|
|
|
user.rotate_keypair(&conn)
|
|
|
|
.expect("Failed to rotate keypair");
|
|
|
|
});
|
2018-12-23 11:13:36 +01:00
|
|
|
}
|
|
|
|
}
|
2019-04-30 12:04:25 +02:00
|
|
|
Ok(Flash::success(
|
2021-01-15 17:13:45 +01:00
|
|
|
Redirect::to(uri!(
|
|
|
|
super::posts::details: blog = blog,
|
|
|
|
slug = slug,
|
|
|
|
responding_to = _
|
|
|
|
)),
|
2019-05-14 12:54:16 +02:00
|
|
|
i18n!(&rockets.intl.catalog, "Your comment has been deleted."),
|
2019-03-20 17:56:17 +01:00
|
|
|
))
|
2018-12-23 11:13:36 +01:00
|
|
|
}
|
|
|
|
|
2018-09-09 17:08:53 +02:00
|
|
|
#[get("/~/<_blog>/<_slug>/comment/<id>")]
|
2019-03-20 17:56:17 +01:00
|
|
|
pub fn activity_pub(
|
|
|
|
_blog: String,
|
|
|
|
_slug: String,
|
|
|
|
id: i32,
|
|
|
|
_ap: ApRequest,
|
2021-01-30 13:44:29 +01:00
|
|
|
conn: DbConn,
|
2019-03-20 17:56:17 +01:00
|
|
|
) -> Option<ActivityStream<Note>> {
|
2021-01-30 13:44:29 +01:00
|
|
|
Comment::get(&conn, id)
|
|
|
|
.and_then(|c| c.to_activity(&conn))
|
2018-12-29 09:36:07 +01:00
|
|
|
.ok()
|
|
|
|
.map(ActivityStream::new)
|
2018-09-09 17:08:53 +02:00
|
|
|
}
|