use activitypub::{ activity::{Accept, Follow as FollowAct, Undo}, actor::Person, Actor, }; use diesel::{self, ExpressionMethods, QueryDsl, RunQueryDsl}; use blogs::Blog; use notifications::*; use plume_common::activity_pub::{ broadcast, inbox::{Deletable, FromActivity, Notify, WithInbox}, sign::Signer, Id, IntoId, }; use schema::follows; use users::User; use {ap_url, Connection, BASE_URL}; #[derive(Clone, Queryable, Identifiable, Associations)] #[belongs_to(User, foreign_key = "following_id")] pub struct Follow { pub id: i32, pub follower_id: i32, pub following_id: i32, pub ap_url: String, } #[derive(Insertable)] #[table_name = "follows"] pub struct NewFollow { pub follower_id: i32, pub following_id: i32, pub ap_url: String, } impl Follow { insert!(follows, NewFollow); get!(follows); find_by!(follows, find_by_ap_url, ap_url as String); pub fn find(conn: &Connection, from: i32, to: i32) -> Option { follows::table .filter(follows::follower_id.eq(from)) .filter(follows::following_id.eq(to)) .get_result(conn) .ok() } pub fn into_activity(&self, conn: &Connection) -> FollowAct { let user = User::get(conn, self.follower_id) .expect("Follow::into_activity: actor not found error"); let target = User::get(conn, self.following_id) .expect("Follow::into_activity: target not found error"); let mut act = FollowAct::default(); act.follow_props .set_actor_link::(user.clone().into_id()) .expect("Follow::into_activity: actor error"); act.follow_props .set_object_object(user.into_activity(&*conn)) .expect("Follow::into_activity: object error"); act.object_props .set_id_string(self.ap_url.clone()) .expect("Follow::into_activity: id error"); act.object_props .set_to_link(target.clone().into_id()) .expect("Follow::into_activity: target error"); act.object_props .set_cc_link_vec::(vec![]) .expect("Follow::into_activity: cc error"); act } /// from -> The one sending the follow request /// target -> The target of the request, responding with Accept pub fn accept_follow( conn: &Connection, from: &B, target: &A, follow: FollowAct, from_id: i32, target_id: i32, ) -> Follow { let from_url: String = from.clone().into_id().into(); let target_url: String = target.clone().into_id().into(); let res = Follow::insert( conn, NewFollow { follower_id: from_id, following_id: target_id, ap_url: format!("{}/follow/{}", from_url, target_url), }, ); let mut accept = Accept::default(); let accept_id = ap_url(format!("{}/follow/{}/accept", BASE_URL.as_str(), res.id)); accept .object_props .set_id_string(accept_id) .expect("Follow::accept_follow: id error"); accept .object_props .set_to_link(from.clone().into_id()) .expect("Follow::accept_follow: to error"); accept .object_props .set_cc_link_vec::(vec![]) .expect("Follow::accept_follow: cc error"); accept .accept_props .set_actor_link::(target.clone().into_id()) .expect("Follow::accept_follow: actor error"); accept .accept_props .set_object_object(follow) .expect("Follow::accept_follow: object error"); broadcast(&*target, accept, vec![from.clone()]); res } } impl FromActivity for Follow { fn from_activity(conn: &Connection, follow: FollowAct, _actor: Id) -> Follow { let from_id = follow .follow_props .actor_link::() .map(|l| l.into()) .unwrap_or_else(|_| { follow .follow_props .actor_object::() .expect("Follow::from_activity: actor not found error") .object_props .id_string() .expect("Follow::from_activity: actor not found error") }); let from = User::from_url(conn, from_id).expect("Follow::from_activity: actor not found error"); match User::from_url( conn, follow .follow_props .object .as_str() .expect("Follow::from_activity: target url parsing error") .to_string(), ) { Some(user) => Follow::accept_follow(conn, &from, &user, follow, from.id, user.id), None => { let blog = Blog::from_url( conn, follow .follow_props .object .as_str() .expect("Follow::from_activity: target url parsing error") .to_string(), ).expect("Follow::from_activity: target not found error"); Follow::accept_follow(conn, &from, &blog, follow, from.id, blog.id) } } } } impl Notify for Follow { fn notify(&self, conn: &Connection) { Notification::insert( conn, NewNotification { kind: notification_kind::FOLLOW.to_string(), object_id: self.id, user_id: self.following_id, }, ); } } impl Deletable for Follow { fn delete(&self, conn: &Connection) -> Undo { diesel::delete(self) .execute(conn) .expect("Follow::delete: follow deletion error"); // delete associated notification if any if let Some(notif) = Notification::find(conn, notification_kind::FOLLOW, self.id) { diesel::delete(¬if) .execute(conn) .expect("Follow::delete: notification deletion error"); } let mut undo = Undo::default(); undo.undo_props .set_actor_link( User::get(conn, self.follower_id) .expect("Follow::delete: actor error") .into_id(), ) .expect("Follow::delete: actor error"); undo.object_props .set_id_string(format!("{}/undo", self.ap_url)) .expect("Follow::delete: id error"); undo.undo_props .set_object_object(self.into_activity(conn)) .expect("Follow::delete: object error"); undo } fn delete_id(id: String, actor_id: String, conn: &Connection) { if let Some(follow) = Follow::find_by_ap_url(conn, id) { if let Some(user) = User::find_by_ap_url(conn, actor_id) { if user.id == follow.follower_id { follow.delete(conn); } } } } }