2018-06-21 21:07:04 +00:00
|
|
|
use activitypub::collection::OrderedCollection;
|
2018-09-01 20:08:26 +00:00
|
|
|
use atom_syndication::{Entry, FeedBuilder};
|
2018-05-19 07:39:59 +00:00
|
|
|
use rocket::{
|
2018-10-20 09:04:20 +00:00
|
|
|
http::ContentType,
|
2018-06-24 16:58:57 +00:00
|
|
|
request::LenientForm,
|
2018-10-20 09:04:20 +00:00
|
|
|
response::{Redirect, Flash, content::Content}
|
2018-05-19 07:39:59 +00:00
|
|
|
};
|
2018-04-24 12:31:02 +00:00
|
|
|
use rocket_contrib::Template;
|
2018-05-12 13:31:09 +00:00
|
|
|
use serde_json;
|
2018-07-07 20:51:48 +00:00
|
|
|
use std::{collections::HashMap, borrow::Cow};
|
2018-07-06 09:51:19 +00:00
|
|
|
use validator::{Validate, ValidationError, ValidationErrors};
|
2018-04-23 10:54:37 +00:00
|
|
|
|
2018-07-11 15:30:01 +00:00
|
|
|
use plume_common::activity_pub::{ActivityStream, ApRequest};
|
2018-06-23 16:36:11 +00:00
|
|
|
use plume_common::utils;
|
|
|
|
use plume_models::{
|
2018-05-19 07:39:59 +00:00
|
|
|
blog_authors::*,
|
|
|
|
blogs::*,
|
2018-06-23 16:36:11 +00:00
|
|
|
db_conn::DbConn,
|
2018-05-19 07:39:59 +00:00
|
|
|
instance::Instance,
|
|
|
|
posts::Post,
|
|
|
|
users::User
|
|
|
|
};
|
2018-07-20 16:42:35 +00:00
|
|
|
use routes::Page;
|
2018-04-23 10:54:37 +00:00
|
|
|
|
2018-07-20 16:42:35 +00:00
|
|
|
#[get("/~/<name>?<page>", rank = 2)]
|
|
|
|
fn paginated_details(name: String, conn: DbConn, user: Option<User>, page: Page) -> Template {
|
2018-11-26 09:21:52 +00:00
|
|
|
may_fail!(user.map(|u| u.to_json(&*conn)), Blog::find_by_fqn(&*conn, &name), "Requested blog couldn't be found", |blog| {
|
2018-07-20 16:42:35 +00:00
|
|
|
let posts = Post::blog_page(&*conn, &blog, page.limits());
|
2018-07-21 14:58:30 +00:00
|
|
|
let articles = Post::get_for_blog(&*conn, &blog);
|
2018-07-18 21:08:49 +00:00
|
|
|
let authors = &blog.list_authors(&*conn);
|
2018-06-18 17:28:28 +00:00
|
|
|
|
|
|
|
Template::render("blogs/details", json!({
|
2018-07-26 17:10:50 +00:00
|
|
|
"blog": &blog.to_json(&*conn),
|
2018-09-03 13:59:02 +00:00
|
|
|
"account": user.clone().map(|u| u.to_json(&*conn)),
|
2018-11-26 09:21:52 +00:00
|
|
|
"is_author": user.map(|x| x.is_author_in(&*conn, &blog)),
|
2018-07-20 16:42:35 +00:00
|
|
|
"posts": posts.into_iter().map(|p| p.to_json(&*conn)).collect::<Vec<serde_json::Value>>(),
|
2018-07-18 21:08:49 +00:00
|
|
|
"authors": authors.into_iter().map(|u| u.to_json(&*conn)).collect::<Vec<serde_json::Value>>(),
|
2018-07-21 14:58:30 +00:00
|
|
|
"n_authors": authors.len(),
|
2018-07-25 12:29:34 +00:00
|
|
|
"n_articles": articles.len(),
|
|
|
|
"page": page.page,
|
|
|
|
"n_pages": Page::total(articles.len() as i32)
|
2018-06-18 17:28:28 +00:00
|
|
|
}))
|
2018-07-26 19:35:35 +00:00
|
|
|
})
|
2018-04-23 10:54:37 +00:00
|
|
|
}
|
|
|
|
|
2018-07-20 16:42:35 +00:00
|
|
|
#[get("/~/<name>", rank = 3)]
|
|
|
|
fn details(name: String, conn: DbConn, user: Option<User>) -> Template {
|
|
|
|
paginated_details(name, conn, user, Page::first())
|
|
|
|
}
|
|
|
|
|
2018-07-11 15:30:01 +00:00
|
|
|
#[get("/~/<name>", rank = 1)]
|
2018-10-20 09:04:20 +00:00
|
|
|
fn activity_details(name: String, conn: DbConn, _ap: ApRequest) -> Option<ActivityStream<CustomGroup>> {
|
2018-11-26 09:21:52 +00:00
|
|
|
let blog = Blog::find_local(&*conn, &name)?;
|
|
|
|
Some(ActivityStream::new(blog.to_activity(&*conn)))
|
2018-04-23 15:09:05 +00:00
|
|
|
}
|
|
|
|
|
2018-04-23 10:54:37 +00:00
|
|
|
#[get("/blogs/new")]
|
2018-09-03 13:59:02 +00:00
|
|
|
fn new(user: User, conn: DbConn) -> Template {
|
2018-05-10 20:31:52 +00:00
|
|
|
Template::render("blogs/new", json!({
|
2018-09-03 13:59:02 +00:00
|
|
|
"account": user.to_json(&*conn),
|
2018-07-06 17:29:36 +00:00
|
|
|
"errors": null,
|
|
|
|
"form": null
|
2018-05-10 20:31:52 +00:00
|
|
|
}))
|
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>{
|
2018-09-07 23:11:27 +00:00
|
|
|
utils::requires_login(
|
|
|
|
"You need to be logged in order to create a new blog",
|
2018-11-26 09:21:52 +00:00
|
|
|
uri!(new)
|
2018-09-07 23:11:27 +00:00
|
|
|
)
|
2018-06-04 19:57:03 +00:00
|
|
|
}
|
|
|
|
|
2018-07-06 17:29:36 +00:00
|
|
|
#[derive(FromForm, Validate, Serialize)]
|
2018-04-23 10:54:37 +00:00
|
|
|
struct NewBlogForm {
|
2018-07-07 20:51:48 +00:00
|
|
|
#[validate(custom(function = "valid_slug", message = "Invalid name"))]
|
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> {
|
2018-11-26 09:21:52 +00:00
|
|
|
let slug = utils::make_actor_id(title);
|
|
|
|
if slug.is_empty() {
|
2018-06-29 12:56:00 +00:00
|
|
|
Err(ValidationError::new("empty_slug"))
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-23 10:54:37 +00:00
|
|
|
#[post("/blogs/new", data = "<data>")]
|
2018-07-06 09:51:19 +00:00
|
|
|
fn create(conn: DbConn, data: LenientForm<NewBlogForm>, user: User) -> Result<Redirect, Template> {
|
2018-04-23 10:54:37 +00:00
|
|
|
let form = data.get();
|
2018-11-26 09:21:52 +00:00
|
|
|
let slug = utils::make_actor_id(&form.title);
|
2018-06-19 21:20:27 +00:00
|
|
|
|
2018-07-06 09:51:19 +00:00
|
|
|
let mut errors = match form.validate() {
|
|
|
|
Ok(_) => ValidationErrors::new(),
|
|
|
|
Err(e) => e
|
|
|
|
};
|
2018-11-26 09:21:52 +00:00
|
|
|
if Blog::find_local(&*conn, &slug).is_some() {
|
2018-07-07 20:51:48 +00:00
|
|
|
errors.add("title", ValidationError {
|
|
|
|
code: Cow::from("existing_slug"),
|
|
|
|
message: Some(Cow::from("A blog with the same name already exists.")),
|
|
|
|
params: HashMap::new()
|
|
|
|
});
|
2018-07-06 09:51:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if errors.is_empty() {
|
2018-06-19 18:40:20 +00:00
|
|
|
let blog = Blog::insert(&*conn, NewBlog::new_local(
|
2018-07-06 09:51:19 +00:00
|
|
|
slug.clone(),
|
2018-06-19 18:40:20 +00:00
|
|
|
form.title.to_string(),
|
|
|
|
String::from(""),
|
|
|
|
Instance::local_id(&*conn)
|
|
|
|
));
|
|
|
|
blog.update_boxes(&*conn);
|
2018-04-23 13:22:07 +00:00
|
|
|
|
2018-06-19 18:40:20 +00:00
|
|
|
BlogAuthor::insert(&*conn, NewBlogAuthor {
|
|
|
|
blog_id: blog.id,
|
|
|
|
author_id: user.id,
|
|
|
|
is_owner: true
|
|
|
|
});
|
2018-06-19 19:16:18 +00:00
|
|
|
|
2018-07-06 09:51:19 +00:00
|
|
|
Ok(Redirect::to(uri!(details: name = slug.clone())))
|
|
|
|
} else {
|
2018-07-07 20:51:48 +00:00
|
|
|
println!("{:?}", errors);
|
2018-07-06 09:51:19 +00:00
|
|
|
Err(Template::render("blogs/new", json!({
|
2018-09-03 13:59:02 +00:00
|
|
|
"account": user.to_json(&*conn),
|
2018-07-06 17:29:36 +00:00
|
|
|
"errors": errors.inner(),
|
|
|
|
"form": form
|
2018-07-06 09:51:19 +00:00
|
|
|
})))
|
2018-06-19 18:40:20 +00:00
|
|
|
}
|
2018-04-23 10:54:37 +00:00
|
|
|
}
|
2018-04-29 17:49:56 +00:00
|
|
|
|
2018-10-20 13:03:59 +00:00
|
|
|
#[post("/~/<name>/delete")]
|
|
|
|
fn delete(conn: DbConn, name: String, user: Option<User>) -> Result<Redirect, Option<Template>>{
|
2018-11-26 09:21:52 +00:00
|
|
|
let blog = Blog::find_local(&*conn, &name).ok_or(None)?;
|
|
|
|
if user.map(|u| u.is_author_in(&*conn, &blog)).unwrap_or(false) {
|
2018-10-20 13:03:59 +00:00
|
|
|
blog.delete(&conn);
|
|
|
|
Ok(Redirect::to(uri!(super::instance::index)))
|
|
|
|
} else {
|
|
|
|
Err(Some(Template::render("errors/403", json!({// TODO actually return 403 error code
|
|
|
|
"error_message": "You are not allowed to delete this blog."
|
|
|
|
}))))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-29 17:49:56 +00:00
|
|
|
#[get("/~/<name>/outbox")]
|
2018-10-20 09:04:20 +00:00
|
|
|
fn outbox(name: String, conn: DbConn) -> Option<ActivityStream<OrderedCollection>> {
|
2018-11-26 09:21:52 +00:00
|
|
|
let blog = Blog::find_local(&*conn, &name)?;
|
2018-10-20 09:04:20 +00:00
|
|
|
Some(blog.outbox(&*conn))
|
2018-04-29 17:49:56 +00:00
|
|
|
}
|
2018-09-01 20:08:26 +00:00
|
|
|
|
|
|
|
#[get("/~/<name>/atom.xml")]
|
2018-10-20 09:04:20 +00:00
|
|
|
fn atom_feed(name: String, conn: DbConn) -> Option<Content<String>> {
|
2018-11-26 09:21:52 +00:00
|
|
|
let blog = Blog::find_by_fqn(&*conn, &name)?;
|
2018-09-01 20:08:26 +00:00
|
|
|
let feed = FeedBuilder::default()
|
|
|
|
.title(blog.title.clone())
|
2018-10-20 09:04:20 +00:00
|
|
|
.id(Instance::get_local(&*conn).expect("blogs::atom_feed: local instance not found error")
|
2018-11-26 09:21:52 +00:00
|
|
|
.compute_box("~", &name, "atom.xml"))
|
2018-09-01 20:08:26 +00:00
|
|
|
.entries(Post::get_recents_for_blog(&*conn, &blog, 15)
|
|
|
|
.into_iter()
|
|
|
|
.map(|p| super::post_to_atom(p, &*conn))
|
|
|
|
.collect::<Vec<Entry>>())
|
|
|
|
.build()
|
2018-10-20 09:04:20 +00:00
|
|
|
.expect("blogs::atom_feed: feed creation error");
|
|
|
|
Some(Content(ContentType::new("application", "atom+xml"), feed.to_string()))
|
2018-09-01 20:08:26 +00:00
|
|
|
}
|