2020-01-21 07:02:03 +01:00
|
|
|
use crate::{
|
2021-11-24 14:50:16 +01:00
|
|
|
db_conn::DbConn, instance::Instance, notifications::*, posts::Post, schema::likes, timeline::*,
|
|
|
|
users::User, Connection, Error, Result, CONFIG,
|
2020-01-21 07:02:03 +01:00
|
|
|
};
|
2018-06-10 13:13:07 +02:00
|
|
|
use activitypub::activity;
|
2018-09-26 17:22:42 +02:00
|
|
|
use chrono::NaiveDateTime;
|
2018-11-24 12:44:17 +01:00
|
|
|
use diesel::{self, ExpressionMethods, QueryDsl, RunQueryDsl};
|
2018-06-23 18:36:11 +02:00
|
|
|
use plume_common::activity_pub::{
|
2019-05-04 17:15:41 +02:00
|
|
|
inbox::{AsActor, AsObject, FromId},
|
2021-11-24 14:50:16 +01:00
|
|
|
sign::Signer,
|
2019-04-17 19:31:47 +02:00
|
|
|
Id, IntoId, PUBLIC_VISIBILITY,
|
2018-05-19 09:39:59 +02:00
|
|
|
};
|
2018-05-10 17:54:35 +02:00
|
|
|
|
2018-09-27 23:06:40 +02:00
|
|
|
#[derive(Clone, 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-09-26 17:22:42 +02:00
|
|
|
pub creation_date: NaiveDateTime,
|
2018-11-24 12:44:17 +01:00
|
|
|
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,
|
2018-11-24 12:44:17 +01:00
|
|
|
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);
|
2018-11-26 10:21:52 +01:00
|
|
|
find_by!(likes, find_by_ap_url, ap_url as &str);
|
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-12-29 09:36:07 +01:00
|
|
|
pub fn to_activity(&self, conn: &Connection) -> Result<activity::Like> {
|
2018-05-19 00:04:30 +02:00
|
|
|
let mut act = activity::Like::default();
|
2018-11-24 12:44:17 +01:00
|
|
|
act.like_props
|
2019-03-20 17:56:17 +01:00
|
|
|
.set_actor_link(User::get(conn, self.user_id)?.into_id())?;
|
2018-11-24 12:44:17 +01:00
|
|
|
act.like_props
|
2019-03-20 17:56:17 +01:00
|
|
|
.set_object_link(Post::get(conn, self.post_id)?.into_id())?;
|
2018-11-24 12:44:17 +01:00
|
|
|
act.object_props
|
2019-04-17 19:31:47 +02:00
|
|
|
.set_to_link_vec(vec![Id::new(PUBLIC_VISIBILITY.to_string())])?;
|
|
|
|
act.object_props.set_cc_link_vec(vec![Id::new(
|
|
|
|
User::get(conn, self.user_id)?.followers_endpoint,
|
|
|
|
)])?;
|
2019-03-20 17:56:17 +01:00
|
|
|
act.object_props.set_id_string(self.ap_url.clone())?;
|
2018-05-19 00:04:30 +02:00
|
|
|
|
2018-12-29 09:36:07 +01:00
|
|
|
Ok(act)
|
2018-05-12 22:56:57 +02:00
|
|
|
}
|
2018-06-17 21:37:10 +02:00
|
|
|
|
2019-04-17 19:31:47 +02:00
|
|
|
pub fn notify(&self, conn: &Connection) -> Result<()> {
|
2018-12-29 09:36:07 +01:00
|
|
|
let post = Post::get(conn, self.post_id)?;
|
|
|
|
for author in post.get_authors(conn)? {
|
2019-05-04 17:15:41 +02:00
|
|
|
if author.is_local() {
|
|
|
|
Notification::insert(
|
|
|
|
conn,
|
|
|
|
NewNotification {
|
|
|
|
kind: notification_kind::LIKE.to_string(),
|
|
|
|
object_id: self.id,
|
|
|
|
user_id: author.id,
|
|
|
|
},
|
|
|
|
)?;
|
|
|
|
}
|
2018-06-17 21:37:10 +02:00
|
|
|
}
|
2018-12-29 09:36:07 +01:00
|
|
|
Ok(())
|
2018-06-12 21:10:08 +02:00
|
|
|
}
|
2018-09-08 00:29:50 +02:00
|
|
|
|
2019-04-17 19:31:47 +02:00
|
|
|
pub fn build_undo(&self, conn: &Connection) -> Result<activity::Undo> {
|
2018-09-01 17:28:47 +02:00
|
|
|
let mut act = activity::Undo::default();
|
2018-11-24 12:44:17 +01:00
|
|
|
act.undo_props
|
2019-03-20 17:56:17 +01:00
|
|
|
.set_actor_link(User::get(conn, self.user_id)?.into_id())?;
|
|
|
|
act.undo_props.set_object_object(self.to_activity(conn)?)?;
|
2018-11-24 12:44:17 +01:00
|
|
|
act.object_props
|
2018-12-29 09:36:07 +01:00
|
|
|
.set_id_string(format!("{}#delete", self.ap_url))?;
|
2018-11-24 12:44:17 +01:00
|
|
|
act.object_props
|
2019-04-17 19:31:47 +02:00
|
|
|
.set_to_link_vec(vec![Id::new(PUBLIC_VISIBILITY.to_string())])?;
|
|
|
|
act.object_props.set_cc_link_vec(vec![Id::new(
|
|
|
|
User::get(conn, self.user_id)?.followers_endpoint,
|
|
|
|
)])?;
|
2018-09-01 17:28:47 +02:00
|
|
|
|
2018-12-29 09:36:07 +01:00
|
|
|
Ok(act)
|
2018-09-01 17:28:47 +02:00
|
|
|
}
|
2019-04-17 19:31:47 +02:00
|
|
|
}
|
|
|
|
|
2021-01-30 11:24:16 +01:00
|
|
|
impl AsObject<User, activity::Like, &DbConn> for Post {
|
2019-04-17 19:31:47 +02:00
|
|
|
type Error = Error;
|
|
|
|
type Output = Like;
|
2018-09-08 00:29:50 +02:00
|
|
|
|
2021-01-30 11:24:16 +01:00
|
|
|
fn activity(self, conn: &DbConn, actor: User, id: &str) -> Result<Like> {
|
2019-04-17 19:31:47 +02:00
|
|
|
let res = Like::insert(
|
2021-01-30 11:24:16 +01:00
|
|
|
conn,
|
2019-04-17 19:31:47 +02:00
|
|
|
NewLike {
|
|
|
|
post_id: self.id,
|
|
|
|
user_id: actor.id,
|
|
|
|
ap_url: id.to_string(),
|
|
|
|
},
|
|
|
|
)?;
|
2021-01-30 11:24:16 +01:00
|
|
|
res.notify(conn)?;
|
2019-10-07 19:08:20 +02:00
|
|
|
|
2021-01-30 11:24:16 +01:00
|
|
|
Timeline::add_to_all_timelines(conn, &self, Kind::Like(&actor))?;
|
2019-04-17 19:31:47 +02:00
|
|
|
Ok(res)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-30 11:24:16 +01:00
|
|
|
impl FromId<DbConn> for Like {
|
2019-04-17 19:31:47 +02:00
|
|
|
type Error = Error;
|
|
|
|
type Object = activity::Like;
|
|
|
|
|
2021-01-30 11:24:16 +01:00
|
|
|
fn from_db(conn: &DbConn, id: &str) -> Result<Self> {
|
|
|
|
Like::find_by_ap_url(conn, id)
|
2019-04-17 19:31:47 +02:00
|
|
|
}
|
|
|
|
|
2021-01-30 11:24:16 +01:00
|
|
|
fn from_activity(conn: &DbConn, act: activity::Like) -> Result<Self> {
|
2019-04-17 19:31:47 +02:00
|
|
|
let res = Like::insert(
|
2021-01-30 11:24:16 +01:00
|
|
|
conn,
|
2019-04-17 19:31:47 +02:00
|
|
|
NewLike {
|
2021-01-11 21:27:52 +01:00
|
|
|
post_id: Post::from_id(
|
2021-01-30 11:24:16 +01:00
|
|
|
conn,
|
2021-01-11 21:27:52 +01:00
|
|
|
&act.like_props.object_link::<Id>()?,
|
|
|
|
None,
|
|
|
|
CONFIG.proxy(),
|
|
|
|
)
|
|
|
|
.map_err(|(_, e)| e)?
|
|
|
|
.id,
|
|
|
|
user_id: User::from_id(
|
2021-01-30 11:24:16 +01:00
|
|
|
conn,
|
2021-01-11 21:27:52 +01:00
|
|
|
&act.like_props.actor_link::<Id>()?,
|
|
|
|
None,
|
|
|
|
CONFIG.proxy(),
|
|
|
|
)
|
|
|
|
.map_err(|(_, e)| e)?
|
|
|
|
.id,
|
2019-04-17 19:31:47 +02:00
|
|
|
ap_url: act.object_props.id_string()?,
|
|
|
|
},
|
|
|
|
)?;
|
2021-01-30 11:24:16 +01:00
|
|
|
res.notify(conn)?;
|
2019-04-17 19:31:47 +02:00
|
|
|
Ok(res)
|
|
|
|
}
|
2021-11-24 14:50:16 +01:00
|
|
|
|
|
|
|
fn get_sender() -> &'static dyn Signer {
|
|
|
|
Instance::get_local_instance_user().expect("Failed to local instance user")
|
|
|
|
}
|
2019-04-17 19:31:47 +02:00
|
|
|
}
|
|
|
|
|
2021-01-30 11:24:16 +01:00
|
|
|
impl AsObject<User, activity::Undo, &DbConn> for Like {
|
2019-04-17 19:31:47 +02:00
|
|
|
type Error = Error;
|
|
|
|
type Output = ();
|
|
|
|
|
2021-01-30 11:24:16 +01:00
|
|
|
fn activity(self, conn: &DbConn, actor: User, _id: &str) -> Result<()> {
|
2019-04-17 19:31:47 +02:00
|
|
|
if actor.id == self.user_id {
|
2021-01-30 11:24:16 +01:00
|
|
|
diesel::delete(&self).execute(&**conn)?;
|
2019-04-17 19:31:47 +02:00
|
|
|
|
|
|
|
// delete associated notification if any
|
2021-11-27 23:53:13 +01:00
|
|
|
if let Ok(notif) = Notification::find(conn, notification_kind::LIKE, self.id) {
|
2021-01-30 11:24:16 +01:00
|
|
|
diesel::delete(¬if).execute(&**conn)?;
|
2019-04-17 19:31:47 +02:00
|
|
|
}
|
|
|
|
Ok(())
|
2018-12-29 09:36:07 +01:00
|
|
|
} else {
|
|
|
|
Err(Error::Unauthorized)
|
2018-06-12 21:10:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-12-23 11:13:02 +01:00
|
|
|
|
|
|
|
impl NewLike {
|
|
|
|
pub fn new(p: &Post, u: &User) -> Self {
|
2019-04-17 19:31:47 +02:00
|
|
|
// TODO: this URL is not valid
|
2018-12-23 11:13:02 +01:00
|
|
|
let ap_url = format!("{}/like/{}", u.ap_url, p.ap_url);
|
|
|
|
NewLike {
|
|
|
|
post_id: p.id,
|
|
|
|
user_id: u.id,
|
2019-03-20 17:56:17 +01:00
|
|
|
ap_url,
|
2018-12-23 11:13:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|