Plume/src/routes/blogs.rs

99 lines
2.8 KiB
Rust
Raw Normal View History

2018-06-21 21:07:04 +00:00
use activitypub::collection::OrderedCollection;
2018-05-19 07:39:59 +00:00
use rocket::{
2018-06-24 16:58:57 +00:00
request::LenientForm,
2018-06-04 19:57:03 +00:00
response::{Redirect, Flash}
2018-05-19 07:39:59 +00:00
};
2018-04-24 12:31:02 +00:00
use rocket_contrib::Template;
use serde_json;
2018-06-29 12:56:00 +00:00
use validator::{Validate, ValidationError};
2018-04-23 10:54:37 +00:00
use plume_common::activity_pub::ActivityStream;
use plume_common::utils;
use plume_models::{
2018-05-19 07:39:59 +00:00
blog_authors::*,
blogs::*,
db_conn::DbConn,
2018-05-19 07:39:59 +00:00
instance::Instance,
posts::Post,
users::User
};
2018-04-23 10:54:37 +00:00
2018-04-23 15:09:05 +00:00
#[get("/~/<name>", rank = 2)]
2018-05-10 20:31:52 +00:00
fn details(name: String, conn: DbConn, user: Option<User>) -> Template {
may_fail!(user, Blog::find_by_fqn(&*conn, name), "Requested blog couldn't be found", |blog| {
let recents = Post::get_recents_for_blog(&*conn, &blog, 5);
Template::render("blogs/details", json!({
"blog": blog,
"account": user,
"is_author": user.map(|x| x.is_author_in(&*conn, blog)),
"recents": recents.into_iter().map(|p| p.to_json(&*conn)).collect::<Vec<serde_json::Value>>()
}))
})
2018-04-23 10:54:37 +00:00
}
2018-04-23 15:09:05 +00:00
#[get("/~/<name>", format = "application/activity+json", rank = 1)]
2018-06-21 21:07:04 +00:00
fn activity_details(name: String, conn: DbConn) -> ActivityStream<CustomGroup> {
let blog = Blog::find_local(&*conn, name).unwrap();
ActivityStream::new(blog.into_activity(&*conn))
2018-04-23 15:09:05 +00:00
}
2018-04-23 10:54:37 +00:00
#[get("/blogs/new")]
2018-05-10 20:31:52 +00:00
fn new(user: User) -> Template {
Template::render("blogs/new", json!({
"account": user
}))
2018-04-23 10:54:37 +00:00
}
2018-06-04 19:57:03 +00:00
#[get("/blogs/new", rank = 2)]
fn new_auth() -> Flash<Redirect>{
utils::requires_login("You need to be logged in order to create a new blog", uri!(new))
2018-06-04 19:57:03 +00:00
}
2018-06-29 12:56:00 +00:00
#[derive(FromForm, Validate)]
2018-04-23 10:54:37 +00:00
struct NewBlogForm {
2018-06-29 12:56:00 +00:00
#[validate(custom = "valid_slug")]
2018-04-23 10:54:37 +00:00
pub title: String
}
2018-06-29 12:56:00 +00:00
fn valid_slug(title: &str) -> Result<(), ValidationError> {
let slug = utils::make_actor_id(title.to_string());
if slug.len() == 0 {
Err(ValidationError::new("empty_slug"))
} else {
Ok(())
}
}
2018-04-23 10:54:37 +00:00
#[post("/blogs/new", data = "<data>")]
2018-06-24 16:58:57 +00:00
fn create(conn: DbConn, data: LenientForm<NewBlogForm>, user: User) -> Redirect {
2018-04-23 10:54:37 +00:00
let form = data.get();
let slug = utils::make_actor_id(form.title.to_string());
if Blog::find_local(&*conn, slug.clone()).is_some() || slug.len() == 0 {
Redirect::to(uri!(new))
} else {
let blog = Blog::insert(&*conn, NewBlog::new_local(
slug.to_string(),
form.title.to_string(),
String::from(""),
Instance::local_id(&*conn)
));
blog.update_boxes(&*conn);
2018-04-23 13:22:07 +00:00
BlogAuthor::insert(&*conn, NewBlogAuthor {
blog_id: blog.id,
author_id: user.id,
is_owner: true
});
Redirect::to(uri!(details: name = slug))
}
2018-04-23 10:54:37 +00:00
}
2018-04-29 17:49:56 +00:00
#[get("/~/<name>/outbox")]
2018-05-16 18:20:44 +00:00
fn outbox(name: String, conn: DbConn) -> ActivityStream<OrderedCollection> {
let blog = Blog::find_local(&*conn, name).unwrap();
2018-04-29 17:49:56 +00:00
blog.outbox(&*conn)
}