2021-08-02 20:33:40 +00:00
|
|
|
use crate::{
|
|
|
|
activities::{
|
2021-10-06 20:20:05 +00:00
|
|
|
community::{announce::AnnouncableActivities, send_to_community},
|
2021-08-02 20:33:40 +00:00
|
|
|
generate_activity_id,
|
|
|
|
verify_activity,
|
|
|
|
verify_person_in_community,
|
|
|
|
voting::{vote_comment, vote_post},
|
|
|
|
},
|
2021-10-06 20:20:05 +00:00
|
|
|
context::lemmy_context,
|
2021-09-25 15:44:52 +00:00
|
|
|
fetcher::object_id::ObjectId,
|
2021-08-02 20:33:40 +00:00
|
|
|
PostOrComment,
|
|
|
|
};
|
2021-08-19 21:24:33 +00:00
|
|
|
use activitystreams::{base::AnyBase, primitives::OneOrMany, unparsed::Unparsed};
|
2021-08-02 20:33:40 +00:00
|
|
|
use anyhow::anyhow;
|
|
|
|
use lemmy_api_common::blocking;
|
2021-10-06 20:20:05 +00:00
|
|
|
use lemmy_apub_lib::{
|
|
|
|
data::Data,
|
|
|
|
traits::{ActivityFields, ActivityHandler, ActorType},
|
|
|
|
values::PublicUrl,
|
|
|
|
};
|
2021-08-02 20:33:40 +00:00
|
|
|
use lemmy_db_queries::Crud;
|
|
|
|
use lemmy_db_schema::{
|
|
|
|
source::{community::Community, person::Person},
|
|
|
|
CommunityId,
|
|
|
|
};
|
|
|
|
use lemmy_utils::LemmyError;
|
|
|
|
use lemmy_websocket::LemmyContext;
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use std::{convert::TryFrom, ops::Deref};
|
|
|
|
use strum_macros::ToString;
|
|
|
|
use url::Url;
|
|
|
|
|
|
|
|
#[derive(Clone, Debug, ToString, Deserialize, Serialize)]
|
|
|
|
pub enum VoteType {
|
|
|
|
Like,
|
|
|
|
Dislike,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TryFrom<i16> for VoteType {
|
|
|
|
type Error = LemmyError;
|
|
|
|
|
|
|
|
fn try_from(value: i16) -> Result<Self, Self::Error> {
|
|
|
|
match value {
|
|
|
|
1 => Ok(VoteType::Like),
|
|
|
|
-1 => Ok(VoteType::Dislike),
|
|
|
|
_ => Err(anyhow!("invalid vote value").into()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<&VoteType> for i16 {
|
|
|
|
fn from(value: &VoteType) -> i16 {
|
|
|
|
match value {
|
|
|
|
VoteType::Like => 1,
|
|
|
|
VoteType::Dislike => -1,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-19 21:24:33 +00:00
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize, ActivityFields)]
|
2021-08-02 20:33:40 +00:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct Vote {
|
2021-09-25 15:44:52 +00:00
|
|
|
actor: ObjectId<Person>,
|
2021-08-28 01:33:38 +00:00
|
|
|
to: [PublicUrl; 1],
|
2021-09-25 15:44:52 +00:00
|
|
|
pub(in crate::activities::voting) object: ObjectId<PostOrComment>,
|
|
|
|
cc: [ObjectId<Community>; 1],
|
2021-08-02 20:33:40 +00:00
|
|
|
#[serde(rename = "type")]
|
|
|
|
pub(in crate::activities::voting) kind: VoteType,
|
2021-08-19 21:24:33 +00:00
|
|
|
id: Url,
|
|
|
|
#[serde(rename = "@context")]
|
|
|
|
context: OneOrMany<AnyBase>,
|
2021-08-02 20:33:40 +00:00
|
|
|
#[serde(flatten)]
|
2021-08-19 21:24:33 +00:00
|
|
|
unparsed: Unparsed,
|
2021-08-02 20:33:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Vote {
|
2021-08-19 21:24:33 +00:00
|
|
|
pub(in crate::activities::voting) fn new(
|
|
|
|
object: &PostOrComment,
|
|
|
|
actor: &Person,
|
|
|
|
community: &Community,
|
|
|
|
kind: VoteType,
|
2021-09-22 15:57:09 +00:00
|
|
|
context: &LemmyContext,
|
2021-08-19 21:24:33 +00:00
|
|
|
) -> Result<Vote, LemmyError> {
|
|
|
|
Ok(Vote {
|
2021-09-25 15:44:52 +00:00
|
|
|
actor: ObjectId::new(actor.actor_id()),
|
2021-08-28 01:33:38 +00:00
|
|
|
to: [PublicUrl::Public],
|
2021-09-25 15:44:52 +00:00
|
|
|
object: ObjectId::new(object.ap_id()),
|
|
|
|
cc: [ObjectId::new(community.actor_id())],
|
2021-08-19 21:24:33 +00:00
|
|
|
kind: kind.clone(),
|
2021-09-22 15:57:09 +00:00
|
|
|
id: generate_activity_id(kind, &context.settings().get_protocol_and_hostname())?,
|
2021-08-19 21:24:33 +00:00
|
|
|
context: lemmy_context(),
|
|
|
|
unparsed: Default::default(),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-08-02 20:33:40 +00:00
|
|
|
pub async fn send(
|
|
|
|
object: &PostOrComment,
|
|
|
|
actor: &Person,
|
|
|
|
community_id: CommunityId,
|
|
|
|
kind: VoteType,
|
|
|
|
context: &LemmyContext,
|
|
|
|
) -> Result<(), LemmyError> {
|
|
|
|
let community = blocking(context.pool(), move |conn| {
|
|
|
|
Community::read(conn, community_id)
|
|
|
|
})
|
|
|
|
.await??;
|
2021-09-22 15:57:09 +00:00
|
|
|
let vote = Vote::new(object, actor, &community, kind, context)?;
|
2021-08-19 21:24:33 +00:00
|
|
|
let vote_id = vote.id.clone();
|
2021-08-02 20:33:40 +00:00
|
|
|
|
|
|
|
let activity = AnnouncableActivities::Vote(vote);
|
2021-10-06 20:20:05 +00:00
|
|
|
send_to_community(activity, &vote_id, actor, &community, vec![], context).await
|
2021-08-02 20:33:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl ActivityHandler for Vote {
|
2021-10-06 20:20:05 +00:00
|
|
|
type DataType = LemmyContext;
|
2021-08-02 20:33:40 +00:00
|
|
|
async fn verify(
|
|
|
|
&self,
|
2021-10-06 20:20:05 +00:00
|
|
|
context: &Data<LemmyContext>,
|
2021-08-02 20:33:40 +00:00
|
|
|
request_counter: &mut i32,
|
|
|
|
) -> Result<(), LemmyError> {
|
2021-09-22 15:57:09 +00:00
|
|
|
verify_activity(self, &context.settings())?;
|
2021-08-19 21:24:33 +00:00
|
|
|
verify_person_in_community(&self.actor, &self.cc[0], context, request_counter).await?;
|
2021-08-02 20:33:40 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn receive(
|
2021-08-12 12:48:09 +00:00
|
|
|
self,
|
2021-10-06 20:20:05 +00:00
|
|
|
context: &Data<LemmyContext>,
|
2021-08-02 20:33:40 +00:00
|
|
|
request_counter: &mut i32,
|
|
|
|
) -> Result<(), LemmyError> {
|
2021-09-25 15:44:52 +00:00
|
|
|
let actor = self.actor.dereference(context, request_counter).await?;
|
|
|
|
let object = self.object.dereference(context, request_counter).await?;
|
2021-08-02 20:33:40 +00:00
|
|
|
match object {
|
|
|
|
PostOrComment::Post(p) => vote_post(&self.kind, actor, p.deref(), context).await,
|
|
|
|
PostOrComment::Comment(c) => vote_comment(&self.kind, actor, c.deref(), context).await,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|