Plume/plume-models/src/reshares.rs

280 lines
8.4 KiB
Rust
Raw Normal View History

2020-01-21 06:02:03 +00:00
use crate::{
2022-12-16 21:51:14 +00:00
instance::Instance, notifications::*, posts::Post, schema::reshares, timeline::*, users::User,
Connection, Error, Result, CONFIG,
2020-01-21 06:02:03 +00:00
};
2022-04-23 21:41:21 +00:00
use activitystreams::{
activity::{ActorAndObjectRef, Announce, Undo},
2022-04-23 21:48:31 +00:00
base::AnyBase,
2022-04-23 21:41:21 +00:00
iri_string::types::IriString,
prelude::*,
};
2018-09-27 21:06:40 +00:00
use chrono::NaiveDateTime;
use diesel::{self, ExpressionMethods, QueryDsl, RunQueryDsl};
use plume_common::activity_pub::{
2022-05-02 08:43:03 +00:00
inbox::{AsActor, AsObject, FromId},
2021-11-24 13:50:16 +00:00
sign::Signer,
PUBLIC_VISIBILITY,
};
2018-05-19 09:23:02 +00:00
#[derive(Clone, Queryable, Identifiable)]
2018-05-19 09:23:02 +00:00
pub struct Reshare {
2018-05-19 09:51:10 +00:00
pub id: i32,
pub user_id: i32,
pub post_id: i32,
pub ap_url: String,
pub creation_date: NaiveDateTime,
2018-05-19 09:23:02 +00:00
}
#[derive(Insertable)]
#[table_name = "reshares"]
pub struct NewReshare {
2018-05-19 09:51:10 +00:00
pub user_id: i32,
pub post_id: i32,
pub ap_url: String,
2018-05-19 09:23:02 +00:00
}
impl Reshare {
insert!(reshares, NewReshare);
get!(reshares);
find_by!(reshares, find_by_ap_url, ap_url as &str);
find_by!(
reshares,
find_by_user_on_post,
user_id as i32,
post_id as i32
);
2018-05-19 09:51:10 +00:00
2019-03-20 16:56:17 +00:00
pub fn get_recents_for_author(
conn: &Connection,
user: &User,
limit: i64,
) -> Result<Vec<Reshare>> {
reshares::table
.filter(reshares::user_id.eq(user.id))
2018-05-24 09:45:36 +00:00
.order(reshares::creation_date.desc())
.limit(limit)
.load::<Reshare>(conn)
.map_err(Error::from)
2018-05-24 09:45:36 +00:00
}
pub fn get_post(&self, conn: &Connection) -> Result<Post> {
2018-05-24 09:45:36 +00:00
Post::get(conn, self.post_id)
}
pub fn get_user(&self, conn: &Connection) -> Result<User> {
2018-07-26 13:46:10 +00:00
User::get(conn, self.user_id)
}
2022-05-02 16:26:15 +00:00
pub fn to_activity(&self, conn: &Connection) -> Result<Announce> {
let mut act = Announce::new(
2022-04-23 21:34:00 +00:00
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)
}
Big refactoring of the Inbox (#443) * Big refactoring of the Inbox We now have a type that routes an activity through the registered handlers until one of them matches. Each Actor/Activity/Object combination is represented by an implementation of AsObject These combinations are then registered on the Inbox type, which will try to deserialize the incoming activity in the requested types. Advantages: - nicer syntax: the final API is clearer and more idiomatic - more generic: only two traits (`AsActor` and `AsObject`) instead of one for each kind of activity - it is easier to see which activities we handle and which one we don't * Small fixes - Avoid panics - Don't search for AP ID infinitely - Code style issues * Fix tests * Introduce a new trait: FromId It should be implemented for any AP object. It allows to look for an object in database using its AP ID, or to dereference it if it was not present in database Also moves the inbox code to plume-models to test it (and write a basic test for each activity type we handle) * Use if let instead of match * Don't require PlumeRocket::intl for tests * Return early and remove a forgotten dbg! * Add more tests to try to understand where the issues come from * Also add a test for comment federation * Don't check creation_date is the same for blogs * Make user and blog federation more tolerant to errors/missing fields * Make clippy happy * Use the correct Accept header when dereferencing * Fix follow approval with Mastodon * Add spaces to characters that should not be in usernames And validate blog names too * Smarter dereferencing: only do it once for each actor/object * Forgot some files * Cargo fmt * Delete plume_test * Delete plume_tests * Update get_id docs + Remove useless : Sized * Appease cargo fmt * Remove dbg! + Use as_ref instead of clone when possible + Use and_then instead of map when possible * Remove .po~ * send unfollow to local instance * read cover from update activity * Make sure "cc" and "to" are never empty and fix a typo in a constant name * Cargo fmt
2019-04-17 17:31:47 +00:00
pub fn notify(&self, conn: &Connection) -> Result<()> {
let post = self.get_post(conn)?;
for author in post.get_authors(conn)? {
if author.is_local() {
Notification::insert(
conn,
NewNotification {
kind: notification_kind::RESHARE.to_string(),
object_id: self.id,
user_id: author.id,
},
)?;
}
}
Ok(())
}
2022-05-02 17:11:46 +00:00
pub fn build_undo(&self, conn: &Connection) -> Result<Undo> {
let mut act = Undo::new(
2022-04-23 21:48:31 +00:00
User::get(conn, self.user_id)?.ap_url.parse::<IriString>()?,
2022-05-02 16:26:15 +00:00
AnyBase::from_extended(self.to_activity(conn)?)?,
2022-04-23 21:48:31 +00:00
);
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)
}
Big refactoring of the Inbox (#443) * Big refactoring of the Inbox We now have a type that routes an activity through the registered handlers until one of them matches. Each Actor/Activity/Object combination is represented by an implementation of AsObject These combinations are then registered on the Inbox type, which will try to deserialize the incoming activity in the requested types. Advantages: - nicer syntax: the final API is clearer and more idiomatic - more generic: only two traits (`AsActor` and `AsObject`) instead of one for each kind of activity - it is easier to see which activities we handle and which one we don't * Small fixes - Avoid panics - Don't search for AP ID infinitely - Code style issues * Fix tests * Introduce a new trait: FromId It should be implemented for any AP object. It allows to look for an object in database using its AP ID, or to dereference it if it was not present in database Also moves the inbox code to plume-models to test it (and write a basic test for each activity type we handle) * Use if let instead of match * Don't require PlumeRocket::intl for tests * Return early and remove a forgotten dbg! * Add more tests to try to understand where the issues come from * Also add a test for comment federation * Don't check creation_date is the same for blogs * Make user and blog federation more tolerant to errors/missing fields * Make clippy happy * Use the correct Accept header when dereferencing * Fix follow approval with Mastodon * Add spaces to characters that should not be in usernames And validate blog names too * Smarter dereferencing: only do it once for each actor/object * Forgot some files * Cargo fmt * Delete plume_test * Delete plume_tests * Update get_id docs + Remove useless : Sized * Appease cargo fmt * Remove dbg! + Use as_ref instead of clone when possible + Use and_then instead of map when possible * Remove .po~ * send unfollow to local instance * read cover from update activity * Make sure "cc" and "to" are never empty and fix a typo in a constant name * Cargo fmt
2019-04-17 17:31:47 +00:00
}
2022-12-16 21:51:14 +00:00
impl AsObject<User, Announce, &Connection> for Post {
type Error = Error;
type Output = Reshare;
2022-12-16 21:51:14 +00:00
fn activity(self, conn: &Connection, 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-12-16 21:51:14 +00:00
impl FromId<Connection> for Reshare {
2022-04-23 21:41:21 +00:00
type Error = Error;
type Object = Announce;
2022-04-23 21:41:21 +00:00
2022-12-16 21:51:14 +00:00
fn from_db(conn: &Connection, id: &str) -> Result<Self> {
2022-04-23 21:41:21 +00:00
Reshare::find_by_ap_url(conn, id)
}
2022-12-16 21:51:14 +00:00
fn from_activity(conn: &Connection, act: Announce) -> Result<Self> {
2022-04-23 21:41:21 +00:00
let res = Reshare::insert(
conn,
NewReshare {
2022-05-02 10:24:36 +00:00
post_id: Post::from_id(
2022-04-23 21:41:21 +00: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 10:24:36 +00:00
user_id: User::from_id(
2022-04-23 21:41:21 +00: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)
}
2022-05-02 16:24:22 +00:00
fn get_sender() -> &'static dyn Signer {
2022-04-23 21:41:21 +00:00
Instance::get_local_instance_user().expect("Failed to local instance user")
}
}
2022-12-16 21:51:14 +00:00
impl AsObject<User, Undo, &Connection> for Reshare {
type Error = Error;
type Output = ();
2022-12-16 21:51:14 +00:00
fn activity(self, conn: &Connection, actor: User, _id: &str) -> Result<()> {
if actor.id == self.user_id {
2022-12-16 21:51:14 +00:00
diesel::delete(&self).execute(conn)?;
// delete associated notification if any
if let Ok(notif) = Notification::find(conn, notification_kind::RESHARE, self.id) {
2022-12-16 21:51:14 +00:00
diesel::delete(&notif).execute(conn)?;
}
Ok(())
} else {
Err(Error::Unauthorized)
}
}
}
impl NewReshare {
pub fn new(p: &Post, u: &User) -> Self {
2022-01-08 16:58:39 +00:00
let ap_url = format!("{}reshare/{}", u.ap_url, p.ap_url);
NewReshare {
post_id: p.id,
user_id: u.id,
2019-03-20 16:56:17 +00:00
ap_url,
}
}
}
#[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};
2022-04-23 21:33:39 +00:00
#[test]
2022-05-02 16:26:15 +00:00
fn to_activity() {
2022-04-23 21:33:39 +00:00
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];
2023-01-02 17:45:13 +00:00
let reshare = Reshare::insert(&conn, NewReshare::new(post, user))?;
2022-05-02 16:26:15 +00:00
let act = reshare.to_activity(&conn).unwrap();
2022-04-23 21:33:39 +00:00
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 21:48:16 +00:00
#[test]
2022-05-02 17:11:46 +00:00
fn build_undo() {
2022-04-23 21:48:16 +00:00
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];
2023-01-02 17:45:13 +00:00
let reshare = Reshare::insert(&conn, NewReshare::new(post, user))?;
let act = reshare.build_undo(&conn)?;
2022-04-23 21:48:16 +00:00
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(())
});
}
}