2018-06-12 21:10:08 +02:00
|
|
|
use activitypub::activity::{Announce, Undo};
|
2018-05-19 11:23:02 +02:00
|
|
|
use chrono::NaiveDateTime;
|
|
|
|
use diesel::{self, PgConnection, QueryDsl, RunQueryDsl, ExpressionMethods};
|
|
|
|
|
2018-06-23 14:36:15 +02:00
|
|
|
use activity_pub::{Id, IntoId, inbox::{FromActivity, Notify, Deletable}, PUBLIC_VISIBILTY};
|
2018-06-17 21:37:10 +02:00
|
|
|
use models::{notifications::*, posts::Post, users::User};
|
2018-05-19 11:23:02 +02:00
|
|
|
use schema::reshares;
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize, Queryable, Identifiable)]
|
|
|
|
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,
|
|
|
|
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,
|
|
|
|
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-06-18 17:13:09 +02:00
|
|
|
find_by!(reshares, find_by_ap_url, ap_url as String);
|
|
|
|
find_by!(reshares, find_by_user_on_post, user_id as i32, post_id as i32);
|
2018-05-19 11:51:10 +02:00
|
|
|
|
|
|
|
pub fn update_ap_url(&self, conn: &PgConnection) {
|
|
|
|
if self.ap_url.len() == 0 {
|
|
|
|
diesel::update(self)
|
|
|
|
.set(reshares::ap_url.eq(format!(
|
|
|
|
"{}/reshare/{}",
|
2018-06-21 16:48:54 +02:00
|
|
|
User::get(conn, self.user_id).unwrap().ap_url,
|
|
|
|
Post::get(conn, self.post_id).unwrap().ap_url
|
2018-05-19 11:51:10 +02:00
|
|
|
)))
|
|
|
|
.get_result::<Reshare>(conn).expect("Couldn't update AP URL");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-24 11:45:36 +02:00
|
|
|
pub fn get_recents_for_author(conn: &PgConnection, user: &User, limit: i64) -> Vec<Reshare> {
|
|
|
|
reshares::table.filter(reshares::user_id.eq(user.id))
|
|
|
|
.order(reshares::creation_date.desc())
|
|
|
|
.limit(limit)
|
|
|
|
.load::<Reshare>(conn)
|
|
|
|
.expect("Error loading recent reshares for user")
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_post(&self, conn: &PgConnection) -> Option<Post> {
|
|
|
|
Post::get(conn, self.post_id)
|
|
|
|
}
|
|
|
|
|
2018-06-12 21:10:08 +02:00
|
|
|
pub fn delete(&self, conn: &PgConnection) -> Undo {
|
2018-05-19 11:51:10 +02:00
|
|
|
diesel::delete(self).execute(conn).unwrap();
|
|
|
|
|
2018-06-12 21:10:08 +02:00
|
|
|
let mut act = Undo::default();
|
2018-06-10 13:13:07 +02:00
|
|
|
act.undo_props.set_actor_link(User::get(conn, self.user_id).unwrap().into_id()).unwrap();
|
|
|
|
act.undo_props.set_object_object(self.into_activity(conn)).unwrap();
|
2018-06-23 14:42:27 +02:00
|
|
|
act.object_props.set_id_string(format!("{}#delete", self.ap_url)).expect("Reshare::delete: id error");
|
|
|
|
act.object_props.set_to_link(Id::new(PUBLIC_VISIBILTY.to_string())).expect("Reshare::delete: to error");
|
|
|
|
act.object_props.set_cc_link_vec::<Id>(vec![]).expect("Reshare::delete: cc error");
|
|
|
|
|
2018-05-19 11:51:10 +02:00
|
|
|
act
|
|
|
|
}
|
|
|
|
|
2018-06-12 21:10:08 +02:00
|
|
|
pub fn into_activity(&self, conn: &PgConnection) -> Announce {
|
|
|
|
let mut act = Announce::default();
|
2018-06-10 13:13:07 +02:00
|
|
|
act.announce_props.set_actor_link(User::get(conn, self.user_id).unwrap().into_id()).unwrap();
|
|
|
|
act.announce_props.set_object_link(Post::get(conn, self.post_id).unwrap().into_id()).unwrap();
|
2018-05-19 11:51:10 +02:00
|
|
|
act.object_props.set_id_string(self.ap_url.clone()).unwrap();
|
2018-06-23 14:36:15 +02:00
|
|
|
act.object_props.set_to_link(Id::new(PUBLIC_VISIBILTY.to_string())).expect("Reshare::into_activity: to error");
|
|
|
|
act.object_props.set_cc_link_vec::<Id>(vec![]).expect("Reshare::into_activity: cc error");
|
2018-05-19 11:51:10 +02:00
|
|
|
|
|
|
|
act
|
|
|
|
}
|
2018-05-19 11:23:02 +02:00
|
|
|
}
|
2018-06-12 21:10:08 +02:00
|
|
|
|
|
|
|
impl FromActivity<Announce> for Reshare {
|
2018-06-20 23:51:47 +02:00
|
|
|
fn from_activity(conn: &PgConnection, announce: Announce, _actor: Id) -> Reshare {
|
2018-06-12 21:10:08 +02:00
|
|
|
let user = User::from_url(conn, announce.announce_props.actor.as_str().unwrap().to_string());
|
|
|
|
let post = Post::find_by_ap_url(conn, announce.announce_props.object.as_str().unwrap().to_string());
|
2018-06-17 21:37:10 +02:00
|
|
|
let reshare = Reshare::insert(conn, NewReshare {
|
2018-06-12 21:10:08 +02:00
|
|
|
post_id: post.unwrap().id,
|
|
|
|
user_id: user.unwrap().id,
|
|
|
|
ap_url: announce.object_props.id_string().unwrap_or(String::from(""))
|
2018-06-17 21:37:10 +02:00
|
|
|
});
|
2018-06-20 23:51:47 +02:00
|
|
|
reshare.notify(conn);
|
2018-06-17 21:37:10 +02:00
|
|
|
reshare
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-20 23:51:47 +02:00
|
|
|
impl Notify for Reshare {
|
|
|
|
fn notify(&self, conn: &PgConnection) {
|
|
|
|
let actor = User::get(conn, self.user_id).unwrap();
|
|
|
|
let post = self.get_post(conn).unwrap();
|
2018-06-17 21:37:10 +02:00
|
|
|
for author in post.get_authors(conn) {
|
|
|
|
let post = post.clone();
|
|
|
|
Notification::insert(conn, NewNotification {
|
2018-06-17 22:19:27 +02:00
|
|
|
title: "{{ data }} reshared your article".to_string(),
|
|
|
|
data: Some(actor.display_name.clone()),
|
2018-06-17 21:37:10 +02:00
|
|
|
content: Some(post.title),
|
|
|
|
link: Some(post.ap_url),
|
|
|
|
user_id: author.id
|
|
|
|
});
|
|
|
|
}
|
2018-06-12 21:10:08 +02:00
|
|
|
}
|
|
|
|
}
|
2018-06-19 11:47:11 +02:00
|
|
|
|
|
|
|
impl Deletable for Reshare {
|
|
|
|
fn delete_activity(conn: &PgConnection, id: Id) -> bool {
|
|
|
|
if let Some(reshare) = Reshare::find_by_ap_url(conn, id.into()) {
|
|
|
|
reshare.delete(conn);
|
|
|
|
true
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|