Plume/src/routes/reshares.rs

40 lines
1.3 KiB
Rust
Raw Normal View History

2018-06-04 21:57:03 +02:00
use rocket::response::{Redirect, Flash};
2018-05-19 11:51:10 +02:00
2018-06-18 13:32:03 +02:00
use activity_pub::{broadcast, IntoId, inbox::Notify};
2018-05-19 11:51:10 +02:00
use db_conn::DbConn;
use models::{
posts::Post,
reshares::*,
users::User
};
2018-06-04 21:57:03 +02:00
use utils;
2018-05-19 11:51:10 +02:00
#[get("/~/<blog>/<slug>/reshare")]
fn create(blog: String, slug: String, user: User, conn: DbConn) -> Redirect {
let post = Post::find_by_slug(&*conn, slug.clone()).unwrap();
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-18 13:32:03 +02:00
Reshare::notify(&*conn, reshare.into_activity(&*conn), user.clone().into_id());
2018-05-19 11:51:10 +02:00
broadcast(&*conn, &user, reshare.into_activity(&*conn), user.get_followers(&*conn));
} else {
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);
broadcast(&*conn, &user, delete_act, user.get_followers(&*conn));
}
Redirect::to(format!("/~/{}/{}/", blog, slug))
2018-05-19 11:51:10 +02:00
}
2018-06-04 21:57:03 +02:00
#[get("/~/<blog>/<slug>/reshare", rank=1)]
fn create_auth(blog: String, slug: String) -> Flash<Redirect> {
utils::requires_login("You need to be logged in order to reshare a post", &format!("/~/{}/{}/reshare",blog, slug))
}