2019-03-20 17:56:17 +01:00
|
|
|
use rocket::response::{Flash, Redirect};
|
2018-12-06 18:54:16 +01:00
|
|
|
use rocket_i18n::I18n;
|
2018-05-19 11:51:10 +02:00
|
|
|
|
2020-01-21 07:02:03 +01:00
|
|
|
use crate::routes::errors::ErrorPage;
|
2019-04-17 19:31:47 +02:00
|
|
|
use plume_common::activity_pub::broadcast;
|
2019-03-20 17:56:17 +01:00
|
|
|
use plume_common::utils;
|
2019-04-17 19:31:47 +02:00
|
|
|
use plume_models::{
|
2021-01-30 13:44:29 +01:00
|
|
|
blogs::Blog, db_conn::DbConn, inbox::inbox, posts::Post, reshares::*, timeline::*, users::User,
|
|
|
|
Error, PlumeRocket, CONFIG,
|
2019-04-17 19:31:47 +02:00
|
|
|
};
|
2018-05-19 11:51:10 +02:00
|
|
|
|
2018-07-11 21:27:47 +02:00
|
|
|
#[post("/~/<blog>/<slug>/reshare")]
|
2019-03-20 17:56:17 +01:00
|
|
|
pub fn create(
|
|
|
|
blog: String,
|
|
|
|
slug: String,
|
|
|
|
user: User,
|
2021-01-30 13:44:29 +01:00
|
|
|
conn: DbConn,
|
2019-04-17 19:31:47 +02:00
|
|
|
rockets: PlumeRocket,
|
2019-03-20 17:56:17 +01:00
|
|
|
) -> Result<Redirect, ErrorPage> {
|
2021-01-30 13:44:29 +01:00
|
|
|
let b = Blog::find_by_fqn(&conn, &blog)?;
|
|
|
|
let post = Post::find_by_slug(&conn, &slug, b.id)?;
|
2018-05-19 11:51:10 +02:00
|
|
|
|
2021-01-30 13:44:29 +01:00
|
|
|
if !user.has_reshared(&conn, &post)? {
|
|
|
|
let reshare = Reshare::insert(&conn, NewReshare::new(&post, &user))?;
|
|
|
|
reshare.notify(&conn)?;
|
2018-05-19 11:51:10 +02:00
|
|
|
|
2021-01-30 13:44:29 +01:00
|
|
|
Timeline::add_to_all_timelines(&conn, &post, Kind::Reshare(&user))?;
|
2019-10-07 19:08:20 +02:00
|
|
|
|
2021-01-30 13:44:29 +01:00
|
|
|
let dest = User::one_by_instance(&conn)?;
|
|
|
|
let act = reshare.to_activity(&conn)?;
|
2021-01-11 21:27:52 +01:00
|
|
|
rockets
|
|
|
|
.worker
|
|
|
|
.execute(move || broadcast(&user, act, dest, CONFIG.proxy().cloned()));
|
2018-05-19 11:51:10 +02:00
|
|
|
} else {
|
2021-01-30 13:44:29 +01:00
|
|
|
let reshare = Reshare::find_by_user_on_post(&conn, user.id, post.id)?;
|
|
|
|
let delete_act = reshare.build_undo(&conn)?;
|
2019-04-17 19:31:47 +02:00
|
|
|
inbox(
|
2021-01-30 13:44:29 +01:00
|
|
|
&conn,
|
2019-04-17 19:31:47 +02:00
|
|
|
serde_json::to_value(&delete_act).map_err(Error::from)?,
|
|
|
|
)?;
|
|
|
|
|
2021-01-30 13:44:29 +01:00
|
|
|
let dest = User::one_by_instance(&conn)?;
|
2019-04-17 19:31:47 +02:00
|
|
|
rockets
|
|
|
|
.worker
|
2021-01-11 21:27:52 +01:00
|
|
|
.execute(move || broadcast(&user, delete_act, dest, CONFIG.proxy().cloned()));
|
2018-05-19 11:51:10 +02:00
|
|
|
}
|
|
|
|
|
2021-01-15 17:13:45 +01:00
|
|
|
Ok(Redirect::to(uri!(
|
|
|
|
super::posts::details: blog = blog,
|
|
|
|
slug = slug,
|
|
|
|
responding_to = _
|
|
|
|
)))
|
2018-05-19 11:51:10 +02:00
|
|
|
}
|
2018-06-04 21:57:03 +02:00
|
|
|
|
2019-03-20 17:56:17 +01:00
|
|
|
#[post("/~/<blog>/<slug>/reshare", rank = 1)]
|
2018-12-06 18:54:16 +01:00
|
|
|
pub fn create_auth(blog: String, slug: String, i18n: I18n) -> Flash<Redirect> {
|
2018-09-08 01:11:27 +02:00
|
|
|
utils::requires_login(
|
2019-04-06 17:41:57 +02:00
|
|
|
&i18n!(i18n.catalog, "To reshare a post, you need to be logged in"),
|
2019-03-20 17:56:17 +01:00
|
|
|
uri!(create: blog = blog, slug = slug),
|
2018-09-08 01:11:27 +02:00
|
|
|
)
|
2018-06-04 21:57:03 +02:00
|
|
|
}
|