Plume/src/routes/comments.rs

43 lines
1.2 KiB
Rust
Raw Normal View History

2018-05-10 09:44:57 +00:00
use rocket::request::Form;
use rocket::response::Redirect;
use rocket_contrib::Template;
use db_conn::DbConn;
use models::comments::*;
use models::posts::Post;
use models::users::User;
#[get("/~/<_blog>/<slug>/comment")]
fn new(_blog: String, slug: String, _user: User, conn: DbConn) -> Template {
let post = Post::find_by_slug(&*conn, slug).unwrap();
Template::render("comments/new", json!({
"post": post,
2018-05-10 09:44:57 +00:00
}))
}
#[derive(FromForm)]
struct CommentQuery {
responding_to: Option<i32>
}
2018-05-10 09:44:57 +00:00
#[derive(FromForm)]
struct NewCommentForm {
pub content: String
2018-05-10 09:44:57 +00:00
}
#[post("/~/<blog>/<slug>/comment?<query>", data = "<data>")]
fn create(blog: String, slug: String, query: CommentQuery, data: Form<NewCommentForm>, user: User, conn: DbConn) -> Redirect {
let post = Post::find_by_slug(&*conn, slug.clone()).unwrap();
2018-05-10 09:44:57 +00:00
let form = data.get();
let comment = Comment::insert(&*conn, NewComment {
2018-05-10 09:44:57 +00:00
content: form.content.clone(),
in_response_to_id: query.responding_to,
2018-05-10 09:44:57 +00:00
post_id: post.id,
author_id: user.id,
ap_url: None,
sensitive: false,
spoiler_text: "".to_string()
});
Redirect::to(format!("/~/{}/{}/#comment-{}", blog, slug, comment.id).as_ref())
2018-05-10 09:44:57 +00:00
}