2021-11-19 17:47:06 +00:00
|
|
|
use crate::{
|
|
|
|
fetcher::post_or_comment::PostOrComment,
|
|
|
|
objects::person::ApubPerson,
|
|
|
|
protocol::Unparsed,
|
|
|
|
};
|
2022-06-02 14:33:41 +00:00
|
|
|
use activitypub_federation::{core::object_id::ObjectId, deser::helpers::deserialize_one_or_many};
|
|
|
|
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>,
|
2022-07-29 13:32:12 +00:00
|
|
|
#[serde(deserialize_with = "deserialize_one_or_many", default)]
|
2021-10-29 10:32:42 +00:00
|
|
|
pub(crate) cc: Vec<Url>,
|
|
|
|
#[serde(rename = "type")]
|
|
|
|
pub(crate) kind: VoteType,
|
|
|
|
pub(crate) id: Url,
|
2022-02-17 22:04:01 +00:00
|
|
|
|
2021-10-29 10:32:42 +00:00
|
|
|
#[serde(flatten)]
|
|
|
|
pub(crate) unparsed: Unparsed,
|
|
|
|
}
|
|
|
|
|
2022-03-14 18:20:18 +00:00
|
|
|
#[derive(Clone, Debug, Display, Deserialize, Serialize, PartialEq)]
|
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,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|