2019-04-17 19:31:47 +02:00
|
|
|
use activitypub::activity::*;
|
|
|
|
|
|
|
|
use crate::{
|
|
|
|
comments::Comment,
|
|
|
|
follows, likes,
|
|
|
|
posts::{Post, PostUpdate},
|
|
|
|
reshares::Reshare,
|
|
|
|
users::User,
|
2021-01-11 21:27:52 +01:00
|
|
|
Error, PlumeRocket, CONFIG,
|
2019-04-17 19:31:47 +02:00
|
|
|
};
|
|
|
|
use plume_common::activity_pub::inbox::Inbox;
|
|
|
|
|
|
|
|
macro_rules! impl_into_inbox_result {
|
|
|
|
( $( $t:ty => $variant:ident ),+ ) => {
|
|
|
|
$(
|
|
|
|
impl From<$t> for InboxResult {
|
|
|
|
fn from(x: $t) -> InboxResult {
|
|
|
|
InboxResult::$variant(x)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)+
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum InboxResult {
|
|
|
|
Commented(Comment),
|
|
|
|
Followed(follows::Follow),
|
|
|
|
Liked(likes::Like),
|
|
|
|
Other,
|
|
|
|
Post(Post),
|
|
|
|
Reshared(Reshare),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<()> for InboxResult {
|
|
|
|
fn from(_: ()) -> InboxResult {
|
|
|
|
InboxResult::Other
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl_into_inbox_result! {
|
|
|
|
Comment => Commented,
|
|
|
|
follows::Follow => Followed,
|
|
|
|
likes::Like => Liked,
|
|
|
|
Post => Post,
|
|
|
|
Reshare => Reshared
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn inbox(ctx: &PlumeRocket, act: serde_json::Value) -> Result<InboxResult, Error> {
|
|
|
|
Inbox::handle(ctx, act)
|
2021-01-11 21:27:52 +01:00
|
|
|
.with::<User, Announce, Post>(CONFIG.proxy())
|
|
|
|
.with::<User, Create, Comment>(CONFIG.proxy())
|
|
|
|
.with::<User, Create, Post>(CONFIG.proxy())
|
|
|
|
.with::<User, Delete, Comment>(CONFIG.proxy())
|
|
|
|
.with::<User, Delete, Post>(CONFIG.proxy())
|
|
|
|
.with::<User, Delete, User>(CONFIG.proxy())
|
|
|
|
.with::<User, Follow, User>(CONFIG.proxy())
|
|
|
|
.with::<User, Like, Post>(CONFIG.proxy())
|
|
|
|
.with::<User, Undo, Reshare>(CONFIG.proxy())
|
|
|
|
.with::<User, Undo, follows::Follow>(CONFIG.proxy())
|
|
|
|
.with::<User, Undo, likes::Like>(CONFIG.proxy())
|
|
|
|
.with::<User, Update, PostUpdate>(CONFIG.proxy())
|
2019-04-17 19:31:47 +02:00
|
|
|
.done()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
pub(crate) mod tests {
|
|
|
|
use super::InboxResult;
|
|
|
|
use crate::blogs::tests::fill_database as blog_fill_db;
|
|
|
|
use crate::safe_string::SafeString;
|
|
|
|
use crate::tests::rockets;
|
|
|
|
use crate::PlumeRocket;
|
|
|
|
use diesel::Connection;
|
|
|
|
|
|
|
|
pub fn fill_database(
|
|
|
|
rockets: &PlumeRocket,
|
|
|
|
) -> (
|
|
|
|
Vec<crate::posts::Post>,
|
|
|
|
Vec<crate::users::User>,
|
|
|
|
Vec<crate::blogs::Blog>,
|
|
|
|
) {
|
|
|
|
use crate::post_authors::*;
|
|
|
|
use crate::posts::*;
|
|
|
|
|
|
|
|
let (users, blogs) = blog_fill_db(&rockets.conn);
|
|
|
|
let post = Post::insert(
|
|
|
|
&rockets.conn,
|
|
|
|
NewPost {
|
|
|
|
blog_id: blogs[0].id,
|
|
|
|
slug: "testing".to_owned(),
|
|
|
|
title: "Testing".to_owned(),
|
|
|
|
content: crate::safe_string::SafeString::new("Hello"),
|
|
|
|
published: true,
|
|
|
|
license: "WTFPL".to_owned(),
|
|
|
|
creation_date: None,
|
|
|
|
ap_url: format!("https://plu.me/~/{}/testing", blogs[0].actor_id),
|
|
|
|
subtitle: String::new(),
|
|
|
|
source: String::new(),
|
|
|
|
cover_id: None,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
PostAuthor::insert(
|
|
|
|
&rockets.conn,
|
|
|
|
NewPostAuthor {
|
|
|
|
post_id: post.id,
|
|
|
|
author_id: users[0].id,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
(vec![post], users, blogs)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn announce_post() {
|
|
|
|
let r = rockets();
|
|
|
|
let conn = &*r.conn;
|
|
|
|
conn.test_transaction::<_, (), _>(|| {
|
|
|
|
let (posts, users, _) = fill_database(&r);
|
|
|
|
let act = json!({
|
|
|
|
"id": "https://plu.me/announce/1",
|
|
|
|
"actor": users[0].ap_url,
|
|
|
|
"object": posts[0].ap_url,
|
|
|
|
"type": "Announce",
|
|
|
|
});
|
|
|
|
|
|
|
|
match super::inbox(&r, act).unwrap() {
|
|
|
|
super::InboxResult::Reshared(r) => {
|
|
|
|
assert_eq!(r.post_id, posts[0].id);
|
|
|
|
assert_eq!(r.user_id, users[0].id);
|
|
|
|
assert_eq!(r.ap_url, "https://plu.me/announce/1".to_owned());
|
|
|
|
}
|
|
|
|
_ => panic!("Unexpected result"),
|
|
|
|
};
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn create_comment() {
|
|
|
|
let r = rockets();
|
|
|
|
let conn = &*r.conn;
|
|
|
|
conn.test_transaction::<_, (), _>(|| {
|
|
|
|
let (posts, users, _) = fill_database(&r);
|
|
|
|
let act = json!({
|
|
|
|
"id": "https://plu.me/comment/1/activity",
|
|
|
|
"actor": users[0].ap_url,
|
|
|
|
"object": {
|
|
|
|
"type": "Note",
|
|
|
|
"id": "https://plu.me/comment/1",
|
|
|
|
"attributedTo": users[0].ap_url,
|
|
|
|
"inReplyTo": posts[0].ap_url,
|
|
|
|
"content": "Hello.",
|
|
|
|
"to": [plume_common::activity_pub::PUBLIC_VISIBILITY]
|
|
|
|
},
|
|
|
|
"type": "Create",
|
|
|
|
});
|
|
|
|
|
|
|
|
match super::inbox(&r, act).unwrap() {
|
|
|
|
super::InboxResult::Commented(c) => {
|
|
|
|
assert_eq!(c.author_id, users[0].id);
|
|
|
|
assert_eq!(c.post_id, posts[0].id);
|
|
|
|
assert_eq!(c.in_response_to_id, None);
|
|
|
|
assert_eq!(c.content, SafeString::new("Hello."));
|
|
|
|
assert!(c.public_visibility);
|
|
|
|
}
|
|
|
|
_ => panic!("Unexpected result"),
|
|
|
|
};
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-12-01 00:37:47 +01:00
|
|
|
#[test]
|
|
|
|
fn spoof_comment() {
|
|
|
|
let r = rockets();
|
|
|
|
let conn = &*r.conn;
|
|
|
|
conn.test_transaction::<_, (), _>(|| {
|
|
|
|
let (posts, users, _) = fill_database(&r);
|
|
|
|
let act = json!({
|
|
|
|
"id": "https://plu.me/comment/1/activity",
|
|
|
|
"actor": users[0].ap_url,
|
|
|
|
"object": {
|
|
|
|
"type": "Note",
|
|
|
|
"id": "https://plu.me/comment/1",
|
|
|
|
"attributedTo": users[1].ap_url,
|
|
|
|
"inReplyTo": posts[0].ap_url,
|
|
|
|
"content": "Hello.",
|
|
|
|
"to": [plume_common::activity_pub::PUBLIC_VISIBILITY]
|
|
|
|
},
|
|
|
|
"type": "Create",
|
|
|
|
});
|
|
|
|
|
|
|
|
assert!(matches!(
|
|
|
|
super::inbox(&r, act.clone()),
|
|
|
|
Err(super::Error::Inbox(
|
|
|
|
box plume_common::activity_pub::inbox::InboxError::InvalidObject(_),
|
|
|
|
))
|
|
|
|
));
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-12-10 16:35:20 +01:00
|
|
|
#[test]
|
|
|
|
fn spoof_comment_by_object_with_id() {
|
|
|
|
let r = rockets();
|
|
|
|
let conn = &*r.conn;
|
|
|
|
conn.test_transaction::<_, (), _>(|| {
|
|
|
|
let (posts, users, _) = fill_database(&r);
|
|
|
|
let act = json!({
|
|
|
|
"id": "https://plu.me/comment/1/activity",
|
|
|
|
"actor": users[0].ap_url,
|
|
|
|
"object": {
|
|
|
|
"type": "Note",
|
|
|
|
"id": "https://plu.me/comment/1",
|
|
|
|
"attributedTo": {
|
|
|
|
"id": users[1].ap_url
|
|
|
|
},
|
|
|
|
"inReplyTo": posts[0].ap_url,
|
|
|
|
"content": "Hello.",
|
|
|
|
"to": [plume_common::activity_pub::PUBLIC_VISIBILITY]
|
|
|
|
},
|
|
|
|
"type": "Create",
|
|
|
|
});
|
|
|
|
|
|
|
|
assert!(matches!(
|
|
|
|
super::inbox(&r, act.clone()),
|
|
|
|
Err(super::Error::Inbox(
|
|
|
|
box plume_common::activity_pub::inbox::InboxError::InvalidObject(_),
|
|
|
|
))
|
|
|
|
));
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
#[test]
|
|
|
|
fn spoof_comment_by_object_without_id() {
|
|
|
|
let r = rockets();
|
|
|
|
let conn = &*r.conn;
|
|
|
|
conn.test_transaction::<_, (), _>(|| {
|
|
|
|
let (posts, users, _) = fill_database(&r);
|
|
|
|
let act = json!({
|
|
|
|
"id": "https://plu.me/comment/1/activity",
|
|
|
|
"actor": users[0].ap_url,
|
|
|
|
"object": {
|
|
|
|
"type": "Note",
|
|
|
|
"id": "https://plu.me/comment/1",
|
|
|
|
"attributedTo": {},
|
|
|
|
"inReplyTo": posts[0].ap_url,
|
|
|
|
"content": "Hello.",
|
|
|
|
"to": [plume_common::activity_pub::PUBLIC_VISIBILITY]
|
|
|
|
},
|
|
|
|
"type": "Create",
|
|
|
|
});
|
|
|
|
|
|
|
|
assert!(matches!(
|
|
|
|
super::inbox(&r, act.clone()),
|
|
|
|
Err(super::Error::Inbox(
|
|
|
|
box plume_common::activity_pub::inbox::InboxError::InvalidObject(_),
|
|
|
|
))
|
|
|
|
));
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-04-17 19:31:47 +02:00
|
|
|
#[test]
|
|
|
|
fn create_post() {
|
|
|
|
let r = rockets();
|
|
|
|
let conn = &*r.conn;
|
|
|
|
conn.test_transaction::<_, (), _>(|| {
|
|
|
|
let (_, users, blogs) = fill_database(&r);
|
|
|
|
let act = json!({
|
|
|
|
"id": "https://plu.me/comment/1/activity",
|
|
|
|
"actor": users[0].ap_url,
|
|
|
|
"object": {
|
|
|
|
"type": "Article",
|
|
|
|
"id": "https://plu.me/~/Blog/my-article",
|
|
|
|
"attributedTo": [users[0].ap_url, blogs[0].ap_url],
|
|
|
|
"content": "Hello.",
|
|
|
|
"name": "My Article",
|
|
|
|
"summary": "Bye.",
|
|
|
|
"source": {
|
|
|
|
"content": "Hello.",
|
|
|
|
"mediaType": "text/markdown"
|
|
|
|
},
|
|
|
|
"published": "2014-12-12T12:12:12Z",
|
|
|
|
"to": [plume_common::activity_pub::PUBLIC_VISIBILITY]
|
|
|
|
},
|
|
|
|
"type": "Create",
|
|
|
|
});
|
|
|
|
|
|
|
|
match super::inbox(&r, act).unwrap() {
|
|
|
|
super::InboxResult::Post(p) => {
|
|
|
|
assert!(p.is_author(conn, users[0].id).unwrap());
|
|
|
|
assert_eq!(p.source, "Hello.".to_owned());
|
|
|
|
assert_eq!(p.blog_id, blogs[0].id);
|
|
|
|
assert_eq!(p.content, SafeString::new("Hello."));
|
|
|
|
assert_eq!(p.subtitle, "Bye.".to_owned());
|
|
|
|
assert_eq!(p.title, "My Article".to_owned());
|
|
|
|
}
|
|
|
|
_ => panic!("Unexpected result"),
|
|
|
|
};
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-12-01 00:37:47 +01:00
|
|
|
#[test]
|
|
|
|
fn spoof_post() {
|
|
|
|
let r = rockets();
|
|
|
|
let conn = &*r.conn;
|
|
|
|
conn.test_transaction::<_, (), _>(|| {
|
|
|
|
let (_, users, blogs) = fill_database(&r);
|
|
|
|
let act = json!({
|
|
|
|
"id": "https://plu.me/comment/1/activity",
|
|
|
|
"actor": users[0].ap_url,
|
|
|
|
"object": {
|
|
|
|
"type": "Article",
|
|
|
|
"id": "https://plu.me/~/Blog/my-article",
|
|
|
|
"attributedTo": [users[1].ap_url, blogs[0].ap_url],
|
|
|
|
"content": "Hello.",
|
|
|
|
"name": "My Article",
|
|
|
|
"summary": "Bye.",
|
|
|
|
"source": {
|
|
|
|
"content": "Hello.",
|
|
|
|
"mediaType": "text/markdown"
|
|
|
|
},
|
|
|
|
"published": "2014-12-12T12:12:12Z",
|
|
|
|
"to": [plume_common::activity_pub::PUBLIC_VISIBILITY]
|
|
|
|
},
|
|
|
|
"type": "Create",
|
|
|
|
});
|
|
|
|
|
|
|
|
assert!(matches!(
|
|
|
|
super::inbox(&r, act.clone()),
|
|
|
|
Err(super::Error::Inbox(
|
2020-12-10 16:35:20 +01:00
|
|
|
box plume_common::activity_pub::inbox::InboxError::InvalidObject(_),
|
|
|
|
))
|
|
|
|
));
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn spoof_post_by_object_with_id() {
|
|
|
|
let r = rockets();
|
|
|
|
let conn = &*r.conn;
|
|
|
|
conn.test_transaction::<_, (), _>(|| {
|
|
|
|
let (_, users, blogs) = fill_database(&r);
|
|
|
|
let act = json!({
|
|
|
|
"id": "https://plu.me/comment/1/activity",
|
|
|
|
"actor": users[0].ap_url,
|
|
|
|
"object": {
|
|
|
|
"type": "Article",
|
|
|
|
"id": "https://plu.me/~/Blog/my-article",
|
|
|
|
"attributedTo": [
|
|
|
|
{"id": users[1].ap_url},
|
|
|
|
blogs[0].ap_url
|
|
|
|
],
|
|
|
|
"content": "Hello.",
|
|
|
|
"name": "My Article",
|
|
|
|
"summary": "Bye.",
|
|
|
|
"source": {
|
|
|
|
"content": "Hello.",
|
|
|
|
"mediaType": "text/markdown"
|
|
|
|
},
|
|
|
|
"published": "2014-12-12T12:12:12Z",
|
|
|
|
"to": [plume_common::activity_pub::PUBLIC_VISIBILITY]
|
|
|
|
},
|
|
|
|
"type": "Create",
|
|
|
|
});
|
|
|
|
|
|
|
|
assert!(matches!(
|
|
|
|
super::inbox(&r, act.clone()),
|
|
|
|
Err(super::Error::Inbox(
|
|
|
|
box plume_common::activity_pub::inbox::InboxError::InvalidObject(_),
|
|
|
|
))
|
|
|
|
));
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn spoof_post_by_object_without_id() {
|
|
|
|
let r = rockets();
|
|
|
|
let conn = &*r.conn;
|
|
|
|
conn.test_transaction::<_, (), _>(|| {
|
|
|
|
let (_, users, blogs) = fill_database(&r);
|
|
|
|
let act = json!({
|
|
|
|
"id": "https://plu.me/comment/1/activity",
|
|
|
|
"actor": users[0].ap_url,
|
|
|
|
"object": {
|
|
|
|
"type": "Article",
|
|
|
|
"id": "https://plu.me/~/Blog/my-article",
|
|
|
|
"attributedTo": [{}, blogs[0].ap_url],
|
|
|
|
"content": "Hello.",
|
|
|
|
"name": "My Article",
|
|
|
|
"summary": "Bye.",
|
|
|
|
"source": {
|
|
|
|
"content": "Hello.",
|
|
|
|
"mediaType": "text/markdown"
|
|
|
|
},
|
|
|
|
"published": "2014-12-12T12:12:12Z",
|
|
|
|
"to": [plume_common::activity_pub::PUBLIC_VISIBILITY]
|
|
|
|
},
|
|
|
|
"type": "Create",
|
|
|
|
});
|
|
|
|
|
|
|
|
assert!(matches!(
|
|
|
|
super::inbox(&r, act.clone()),
|
|
|
|
Err(super::Error::Inbox(
|
2020-12-01 00:37:47 +01:00
|
|
|
box plume_common::activity_pub::inbox::InboxError::InvalidObject(_),
|
|
|
|
))
|
|
|
|
));
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-04-17 19:31:47 +02:00
|
|
|
#[test]
|
|
|
|
fn delete_comment() {
|
|
|
|
use crate::comments::*;
|
|
|
|
|
|
|
|
let r = rockets();
|
|
|
|
let conn = &*r.conn;
|
|
|
|
conn.test_transaction::<_, (), _>(|| {
|
|
|
|
let (posts, users, _) = fill_database(&r);
|
|
|
|
Comment::insert(
|
|
|
|
conn,
|
|
|
|
NewComment {
|
|
|
|
content: SafeString::new("My comment"),
|
|
|
|
in_response_to_id: None,
|
|
|
|
post_id: posts[0].id,
|
|
|
|
author_id: users[0].id,
|
|
|
|
ap_url: Some("https://plu.me/comment/1".to_owned()),
|
|
|
|
sensitive: false,
|
|
|
|
spoiler_text: "spoiler".to_owned(),
|
|
|
|
public_visibility: true,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let fail_act = json!({
|
|
|
|
"id": "https://plu.me/comment/1/delete",
|
|
|
|
"actor": users[1].ap_url, // Not the author of the comment, it should fail
|
|
|
|
"object": "https://plu.me/comment/1",
|
|
|
|
"type": "Delete",
|
|
|
|
});
|
|
|
|
assert!(super::inbox(&r, fail_act).is_err());
|
|
|
|
|
|
|
|
let ok_act = json!({
|
|
|
|
"id": "https://plu.me/comment/1/delete",
|
|
|
|
"actor": users[0].ap_url,
|
|
|
|
"object": "https://plu.me/comment/1",
|
|
|
|
"type": "Delete",
|
|
|
|
});
|
|
|
|
assert!(super::inbox(&r, ok_act).is_ok());
|
|
|
|
Ok(())
|
2019-10-07 19:08:20 +02:00
|
|
|
})
|
2019-04-17 19:31:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn delete_post() {
|
|
|
|
let r = rockets();
|
|
|
|
let conn = &*r.conn;
|
|
|
|
conn.test_transaction::<_, (), _>(|| {
|
|
|
|
let (posts, users, _) = fill_database(&r);
|
|
|
|
|
|
|
|
let fail_act = json!({
|
|
|
|
"id": "https://plu.me/comment/1/delete",
|
|
|
|
"actor": users[1].ap_url, // Not the author of the post, it should fail
|
|
|
|
"object": posts[0].ap_url,
|
|
|
|
"type": "Delete",
|
|
|
|
});
|
|
|
|
assert!(super::inbox(&r, fail_act).is_err());
|
|
|
|
|
|
|
|
let ok_act = json!({
|
|
|
|
"id": "https://plu.me/comment/1/delete",
|
|
|
|
"actor": users[0].ap_url,
|
|
|
|
"object": posts[0].ap_url,
|
|
|
|
"type": "Delete",
|
|
|
|
});
|
|
|
|
assert!(super::inbox(&r, ok_act).is_ok());
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-04-28 19:01:41 +02:00
|
|
|
#[test]
|
|
|
|
fn delete_user() {
|
|
|
|
let r = rockets();
|
|
|
|
let conn = &*r.conn;
|
|
|
|
conn.test_transaction::<_, (), _>(|| {
|
|
|
|
let (_, users, _) = fill_database(&r);
|
|
|
|
|
|
|
|
let fail_act = json!({
|
|
|
|
"id": "https://plu.me/@/Admin#delete",
|
|
|
|
"actor": users[1].ap_url, // Not the same account
|
|
|
|
"object": users[0].ap_url,
|
|
|
|
"type": "Delete",
|
|
|
|
});
|
|
|
|
assert!(super::inbox(&r, fail_act).is_err());
|
|
|
|
|
|
|
|
let ok_act = json!({
|
|
|
|
"id": "https://plu.me/@/Admin#delete",
|
|
|
|
"actor": users[0].ap_url,
|
|
|
|
"object": users[0].ap_url,
|
|
|
|
"type": "Delete",
|
|
|
|
});
|
|
|
|
assert!(super::inbox(&r, ok_act).is_ok());
|
|
|
|
assert!(crate::users::User::get(conn, users[0].id).is_err());
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-04-17 19:31:47 +02:00
|
|
|
#[test]
|
|
|
|
fn follow() {
|
|
|
|
let r = rockets();
|
|
|
|
let conn = &*r.conn;
|
|
|
|
conn.test_transaction::<_, (), _>(|| {
|
|
|
|
let (_, users, _) = fill_database(&r);
|
|
|
|
|
|
|
|
let act = json!({
|
|
|
|
"id": "https://plu.me/follow/1",
|
|
|
|
"actor": users[0].ap_url,
|
|
|
|
"object": users[1].ap_url,
|
|
|
|
"type": "Follow",
|
|
|
|
});
|
|
|
|
match super::inbox(&r, act).unwrap() {
|
|
|
|
InboxResult::Followed(f) => {
|
|
|
|
assert_eq!(f.follower_id, users[0].id);
|
|
|
|
assert_eq!(f.following_id, users[1].id);
|
|
|
|
assert_eq!(f.ap_url, "https://plu.me/follow/1".to_owned());
|
|
|
|
}
|
|
|
|
_ => panic!("Unexpected result"),
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn like() {
|
|
|
|
let r = rockets();
|
|
|
|
let conn = &*r.conn;
|
|
|
|
conn.test_transaction::<_, (), _>(|| {
|
|
|
|
let (posts, users, _) = fill_database(&r);
|
|
|
|
|
|
|
|
let act = json!({
|
|
|
|
"id": "https://plu.me/like/1",
|
|
|
|
"actor": users[1].ap_url,
|
|
|
|
"object": posts[0].ap_url,
|
|
|
|
"type": "Like",
|
|
|
|
});
|
|
|
|
match super::inbox(&r, act).unwrap() {
|
|
|
|
InboxResult::Liked(l) => {
|
|
|
|
assert_eq!(l.user_id, users[1].id);
|
|
|
|
assert_eq!(l.post_id, posts[0].id);
|
|
|
|
assert_eq!(l.ap_url, "https://plu.me/like/1".to_owned());
|
|
|
|
}
|
|
|
|
_ => panic!("Unexpected result"),
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn undo_reshare() {
|
|
|
|
use crate::reshares::*;
|
|
|
|
|
|
|
|
let r = rockets();
|
|
|
|
let conn = &*r.conn;
|
|
|
|
conn.test_transaction::<_, (), _>(|| {
|
|
|
|
let (posts, users, _) = fill_database(&r);
|
|
|
|
|
|
|
|
let announce = Reshare::insert(
|
|
|
|
conn,
|
|
|
|
NewReshare {
|
|
|
|
post_id: posts[0].id,
|
|
|
|
user_id: users[1].id,
|
|
|
|
ap_url: "https://plu.me/announce/1".to_owned(),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let fail_act = json!({
|
|
|
|
"id": "https://plu.me/undo/1",
|
|
|
|
"actor": users[0].ap_url,
|
|
|
|
"object": announce.ap_url,
|
|
|
|
"type": "Undo",
|
|
|
|
});
|
|
|
|
assert!(super::inbox(&r, fail_act).is_err());
|
|
|
|
|
|
|
|
let ok_act = json!({
|
|
|
|
"id": "https://plu.me/undo/1",
|
|
|
|
"actor": users[1].ap_url,
|
|
|
|
"object": announce.ap_url,
|
|
|
|
"type": "Undo",
|
|
|
|
});
|
|
|
|
assert!(super::inbox(&r, ok_act).is_ok());
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn undo_follow() {
|
|
|
|
use crate::follows::*;
|
|
|
|
|
|
|
|
let r = rockets();
|
|
|
|
let conn = &*r.conn;
|
|
|
|
conn.test_transaction::<_, (), _>(|| {
|
|
|
|
let (_, users, _) = fill_database(&r);
|
|
|
|
|
|
|
|
let follow = Follow::insert(
|
|
|
|
conn,
|
|
|
|
NewFollow {
|
|
|
|
follower_id: users[0].id,
|
|
|
|
following_id: users[1].id,
|
|
|
|
ap_url: "https://plu.me/follow/1".to_owned(),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let fail_act = json!({
|
|
|
|
"id": "https://plu.me/undo/1",
|
|
|
|
"actor": users[2].ap_url,
|
|
|
|
"object": follow.ap_url,
|
|
|
|
"type": "Undo",
|
|
|
|
});
|
|
|
|
assert!(super::inbox(&r, fail_act).is_err());
|
|
|
|
|
|
|
|
let ok_act = json!({
|
|
|
|
"id": "https://plu.me/undo/1",
|
|
|
|
"actor": users[0].ap_url,
|
|
|
|
"object": follow.ap_url,
|
|
|
|
"type": "Undo",
|
|
|
|
});
|
|
|
|
assert!(super::inbox(&r, ok_act).is_ok());
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn undo_like() {
|
|
|
|
use crate::likes::*;
|
|
|
|
|
|
|
|
let r = rockets();
|
|
|
|
let conn = &*r.conn;
|
|
|
|
conn.test_transaction::<_, (), _>(|| {
|
|
|
|
let (posts, users, _) = fill_database(&r);
|
|
|
|
|
|
|
|
let like = Like::insert(
|
|
|
|
conn,
|
|
|
|
NewLike {
|
|
|
|
post_id: posts[0].id,
|
|
|
|
user_id: users[1].id,
|
|
|
|
ap_url: "https://plu.me/like/1".to_owned(),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let fail_act = json!({
|
|
|
|
"id": "https://plu.me/undo/1",
|
|
|
|
"actor": users[0].ap_url,
|
|
|
|
"object": like.ap_url,
|
|
|
|
"type": "Undo",
|
|
|
|
});
|
|
|
|
assert!(super::inbox(&r, fail_act).is_err());
|
|
|
|
|
|
|
|
let ok_act = json!({
|
|
|
|
"id": "https://plu.me/undo/1",
|
|
|
|
"actor": users[1].ap_url,
|
|
|
|
"object": like.ap_url,
|
|
|
|
"type": "Undo",
|
|
|
|
});
|
|
|
|
assert!(super::inbox(&r, ok_act).is_ok());
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn update_post() {
|
|
|
|
let r = rockets();
|
|
|
|
let conn = &*r.conn;
|
|
|
|
conn.test_transaction::<_, (), _>(|| {
|
|
|
|
let (posts, users, _) = fill_database(&r);
|
|
|
|
|
|
|
|
let act = json!({
|
|
|
|
"id": "https://plu.me/update/1",
|
|
|
|
"actor": users[0].ap_url,
|
|
|
|
"object": {
|
|
|
|
"type": "Article",
|
|
|
|
"id": posts[0].ap_url,
|
|
|
|
"name": "Mia Artikolo",
|
|
|
|
"summary": "Jes, mi parolas esperanton nun",
|
|
|
|
"content": "<b>Saluton</b>, mi skribas testojn",
|
|
|
|
"source": {
|
|
|
|
"mediaType": "text/markdown",
|
|
|
|
"content": "**Saluton**, mi skribas testojn"
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"type": "Update",
|
|
|
|
});
|
|
|
|
|
|
|
|
super::inbox(&r, act).unwrap();
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|