2021-10-29 10:32:42 +00:00
|
|
|
use crate::{
|
2021-11-05 00:24:10 +00:00
|
|
|
fetcher::post_or_comment::PostOrComment,
|
2021-10-29 10:32:42 +00:00
|
|
|
objects::{community::ApubCommunity, person::ApubPerson},
|
2021-11-19 17:47:06 +00:00
|
|
|
protocol::Unparsed,
|
2021-10-29 10:32:42 +00:00
|
|
|
};
|
2022-06-02 14:33:41 +00:00
|
|
|
use activitypub_federation::{core::object_id::ObjectId, deser::helpers::deserialize_one};
|
2021-11-19 17:47:06 +00:00
|
|
|
use activitystreams_kinds::activity::FlagType;
|
2021-10-29 10:32:42 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
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 Report {
|
|
|
|
pub(crate) actor: ObjectId<ApubPerson>,
|
2022-06-02 14:33:41 +00:00
|
|
|
#[serde(deserialize_with = "deserialize_one")]
|
|
|
|
pub(crate) to: ObjectId<ApubCommunity>,
|
2021-10-29 10:32:42 +00:00
|
|
|
pub(crate) object: ObjectId<PostOrComment>,
|
|
|
|
pub(crate) summary: String,
|
|
|
|
#[serde(rename = "type")]
|
|
|
|
pub(crate) kind: FlagType,
|
|
|
|
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,
|
|
|
|
}
|