2018-06-12 21:10:08 +02:00
|
|
|
use activitypub::{Actor, activity::{Accept, Follow as FollowAct}};
|
2018-05-01 15:06:31 +02:00
|
|
|
use diesel::{self, PgConnection, ExpressionMethods, QueryDsl, RunQueryDsl};
|
|
|
|
|
2018-06-17 21:37:10 +02:00
|
|
|
use activity_pub::{broadcast, Id, IntoId, actor::Actor as ApActor, inbox::{FromActivity, Notify, WithInbox}, sign::Signer};
|
|
|
|
use models::{
|
|
|
|
blogs::Blog,
|
|
|
|
notifications::*,
|
|
|
|
users::User
|
|
|
|
};
|
2018-05-01 15:06:31 +02:00
|
|
|
use schema::follows;
|
|
|
|
|
2018-05-01 15:23:23 +02:00
|
|
|
#[derive(Queryable, Identifiable, Associations)]
|
|
|
|
#[belongs_to(User, foreign_key = "following_id")]
|
2018-05-01 15:06:31 +02:00
|
|
|
pub struct Follow {
|
|
|
|
pub id: i32,
|
|
|
|
pub follower_id: i32,
|
|
|
|
pub following_id: i32
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Insertable)]
|
|
|
|
#[table_name = "follows"]
|
|
|
|
pub struct NewFollow {
|
|
|
|
pub follower_id: i32,
|
|
|
|
pub following_id: i32
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Follow {
|
|
|
|
pub fn insert(conn: &PgConnection, new: NewFollow) -> Follow {
|
|
|
|
diesel::insert_into(follows::table)
|
|
|
|
.values(new)
|
|
|
|
.get_result(conn)
|
|
|
|
.expect("Unable to insert new follow")
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get(conn: &PgConnection, id: i32) -> Option<Follow> {
|
|
|
|
follows::table.filter(follows::id.eq(id))
|
|
|
|
.limit(1)
|
|
|
|
.load::<Follow>(conn)
|
|
|
|
.expect("Unable to load follow by id")
|
|
|
|
.into_iter().nth(0)
|
|
|
|
}
|
2018-06-12 21:10:08 +02:00
|
|
|
|
|
|
|
pub fn accept_follow<A: Signer + IntoId + Clone, B: Clone + WithInbox + Actor>(
|
|
|
|
conn: &PgConnection,
|
|
|
|
from: &A,
|
|
|
|
target: &B,
|
|
|
|
follow: FollowAct,
|
|
|
|
from_id: i32,
|
|
|
|
target_id: i32
|
|
|
|
) -> Follow {
|
|
|
|
let res = Follow::insert(conn, NewFollow {
|
|
|
|
follower_id: from_id,
|
|
|
|
following_id: target_id
|
|
|
|
});
|
|
|
|
|
|
|
|
let mut accept = Accept::default();
|
|
|
|
accept.accept_props.set_actor_link::<Id>(from.clone().into_id()).unwrap();
|
|
|
|
accept.accept_props.set_object_object(follow).unwrap();
|
|
|
|
broadcast(conn, &*from, accept, vec![target.clone()]);
|
|
|
|
res
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FromActivity<FollowAct> for Follow {
|
|
|
|
fn from_activity(conn: &PgConnection, follow: FollowAct, _actor: Id) -> Follow {
|
|
|
|
let from = User::from_url(conn, follow.follow_props.actor.as_str().unwrap().to_string()).unwrap();
|
|
|
|
match User::from_url(conn, follow.follow_props.object.as_str().unwrap().to_string()) {
|
|
|
|
Some(u) => Follow::accept_follow(conn, &from, &u, follow, from.id, u.id),
|
|
|
|
None => {
|
|
|
|
let blog = Blog::from_url(conn, follow.follow_props.object.as_str().unwrap().to_string()).unwrap();
|
|
|
|
Follow::accept_follow(conn, &from, &blog, follow, from.id, blog.id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-05-01 15:06:31 +02:00
|
|
|
}
|
2018-06-17 21:37:10 +02:00
|
|
|
|
|
|
|
impl Notify<FollowAct> for Follow {
|
|
|
|
fn notify(conn: &PgConnection, follow: FollowAct, actor: Id) {
|
|
|
|
let follower = User::from_url(conn, actor.into()).unwrap();
|
|
|
|
Notification::insert(conn, NewNotification {
|
2018-06-17 22:19:27 +02:00
|
|
|
title: "{{ data }} started following you".to_string(),
|
|
|
|
data: Some(follower.display_name.clone()),
|
2018-06-17 21:37:10 +02:00
|
|
|
content: None,
|
|
|
|
link: Some(follower.ap_url),
|
|
|
|
user_id: User::from_url(conn, follow.follow_props.object_link::<Id>().unwrap().into()).unwrap().id
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|