2019-10-30 11:22:28 +01:00
|
|
|
use activitypub::collection::{OrderedCollection, OrderedCollectionPage};
|
2019-03-22 19:51:36 +01:00
|
|
|
use diesel::SaveChangesDsl;
|
2018-05-19 09:39:59 +02:00
|
|
|
use rocket::{
|
2018-10-20 11:04:20 +02:00
|
|
|
http::ContentType,
|
2018-06-24 18:58:57 +02:00
|
|
|
request::LenientForm,
|
2019-03-20 17:56:17 +01:00
|
|
|
response::{content::Content, Flash, Redirect},
|
2018-05-19 09:39:59 +02:00
|
|
|
};
|
2018-12-06 18:54:16 +01:00
|
|
|
use rocket_i18n::I18n;
|
2019-03-20 17:56:17 +01:00
|
|
|
use std::{borrow::Cow, collections::HashMap};
|
2018-07-06 11:51:19 +02:00
|
|
|
use validator::{Validate, ValidationError, ValidationErrors};
|
2018-04-23 12:54:37 +02:00
|
|
|
|
2020-01-21 07:02:03 +01:00
|
|
|
use crate::routes::{errors::ErrorPage, Page, RespondOrRedirect};
|
|
|
|
use crate::template_utils::{IntoContext, Ructe};
|
2018-07-11 17:30:01 +02:00
|
|
|
use plume_common::activity_pub::{ActivityStream, ApRequest};
|
2018-06-23 18:36:11 +02:00
|
|
|
use plume_common::utils;
|
2019-03-22 19:51:36 +01:00
|
|
|
use plume_models::{
|
2019-04-17 19:31:47 +02:00
|
|
|
blog_authors::*, blogs::*, instance::Instance, medias::*, posts::Post, safe_string::SafeString,
|
|
|
|
users::User, Connection, PlumeRocket,
|
2019-03-22 19:51:36 +01:00
|
|
|
};
|
2018-04-23 12:54:37 +02:00
|
|
|
|
2018-07-20 18:42:35 +02:00
|
|
|
#[get("/~/<name>?<page>", rank = 2)]
|
2019-03-19 14:37:56 +01:00
|
|
|
pub fn details(name: String, page: Option<Page>, rockets: PlumeRocket) -> Result<Ructe, ErrorPage> {
|
2018-12-13 22:20:19 +01:00
|
|
|
let page = page.unwrap_or_default();
|
2019-04-17 19:31:47 +02:00
|
|
|
let conn = &*rockets.conn;
|
|
|
|
let blog = Blog::find_by_fqn(&rockets, &name)?;
|
2019-04-30 12:04:25 +02:00
|
|
|
let posts = Post::blog_page(conn, &blog, page.limits())?;
|
|
|
|
let articles_count = Post::count_for_blog(conn, &blog)?;
|
|
|
|
let authors = &blog.list_authors(conn)?;
|
2018-12-06 18:54:16 +01:00
|
|
|
|
|
|
|
Ok(render!(blogs::details(
|
2019-04-30 12:04:25 +02:00
|
|
|
&rockets.to_context(),
|
2019-03-22 19:51:36 +01:00
|
|
|
blog,
|
2018-12-06 18:54:16 +01:00
|
|
|
authors,
|
|
|
|
page.0,
|
2018-12-14 23:16:18 +01:00
|
|
|
Page::total(articles_count as i32),
|
2018-12-06 18:54:16 +01:00
|
|
|
posts
|
|
|
|
)))
|
2018-04-23 12:54:37 +02:00
|
|
|
}
|
|
|
|
|
2018-07-11 17:30:01 +02:00
|
|
|
#[get("/~/<name>", rank = 1)]
|
2019-03-20 17:56:17 +01:00
|
|
|
pub fn activity_details(
|
|
|
|
name: String,
|
2019-04-17 19:31:47 +02:00
|
|
|
rockets: PlumeRocket,
|
2019-03-20 17:56:17 +01:00
|
|
|
_ap: ApRequest,
|
|
|
|
) -> Option<ActivityStream<CustomGroup>> {
|
2019-04-17 19:31:47 +02:00
|
|
|
let blog = Blog::find_by_fqn(&rockets, &name).ok()?;
|
|
|
|
Some(ActivityStream::new(blog.to_activity(&*rockets.conn).ok()?))
|
2018-04-23 17:09:05 +02:00
|
|
|
}
|
|
|
|
|
2018-04-23 12:54:37 +02:00
|
|
|
#[get("/blogs/new")]
|
2019-04-30 12:04:25 +02:00
|
|
|
pub fn new(rockets: PlumeRocket, _user: User) -> Ructe {
|
2018-12-06 18:54:16 +01:00
|
|
|
render!(blogs::new(
|
2019-04-30 12:04:25 +02:00
|
|
|
&rockets.to_context(),
|
2018-12-06 18:54:16 +01:00
|
|
|
&NewBlogForm::default(),
|
|
|
|
ValidationErrors::default()
|
|
|
|
))
|
2018-04-23 12:54:37 +02:00
|
|
|
}
|
|
|
|
|
2018-06-04 21:57:03 +02:00
|
|
|
#[get("/blogs/new", rank = 2)]
|
2019-03-20 17:56:17 +01:00
|
|
|
pub fn new_auth(i18n: I18n) -> Flash<Redirect> {
|
2018-09-08 01:11:27 +02:00
|
|
|
utils::requires_login(
|
2019-03-20 17:56:17 +01:00
|
|
|
&i18n!(
|
|
|
|
i18n.catalog,
|
2019-04-01 20:09:29 +02:00
|
|
|
"To create a new blog, you need to be logged in"
|
2019-03-20 17:56:17 +01:00
|
|
|
),
|
|
|
|
uri!(new),
|
2018-09-08 01:11:27 +02:00
|
|
|
)
|
2018-06-04 21:57:03 +02:00
|
|
|
}
|
|
|
|
|
2019-03-12 19:40:54 +01:00
|
|
|
#[derive(Default, FromForm, Validate)]
|
2018-12-06 18:54:16 +01:00
|
|
|
pub struct NewBlogForm {
|
2018-07-07 22:51:48 +02:00
|
|
|
#[validate(custom(function = "valid_slug", message = "Invalid name"))]
|
2018-12-06 18:54:16 +01:00
|
|
|
pub title: String,
|
2018-04-23 12:54:37 +02:00
|
|
|
}
|
|
|
|
|
2018-06-29 14:56:00 +02:00
|
|
|
fn valid_slug(title: &str) -> Result<(), ValidationError> {
|
2018-11-26 10:21:52 +01:00
|
|
|
let slug = utils::make_actor_id(title);
|
|
|
|
if slug.is_empty() {
|
2018-06-29 14:56:00 +02:00
|
|
|
Err(ValidationError::new("empty_slug"))
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-06 18:54:16 +01:00
|
|
|
#[post("/blogs/new", data = "<form>")]
|
2019-06-14 09:33:30 +02:00
|
|
|
pub fn create(form: LenientForm<NewBlogForm>, rockets: PlumeRocket) -> RespondOrRedirect {
|
2018-11-26 10:21:52 +01:00
|
|
|
let slug = utils::make_actor_id(&form.title);
|
2019-04-17 19:31:47 +02:00
|
|
|
let conn = &*rockets.conn;
|
|
|
|
let intl = &rockets.intl.catalog;
|
|
|
|
let user = rockets.user.clone().unwrap();
|
2018-06-19 23:20:27 +02:00
|
|
|
|
2018-07-06 11:51:19 +02:00
|
|
|
let mut errors = match form.validate() {
|
|
|
|
Ok(_) => ValidationErrors::new(),
|
2019-03-20 17:56:17 +01:00
|
|
|
Err(e) => e,
|
2018-07-06 11:51:19 +02:00
|
|
|
};
|
2019-04-17 19:31:47 +02:00
|
|
|
if Blog::find_by_fqn(&rockets, &slug).is_ok() {
|
2019-03-20 17:56:17 +01:00
|
|
|
errors.add(
|
|
|
|
"title",
|
|
|
|
ValidationError {
|
|
|
|
code: Cow::from("existing_slug"),
|
2019-04-17 19:31:47 +02:00
|
|
|
message: Some(Cow::from(i18n!(
|
|
|
|
intl,
|
|
|
|
"A blog with the same name already exists."
|
|
|
|
))),
|
2019-03-20 17:56:17 +01:00
|
|
|
params: HashMap::new(),
|
|
|
|
},
|
|
|
|
);
|
2018-07-06 11:51:19 +02:00
|
|
|
}
|
|
|
|
|
2019-06-14 09:33:30 +02:00
|
|
|
if !errors.is_empty() {
|
|
|
|
return render!(blogs::new(&rockets.to_context(), &*form, errors)).into();
|
|
|
|
}
|
2019-03-20 17:56:17 +01:00
|
|
|
|
2019-06-14 09:33:30 +02:00
|
|
|
let blog = Blog::insert(
|
|
|
|
&*conn,
|
|
|
|
NewBlog::new_local(
|
|
|
|
slug.clone(),
|
|
|
|
form.title.to_string(),
|
|
|
|
String::from(""),
|
|
|
|
Instance::get_local()
|
|
|
|
.expect("blog::create: instance error")
|
|
|
|
.id,
|
2019-03-20 17:56:17 +01:00
|
|
|
)
|
2019-06-14 09:33:30 +02:00
|
|
|
.expect("blog::create: new local error"),
|
|
|
|
)
|
|
|
|
.expect("blog::create: error");
|
2018-06-19 21:16:18 +02:00
|
|
|
|
2019-06-14 09:33:30 +02:00
|
|
|
BlogAuthor::insert(
|
|
|
|
&*conn,
|
|
|
|
NewBlogAuthor {
|
|
|
|
blog_id: blog.id,
|
|
|
|
author_id: user.id,
|
|
|
|
is_owner: true,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.expect("blog::create: author error");
|
|
|
|
|
|
|
|
Flash::success(
|
2020-01-19 12:52:32 +01:00
|
|
|
Redirect::to(uri!(details: name = slug, page = _)),
|
2019-06-14 09:33:30 +02:00
|
|
|
&i18n!(intl, "Your blog was successfully created!"),
|
|
|
|
)
|
|
|
|
.into()
|
2018-04-23 12:54:37 +02:00
|
|
|
}
|
2018-04-29 19:49:56 +02:00
|
|
|
|
2018-10-20 15:03:59 +02:00
|
|
|
#[post("/~/<name>/delete")]
|
2019-06-14 09:33:30 +02:00
|
|
|
pub fn delete(name: String, rockets: PlumeRocket) -> RespondOrRedirect {
|
2019-04-17 19:31:47 +02:00
|
|
|
let conn = &*rockets.conn;
|
|
|
|
let blog = Blog::find_by_fqn(&rockets, &name).expect("blog::delete: blog not found");
|
2019-03-19 14:37:56 +01:00
|
|
|
|
2019-04-30 12:04:25 +02:00
|
|
|
if rockets
|
|
|
|
.user
|
2019-03-20 17:56:17 +01:00
|
|
|
.clone()
|
|
|
|
.and_then(|u| u.is_author_in(&*conn, &blog).ok())
|
|
|
|
.unwrap_or(false)
|
|
|
|
{
|
2021-01-07 14:51:46 +01:00
|
|
|
blog.delete(&conn).expect("blog::expect: deletion error");
|
2019-06-14 09:33:30 +02:00
|
|
|
Flash::success(
|
2019-04-30 12:04:25 +02:00
|
|
|
Redirect::to(uri!(super::instance::index)),
|
|
|
|
i18n!(rockets.intl.catalog, "Your blog was deleted."),
|
2019-06-14 09:33:30 +02:00
|
|
|
)
|
|
|
|
.into()
|
2018-10-20 15:03:59 +02:00
|
|
|
} else {
|
2018-12-06 18:54:16 +01:00
|
|
|
// TODO actually return 403 error code
|
2019-06-14 09:33:30 +02:00
|
|
|
render!(errors::not_authorized(
|
2019-04-30 12:04:25 +02:00
|
|
|
&rockets.to_context(),
|
|
|
|
i18n!(
|
|
|
|
rockets.intl.catalog,
|
|
|
|
"You are not allowed to delete this blog."
|
|
|
|
)
|
2019-06-14 09:33:30 +02:00
|
|
|
))
|
|
|
|
.into()
|
2018-10-20 15:03:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-22 19:51:36 +01:00
|
|
|
#[derive(FromForm, Validate)]
|
|
|
|
pub struct EditForm {
|
|
|
|
#[validate(custom(function = "valid_slug", message = "Invalid name"))]
|
|
|
|
pub title: String,
|
|
|
|
pub summary: String,
|
|
|
|
pub icon: Option<i32>,
|
|
|
|
pub banner: Option<i32>,
|
2019-08-21 00:42:04 +02:00
|
|
|
pub theme: Option<String>,
|
2019-03-22 19:51:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[get("/~/<name>/edit")]
|
2019-04-17 19:31:47 +02:00
|
|
|
pub fn edit(name: String, rockets: PlumeRocket) -> Result<Ructe, ErrorPage> {
|
|
|
|
let conn = &*rockets.conn;
|
|
|
|
let blog = Blog::find_by_fqn(&rockets, &name)?;
|
|
|
|
if rockets
|
|
|
|
.user
|
2019-03-22 19:51:36 +01:00
|
|
|
.clone()
|
2019-04-30 12:04:25 +02:00
|
|
|
.and_then(|u| u.is_author_in(conn, &blog).ok())
|
2019-03-22 19:51:36 +01:00
|
|
|
.unwrap_or(false)
|
|
|
|
{
|
2019-04-17 19:31:47 +02:00
|
|
|
let user = rockets
|
|
|
|
.user
|
2019-04-30 12:04:25 +02:00
|
|
|
.clone()
|
2019-04-17 19:31:47 +02:00
|
|
|
.expect("blogs::edit: User was None while it shouldn't");
|
2019-04-30 12:04:25 +02:00
|
|
|
let medias = Media::for_user(conn, user.id).expect("Couldn't list media");
|
2019-03-22 19:51:36 +01:00
|
|
|
Ok(render!(blogs::edit(
|
2019-04-30 12:04:25 +02:00
|
|
|
&rockets.to_context(),
|
2019-03-22 19:51:36 +01:00
|
|
|
&blog,
|
|
|
|
medias,
|
|
|
|
&EditForm {
|
|
|
|
title: blog.title.clone(),
|
|
|
|
summary: blog.summary.clone(),
|
|
|
|
icon: blog.icon_id,
|
|
|
|
banner: blog.banner_id,
|
2019-08-21 00:42:04 +02:00
|
|
|
theme: blog.theme.clone(),
|
2019-03-22 19:51:36 +01:00
|
|
|
},
|
|
|
|
ValidationErrors::default()
|
|
|
|
)))
|
|
|
|
} else {
|
|
|
|
// TODO actually return 403 error code
|
|
|
|
Ok(render!(errors::not_authorized(
|
2019-04-30 12:04:25 +02:00
|
|
|
&rockets.to_context(),
|
2019-04-17 19:31:47 +02:00
|
|
|
i18n!(
|
|
|
|
rockets.intl.catalog,
|
|
|
|
"You are not allowed to edit this blog."
|
|
|
|
)
|
2019-03-22 19:51:36 +01:00
|
|
|
)))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns true if the media is owned by `user` and is a picture
|
|
|
|
fn check_media(conn: &Connection, id: i32, user: &User) -> bool {
|
|
|
|
if let Ok(media) = Media::get(conn, id) {
|
|
|
|
media.owner_id == user.id && media.category() == MediaCategory::Image
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[put("/~/<name>/edit", data = "<form>")]
|
|
|
|
pub fn update(
|
|
|
|
name: String,
|
|
|
|
form: LenientForm<EditForm>,
|
2019-04-17 19:31:47 +02:00
|
|
|
rockets: PlumeRocket,
|
2019-06-14 09:33:30 +02:00
|
|
|
) -> RespondOrRedirect {
|
2019-04-17 19:31:47 +02:00
|
|
|
let conn = &*rockets.conn;
|
|
|
|
let intl = &rockets.intl.catalog;
|
|
|
|
let mut blog = Blog::find_by_fqn(&rockets, &name).expect("blog::update: blog not found");
|
2019-06-14 09:33:30 +02:00
|
|
|
if !rockets
|
2019-04-17 19:31:47 +02:00
|
|
|
.user
|
2019-03-22 19:51:36 +01:00
|
|
|
.clone()
|
|
|
|
.and_then(|u| u.is_author_in(&*conn, &blog).ok())
|
|
|
|
.unwrap_or(false)
|
|
|
|
{
|
|
|
|
// TODO actually return 403 error code
|
2019-06-14 09:33:30 +02:00
|
|
|
return render!(errors::not_authorized(
|
2019-04-30 12:04:25 +02:00
|
|
|
&rockets.to_context(),
|
2019-04-17 19:31:47 +02:00
|
|
|
i18n!(
|
|
|
|
rockets.intl.catalog,
|
|
|
|
"You are not allowed to edit this blog."
|
|
|
|
)
|
2019-06-14 09:33:30 +02:00
|
|
|
))
|
|
|
|
.into();
|
2019-03-22 19:51:36 +01:00
|
|
|
}
|
2019-06-14 09:33:30 +02:00
|
|
|
|
|
|
|
let user = rockets
|
|
|
|
.user
|
|
|
|
.clone()
|
|
|
|
.expect("blogs::edit: User was None while it shouldn't");
|
|
|
|
form.validate()
|
|
|
|
.and_then(|_| {
|
|
|
|
if let Some(icon) = form.icon {
|
|
|
|
if !check_media(&*conn, icon, &user) {
|
|
|
|
let mut errors = ValidationErrors::new();
|
|
|
|
errors.add(
|
|
|
|
"",
|
|
|
|
ValidationError {
|
|
|
|
code: Cow::from("icon"),
|
|
|
|
message: Some(Cow::from(i18n!(
|
|
|
|
intl,
|
|
|
|
"You can't use this media as a blog icon."
|
|
|
|
))),
|
|
|
|
params: HashMap::new(),
|
|
|
|
},
|
|
|
|
);
|
|
|
|
return Err(errors);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(banner) = form.banner {
|
|
|
|
if !check_media(&*conn, banner, &user) {
|
|
|
|
let mut errors = ValidationErrors::new();
|
|
|
|
errors.add(
|
|
|
|
"",
|
|
|
|
ValidationError {
|
|
|
|
code: Cow::from("banner"),
|
|
|
|
message: Some(Cow::from(i18n!(
|
|
|
|
intl,
|
|
|
|
"You can't use this media as a blog banner."
|
|
|
|
))),
|
|
|
|
params: HashMap::new(),
|
|
|
|
},
|
|
|
|
);
|
|
|
|
return Err(errors);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
blog.title = form.title.clone();
|
|
|
|
blog.summary = form.summary.clone();
|
|
|
|
blog.summary_html = SafeString::new(
|
|
|
|
&utils::md_to_html(
|
|
|
|
&form.summary,
|
|
|
|
None,
|
|
|
|
true,
|
|
|
|
Some(Media::get_media_processor(
|
|
|
|
&conn,
|
|
|
|
blog.list_authors(&conn)
|
|
|
|
.expect("Couldn't get list of authors")
|
|
|
|
.iter()
|
|
|
|
.collect(),
|
|
|
|
)),
|
|
|
|
)
|
|
|
|
.0,
|
|
|
|
);
|
|
|
|
blog.icon_id = form.icon;
|
|
|
|
blog.banner_id = form.banner;
|
2019-08-21 00:42:04 +02:00
|
|
|
blog.theme = form.theme.clone();
|
2019-06-14 09:33:30 +02:00
|
|
|
blog.save_changes::<Blog>(&*conn)
|
|
|
|
.expect("Couldn't save blog changes");
|
|
|
|
Ok(Flash::success(
|
|
|
|
Redirect::to(uri!(details: name = name, page = _)),
|
|
|
|
i18n!(intl, "Your blog information have been updated."),
|
|
|
|
))
|
|
|
|
})
|
|
|
|
.map_err(|err| {
|
|
|
|
let medias = Media::for_user(&*conn, user.id).expect("Couldn't list media");
|
|
|
|
render!(blogs::edit(
|
|
|
|
&rockets.to_context(),
|
|
|
|
&blog,
|
|
|
|
medias,
|
|
|
|
&*form,
|
|
|
|
err
|
|
|
|
))
|
|
|
|
})
|
|
|
|
.unwrap()
|
|
|
|
.into()
|
2019-03-22 19:51:36 +01:00
|
|
|
}
|
|
|
|
|
2018-04-29 19:49:56 +02:00
|
|
|
#[get("/~/<name>/outbox")]
|
2019-04-17 19:31:47 +02:00
|
|
|
pub fn outbox(name: String, rockets: PlumeRocket) -> Option<ActivityStream<OrderedCollection>> {
|
|
|
|
let blog = Blog::find_by_fqn(&rockets, &name).ok()?;
|
|
|
|
Some(blog.outbox(&*rockets.conn).ok()?)
|
2018-04-29 19:49:56 +02:00
|
|
|
}
|
2019-10-30 11:22:28 +01:00
|
|
|
#[allow(unused_variables)]
|
|
|
|
#[get("/~/<name>/outbox?<page>")]
|
|
|
|
pub fn outbox_page(
|
|
|
|
name: String,
|
|
|
|
page: Page,
|
|
|
|
rockets: PlumeRocket,
|
|
|
|
) -> Option<ActivityStream<OrderedCollectionPage>> {
|
|
|
|
let blog = Blog::find_by_fqn(&rockets, &name).ok()?;
|
|
|
|
Some(blog.outbox_page(&*rockets.conn, page.limits()).ok()?)
|
|
|
|
}
|
2018-09-01 22:08:26 +02:00
|
|
|
#[get("/~/<name>/atom.xml")]
|
2019-04-17 19:31:47 +02:00
|
|
|
pub fn atom_feed(name: String, rockets: PlumeRocket) -> Option<Content<String>> {
|
|
|
|
let blog = Blog::find_by_fqn(&rockets, &name).ok()?;
|
|
|
|
let conn = &*rockets.conn;
|
2020-05-04 15:28:52 +02:00
|
|
|
let entries = Post::get_recents_for_blog(&*conn, &blog, 15).ok()?;
|
|
|
|
let uri = Instance::get_local()
|
|
|
|
.ok()?
|
|
|
|
.compute_box("~", &name, "atom.xml");
|
|
|
|
let title = &blog.title;
|
|
|
|
let default_updated = &blog.creation_date;
|
|
|
|
let feed = super::build_atom_feed(entries, &uri, title, default_updated, conn);
|
2019-03-20 17:56:17 +01:00
|
|
|
Some(Content(
|
|
|
|
ContentType::new("application", "atom+xml"),
|
|
|
|
feed.to_string(),
|
|
|
|
))
|
2018-09-01 22:08:26 +02:00
|
|
|
}
|