Plume/src/routes/posts.rs

114 lines
4 KiB
Rust
Raw Normal View History

2018-04-24 09:21:39 +00:00
use heck::KebabCase;
2018-04-23 14:25:39 +00:00
use rocket::request::Form;
2018-06-04 19:57:03 +00:00
use rocket::response::{Redirect, Flash};
2018-04-23 14:25:39 +00:00
use rocket_contrib::Template;
2018-05-10 09:44:57 +00:00
use serde_json;
2018-04-23 14:25:39 +00:00
use activity_pub::{broadcast, context, activity_pub, ActivityPub};
2018-04-23 14:25:39 +00:00
use db_conn::DbConn;
2018-05-19 07:39:59 +00:00
use models::{
blogs::*,
comments::Comment,
post_authors::*,
posts::*,
users::User
};
use safe_string::SafeString;
2018-06-20 18:22:34 +00:00
use utils;
2018-04-23 14:25:39 +00:00
#[get("/~/<blog>/<slug>", rank = 4)]
2018-05-10 20:31:52 +00:00
fn details(blog: String, slug: String, conn: DbConn, user: Option<User>) -> Template {
may_fail!(Blog::find_by_fqn(&*conn, blog), "Couldn't find this blog", |blog| {
may_fail!(Post::find_by_slug(&*conn, slug, blog.id), "Couldn't find this post", |post| {
let comments = Comment::find_by_post(&*conn, post.id);
Template::render("posts/details", json!({
"author": post.get_authors(&*conn)[0].to_json(&*conn),
"post": post,
"blog": blog,
"comments": comments.into_iter().map(|c| c.to_json(&*conn)).collect::<Vec<serde_json::Value>>(),
"n_likes": post.get_likes(&*conn).len(),
"has_liked": user.clone().map(|u| u.has_liked(&*conn, &post)).unwrap_or(false),
"n_reshares": post.get_reshares(&*conn).len(),
"has_reshared": user.clone().map(|u| u.has_reshared(&*conn, &post)).unwrap_or(false),
"account": user,
"date": &post.creation_date.timestamp()
}))
})
})
2018-04-23 14:25:39 +00:00
}
#[get("/~/<blog>/<slug>", rank = 3, format = "application/activity+json")]
fn activity_details(blog: String, slug: String, conn: DbConn) -> ActivityPub {
let blog = Blog::find_by_fqn(&*conn, blog).unwrap();
let post = Post::find_by_slug(&*conn, slug, blog.id).unwrap();
let mut act = serde_json::to_value(post.into_activity(&*conn)).unwrap();
act["@context"] = context();
activity_pub(act)
2018-04-23 14:25:39 +00:00
}
2018-06-04 19:57:03 +00:00
#[get("/~/<blog>/new", rank = 2)]
fn new_auth(blog: String) -> Flash<Redirect> {
utils::requires_login("You need to be logged in order to write a new post", uri!(new: blog = blog))
2018-04-23 14:25:39 +00:00
}
#[get("/~/<blog>/new", rank = 1)]
fn new(blog: String, user: User, conn: DbConn) -> Template {
let b = Blog::find_by_fqn(&*conn, blog.to_string()).unwrap();
if !user.is_author_in(&*conn, b.clone()) {
Template::render("errors/403", json!({
"error_message": "You are not author in this blog."
}))
} else {
Template::render("posts/new", json!({
"account": user
}))
}
}
2018-04-23 14:25:39 +00:00
#[derive(FromForm)]
struct NewPostForm {
pub title: String,
pub content: String,
pub license: String
}
#[post("/~/<blog_name>/new", data = "<data>")]
2018-04-23 14:39:06 +00:00
fn create(blog_name: String, data: Form<NewPostForm>, user: User, conn: DbConn) -> Redirect {
let blog = Blog::find_by_fqn(&*conn, blog_name.to_string()).unwrap();
2018-04-23 14:25:39 +00:00
let form = data.get();
let slug = form.title.to_string().to_kebab_case();
2018-05-24 10:42:45 +00:00
if !user.is_author_in(&*conn, blog.clone()) {
Redirect::to(uri!(super::blogs::details: name = blog_name))
} else {
if slug == "new" || Post::find_by_slug(&*conn, slug.clone(), blog.id).is_some() {
Redirect::to(uri!(new: blog = blog_name))
} else {
let content = utils::md_to_html(form.content.to_string().as_ref());
2018-05-24 10:42:45 +00:00
let post = Post::insert(&*conn, NewPost {
blog_id: blog.id,
slug: slug.to_string(),
title: form.title.to_string(),
content: SafeString::new(&content),
published: true,
license: form.license.to_string(),
ap_url: "".to_string()
});
post.update_ap_url(&*conn);
PostAuthor::insert(&*conn, NewPostAuthor {
post_id: post.id,
author_id: user.id
});
2018-05-01 15:51:49 +00:00
let act = post.create_activity(&*conn);
broadcast(&*conn, &user, act, user.get_followers(&*conn));
2018-05-01 15:51:49 +00:00
Redirect::to(uri!(details: blog = blog_name, slug = slug))
}
}
2018-04-23 14:25:39 +00:00
}