mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-12 15:01:06 +00:00
80 lines
2.2 KiB
Rust
80 lines
2.2 KiB
Rust
use rocket::request::Form;
|
|
use rocket::response::Redirect;
|
|
use rocket_contrib::Template;
|
|
use serde_json;
|
|
|
|
use activity_pub::ActivityPub;
|
|
use activity_pub::actor::Actor;
|
|
use activity_pub::object::Object;
|
|
use activity_pub::outbox::Outbox;
|
|
use db_conn::DbConn;
|
|
use models::blog_authors::*;
|
|
use models::blogs::*;
|
|
use models::instance::Instance;
|
|
use models::posts::Post;
|
|
use models::users::User;
|
|
use utils;
|
|
|
|
#[get("/~/<name>", rank = 2)]
|
|
fn details(name: String, conn: DbConn, user: Option<User>) -> Template {
|
|
let blog = Blog::find_by_actor_id(&*conn, name).unwrap();
|
|
let recents = Post::get_recents_for_blog(&*conn, &blog, 5);
|
|
Template::render("blogs/details", json!({
|
|
"blog": blog,
|
|
"account": user,
|
|
"recents": recents.into_iter().map(|p| {
|
|
json!({
|
|
"post": p,
|
|
"author": p.get_authors(&*conn)[0],
|
|
"url": p.compute_id(&*conn),
|
|
"date": p.creation_date.timestamp()
|
|
})
|
|
}).collect::<Vec<serde_json::Value>>()
|
|
}))
|
|
}
|
|
|
|
#[get("/~/<name>", format = "application/activity+json", rank = 1)]
|
|
fn activity_details(name: String, conn: DbConn) -> ActivityPub {
|
|
let blog = Blog::find_by_actor_id(&*conn, name).unwrap();
|
|
blog.as_activity_pub(&*conn)
|
|
}
|
|
|
|
#[get("/blogs/new")]
|
|
fn new(user: User) -> Template {
|
|
Template::render("blogs/new", json!({
|
|
"account": user
|
|
}))
|
|
}
|
|
|
|
#[derive(FromForm)]
|
|
struct NewBlogForm {
|
|
pub title: String
|
|
}
|
|
|
|
#[post("/blogs/new", data = "<data>")]
|
|
fn create(conn: DbConn, data: Form<NewBlogForm>, user: User) -> Redirect {
|
|
let form = data.get();
|
|
let slug = utils::make_actor_id(form.title.to_string());
|
|
|
|
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);
|
|
|
|
BlogAuthor::insert(&*conn, NewBlogAuthor {
|
|
blog_id: blog.id,
|
|
author_id: user.id,
|
|
is_owner: true
|
|
});
|
|
|
|
Redirect::to(format!("/~/{}", slug).as_str())
|
|
}
|
|
|
|
#[get("/~/<name>/outbox")]
|
|
fn outbox(name: String, conn: DbConn) -> Outbox {
|
|
let blog = Blog::find_by_actor_id(&*conn, name).unwrap();
|
|
blog.outbox(&*conn)
|
|
}
|