2018-05-19 11:51:10 +02:00
|
|
|
use activitystreams_types::activity;
|
2018-05-19 11:23:02 +02:00
|
|
|
use chrono::NaiveDateTime;
|
|
|
|
use diesel::{self, PgConnection, QueryDsl, RunQueryDsl, ExpressionMethods};
|
|
|
|
|
2018-05-19 11:51:10 +02:00
|
|
|
use activity_pub::{IntoId, actor::Actor, object::Object};
|
|
|
|
use models::{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 {
|
|
|
|
pub fn insert(conn: &PgConnection, new: NewReshare) -> Reshare {
|
|
|
|
diesel::insert_into(reshares::table)
|
|
|
|
.values(new)
|
|
|
|
.get_result(conn)
|
|
|
|
.expect("Couldn't save reshare")
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get(conn: &PgConnection, id: i32) -> Option<Reshare> {
|
|
|
|
reshares::table.filter(reshares::id.eq(id))
|
|
|
|
.limit(1)
|
|
|
|
.load::<Reshare>(conn)
|
|
|
|
.expect("Could'nt load reshare")
|
|
|
|
.into_iter().nth(0)
|
|
|
|
}
|
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/{}",
|
|
|
|
User::get(conn, self.user_id).unwrap().compute_id(conn),
|
|
|
|
Post::get(conn, self.post_id).unwrap().compute_id(conn)
|
|
|
|
)))
|
|
|
|
.get_result::<Reshare>(conn).expect("Couldn't update AP URL");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn find_by_ap_url(conn: &PgConnection, ap_url: String) -> Option<Reshare> {
|
|
|
|
reshares::table.filter(reshares::ap_url.eq(ap_url))
|
|
|
|
.limit(1)
|
|
|
|
.load::<Reshare>(conn)
|
|
|
|
.expect("Error loading reshare by AP URL")
|
|
|
|
.into_iter().nth(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn find_by_user_on_post(conn: &PgConnection, user: &User, post: &Post) -> Option<Reshare> {
|
|
|
|
reshares::table.filter(reshares::post_id.eq(post.id))
|
|
|
|
.filter(reshares::user_id.eq(user.id))
|
|
|
|
.limit(1)
|
|
|
|
.load::<Reshare>(conn)
|
|
|
|
.expect("Error loading reshare for user and post")
|
|
|
|
.into_iter().nth(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn delete(&self, conn: &PgConnection) -> activity::Undo {
|
|
|
|
diesel::delete(self).execute(conn).unwrap();
|
|
|
|
|
|
|
|
let mut act = activity::Undo::default();
|
|
|
|
act.set_actor_link(User::get(conn, self.user_id).unwrap().into_id()).unwrap();
|
|
|
|
act.set_object_object(self.into_activity(conn)).unwrap();
|
|
|
|
act
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn into_activity(&self, conn: &PgConnection) -> activity::Announce {
|
|
|
|
let mut act = activity::Announce::default();
|
|
|
|
act.set_actor_link(User::get(conn, self.user_id).unwrap().into_id()).unwrap();
|
|
|
|
act.set_object_link(Post::get(conn, self.post_id).unwrap().into_id()).unwrap();
|
|
|
|
act.object_props.set_id_string(self.ap_url.clone()).unwrap();
|
|
|
|
|
|
|
|
act
|
|
|
|
}
|
2018-05-19 11:23:02 +02:00
|
|
|
}
|