forked from alemi/upub
fix(apb): add setters/getters for all fields
This commit is contained in:
parent
05bce0c486
commit
a1d1ba3744
2 changed files with 16 additions and 1 deletions
|
@ -26,7 +26,7 @@ reqwest = { version = "0.12", features = ["json"], optional = true }
|
||||||
[features]
|
[features]
|
||||||
default = ["activitypub-miscellaneous-terms"]
|
default = ["activitypub-miscellaneous-terms"]
|
||||||
# extensions
|
# extensions
|
||||||
activitypub-miscellaneous-terms = []
|
activitypub-miscellaneous-terms = [] # https://swicg.github.io/miscellany/
|
||||||
activitypub-counters = [] # https://ns.alemi.dev/as/counters/#
|
activitypub-counters = [] # https://ns.alemi.dev/as/counters/#
|
||||||
# builtin utils
|
# builtin utils
|
||||||
orm = ["dep:sea-orm"]
|
orm = ["dep:sea-orm"]
|
||||||
|
|
|
@ -52,6 +52,12 @@ pub trait ActorMut : ObjectMut {
|
||||||
fn set_streams(self, val: Node<Self::Collection>) -> Self;
|
fn set_streams(self, val: Node<Self::Collection>) -> Self;
|
||||||
fn set_endpoints(self, val: Node<Self::Object>) -> Self; // TODO it's more complex than this!
|
fn set_endpoints(self, val: Node<Self::Object>) -> Self; // TODO it's more complex than this!
|
||||||
fn set_public_key(self, val: Node<Self::PublicKey>) -> Self;
|
fn set_public_key(self, val: Node<Self::PublicKey>) -> Self;
|
||||||
|
|
||||||
|
#[cfg(feature = "activitypub-miscellaneous-terms")]
|
||||||
|
fn set_moved_to(self, val: Node<Self::Actor>) -> Self;
|
||||||
|
#[cfg(feature = "activitypub-miscellaneous-terms")]
|
||||||
|
fn set_manually_approves_followers(self, val: Option<bool>) -> Self;
|
||||||
|
|
||||||
#[cfg(feature = "activitypub-fe")]
|
#[cfg(feature = "activitypub-fe")]
|
||||||
fn set_following_me(self, val: Option<bool>) -> Self;
|
fn set_following_me(self, val: Option<bool>) -> Self;
|
||||||
#[cfg(feature = "activitypub-fe")]
|
#[cfg(feature = "activitypub-fe")]
|
||||||
|
@ -74,6 +80,11 @@ impl Actor for serde_json::Value {
|
||||||
crate::getter! { streams -> node Self::Collection }
|
crate::getter! { streams -> node Self::Collection }
|
||||||
crate::getter! { public_key::publicKey -> node Self::PublicKey }
|
crate::getter! { public_key::publicKey -> node Self::PublicKey }
|
||||||
|
|
||||||
|
#[cfg(feature = "activitypub-miscellaneous-terms")]
|
||||||
|
crate::getter! { moved_to::movedTo -> node Self::Actor }
|
||||||
|
#[cfg(feature = "activitypub-miscellaneous-terms")]
|
||||||
|
crate::getter! { manually_approves_followers::manuallyApprovedFollowers -> bool }
|
||||||
|
|
||||||
#[cfg(feature = "activitypub-fe")]
|
#[cfg(feature = "activitypub-fe")]
|
||||||
crate::getter! { following_me::followingMe -> bool }
|
crate::getter! { following_me::followingMe -> bool }
|
||||||
#[cfg(feature = "activitypub-fe")]
|
#[cfg(feature = "activitypub-fe")]
|
||||||
|
@ -101,6 +112,10 @@ impl ActorMut for serde_json::Value {
|
||||||
crate::setter! { public_key::publicKey -> node Self::PublicKey }
|
crate::setter! { public_key::publicKey -> node Self::PublicKey }
|
||||||
crate::setter! { discoverable -> bool }
|
crate::setter! { discoverable -> bool }
|
||||||
|
|
||||||
|
#[cfg(feature = "activitypub-miscellaneous-terms")]
|
||||||
|
crate::setter! { moved_to::movedTo -> node Self::Actor }
|
||||||
|
#[cfg(feature = "activitypub-miscellaneous-terms")]
|
||||||
|
crate::setter! { manually_approves_followers::manuallyApprovedFollowers -> bool }
|
||||||
|
|
||||||
#[cfg(feature = "activitypub-fe")]
|
#[cfg(feature = "activitypub-fe")]
|
||||||
crate::setter! { following_me::followingMe -> bool }
|
crate::setter! { following_me::followingMe -> bool }
|
||||||
|
|
Loading…
Reference in a new issue