2020-01-21 07:02:03 +01:00
|
|
|
use crate::{
|
2021-11-24 14:50:16 +01:00
|
|
|
ap_url, db_conn::DbConn, instance::Instance, notifications::*, schema::follows, users::User,
|
|
|
|
Connection, Error, Result, CONFIG,
|
2020-01-21 07:02:03 +01:00
|
|
|
};
|
2022-04-23 20:38:24 +02:00
|
|
|
use activitystreams::{
|
2022-05-02 17:47:46 +02:00
|
|
|
activity::{Accept, ActorAndObjectRef, Follow as FollowAct, Undo},
|
2022-04-23 20:38:24 +02:00
|
|
|
base::AnyBase,
|
|
|
|
iri_string::types::IriString,
|
|
|
|
prelude::*,
|
|
|
|
};
|
2019-03-04 21:35:03 +01:00
|
|
|
use diesel::{self, ExpressionMethods, QueryDsl, RunQueryDsl, SaveChangesDsl};
|
2018-11-24 12:44:17 +01:00
|
|
|
use plume_common::activity_pub::{
|
2022-05-02 18:12:39 +02:00
|
|
|
broadcast,
|
2022-05-02 10:43:03 +02:00
|
|
|
inbox::{AsActor, AsObject, FromId},
|
2018-11-24 12:44:17 +01:00
|
|
|
sign::Signer,
|
2019-04-17 19:31:47 +02:00
|
|
|
Id, IntoId, PUBLIC_VISIBILITY,
|
2018-11-24 12:44:17 +01:00
|
|
|
};
|
2018-05-01 15:06:31 +02:00
|
|
|
|
2019-03-04 21:35:03 +01:00
|
|
|
#[derive(Clone, Queryable, Identifiable, Associations, AsChangeset)]
|
2018-05-01 15:23:23 +02:00
|
|
|
#[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,
|
2018-09-04 12:37:58 +02:00
|
|
|
pub following_id: i32,
|
|
|
|
pub ap_url: String,
|
2018-05-01 15:06:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Insertable)]
|
|
|
|
#[table_name = "follows"]
|
|
|
|
pub struct NewFollow {
|
|
|
|
pub follower_id: i32,
|
2018-09-04 12:37:58 +02:00
|
|
|
pub following_id: i32,
|
|
|
|
pub ap_url: String,
|
2018-05-01 15:06:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Follow {
|
2019-03-22 19:51:36 +01:00
|
|
|
insert!(
|
|
|
|
follows,
|
|
|
|
NewFollow,
|
|
|
|
|inserted, conn| if inserted.ap_url.is_empty() {
|
2019-03-21 10:30:33 +01:00
|
|
|
inserted.ap_url = ap_url(&format!("{}/follows/{}", CONFIG.base_url, inserted.id));
|
2019-03-04 21:35:03 +01:00
|
|
|
inserted.save_changes(conn).map_err(Error::from)
|
|
|
|
} else {
|
|
|
|
Ok(inserted)
|
|
|
|
}
|
2019-03-22 19:51:36 +01:00
|
|
|
);
|
2018-06-18 15:44:23 +02:00
|
|
|
get!(follows);
|
2018-11-26 10:21:52 +01:00
|
|
|
find_by!(follows, find_by_ap_url, ap_url as &str);
|
2018-09-04 12:37:58 +02:00
|
|
|
|
2018-12-29 09:36:07 +01:00
|
|
|
pub fn find(conn: &Connection, from: i32, to: i32) -> Result<Follow> {
|
2018-11-24 12:44:17 +01:00
|
|
|
follows::table
|
|
|
|
.filter(follows::follower_id.eq(from))
|
2018-09-04 12:37:58 +02:00
|
|
|
.filter(follows::following_id.eq(to))
|
|
|
|
.get_result(conn)
|
2018-12-29 09:36:07 +01:00
|
|
|
.map_err(Error::from)
|
2018-09-04 12:37:58 +02:00
|
|
|
}
|
|
|
|
|
2022-05-02 17:47:46 +02:00
|
|
|
pub fn to_activity07(&self, conn: &Connection) -> Result<FollowAct> {
|
2022-04-23 20:38:36 +02:00
|
|
|
let user = User::get(conn, self.follower_id)?;
|
|
|
|
let target = User::get(conn, self.following_id)?;
|
|
|
|
let target_id = target.ap_url.parse::<IriString>()?;
|
|
|
|
|
2022-05-02 17:47:46 +02:00
|
|
|
let mut act = FollowAct::new(user.ap_url.parse::<IriString>()?, target_id.clone());
|
2022-04-23 20:38:36 +02:00
|
|
|
act.set_id(self.ap_url.parse::<IriString>()?);
|
|
|
|
act.set_many_tos(vec![target_id]);
|
|
|
|
act.set_many_ccs(vec![PUBLIC_VISIBILITY.parse::<IriString>()?]);
|
|
|
|
|
|
|
|
Ok(act)
|
|
|
|
}
|
|
|
|
|
2019-05-04 17:15:41 +02:00
|
|
|
pub fn notify(&self, conn: &Connection) -> Result<()> {
|
|
|
|
if User::get(conn, self.following_id)?.is_local() {
|
|
|
|
Notification::insert(
|
|
|
|
conn,
|
|
|
|
NewNotification {
|
|
|
|
kind: notification_kind::FOLLOW.to_string(),
|
|
|
|
object_id: self.id,
|
|
|
|
user_id: self.following_id,
|
|
|
|
},
|
|
|
|
)?;
|
|
|
|
}
|
|
|
|
Ok(())
|
2019-04-17 19:31:47 +02:00
|
|
|
}
|
|
|
|
|
2022-04-23 22:50:45 +02:00
|
|
|
/// from -> The one sending the follow request
|
|
|
|
/// target -> The target of the request, responding with Accept
|
|
|
|
pub fn accept_follow07<A: Signer + IntoId + Clone, B: Clone + AsActor<T> + IntoId, T>(
|
|
|
|
conn: &Connection,
|
|
|
|
from: &B,
|
|
|
|
target: &A,
|
2022-05-02 17:47:46 +02:00
|
|
|
follow: FollowAct,
|
2022-04-23 22:50:45 +02:00
|
|
|
from_id: i32,
|
|
|
|
target_id: i32,
|
|
|
|
) -> Result<Follow> {
|
|
|
|
let res = Follow::insert(
|
|
|
|
conn,
|
|
|
|
NewFollow {
|
|
|
|
follower_id: from_id,
|
|
|
|
following_id: target_id,
|
|
|
|
ap_url: follow
|
|
|
|
.id_unchecked()
|
|
|
|
.ok_or(Error::MissingApProperty)?
|
|
|
|
.to_string(),
|
|
|
|
},
|
|
|
|
)?;
|
|
|
|
res.notify(conn)?;
|
|
|
|
|
|
|
|
let accept = res.build_accept07(from, target, follow)?;
|
2022-05-02 18:12:39 +02:00
|
|
|
broadcast(
|
2022-04-23 22:50:45 +02:00
|
|
|
&*target,
|
|
|
|
accept,
|
|
|
|
vec![from.clone()],
|
|
|
|
CONFIG.proxy().cloned(),
|
|
|
|
);
|
|
|
|
Ok(res)
|
|
|
|
}
|
|
|
|
|
2022-04-23 20:39:08 +02:00
|
|
|
pub fn build_accept07<A: Signer + IntoId + Clone, B: Clone + AsActor<T> + IntoId, T>(
|
|
|
|
&self,
|
|
|
|
from: &B,
|
|
|
|
target: &A,
|
2022-05-02 17:47:46 +02:00
|
|
|
follow: FollowAct,
|
2022-05-02 17:45:22 +02:00
|
|
|
) -> Result<Accept> {
|
|
|
|
let mut accept = Accept::new(
|
2022-04-23 20:39:08 +02:00
|
|
|
target.clone().into_id().parse::<IriString>()?,
|
|
|
|
AnyBase::from_extended(follow)?,
|
|
|
|
);
|
|
|
|
let accept_id = ap_url(&format!(
|
|
|
|
"{}/follows/{}/accept",
|
|
|
|
CONFIG.base_url.as_str(),
|
|
|
|
self.id
|
|
|
|
));
|
|
|
|
accept.set_id(accept_id.parse::<IriString>()?);
|
|
|
|
accept.set_many_tos(vec![from.clone().into_id().parse::<IriString>()?]);
|
|
|
|
accept.set_many_ccs(vec![PUBLIC_VISIBILITY.parse::<IriString>()?]);
|
|
|
|
|
2022-01-09 00:29:02 +01:00
|
|
|
Ok(accept)
|
2018-06-12 21:10:08 +02:00
|
|
|
}
|
2019-04-17 19:31:47 +02:00
|
|
|
|
2022-05-02 17:41:05 +02:00
|
|
|
pub fn build_undo07(&self, conn: &Connection) -> Result<Undo> {
|
|
|
|
let mut undo = Undo::new(
|
2022-04-23 20:45:22 +02:00
|
|
|
User::get(conn, self.follower_id)?
|
|
|
|
.ap_url
|
|
|
|
.parse::<IriString>()?,
|
|
|
|
self.ap_url.parse::<IriString>()?,
|
|
|
|
);
|
|
|
|
undo.set_id(format!("{}/undo", self.ap_url).parse::<IriString>()?);
|
|
|
|
undo.set_many_tos(vec![User::get(conn, self.following_id)?
|
|
|
|
.ap_url
|
|
|
|
.parse::<IriString>()?]);
|
|
|
|
undo.set_many_ccs(vec![PUBLIC_VISIBILITY.parse::<IriString>()?]);
|
|
|
|
|
|
|
|
Ok(undo)
|
|
|
|
}
|
2018-06-12 21:10:08 +02:00
|
|
|
}
|
|
|
|
|
2022-05-02 17:47:46 +02:00
|
|
|
impl AsObject<User, FollowAct, &DbConn> for User {
|
2022-04-23 22:51:24 +02:00
|
|
|
type Error = Error;
|
|
|
|
type Output = Follow;
|
|
|
|
|
|
|
|
fn activity07(self, conn: &DbConn, actor: User, id: &str) -> Result<Follow> {
|
|
|
|
// Mastodon (at least) requires the full Follow object when accepting it,
|
|
|
|
// so we rebuilt it here
|
2022-05-01 00:45:05 +02:00
|
|
|
let mut follow =
|
2022-05-02 17:47:46 +02:00
|
|
|
FollowAct::new(id.parse::<IriString>()?, actor.ap_url.parse::<IriString>()?);
|
2022-05-01 00:45:05 +02:00
|
|
|
follow.set_id(id.parse::<IriString>()?);
|
2022-04-23 22:51:24 +02:00
|
|
|
Follow::accept_follow07(conn, &actor, &self, follow, actor.id, self.id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-02 09:07:08 +02:00
|
|
|
impl FromId<DbConn> for Follow {
|
2022-04-23 23:09:00 +02:00
|
|
|
type Error = Error;
|
2022-05-02 17:47:46 +02:00
|
|
|
type Object = FollowAct;
|
2022-04-23 23:09:00 +02:00
|
|
|
|
2022-05-02 18:23:37 +02:00
|
|
|
fn from_db(conn: &DbConn, id: &str) -> Result<Self> {
|
2022-04-23 23:09:00 +02:00
|
|
|
Follow::find_by_ap_url(conn, id)
|
|
|
|
}
|
|
|
|
|
2022-05-02 18:22:55 +02:00
|
|
|
fn from_activity(conn: &DbConn, follow: FollowAct) -> Result<Self> {
|
2022-05-02 12:24:36 +02:00
|
|
|
let actor = User::from_id(
|
2022-04-23 23:09:00 +02:00
|
|
|
conn,
|
|
|
|
follow
|
|
|
|
.actor_field_ref()
|
|
|
|
.as_single_id()
|
|
|
|
.ok_or(Error::MissingApProperty)?
|
|
|
|
.as_str(),
|
|
|
|
None,
|
|
|
|
CONFIG.proxy(),
|
|
|
|
)
|
|
|
|
.map_err(|(_, e)| e)?;
|
|
|
|
|
2022-05-02 12:24:36 +02:00
|
|
|
let target = User::from_id(
|
2022-04-23 23:09:00 +02:00
|
|
|
conn,
|
|
|
|
follow
|
|
|
|
.object_field_ref()
|
|
|
|
.as_single_id()
|
|
|
|
.ok_or(Error::MissingApProperty)?
|
|
|
|
.as_str(),
|
|
|
|
None,
|
|
|
|
CONFIG.proxy(),
|
|
|
|
)
|
|
|
|
.map_err(|(_, e)| e)?;
|
|
|
|
Follow::accept_follow07(conn, &actor, &target, follow, actor.id, target.id)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_sender07() -> &'static dyn Signer {
|
|
|
|
Instance::get_local_instance_user().expect("Failed to local instance user")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-02 17:41:05 +02:00
|
|
|
impl AsObject<User, Undo, &DbConn> for Follow {
|
2022-04-23 23:11:54 +02:00
|
|
|
type Error = Error;
|
|
|
|
type Output = ();
|
|
|
|
|
|
|
|
fn activity07(self, conn: &DbConn, actor: User, _id: &str) -> Result<()> {
|
|
|
|
let conn = conn;
|
|
|
|
if self.follower_id == actor.id {
|
|
|
|
diesel::delete(&self).execute(&**conn)?;
|
|
|
|
|
|
|
|
// delete associated notification if any
|
|
|
|
if let Ok(notif) = Notification::find(conn, notification_kind::FOLLOW, self.id) {
|
|
|
|
diesel::delete(¬if).execute(&**conn)?;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
Err(Error::Unauthorized)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-23 11:12:15 +01:00
|
|
|
impl IntoId for Follow {
|
|
|
|
fn into_id(self) -> Id {
|
|
|
|
Id::new(self.ap_url)
|
|
|
|
}
|
|
|
|
}
|
2019-03-04 21:35:03 +01:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
2022-01-09 00:19:32 +01:00
|
|
|
use crate::{tests::db, users::tests as user_tests, users::tests::fill_database};
|
|
|
|
use assert_json_diff::assert_json_eq;
|
2019-03-20 17:56:17 +01:00
|
|
|
use diesel::Connection;
|
2022-01-09 00:19:32 +01:00
|
|
|
use serde_json::{json, to_value};
|
2019-03-04 21:35:03 +01:00
|
|
|
|
2022-01-09 01:12:29 +01:00
|
|
|
fn prepare_activity(conn: &DbConn) -> (Follow, User, User, Vec<User>) {
|
|
|
|
let users = fill_database(conn);
|
|
|
|
let following = &users[1];
|
|
|
|
let follower = &users[2];
|
|
|
|
let mut follow = Follow::insert(
|
|
|
|
conn,
|
|
|
|
NewFollow {
|
|
|
|
follower_id: follower.id,
|
|
|
|
following_id: following.id,
|
|
|
|
ap_url: "".into(),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
// following.ap_url = format!("https://plu.me/follows/{}", follow.id);
|
|
|
|
follow.ap_url = format!("https://plu.me/follows/{}", follow.id);
|
|
|
|
|
|
|
|
(follow, following.to_owned(), follower.to_owned(), users)
|
|
|
|
}
|
|
|
|
|
2019-03-04 21:35:03 +01:00
|
|
|
#[test]
|
|
|
|
fn test_id() {
|
|
|
|
let conn = db();
|
|
|
|
conn.test_transaction::<_, (), _>(|| {
|
|
|
|
let users = user_tests::fill_database(&conn);
|
2019-03-20 17:56:17 +01:00
|
|
|
let follow = Follow::insert(
|
|
|
|
&conn,
|
|
|
|
NewFollow {
|
|
|
|
follower_id: users[0].id,
|
|
|
|
following_id: users[1].id,
|
|
|
|
ap_url: String::new(),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.expect("Couldn't insert new follow");
|
|
|
|
assert_eq!(
|
|
|
|
follow.ap_url,
|
2019-03-21 10:30:33 +01:00
|
|
|
format!("https://{}/follows/{}", CONFIG.base_url, follow.id)
|
2019-03-20 17:56:17 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
let follow = Follow::insert(
|
|
|
|
&conn,
|
|
|
|
NewFollow {
|
|
|
|
follower_id: users[1].id,
|
|
|
|
following_id: users[0].id,
|
|
|
|
ap_url: String::from("https://some.url/"),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.expect("Couldn't insert new follow");
|
2019-03-04 21:35:03 +01:00
|
|
|
assert_eq!(follow.ap_url, String::from("https://some.url/"));
|
2019-10-07 19:08:20 +02:00
|
|
|
|
2019-03-04 21:35:03 +01:00
|
|
|
Ok(())
|
2019-10-07 19:08:20 +02:00
|
|
|
})
|
2019-03-04 21:35:03 +01:00
|
|
|
}
|
2022-01-09 00:19:32 +01:00
|
|
|
|
2022-04-23 20:38:24 +02:00
|
|
|
#[test]
|
|
|
|
fn to_activity07() {
|
|
|
|
let conn = db();
|
|
|
|
conn.test_transaction::<_, Error, _>(|| {
|
|
|
|
let (follow, _following, _follower, _users) = prepare_activity(&conn);
|
|
|
|
let act = follow.to_activity07(&conn)?;
|
|
|
|
|
|
|
|
let expected = json!({
|
|
|
|
"actor": "https://plu.me/@/other/",
|
|
|
|
"cc": ["https://www.w3.org/ns/activitystreams#Public"],
|
|
|
|
"id": format!("https://plu.me/follows/{}", follow.id),
|
|
|
|
"object": "https://plu.me/@/user/",
|
|
|
|
"to": ["https://plu.me/@/user/"],
|
2022-01-09 00:19:32 +01:00
|
|
|
"type": "Follow"
|
|
|
|
});
|
|
|
|
|
|
|
|
assert_json_eq!(to_value(act)?, expected);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
2022-01-09 01:12:29 +01:00
|
|
|
|
2022-04-23 20:38:54 +02:00
|
|
|
#[test]
|
|
|
|
fn build_accept07() {
|
|
|
|
let conn = db();
|
|
|
|
conn.test_transaction::<_, Error, _>(|| {
|
|
|
|
let (follow, following, follower, _users) = prepare_activity(&conn);
|
|
|
|
let act = follow.build_accept07(&follower, &following, follow.to_activity07(&conn)?)?;
|
|
|
|
|
|
|
|
let expected = json!({
|
|
|
|
"actor": "https://plu.me/@/user/",
|
|
|
|
"cc": ["https://www.w3.org/ns/activitystreams#Public"],
|
|
|
|
"id": format!("https://127.0.0.1:7878/follows/{}/accept", follow.id),
|
|
|
|
"object": {
|
|
|
|
"actor": "https://plu.me/@/other/",
|
|
|
|
"cc": ["https://www.w3.org/ns/activitystreams#Public"],
|
|
|
|
"id": format!("https://plu.me/follows/{}", follow.id),
|
|
|
|
"object": "https://plu.me/@/user/",
|
|
|
|
"to": ["https://plu.me/@/user/"],
|
2022-01-09 01:12:29 +01:00
|
|
|
"type": "Follow"
|
|
|
|
},
|
|
|
|
"to": ["https://plu.me/@/other/"],
|
|
|
|
"type": "Accept"
|
|
|
|
});
|
|
|
|
|
|
|
|
assert_json_eq!(to_value(act)?, expected);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-04-23 20:45:11 +02:00
|
|
|
#[test]
|
|
|
|
fn build_undo07() {
|
|
|
|
let conn = db();
|
|
|
|
conn.test_transaction::<_, Error, _>(|| {
|
|
|
|
let (follow, _following, _follower, _users) = prepare_activity(&conn);
|
|
|
|
let act = follow.build_undo07(&conn)?;
|
|
|
|
|
|
|
|
let expected = json!({
|
|
|
|
"actor": "https://plu.me/@/other/",
|
|
|
|
"cc": ["https://www.w3.org/ns/activitystreams#Public"],
|
|
|
|
"id": format!("https://plu.me/follows/{}/undo", follow.id),
|
|
|
|
"object": format!("https://plu.me/follows/{}", follow.id),
|
|
|
|
"to": ["https://plu.me/@/user/"],
|
|
|
|
"type": "Undo"
|
|
|
|
});
|
|
|
|
|
|
|
|
assert_json_eq!(to_value(act)?, expected);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
2019-03-20 17:56:17 +01:00
|
|
|
}
|