mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-05-23 17:58:53 +00:00
60 lines
1.4 KiB
Rust
60 lines
1.4 KiB
Rust
use crate::{
|
|
fetcher::post_or_comment::PostOrComment,
|
|
objects::{community::ApubCommunity, person::ApubPerson},
|
|
protocol::InCommunity,
|
|
};
|
|
use activitypub_federation::{config::Data, fetch::object_id::ObjectId};
|
|
use lemmy_api_common::context::LemmyContext;
|
|
use lemmy_utils::error::{FederationError, LemmyError, LemmyResult};
|
|
use serde::{Deserialize, Serialize};
|
|
use strum::Display;
|
|
use url::Url;
|
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
|
#[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,
|
|
}
|
|
|
|
#[derive(Clone, Debug, Display, Deserialize, Serialize, PartialEq, Eq)]
|
|
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(FederationError::InvalidVoteValue.into()),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl From<&VoteType> for i16 {
|
|
fn from(value: &VoteType) -> i16 {
|
|
match value {
|
|
VoteType::Like => 1,
|
|
VoteType::Dislike => -1,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl InCommunity for Vote {
|
|
async fn community(&self, context: &Data<LemmyContext>) -> LemmyResult<ApubCommunity> {
|
|
let community = self
|
|
.object
|
|
.dereference(context)
|
|
.await?
|
|
.community(context)
|
|
.await?;
|
|
Ok(community)
|
|
}
|
|
}
|