2020-01-21 07:02:03 +01:00
|
|
|
use crate::{
|
2021-11-24 14:50:16 +01:00
|
|
|
db_conn::DbConn, instance::Instance, notifications::*, posts::Post, schema::reshares,
|
|
|
|
timeline::*, users::User, Connection, Error, Result, CONFIG,
|
2020-01-21 07:02:03 +01:00
|
|
|
};
|
2018-06-12 21:10:08 +02:00
|
|
|
use activitypub::activity::{Announce, Undo};
|
2022-04-23 23:41:21 +02:00
|
|
|
use activitystreams::{
|
2022-04-23 23:42:48 +02:00
|
|
|
activity::{ActorAndObjectRef, Announce as Announce07, Undo as Undo07},
|
2022-04-23 23:48:31 +02:00
|
|
|
base::AnyBase,
|
2022-04-23 23:41:21 +02:00
|
|
|
iri_string::types::IriString,
|
|
|
|
prelude::*,
|
|
|
|
};
|
2018-09-27 23:06:40 +02:00
|
|
|
use chrono::NaiveDateTime;
|
2018-11-24 12:44:17 +01:00
|
|
|
use diesel::{self, ExpressionMethods, QueryDsl, RunQueryDsl};
|
|
|
|
use plume_common::activity_pub::{
|
2022-05-02 10:38:08 +02:00
|
|
|
inbox::{AsActor, AsObject07, FromId},
|
2021-11-24 14:50:16 +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-19 11:23:02 +02:00
|
|
|
|
2019-03-12 19:40:54 +01:00
|
|
|
#[derive(Clone, Queryable, Identifiable)]
|
2018-05-19 11:23:02 +02:00
|
|
|
pub struct Reshare {
|
2018-05-19 11:51:10 +02:00
|
|
|
pub id: i32,
|
|
|
|
pub user_id: i32,
|
|
|
|
pub post_id: i32,
|
|
|
|
pub ap_url: String,
|
2018-11-24 12:44:17 +01:00
|
|
|
pub creation_date: NaiveDateTime,
|
2018-05-19 11:23:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Insertable)]
|
|
|
|
#[table_name = "reshares"]
|
|
|
|
pub struct NewReshare {
|
2018-05-19 11:51:10 +02:00
|
|
|
pub user_id: i32,
|
|
|
|
pub post_id: i32,
|
2018-11-24 12:44:17 +01:00
|
|
|
pub ap_url: String,
|
2018-05-19 11:23:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Reshare {
|
2018-06-18 15:57:38 +02:00
|
|
|
insert!(reshares, NewReshare);
|
2018-06-18 15:44:23 +02:00
|
|
|
get!(reshares);
|
2018-11-26 10:21:52 +01:00
|
|
|
find_by!(reshares, find_by_ap_url, ap_url as &str);
|
2018-11-24 12:44:17 +01:00
|
|
|
find_by!(
|
|
|
|
reshares,
|
|
|
|
find_by_user_on_post,
|
|
|
|
user_id as i32,
|
|
|
|
post_id as i32
|
|
|
|
);
|
2018-05-19 11:51:10 +02:00
|
|
|
|
2019-03-20 17:56:17 +01:00
|
|
|
pub fn get_recents_for_author(
|
|
|
|
conn: &Connection,
|
|
|
|
user: &User,
|
|
|
|
limit: i64,
|
|
|
|
) -> Result<Vec<Reshare>> {
|
2018-11-24 12:44:17 +01:00
|
|
|
reshares::table
|
|
|
|
.filter(reshares::user_id.eq(user.id))
|
2018-05-24 11:45:36 +02:00
|
|
|
.order(reshares::creation_date.desc())
|
|
|
|
.limit(limit)
|
|
|
|
.load::<Reshare>(conn)
|
2018-12-29 09:36:07 +01:00
|
|
|
.map_err(Error::from)
|
2018-05-24 11:45:36 +02:00
|
|
|
}
|
|
|
|
|
2018-12-29 09:36:07 +01:00
|
|
|
pub fn get_post(&self, conn: &Connection) -> Result<Post> {
|
2018-05-24 11:45:36 +02:00
|
|
|
Post::get(conn, self.post_id)
|
|
|
|
}
|
|
|
|
|
2018-12-29 09:36:07 +01:00
|
|
|
pub fn get_user(&self, conn: &Connection) -> Result<User> {
|
2018-07-26 15:46:10 +02:00
|
|
|
User::get(conn, self.user_id)
|
|
|
|
}
|
|
|
|
|
2018-12-29 09:36:07 +01:00
|
|
|
pub fn to_activity(&self, conn: &Connection) -> Result<Announce> {
|
2018-06-12 21:10:08 +02:00
|
|
|
let mut act = Announce::default();
|
2018-11-24 12:44:17 +01:00
|
|
|
act.announce_props
|
2018-12-29 09:36:07 +01:00
|
|
|
.set_actor_link(User::get(conn, self.user_id)?.into_id())?;
|
2018-11-24 12:44:17 +01:00
|
|
|
act.announce_props
|
2018-12-29 09:36:07 +01:00
|
|
|
.set_object_link(Post::get(conn, self.post_id)?.into_id())?;
|
2019-03-20 17:56:17 +01:00
|
|
|
act.object_props.set_id_string(self.ap_url.clone())?;
|
2018-11-24 12:44:17 +01:00
|
|
|
act.object_props
|
2019-04-17 19:31:47 +02:00
|
|
|
.set_to_link_vec(vec![Id::new(PUBLIC_VISIBILITY.to_string())])?;
|
|
|
|
act.object_props
|
|
|
|
.set_cc_link_vec(vec![Id::new(self.get_user(conn)?.followers_endpoint)])?;
|
2018-05-19 11:51:10 +02:00
|
|
|
|
2018-12-29 09:36:07 +01:00
|
|
|
Ok(act)
|
2018-05-19 11:51:10 +02:00
|
|
|
}
|
2018-12-29 09:36:07 +01:00
|
|
|
|
2022-04-23 23:34:00 +02:00
|
|
|
pub fn to_activity07(&self, conn: &Connection) -> Result<Announce07> {
|
|
|
|
let mut act = Announce07::new(
|
|
|
|
User::get(conn, self.user_id)?.ap_url.parse::<IriString>()?,
|
|
|
|
Post::get(conn, self.post_id)?.ap_url.parse::<IriString>()?,
|
|
|
|
);
|
|
|
|
act.set_id(self.ap_url.parse::<IriString>()?);
|
|
|
|
act.set_many_tos(vec![PUBLIC_VISIBILITY.parse::<IriString>()?]);
|
|
|
|
act.set_many_ccs(vec![self
|
|
|
|
.get_user(conn)?
|
|
|
|
.followers_endpoint
|
|
|
|
.parse::<IriString>()?]);
|
|
|
|
|
|
|
|
Ok(act)
|
|
|
|
}
|
|
|
|
|
2019-04-17 19:31:47 +02:00
|
|
|
pub fn notify(&self, conn: &Connection) -> Result<()> {
|
2018-12-29 09:36:07 +01:00
|
|
|
let post = self.get_post(conn)?;
|
|
|
|
for author in post.get_authors(conn)? {
|
2019-05-04 17:15:41 +02:00
|
|
|
if author.is_local() {
|
|
|
|
Notification::insert(
|
|
|
|
conn,
|
|
|
|
NewNotification {
|
|
|
|
kind: notification_kind::RESHARE.to_string(),
|
|
|
|
object_id: self.id,
|
|
|
|
user_id: author.id,
|
|
|
|
},
|
|
|
|
)?;
|
|
|
|
}
|
2018-06-17 21:37:10 +02:00
|
|
|
}
|
2018-12-29 09:36:07 +01:00
|
|
|
Ok(())
|
2018-06-12 21:10:08 +02:00
|
|
|
}
|
2018-09-08 00:29:50 +02:00
|
|
|
|
2019-04-17 19:31:47 +02:00
|
|
|
pub fn build_undo(&self, conn: &Connection) -> Result<Undo> {
|
2018-09-01 17:28:47 +02:00
|
|
|
let mut act = Undo::default();
|
2018-11-24 12:44:17 +01:00
|
|
|
act.undo_props
|
2018-12-29 09:36:07 +01:00
|
|
|
.set_actor_link(User::get(conn, self.user_id)?.into_id())?;
|
2019-03-20 17:56:17 +01:00
|
|
|
act.undo_props.set_object_object(self.to_activity(conn)?)?;
|
2018-11-24 12:44:17 +01:00
|
|
|
act.object_props
|
2018-12-29 09:36:07 +01:00
|
|
|
.set_id_string(format!("{}#delete", self.ap_url))?;
|
2018-11-24 12:44:17 +01:00
|
|
|
act.object_props
|
2019-04-17 19:31:47 +02:00
|
|
|
.set_to_link_vec(vec![Id::new(PUBLIC_VISIBILITY.to_string())])?;
|
|
|
|
act.object_props
|
|
|
|
.set_cc_link_vec(vec![Id::new(self.get_user(conn)?.followers_endpoint)])?;
|
2018-09-01 17:28:47 +02:00
|
|
|
|
2018-12-29 09:36:07 +01:00
|
|
|
Ok(act)
|
2018-09-01 17:28:47 +02:00
|
|
|
}
|
2022-04-23 23:48:31 +02:00
|
|
|
|
|
|
|
pub fn build_undo07(&self, conn: &Connection) -> Result<Undo07> {
|
|
|
|
let mut act = Undo07::new(
|
|
|
|
User::get(conn, self.user_id)?.ap_url.parse::<IriString>()?,
|
|
|
|
AnyBase::from_extended(self.to_activity07(conn)?)?,
|
|
|
|
);
|
|
|
|
act.set_id(format!("{}#delete", self.ap_url).parse::<IriString>()?);
|
|
|
|
act.set_many_tos(vec![PUBLIC_VISIBILITY.parse::<IriString>()?]);
|
|
|
|
act.set_many_ccs(vec![self
|
|
|
|
.get_user(conn)?
|
|
|
|
.followers_endpoint
|
|
|
|
.parse::<IriString>()?]);
|
|
|
|
|
|
|
|
Ok(act)
|
|
|
|
}
|
2019-04-17 19:31:47 +02:00
|
|
|
}
|
|
|
|
|
2022-04-23 23:35:50 +02:00
|
|
|
impl AsObject07<User, Announce07, &DbConn> for Post {
|
|
|
|
type Error = Error;
|
|
|
|
type Output = Reshare;
|
|
|
|
|
|
|
|
fn activity07(self, conn: &DbConn, actor: User, id: &str) -> Result<Reshare> {
|
|
|
|
let conn = conn;
|
|
|
|
let reshare = Reshare::insert(
|
|
|
|
conn,
|
|
|
|
NewReshare {
|
|
|
|
post_id: self.id,
|
|
|
|
user_id: actor.id,
|
|
|
|
ap_url: id.to_string(),
|
|
|
|
},
|
|
|
|
)?;
|
|
|
|
reshare.notify(conn)?;
|
|
|
|
|
|
|
|
Timeline::add_to_all_timelines(conn, &self, Kind::Reshare(&actor))?;
|
|
|
|
Ok(reshare)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-02 09:07:08 +02:00
|
|
|
impl FromId<DbConn> for Reshare {
|
2022-04-23 23:41:21 +02:00
|
|
|
type Error = Error;
|
|
|
|
type Object = Announce07;
|
|
|
|
|
|
|
|
fn from_db07(conn: &DbConn, id: &str) -> Result<Self> {
|
|
|
|
Reshare::find_by_ap_url(conn, id)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn from_activity07(conn: &DbConn, act: Announce07) -> Result<Self> {
|
|
|
|
let res = Reshare::insert(
|
|
|
|
conn,
|
|
|
|
NewReshare {
|
2022-05-02 05:58:01 +02:00
|
|
|
post_id: Post::from_id07(
|
2022-04-23 23:41:21 +02:00
|
|
|
conn,
|
|
|
|
act.object_field_ref()
|
|
|
|
.as_single_id()
|
|
|
|
.ok_or(Error::MissingApProperty)?
|
|
|
|
.as_str(),
|
|
|
|
None,
|
|
|
|
CONFIG.proxy(),
|
|
|
|
)
|
|
|
|
.map_err(|(_, e)| e)?
|
|
|
|
.id,
|
2022-05-02 05:58:01 +02:00
|
|
|
user_id: User::from_id07(
|
2022-04-23 23:41:21 +02:00
|
|
|
conn,
|
|
|
|
act.actor_field_ref()
|
|
|
|
.as_single_id()
|
|
|
|
.ok_or(Error::MissingApProperty)?
|
|
|
|
.as_str(),
|
|
|
|
None,
|
|
|
|
CONFIG.proxy(),
|
|
|
|
)
|
|
|
|
.map_err(|(_, e)| e)?
|
|
|
|
.id,
|
|
|
|
ap_url: act
|
|
|
|
.id_unchecked()
|
|
|
|
.ok_or(Error::MissingApProperty)?
|
|
|
|
.to_string(),
|
|
|
|
},
|
|
|
|
)?;
|
|
|
|
res.notify(conn)?;
|
|
|
|
Ok(res)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_sender07() -> &'static dyn Signer {
|
|
|
|
Instance::get_local_instance_user().expect("Failed to local instance user")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-23 23:42:48 +02:00
|
|
|
impl AsObject07<User, Undo07, &DbConn> for Reshare {
|
|
|
|
type Error = Error;
|
|
|
|
type Output = ();
|
|
|
|
|
|
|
|
fn activity07(self, conn: &DbConn, actor: User, _id: &str) -> Result<()> {
|
|
|
|
if actor.id == self.user_id {
|
|
|
|
diesel::delete(&self).execute(&**conn)?;
|
|
|
|
|
|
|
|
// delete associated notification if any
|
|
|
|
if let Ok(notif) = Notification::find(conn, notification_kind::RESHARE, self.id) {
|
|
|
|
diesel::delete(¬if).execute(&**conn)?;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
Err(Error::Unauthorized)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-23 11:13:02 +01:00
|
|
|
impl NewReshare {
|
|
|
|
pub fn new(p: &Post, u: &User) -> Self {
|
2022-01-08 17:58:39 +01:00
|
|
|
let ap_url = format!("{}reshare/{}", u.ap_url, p.ap_url);
|
2018-12-23 11:13:02 +01:00
|
|
|
NewReshare {
|
|
|
|
post_id: p.id,
|
|
|
|
user_id: u.id,
|
2019-03-20 17:56:17 +01:00
|
|
|
ap_url,
|
2018-12-23 11:13:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-01-08 17:58:15 +01:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
|
|
|
use super::*;
|
|
|
|
use crate::diesel::Connection;
|
|
|
|
use crate::{inbox::tests::fill_database, tests::db};
|
|
|
|
use assert_json_diff::assert_json_eq;
|
|
|
|
use serde_json::{json, to_value};
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn to_activity() {
|
|
|
|
let conn = db();
|
|
|
|
conn.test_transaction::<_, Error, _>(|| {
|
|
|
|
let (posts, _users, _blogs) = fill_database(&conn);
|
|
|
|
let post = &posts[0];
|
|
|
|
let user = &post.get_authors(&conn)?[0];
|
|
|
|
let reshare = Reshare::insert(&*conn, NewReshare::new(post, user))?;
|
|
|
|
let act = reshare.to_activity(&conn).unwrap();
|
|
|
|
|
|
|
|
let expected = json!({
|
|
|
|
"actor": "https://plu.me/@/admin/",
|
|
|
|
"cc": ["https://plu.me/@/admin/followers"],
|
|
|
|
"id": "https://plu.me/@/admin/reshare/https://plu.me/~/BlogName/testing",
|
|
|
|
"object": "https://plu.me/~/BlogName/testing",
|
|
|
|
"to": ["https://www.w3.org/ns/activitystreams#Public"],
|
|
|
|
"type": "Announce",
|
|
|
|
});
|
|
|
|
assert_json_eq!(to_value(act)?, expected);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-04-23 23:33:39 +02:00
|
|
|
#[test]
|
|
|
|
fn to_activity07() {
|
|
|
|
let conn = db();
|
|
|
|
conn.test_transaction::<_, Error, _>(|| {
|
|
|
|
let (posts, _users, _blogs) = fill_database(&conn);
|
|
|
|
let post = &posts[0];
|
|
|
|
let user = &post.get_authors(&conn)?[0];
|
|
|
|
let reshare = Reshare::insert(&*conn, NewReshare::new(post, user))?;
|
|
|
|
let act = reshare.to_activity07(&conn).unwrap();
|
|
|
|
|
|
|
|
let expected = json!({
|
|
|
|
"actor": "https://plu.me/@/admin/",
|
|
|
|
"cc": ["https://plu.me/@/admin/followers"],
|
|
|
|
"id": "https://plu.me/@/admin/reshare/https://plu.me/~/BlogName/testing",
|
|
|
|
"object": "https://plu.me/~/BlogName/testing",
|
|
|
|
"to": ["https://www.w3.org/ns/activitystreams#Public"],
|
|
|
|
"type": "Announce",
|
|
|
|
});
|
|
|
|
assert_json_eq!(to_value(act)?, expected);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-01-08 17:58:15 +01:00
|
|
|
#[test]
|
|
|
|
fn build_undo() {
|
|
|
|
let conn = db();
|
|
|
|
conn.test_transaction::<_, Error, _>(|| {
|
|
|
|
let (posts, _users, _blogs) = fill_database(&conn);
|
|
|
|
let post = &posts[0];
|
|
|
|
let user = &post.get_authors(&conn)?[0];
|
|
|
|
let reshare = Reshare::insert(&*conn, NewReshare::new(post, user))?;
|
|
|
|
let act = reshare.build_undo(&*conn)?;
|
|
|
|
|
|
|
|
let expected = json!({
|
|
|
|
"actor": "https://plu.me/@/admin/",
|
|
|
|
"cc": ["https://plu.me/@/admin/followers"],
|
|
|
|
"id": "https://plu.me/@/admin/reshare/https://plu.me/~/BlogName/testing#delete",
|
2022-01-09 01:12:09 +01:00
|
|
|
"object": {
|
|
|
|
"actor": "https://plu.me/@/admin/",
|
|
|
|
"cc": ["https://plu.me/@/admin/followers"],
|
|
|
|
"id": "https://plu.me/@/admin/reshare/https://plu.me/~/BlogName/testing",
|
|
|
|
"object": "https://plu.me/~/BlogName/testing",
|
|
|
|
"to": ["https://www.w3.org/ns/activitystreams#Public"],
|
|
|
|
"type": "Announce"
|
|
|
|
},
|
2022-01-08 17:58:15 +01:00
|
|
|
"to": ["https://www.w3.org/ns/activitystreams#Public"],
|
2022-01-09 01:12:09 +01:00
|
|
|
"type": "Undo",
|
2022-01-08 17:58:15 +01:00
|
|
|
});
|
|
|
|
assert_json_eq!(to_value(act)?, expected);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
2022-04-23 23:48:16 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn build_undo07() {
|
|
|
|
let conn = db();
|
|
|
|
conn.test_transaction::<_, Error, _>(|| {
|
|
|
|
let (posts, _users, _blogs) = fill_database(&conn);
|
|
|
|
let post = &posts[0];
|
|
|
|
let user = &post.get_authors(&conn)?[0];
|
|
|
|
let reshare = Reshare::insert(&*conn, NewReshare::new(post, user))?;
|
|
|
|
let act = reshare.build_undo07(&*conn)?;
|
|
|
|
|
|
|
|
let expected = json!({
|
|
|
|
"actor": "https://plu.me/@/admin/",
|
|
|
|
"cc": ["https://plu.me/@/admin/followers"],
|
|
|
|
"id": "https://plu.me/@/admin/reshare/https://plu.me/~/BlogName/testing#delete",
|
|
|
|
"object": {
|
|
|
|
"actor": "https://plu.me/@/admin/",
|
|
|
|
"cc": ["https://plu.me/@/admin/followers"],
|
|
|
|
"id": "https://plu.me/@/admin/reshare/https://plu.me/~/BlogName/testing",
|
|
|
|
"object": "https://plu.me/~/BlogName/testing",
|
|
|
|
"to": ["https://www.w3.org/ns/activitystreams#Public"],
|
|
|
|
"type": "Announce"
|
|
|
|
},
|
|
|
|
"to": ["https://www.w3.org/ns/activitystreams#Public"],
|
|
|
|
"type": "Undo",
|
|
|
|
});
|
|
|
|
assert_json_eq!(to_value(act)?, expected);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
2022-01-08 17:58:15 +01:00
|
|
|
}
|