2020-12-08 17:38:48 +00:00
|
|
|
use crate::{activities::receive::get_actor_as_user, objects::FromApub, ActorType, PageExt};
|
2020-10-21 17:37:50 +00:00
|
|
|
use activitystreams::{
|
2020-10-28 16:14:18 +00:00
|
|
|
activity::{Create, Dislike, Like, Remove, Update},
|
2020-10-21 17:37:50 +00:00
|
|
|
prelude::*,
|
|
|
|
};
|
|
|
|
use anyhow::Context;
|
|
|
|
use lemmy_db::{
|
2020-12-08 17:38:48 +00:00
|
|
|
post::{Post, PostLike, PostLikeForm},
|
2020-10-21 17:37:50 +00:00
|
|
|
post_view::PostView,
|
|
|
|
Likeable,
|
|
|
|
};
|
|
|
|
use lemmy_structs::{blocking, post::PostResponse};
|
|
|
|
use lemmy_utils::{location_info, LemmyError};
|
|
|
|
use lemmy_websocket::{messages::SendPost, LemmyContext, UserOperation};
|
|
|
|
|
|
|
|
pub(crate) async fn receive_create_post(
|
|
|
|
create: Create,
|
|
|
|
context: &LemmyContext,
|
2020-10-22 18:27:32 +00:00
|
|
|
request_counter: &mut i32,
|
2020-10-28 16:14:18 +00:00
|
|
|
) -> Result<(), LemmyError> {
|
2020-10-22 18:27:32 +00:00
|
|
|
let user = get_actor_as_user(&create, context, request_counter).await?;
|
2020-10-21 17:37:50 +00:00
|
|
|
let page = PageExt::from_any_base(create.object().to_owned().one().context(location_info!())?)?
|
|
|
|
.context(location_info!())?;
|
|
|
|
|
2020-12-08 17:38:48 +00:00
|
|
|
let post = Post::from_apub(&page, context, user.actor_id()?, request_counter).await?;
|
2020-10-21 17:37:50 +00:00
|
|
|
|
|
|
|
// Refetch the view
|
2020-12-08 17:38:48 +00:00
|
|
|
let post_id = post.id;
|
2020-10-21 17:37:50 +00:00
|
|
|
let post_view = blocking(context.pool(), move |conn| {
|
2020-12-08 17:38:48 +00:00
|
|
|
PostView::read(conn, post_id, None)
|
2020-10-21 17:37:50 +00:00
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
let res = PostResponse { post: post_view };
|
|
|
|
|
|
|
|
context.chat_server().do_send(SendPost {
|
|
|
|
op: UserOperation::CreatePost,
|
|
|
|
post: res,
|
|
|
|
websocket_id: None,
|
|
|
|
});
|
|
|
|
|
2020-10-28 16:14:18 +00:00
|
|
|
Ok(())
|
2020-10-21 17:37:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) async fn receive_update_post(
|
|
|
|
update: Update,
|
|
|
|
context: &LemmyContext,
|
2020-10-22 18:27:32 +00:00
|
|
|
request_counter: &mut i32,
|
2020-10-28 16:14:18 +00:00
|
|
|
) -> Result<(), LemmyError> {
|
2020-10-22 18:27:32 +00:00
|
|
|
let user = get_actor_as_user(&update, context, request_counter).await?;
|
2020-10-21 17:37:50 +00:00
|
|
|
let page = PageExt::from_any_base(update.object().to_owned().one().context(location_info!())?)?
|
|
|
|
.context(location_info!())?;
|
|
|
|
|
2020-12-08 17:38:48 +00:00
|
|
|
let post = Post::from_apub(&page, context, user.actor_id()?, request_counter).await?;
|
2020-10-21 17:37:50 +00:00
|
|
|
|
2020-12-08 17:38:48 +00:00
|
|
|
let post_id = post.id;
|
2020-10-21 17:37:50 +00:00
|
|
|
// Refetch the view
|
|
|
|
let post_view = blocking(context.pool(), move |conn| {
|
2020-12-08 17:38:48 +00:00
|
|
|
PostView::read(conn, post_id, None)
|
2020-10-21 17:37:50 +00:00
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
let res = PostResponse { post: post_view };
|
|
|
|
|
|
|
|
context.chat_server().do_send(SendPost {
|
|
|
|
op: UserOperation::EditPost,
|
|
|
|
post: res,
|
|
|
|
websocket_id: None,
|
|
|
|
});
|
|
|
|
|
2020-10-28 16:14:18 +00:00
|
|
|
Ok(())
|
2020-10-21 17:37:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) async fn receive_like_post(
|
|
|
|
like: Like,
|
2020-12-08 17:38:48 +00:00
|
|
|
post: Post,
|
2020-10-21 17:37:50 +00:00
|
|
|
context: &LemmyContext,
|
2020-10-22 18:27:32 +00:00
|
|
|
request_counter: &mut i32,
|
2020-10-28 16:14:18 +00:00
|
|
|
) -> Result<(), LemmyError> {
|
2020-10-22 18:27:32 +00:00
|
|
|
let user = get_actor_as_user(&like, context, request_counter).await?;
|
2020-10-21 17:37:50 +00:00
|
|
|
|
2020-12-08 17:38:48 +00:00
|
|
|
let post_id = post.id;
|
2020-10-21 17:37:50 +00:00
|
|
|
let like_form = PostLikeForm {
|
|
|
|
post_id,
|
|
|
|
user_id: user.id,
|
|
|
|
score: 1,
|
|
|
|
};
|
|
|
|
let user_id = user.id;
|
|
|
|
blocking(context.pool(), move |conn| {
|
|
|
|
PostLike::remove(conn, user_id, post_id)?;
|
|
|
|
PostLike::like(conn, &like_form)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
// Refetch the view
|
|
|
|
let post_view = blocking(context.pool(), move |conn| {
|
|
|
|
PostView::read(conn, post_id, None)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
let res = PostResponse { post: post_view };
|
|
|
|
|
|
|
|
context.chat_server().do_send(SendPost {
|
|
|
|
op: UserOperation::CreatePostLike,
|
|
|
|
post: res,
|
|
|
|
websocket_id: None,
|
|
|
|
});
|
|
|
|
|
2020-10-28 16:14:18 +00:00
|
|
|
Ok(())
|
2020-10-21 17:37:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) async fn receive_dislike_post(
|
|
|
|
dislike: Dislike,
|
2020-12-08 17:38:48 +00:00
|
|
|
post: Post,
|
2020-10-21 17:37:50 +00:00
|
|
|
context: &LemmyContext,
|
2020-10-22 18:27:32 +00:00
|
|
|
request_counter: &mut i32,
|
2020-10-28 16:14:18 +00:00
|
|
|
) -> Result<(), LemmyError> {
|
2020-10-22 18:27:32 +00:00
|
|
|
let user = get_actor_as_user(&dislike, context, request_counter).await?;
|
2020-10-21 17:37:50 +00:00
|
|
|
|
2020-12-08 17:38:48 +00:00
|
|
|
let post_id = post.id;
|
2020-10-21 17:37:50 +00:00
|
|
|
let like_form = PostLikeForm {
|
|
|
|
post_id,
|
|
|
|
user_id: user.id,
|
|
|
|
score: -1,
|
|
|
|
};
|
|
|
|
let user_id = user.id;
|
|
|
|
blocking(context.pool(), move |conn| {
|
|
|
|
PostLike::remove(conn, user_id, post_id)?;
|
|
|
|
PostLike::like(conn, &like_form)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
// Refetch the view
|
|
|
|
let post_view = blocking(context.pool(), move |conn| {
|
|
|
|
PostView::read(conn, post_id, None)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
let res = PostResponse { post: post_view };
|
|
|
|
|
|
|
|
context.chat_server().do_send(SendPost {
|
|
|
|
op: UserOperation::CreatePostLike,
|
|
|
|
post: res,
|
|
|
|
websocket_id: None,
|
|
|
|
});
|
|
|
|
|
2020-10-28 16:14:18 +00:00
|
|
|
Ok(())
|
2020-10-21 17:37:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) async fn receive_delete_post(
|
|
|
|
context: &LemmyContext,
|
|
|
|
post: Post,
|
2020-10-28 16:14:18 +00:00
|
|
|
) -> Result<(), LemmyError> {
|
2020-10-21 17:37:50 +00:00
|
|
|
let deleted_post = blocking(context.pool(), move |conn| {
|
|
|
|
Post::update_deleted(conn, post.id, true)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
// Refetch the view
|
|
|
|
let post_id = deleted_post.id;
|
|
|
|
let post_view = blocking(context.pool(), move |conn| {
|
|
|
|
PostView::read(conn, post_id, None)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
let res = PostResponse { post: post_view };
|
|
|
|
context.chat_server().do_send(SendPost {
|
|
|
|
op: UserOperation::EditPost,
|
|
|
|
post: res,
|
|
|
|
websocket_id: None,
|
|
|
|
});
|
|
|
|
|
2020-10-28 16:14:18 +00:00
|
|
|
Ok(())
|
2020-10-21 17:37:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) async fn receive_remove_post(
|
|
|
|
context: &LemmyContext,
|
|
|
|
_remove: Remove,
|
|
|
|
post: Post,
|
2020-10-28 16:14:18 +00:00
|
|
|
) -> Result<(), LemmyError> {
|
2020-10-21 17:37:50 +00:00
|
|
|
let removed_post = blocking(context.pool(), move |conn| {
|
|
|
|
Post::update_removed(conn, post.id, true)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
// Refetch the view
|
|
|
|
let post_id = removed_post.id;
|
|
|
|
let post_view = blocking(context.pool(), move |conn| {
|
|
|
|
PostView::read(conn, post_id, None)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
let res = PostResponse { post: post_view };
|
|
|
|
context.chat_server().do_send(SendPost {
|
|
|
|
op: UserOperation::EditPost,
|
|
|
|
post: res,
|
|
|
|
websocket_id: None,
|
|
|
|
});
|
|
|
|
|
2020-10-28 16:14:18 +00:00
|
|
|
Ok(())
|
2020-10-21 17:37:50 +00:00
|
|
|
}
|