forked from Plume/Plume
94a386ea2c
Fix #152
201 lines
7.7 KiB
Rust
201 lines
7.7 KiB
Rust
use activitypub::object::Article;
|
|
use heck::KebabCase;
|
|
use rocket::{State, request::LenientForm};
|
|
use rocket::response::{Redirect, Flash};
|
|
use rocket_contrib::Template;
|
|
use serde_json;
|
|
use std::{collections::HashMap, borrow::Cow};
|
|
use validator::{Validate, ValidationError, ValidationErrors};
|
|
use workerpool::{Pool, thunk::*};
|
|
|
|
use plume_common::activity_pub::{broadcast, ActivityStream, ApRequest, inbox::Deletable};
|
|
use plume_common::utils;
|
|
use plume_models::{
|
|
blogs::*,
|
|
db_conn::DbConn,
|
|
comments::Comment,
|
|
instance::Instance,
|
|
mentions::Mention,
|
|
post_authors::*,
|
|
posts::*,
|
|
safe_string::SafeString,
|
|
users::User
|
|
};
|
|
|
|
#[derive(FromForm)]
|
|
struct CommentQuery {
|
|
responding_to: Option<i32>
|
|
}
|
|
|
|
// See: https://github.com/SergioBenitez/Rocket/pull/454
|
|
#[get("/~/<blog>/<slug>", rank = 4)]
|
|
fn details(blog: String, slug: String, conn: DbConn, user: Option<User>) -> Template {
|
|
details_response(blog, slug, conn, user, None)
|
|
}
|
|
|
|
#[get("/~/<blog>/<slug>?<query>")]
|
|
fn details_response(blog: String, slug: String, conn: DbConn, user: Option<User>, query: Option<CommentQuery>) -> Template {
|
|
may_fail!(user.map(|u| u.to_json(&*conn)), Blog::find_by_fqn(&*conn, blog), "Couldn't find this blog", |blog| {
|
|
may_fail!(user.map(|u| u.to_json(&*conn)), Post::find_by_slug(&*conn, slug, blog.id), "Couldn't find this post", |post| {
|
|
let comments = Comment::list_by_post(&*conn, post.id);
|
|
let comms = comments.clone();
|
|
|
|
Template::render("posts/details", json!({
|
|
"author": post.get_authors(&*conn)[0].to_json(&*conn),
|
|
"article": post.to_json(&*conn),
|
|
"blog": blog.to_json(&*conn),
|
|
"comments": &comments.into_iter().filter_map(|c| if c.in_response_to_id.is_none() {
|
|
Some(c.to_json(&*conn, &comms))
|
|
} else {
|
|
None
|
|
}).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.clone().map(|u| u.to_json(&*conn)),
|
|
"date": &post.creation_date.timestamp(),
|
|
"previous": query.and_then(|q| q.responding_to.map(|r| Comment::get(&*conn, r).expect("Error retrieving previous comment").to_json(&*conn, &vec![]))),
|
|
"user_fqn": user.clone().map(|u| u.get_fqn(&*conn)).unwrap_or(String::new()),
|
|
"is_author": user.map(|u| post.get_authors(&*conn).into_iter().any(|a| u.id == a.id)).unwrap_or(false)
|
|
}))
|
|
})
|
|
})
|
|
}
|
|
|
|
#[get("/~/<blog>/<slug>", rank = 3)]
|
|
fn activity_details(blog: String, slug: String, conn: DbConn, _ap: ApRequest) -> ActivityStream<Article> {
|
|
let blog = Blog::find_by_fqn(&*conn, blog).unwrap();
|
|
let post = Post::find_by_slug(&*conn, slug, blog.id).unwrap();
|
|
|
|
ActivityStream::new(post.into_activity(&*conn))
|
|
}
|
|
|
|
#[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))
|
|
}
|
|
|
|
#[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.to_json(&*conn),
|
|
"instance": Instance::get_local(&*conn),
|
|
"errors": null,
|
|
"form": null
|
|
}))
|
|
}
|
|
}
|
|
|
|
#[derive(FromForm, Validate, Serialize)]
|
|
struct NewPostForm {
|
|
#[validate(custom(function = "valid_slug", message = "Invalid title"))]
|
|
pub title: String,
|
|
pub subtitle: String,
|
|
pub content: String,
|
|
pub license: String
|
|
}
|
|
|
|
fn valid_slug(title: &str) -> Result<(), ValidationError> {
|
|
let slug = title.to_string().to_kebab_case();
|
|
if slug.len() == 0 {
|
|
Err(ValidationError::new("empty_slug"))
|
|
} else if slug == "new" {
|
|
Err(ValidationError::new("invalid_slug"))
|
|
} else {
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
#[post("/~/<blog_name>/new", data = "<data>")]
|
|
fn create(blog_name: String, data: LenientForm<NewPostForm>, user: User, conn: DbConn, worker: State<Pool<ThunkWorker<()>>>) -> Result<Redirect, Template> {
|
|
let blog = Blog::find_by_fqn(&*conn, blog_name.to_string()).unwrap();
|
|
let form = data.get();
|
|
let slug = form.title.to_string().to_kebab_case();
|
|
|
|
let mut errors = match form.validate() {
|
|
Ok(_) => ValidationErrors::new(),
|
|
Err(e) => e
|
|
};
|
|
if let Some(_) = Post::find_by_slug(&*conn, slug.clone(), blog.id) {
|
|
errors.add("title", ValidationError {
|
|
code: Cow::from("existing_slug"),
|
|
message: Some(Cow::from("A post with the same title already exists.")),
|
|
params: HashMap::new()
|
|
});
|
|
}
|
|
|
|
if errors.is_empty() {
|
|
if !user.is_author_in(&*conn, blog.clone()) {
|
|
// actually it's not "Ok"…
|
|
Ok(Redirect::to(uri!(super::blogs::details: name = blog_name)))
|
|
} else {
|
|
let (content, mentions) = utils::md_to_html(form.content.to_string().as_ref());
|
|
|
|
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: if form.license.len() > 0 {
|
|
form.license.to_string()
|
|
} else {
|
|
Instance::get_local(&*conn).map(|i| i.default_license).unwrap_or(String::from("CC-0"))
|
|
},
|
|
ap_url: "".to_string(),
|
|
creation_date: None,
|
|
subtitle: form.subtitle.clone()
|
|
});
|
|
let post = post.update_ap_url(&*conn);
|
|
PostAuthor::insert(&*conn, NewPostAuthor {
|
|
post_id: post.id,
|
|
author_id: user.id
|
|
});
|
|
|
|
for m in mentions.into_iter() {
|
|
Mention::from_activity(&*conn, Mention::build_activity(&*conn, m), post.id, true);
|
|
}
|
|
|
|
let act = post.create_activity(&*conn);
|
|
let followers = user.get_followers(&*conn);
|
|
worker.execute(Thunk::of(move || broadcast(&user, act, followers)));
|
|
|
|
Ok(Redirect::to(uri!(details: blog = blog_name, slug = slug)))
|
|
}
|
|
} else {
|
|
Err(Template::render("posts/new", json!({
|
|
"account": user.to_json(&*conn),
|
|
"instance": Instance::get_local(&*conn),
|
|
"errors": errors.inner(),
|
|
"form": form
|
|
})))
|
|
}
|
|
}
|
|
|
|
#[get("/~/<blog_name>/<slug>/delete")]
|
|
fn delete(blog_name: String, slug: String, conn: DbConn, user: User, worker: State<Pool<ThunkWorker<()>>>) -> Redirect {
|
|
let post = Blog::find_by_fqn(&*conn, blog_name.clone())
|
|
.and_then(|blog| Post::find_by_slug(&*conn, slug.clone(), blog.id));
|
|
|
|
if let Some(post) = post {
|
|
if !post.get_authors(&*conn).into_iter().any(|a| a.id == user.id) {
|
|
Redirect::to(uri!(details: blog = blog_name.clone(), slug = slug.clone()))
|
|
} else {
|
|
let audience = user.get_followers(&*conn);
|
|
let delete_activity = post.delete(&*conn);
|
|
worker.execute(Thunk::of(move || broadcast(&user, delete_activity, audience)));
|
|
|
|
Redirect::to(uri!(super::blogs::details: name = blog_name))
|
|
}
|
|
} else {
|
|
Redirect::to(uri!(super::blogs::details: name = blog_name))
|
|
}
|
|
}
|