2018-07-26 17:51:41 +02:00
|
|
|
use rocket::{State, response::{Redirect, Flash}};
|
|
|
|
use workerpool::{Pool, thunk::*};
|
2018-05-19 11:51:10 +02:00
|
|
|
|
2018-09-01 17:28:47 +02:00
|
|
|
use plume_common::activity_pub::{broadcast, inbox::{Deletable, Notify}};
|
2018-06-23 18:36:11 +02:00
|
|
|
use plume_common::utils;
|
|
|
|
use plume_models::{
|
2018-06-19 21:16:18 +02:00
|
|
|
blogs::Blog,
|
2018-06-23 18:36:11 +02:00
|
|
|
db_conn::DbConn,
|
2018-05-19 11:51:10 +02:00
|
|
|
posts::Post,
|
|
|
|
reshares::*,
|
|
|
|
users::User
|
|
|
|
};
|
|
|
|
|
2018-07-11 21:27:47 +02:00
|
|
|
#[post("/~/<blog>/<slug>/reshare")]
|
2018-07-26 17:51:41 +02:00
|
|
|
fn create(blog: String, slug: String, user: User, conn: DbConn, worker: State<Pool<ThunkWorker<()>>>) -> Redirect {
|
2018-06-19 21:16:18 +02:00
|
|
|
let b = Blog::find_by_fqn(&*conn, blog.clone()).unwrap();
|
|
|
|
let post = Post::find_by_slug(&*conn, slug.clone(), b.id).unwrap();
|
2018-05-19 11:51:10 +02:00
|
|
|
|
|
|
|
if !user.has_reshared(&*conn, &post) {
|
|
|
|
let reshare = Reshare::insert(&*conn, NewReshare {
|
|
|
|
post_id: post.id,
|
|
|
|
user_id: user.id,
|
|
|
|
ap_url: "".to_string()
|
|
|
|
});
|
|
|
|
reshare.update_ap_url(&*conn);
|
2018-06-20 23:51:47 +02:00
|
|
|
reshare.notify(&*conn);
|
2018-05-19 11:51:10 +02:00
|
|
|
|
2018-09-09 13:19:11 +02:00
|
|
|
let dest = User::one_by_instance(&*conn);
|
2018-07-26 17:51:41 +02:00
|
|
|
let act = reshare.into_activity(&*conn);
|
2018-09-09 13:19:11 +02:00
|
|
|
worker.execute(Thunk::of(move || broadcast(&user, act, dest)));
|
2018-05-19 11:51:10 +02:00
|
|
|
} else {
|
2018-06-18 17:13:09 +02:00
|
|
|
let reshare = Reshare::find_by_user_on_post(&*conn, user.id, post.id).unwrap();
|
2018-05-19 11:51:10 +02:00
|
|
|
let delete_act = reshare.delete(&*conn);
|
2018-09-09 13:19:11 +02:00
|
|
|
let dest = User::one_by_instance(&*conn);
|
|
|
|
worker.execute(Thunk::of(move || broadcast(&user, delete_act, dest)));
|
2018-05-19 11:51:10 +02:00
|
|
|
}
|
|
|
|
|
2018-06-19 23:20:27 +02:00
|
|
|
Redirect::to(uri!(super::posts::details: blog = blog, slug = slug))
|
2018-05-19 11:51:10 +02:00
|
|
|
}
|
2018-06-04 21:57:03 +02:00
|
|
|
|
2018-07-11 21:27:47 +02:00
|
|
|
#[post("/~/<blog>/<slug>/reshare", rank=1)]
|
2018-06-04 21:57:03 +02:00
|
|
|
fn create_auth(blog: String, slug: String) -> Flash<Redirect> {
|
2018-09-08 01:11:27 +02:00
|
|
|
utils::requires_login(
|
|
|
|
"You need to be logged in order to reshare a post",
|
|
|
|
uri!(create: blog = blog, slug = slug).into()
|
|
|
|
)
|
2018-06-04 21:57:03 +02:00
|
|
|
}
|