2022-12-01 20:52:49 +00:00
|
|
|
use crate::{
|
|
|
|
activities::verify_community_matches,
|
|
|
|
fetcher::post_or_comment::PostOrComment,
|
|
|
|
local_instance,
|
|
|
|
objects::{community::ApubCommunity, person::ApubPerson},
|
|
|
|
protocol::InCommunity,
|
|
|
|
};
|
2022-10-18 03:13:18 +00:00
|
|
|
use activitypub_federation::core::object_id::ObjectId;
|
2022-11-28 14:29:33 +00:00
|
|
|
use lemmy_api_common::context::LemmyContext;
|
2022-06-02 14:33:41 +00:00
|
|
|
use lemmy_utils::error::LemmyError;
|
2021-10-29 10:32:42 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use std::convert::TryFrom;
|
2021-12-14 13:30:37 +00:00
|
|
|
use strum_macros::Display;
|
2021-10-29 10:32:42 +00:00
|
|
|
use url::Url;
|
|
|
|
|
2021-11-03 17:33:51 +00:00
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
2021-10-29 10:32:42 +00:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct Vote {
|
|
|
|
pub(crate) actor: ObjectId<ApubPerson>,
|
|
|
|
pub(crate) object: ObjectId<PostOrComment>,
|
|
|
|
#[serde(rename = "type")]
|
|
|
|
pub(crate) kind: VoteType,
|
|
|
|
pub(crate) id: Url,
|
2022-12-01 20:52:49 +00:00
|
|
|
pub(crate) audience: Option<ObjectId<ApubCommunity>>,
|
2021-10-29 10:32:42 +00:00
|
|
|
}
|
|
|
|
|
2022-09-26 14:09:32 +00:00
|
|
|
#[derive(Clone, Debug, Display, Deserialize, Serialize, PartialEq, Eq)]
|
2021-10-29 10:32:42 +00:00
|
|
|
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),
|
2021-12-06 14:54:47 +00:00
|
|
|
_ => Err(LemmyError::from_message("invalid vote value")),
|
2021-10-29 10:32:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<&VoteType> for i16 {
|
|
|
|
fn from(value: &VoteType) -> i16 {
|
|
|
|
match value {
|
|
|
|
VoteType::Like => 1,
|
|
|
|
VoteType::Dislike => -1,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-12-01 20:52:49 +00:00
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl InCommunity for Vote {
|
|
|
|
async fn community(
|
|
|
|
&self,
|
|
|
|
context: &LemmyContext,
|
|
|
|
request_counter: &mut i32,
|
|
|
|
) -> Result<ApubCommunity, LemmyError> {
|
|
|
|
let local_instance = local_instance(context).await;
|
2023-02-18 14:50:28 +00:00
|
|
|
let community = self
|
2022-12-01 20:52:49 +00:00
|
|
|
.object
|
|
|
|
.dereference(context, local_instance, request_counter)
|
|
|
|
.await?
|
|
|
|
.community(context, request_counter)
|
|
|
|
.await?;
|
|
|
|
if let Some(audience) = &self.audience {
|
2023-02-18 14:50:28 +00:00
|
|
|
verify_community_matches(audience, community.actor_id.clone())?;
|
2022-12-01 20:52:49 +00:00
|
|
|
}
|
2023-02-18 14:50:28 +00:00
|
|
|
Ok(community)
|
2022-12-01 20:52:49 +00:00
|
|
|
}
|
|
|
|
}
|