Create activitypub::collections module

This commit is contained in:
silverpill 2021-12-23 00:32:00 +00:00
parent 2703ab717a
commit de15a57148
5 changed files with 33 additions and 23 deletions

View file

@ -442,28 +442,6 @@ pub fn create_activity_update_person(
Ok(activity)
}
#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
pub struct OrderedCollection {
#[serde(rename = "@context")]
pub context: Value,
pub id: String,
#[serde(rename = "type")]
pub object_type: String,
}
impl OrderedCollection {
pub fn new(collection_url: String) -> Self {
Self {
context: json!(AP_CONTEXT),
id: collection_url,
object_type: "OrderedCollection".to_string(),
}
}
}
#[cfg(test)]
mod tests {
use super::*;

View file

@ -0,0 +1,27 @@
use serde::Serialize;
use serde_json::{json, Value};
use super::constants::AP_CONTEXT;
use super::vocabulary::ORDERED_COLLECTION;
#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
pub struct OrderedCollection {
#[serde(rename = "@context")]
pub context: Value,
pub id: String,
#[serde(rename = "type")]
pub object_type: String,
}
impl OrderedCollection {
pub fn new(collection_id: String) -> Self {
Self {
context: json!(AP_CONTEXT),
id: collection_id,
object_type: ORDERED_COLLECTION.to_string(),
}
}
}

View file

@ -1,5 +1,6 @@
pub mod activity;
pub mod actor;
mod collections;
pub mod constants;
pub mod deliverer;
pub mod fetcher;

View file

@ -12,8 +12,9 @@ use crate::frontend::{get_post_page_url, get_profile_page_url};
use crate::http_signatures::verify::verify_http_signature;
use crate::models::posts::queries::get_thread;
use crate::models::users::queries::get_user_by_name;
use super::activity::{create_note, OrderedCollection};
use super::activity::create_note;
use super::actor::{get_local_actor, get_instance_actor};
use super::collections::OrderedCollection;
use super::constants::ACTIVITY_CONTENT_TYPE;
use super::receiver::receive_activity;
use super::vocabulary::DELETE;

View file

@ -23,6 +23,9 @@ pub const MENTION: &str = "Mention";
pub const NOTE: &str = "Note";
pub const TOMBSTONE: &str = "Tombstone";
// Collections
pub const ORDERED_COLLECTION: &str = "OrderedCollection";
// Misc
pub const HASHTAG: &str = "Hashtag";
pub const PROPERTY_VALUE: &str = "PropertyValue";