2018-05-01 16:00:29 +02:00
|
|
|
use diesel::PgConnection;
|
|
|
|
use serde_json;
|
|
|
|
|
2018-05-02 22:44:03 +02:00
|
|
|
use activity_pub::activity;
|
2018-05-01 20:02:29 +02:00
|
|
|
use activity_pub::actor::Actor;
|
2018-05-03 21:11:04 +02:00
|
|
|
use activity_pub::sign::*;
|
2018-05-01 20:02:29 +02:00
|
|
|
use models::blogs::Blog;
|
2018-05-10 12:52:56 +02:00
|
|
|
use models::comments::*;
|
2018-05-10 18:07:23 +02:00
|
|
|
use models::follows::*;
|
|
|
|
use models::likes::*;
|
|
|
|
use models::posts::*;
|
2018-05-01 20:02:29 +02:00
|
|
|
use models::users::User;
|
2018-05-01 16:00:29 +02:00
|
|
|
|
2018-05-01 20:02:29 +02:00
|
|
|
pub trait Inbox: Actor + Sized {
|
2018-05-01 16:00:29 +02:00
|
|
|
fn received(&self, conn: &PgConnection, act: serde_json::Value);
|
|
|
|
|
|
|
|
fn save(&self, conn: &PgConnection, act: serde_json::Value) {
|
|
|
|
match act["type"].as_str().unwrap() {
|
|
|
|
"Create" => {
|
|
|
|
match act["object"]["type"].as_str().unwrap() {
|
|
|
|
"Article" => {
|
|
|
|
Post::insert(conn, NewPost {
|
2018-05-10 12:52:56 +02:00
|
|
|
blog_id: 0, // TODO
|
|
|
|
slug: String::from(""), // TODO
|
|
|
|
title: String::from(""), // TODO
|
2018-05-01 16:00:29 +02:00
|
|
|
content: act["object"]["content"].as_str().unwrap().to_string(),
|
|
|
|
published: true,
|
2018-05-10 12:52:56 +02:00
|
|
|
license: String::from("CC-0"),
|
|
|
|
ap_url: act["object"]["url"].as_str().unwrap().to_string()
|
2018-05-01 16:00:29 +02:00
|
|
|
});
|
|
|
|
},
|
2018-05-10 12:52:56 +02:00
|
|
|
"Note" => {
|
|
|
|
let previous_comment = Comment::get_by_ap_url(conn, act["object"]["inReplyTo"].as_str().unwrap().to_string());
|
|
|
|
Comment::insert(conn, NewComment {
|
|
|
|
content: act["object"]["content"].as_str().unwrap().to_string(),
|
|
|
|
spoiler_text: act["object"]["summary"].as_str().unwrap_or("").to_string(),
|
|
|
|
ap_url: Some(act["object"]["id"].as_str().unwrap().to_string()),
|
|
|
|
in_response_to_id: previous_comment.clone().map(|c| c.id),
|
|
|
|
post_id: previous_comment
|
|
|
|
.map(|c| c.post_id)
|
2018-05-10 15:32:19 +02:00
|
|
|
.unwrap_or_else(|| Post::get_by_ap_url(conn, act["object"]["inReplyTo"].as_str().unwrap().to_string()).unwrap().id),
|
2018-05-10 12:52:56 +02:00
|
|
|
author_id: User::from_url(conn, act["actor"].as_str().unwrap().to_string()).unwrap().id,
|
|
|
|
sensitive: act["object"]["sensitive"].as_bool().unwrap_or(false)
|
|
|
|
});
|
|
|
|
}
|
2018-05-01 16:00:29 +02:00
|
|
|
x => println!("Received a new {}, but didn't saved it", x)
|
|
|
|
}
|
|
|
|
},
|
2018-05-01 20:02:29 +02:00
|
|
|
"Follow" => {
|
2018-05-02 22:44:03 +02:00
|
|
|
let follow_act = activity::Follow::deserialize(act.clone());
|
2018-05-01 20:02:29 +02:00
|
|
|
let from = User::from_url(conn, act["actor"].as_str().unwrap().to_string()).unwrap();
|
|
|
|
match User::from_url(conn, act["object"].as_str().unwrap().to_string()) {
|
2018-05-02 22:44:03 +02:00
|
|
|
Some(u) => self.accept_follow(conn, &from, &u, &follow_act, from.id, u.id),
|
2018-05-01 20:02:29 +02:00
|
|
|
None => {
|
2018-05-02 22:44:03 +02:00
|
|
|
let blog = Blog::from_url(conn, follow_act.get_target_id()).unwrap();
|
|
|
|
self.accept_follow(conn, &from, &blog, &follow_act, from.id, blog.id)
|
2018-05-01 20:02:29 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// TODO: notification
|
|
|
|
}
|
2018-05-10 18:07:23 +02:00
|
|
|
"Like" => {
|
|
|
|
let liker = User::from_url(conn, act["actor"].as_str().unwrap().to_string());
|
|
|
|
let post = Post::get_by_ap_url(conn, act["object"].as_str().unwrap().to_string());
|
|
|
|
Like::insert(conn, NewLike {
|
|
|
|
post_id: post.unwrap().id,
|
|
|
|
user_id: liker.unwrap().id
|
|
|
|
});
|
|
|
|
},
|
2018-05-01 16:00:29 +02:00
|
|
|
x => println!("Received unknow activity type: {}", x)
|
|
|
|
}
|
|
|
|
}
|
2018-05-01 20:02:29 +02:00
|
|
|
|
2018-05-03 21:11:04 +02:00
|
|
|
fn accept_follow<A: Actor, B: Actor + Signer, T: activity::Activity>(
|
|
|
|
&self,
|
|
|
|
conn: &PgConnection,
|
|
|
|
from: &A,
|
|
|
|
target: &B,
|
|
|
|
follow: &T,
|
|
|
|
from_id: i32,
|
|
|
|
target_id: i32
|
|
|
|
) {
|
2018-05-01 20:02:29 +02:00
|
|
|
Follow::insert(conn, NewFollow {
|
|
|
|
follower_id: from_id,
|
|
|
|
following_id: target_id
|
|
|
|
});
|
|
|
|
|
2018-05-02 22:44:03 +02:00
|
|
|
let accept = activity::Accept::new(target, follow, conn);
|
2018-05-03 21:11:04 +02:00
|
|
|
from.send_to_inbox(conn, target, accept)
|
2018-05-01 20:02:29 +02:00
|
|
|
}
|
2018-05-01 16:00:29 +02:00
|
|
|
}
|