2018-06-10 13:13:07 +02:00
|
|
|
use activitypub::activity;
|
2018-05-10 17:54:35 +02:00
|
|
|
use chrono;
|
2018-05-10 18:07:23 +02:00
|
|
|
use diesel::{self, PgConnection, QueryDsl, RunQueryDsl, ExpressionMethods};
|
2018-05-10 17:54:35 +02:00
|
|
|
|
2018-06-23 18:36:11 +02:00
|
|
|
use plume_common::activity_pub::{
|
2018-06-23 14:17:17 +02:00
|
|
|
PUBLIC_VISIBILTY,
|
2018-06-12 21:10:08 +02:00
|
|
|
Id,
|
2018-05-19 09:39:59 +02:00
|
|
|
IntoId,
|
2018-06-20 11:01:25 +02:00
|
|
|
inbox::{FromActivity, Deletable, Notify}
|
2018-05-19 09:39:59 +02:00
|
|
|
};
|
2018-06-23 18:36:11 +02:00
|
|
|
use notifications::*;
|
|
|
|
use posts::Post;
|
|
|
|
use users::User;
|
2018-05-10 17:54:35 +02:00
|
|
|
use schema::likes;
|
|
|
|
|
2018-05-12 22:56:57 +02:00
|
|
|
#[derive(Queryable, Identifiable)]
|
2018-05-10 17:54:35 +02:00
|
|
|
pub struct Like {
|
2018-05-10 18:07:23 +02:00
|
|
|
pub id: i32,
|
|
|
|
pub user_id: i32,
|
|
|
|
pub post_id: i32,
|
2018-05-13 12:44:05 +02:00
|
|
|
pub creation_date: chrono::NaiveDateTime,
|
|
|
|
pub ap_url: String
|
2018-05-10 17:54:35 +02:00
|
|
|
}
|
|
|
|
|
2018-06-22 22:45:37 +02:00
|
|
|
#[derive(Default, Insertable)]
|
2018-05-10 17:54:35 +02:00
|
|
|
#[table_name = "likes"]
|
|
|
|
pub struct NewLike {
|
2018-05-10 18:07:23 +02:00
|
|
|
pub user_id: i32,
|
2018-05-13 12:44:05 +02:00
|
|
|
pub post_id: i32,
|
|
|
|
pub ap_url: String
|
2018-05-10 17:54:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Like {
|
2018-06-18 15:57:38 +02:00
|
|
|
insert!(likes, NewLike);
|
|
|
|
get!(likes);
|
|
|
|
find_by!(likes, find_by_ap_url, ap_url as String);
|
2018-06-18 17:13:09 +02:00
|
|
|
find_by!(likes, find_by_user_on_post, user_id as i32, post_id as i32);
|
2018-05-10 18:07:23 +02:00
|
|
|
|
2018-05-13 12:44:05 +02:00
|
|
|
pub fn update_ap_url(&self, conn: &PgConnection) {
|
|
|
|
if self.ap_url.len() == 0 {
|
|
|
|
diesel::update(self)
|
2018-06-23 14:40:10 +02:00
|
|
|
.set(likes::ap_url.eq(format!(
|
|
|
|
"{}/like/{}",
|
|
|
|
User::get(conn, self.user_id).unwrap().ap_url,
|
|
|
|
Post::get(conn, self.post_id).unwrap().ap_url
|
|
|
|
)))
|
2018-05-13 12:44:05 +02:00
|
|
|
.get_result::<Like>(conn).expect("Couldn't update AP URL");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-19 00:04:30 +02:00
|
|
|
pub fn delete(&self, conn: &PgConnection) -> activity::Undo {
|
2018-05-12 22:56:57 +02:00
|
|
|
diesel::delete(self).execute(conn).unwrap();
|
2018-05-19 00:04:30 +02:00
|
|
|
|
|
|
|
let mut act = activity::Undo::default();
|
2018-06-23 14:19:14 +02:00
|
|
|
act.undo_props.set_actor_link(User::get(conn, self.user_id).unwrap().into_id()).expect("Like::delete: actor error");
|
|
|
|
act.undo_props.set_object_object(self.into_activity(conn)).expect("Like::delete: object error");
|
|
|
|
act.object_props.set_id_string(format!("{}#delete", self.ap_url)).expect("Like::delete: id error");
|
|
|
|
act.object_props.set_to_link(Id::new(PUBLIC_VISIBILTY.to_string())).expect("Like::delete: to error");
|
|
|
|
act.object_props.set_cc_link_vec::<Id>(vec![]).expect("Like::delete: cc error");
|
|
|
|
|
2018-05-19 00:04:30 +02:00
|
|
|
act
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn into_activity(&self, conn: &PgConnection) -> activity::Like {
|
|
|
|
let mut act = activity::Like::default();
|
2018-06-23 14:17:17 +02:00
|
|
|
act.like_props.set_actor_link(User::get(conn, self.user_id).unwrap().into_id()).expect("Like::into_activity: actor error");
|
|
|
|
act.like_props.set_object_link(Post::get(conn, self.post_id).unwrap().into_id()).expect("Like::into_activity: object error");
|
|
|
|
act.object_props.set_to_link(Id::new(PUBLIC_VISIBILTY.to_string())).expect("Like::into_activity: to error");
|
|
|
|
act.object_props.set_cc_link_vec::<Id>(vec![]).expect("Like::into_activity: cc error");
|
2018-06-23 14:40:10 +02:00
|
|
|
act.object_props.set_id_string(self.ap_url.clone()).expect("Like::into_activity: id error");
|
2018-05-19 00:04:30 +02:00
|
|
|
|
|
|
|
act
|
2018-05-12 22:56:57 +02:00
|
|
|
}
|
2018-05-10 17:54:35 +02:00
|
|
|
}
|
2018-05-12 23:34:13 +02:00
|
|
|
|
2018-06-23 18:36:11 +02:00
|
|
|
impl FromActivity<activity::Like, PgConnection> for Like {
|
2018-06-20 23:51:47 +02:00
|
|
|
fn from_activity(conn: &PgConnection, like: activity::Like, _actor: Id) -> Like {
|
2018-06-12 21:10:08 +02:00
|
|
|
let liker = User::from_url(conn, like.like_props.actor.as_str().unwrap().to_string());
|
|
|
|
let post = Post::find_by_ap_url(conn, like.like_props.object.as_str().unwrap().to_string());
|
2018-06-17 21:37:10 +02:00
|
|
|
let res = Like::insert(conn, NewLike {
|
2018-06-12 21:10:08 +02:00
|
|
|
post_id: post.unwrap().id,
|
|
|
|
user_id: liker.unwrap().id,
|
|
|
|
ap_url: like.object_props.id_string().unwrap_or(String::from(""))
|
2018-06-17 21:37:10 +02:00
|
|
|
});
|
2018-06-20 23:51:47 +02:00
|
|
|
res.notify(conn);
|
2018-06-17 21:37:10 +02:00
|
|
|
res
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-23 18:36:11 +02:00
|
|
|
impl Notify<PgConnection> for Like {
|
2018-06-20 23:51:47 +02:00
|
|
|
fn notify(&self, conn: &PgConnection) {
|
|
|
|
let post = Post::get(conn, self.post_id).unwrap();
|
2018-06-17 21:37:10 +02:00
|
|
|
for author in post.get_authors(conn) {
|
|
|
|
Notification::insert(conn, NewNotification {
|
2018-07-26 15:46:10 +02:00
|
|
|
kind: notification_kind::LIKE.to_string(),
|
|
|
|
object_id: self.id,
|
2018-06-17 21:37:10 +02:00
|
|
|
user_id: author.id
|
|
|
|
});
|
|
|
|
}
|
2018-06-12 21:10:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-23 18:36:11 +02:00
|
|
|
impl Deletable<PgConnection> for Like {
|
2018-06-12 21:10:08 +02:00
|
|
|
fn delete_activity(conn: &PgConnection, id: Id) -> bool {
|
|
|
|
if let Some(like) = Like::find_by_ap_url(conn, id.into()) {
|
|
|
|
like.delete(conn);
|
|
|
|
true
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|