#[cfg(feature = "alloc")]
#[allow(
unused_imports,
reason = "alloc prelude items; subset used per cfg/feature combination"
)]
use alloc::{borrow::ToOwned, string::ToString, vec, vec::Vec};
use core::marker::PhantomData;
use crate::core::primitives::{Diger, Prefixer, Saider, Seqner, Tholder, Verfer};
use crate::keri::{ConfigTrait, RotationEvent, Seal};
use super::icp::{dummy_saider, majority, validate_threshold};
use crate::serder::error::SerderError;
use crate::serder::serialize::SerializedEvent;
pub struct NeedsPrefix;
pub struct NeedsPriorSaid;
pub struct NeedsKeys;
pub struct Ready;
#[must_use]
pub struct RotationBuilder<State = NeedsPrefix> {
prefix: Option<Prefixer<'static>>,
prior_event_said: Option<Saider<'static>>,
keys: Vec<Verfer<'static>>,
sn: Option<u128>,
threshold: Option<Tholder>,
next_keys: Vec<Diger<'static>>,
next_threshold: Option<Tholder>,
witness_removals: Vec<Prefixer<'static>>,
witness_additions: Vec<Prefixer<'static>>,
witness_threshold: Option<u32>,
config: Vec<ConfigTrait>,
anchors: Vec<Seal>,
_state: PhantomData<State>,
}
impl RotationBuilder<NeedsPrefix> {
pub const fn new() -> Self {
Self {
prefix: None,
prior_event_said: None,
keys: Vec::new(),
sn: None,
threshold: None,
next_keys: Vec::new(),
next_threshold: None,
witness_removals: Vec::new(),
witness_additions: Vec::new(),
witness_threshold: None,
config: Vec::new(),
anchors: Vec::new(),
_state: PhantomData,
}
}
pub fn prefix(self, prefix: Prefixer<'static>) -> RotationBuilder<NeedsPriorSaid> {
RotationBuilder {
prefix: Some(prefix),
prior_event_said: self.prior_event_said,
keys: self.keys,
sn: self.sn,
threshold: self.threshold,
next_keys: self.next_keys,
next_threshold: self.next_threshold,
witness_removals: self.witness_removals,
witness_additions: self.witness_additions,
witness_threshold: self.witness_threshold,
config: self.config,
anchors: self.anchors,
_state: PhantomData,
}
}
}
impl Default for RotationBuilder<NeedsPrefix> {
fn default() -> Self {
Self::new()
}
}
impl RotationBuilder<NeedsPriorSaid> {
pub fn prior_event_said(self, said: Saider<'static>) -> RotationBuilder<NeedsKeys> {
RotationBuilder {
prefix: self.prefix,
prior_event_said: Some(said),
keys: self.keys,
sn: self.sn,
threshold: self.threshold,
next_keys: self.next_keys,
next_threshold: self.next_threshold,
witness_removals: self.witness_removals,
witness_additions: self.witness_additions,
witness_threshold: self.witness_threshold,
config: self.config,
anchors: self.anchors,
_state: PhantomData,
}
}
}
impl RotationBuilder<NeedsKeys> {
pub fn keys(self, keys: Vec<Verfer<'static>>) -> RotationBuilder<Ready> {
RotationBuilder {
prefix: self.prefix,
prior_event_said: self.prior_event_said,
keys,
sn: self.sn,
threshold: self.threshold,
next_keys: self.next_keys,
next_threshold: self.next_threshold,
witness_removals: self.witness_removals,
witness_additions: self.witness_additions,
witness_threshold: self.witness_threshold,
config: self.config,
anchors: self.anchors,
_state: PhantomData,
}
}
}
impl RotationBuilder<Ready> {
pub const fn sn(mut self, sn: u128) -> Self {
self.sn = Some(sn);
self
}
pub fn threshold(mut self, threshold: Tholder) -> Self {
self.threshold = Some(threshold);
self
}
pub fn next_keys(mut self, next_keys: Vec<Diger<'static>>) -> Self {
self.next_keys = next_keys;
self
}
pub fn next_threshold(mut self, next_threshold: Tholder) -> Self {
self.next_threshold = Some(next_threshold);
self
}
pub fn witness_removals(mut self, witness_removals: Vec<Prefixer<'static>>) -> Self {
self.witness_removals = witness_removals;
self
}
pub fn witness_additions(mut self, witness_additions: Vec<Prefixer<'static>>) -> Self {
self.witness_additions = witness_additions;
self
}
pub const fn witness_threshold(mut self, witness_threshold: u32) -> Self {
self.witness_threshold = Some(witness_threshold);
self
}
pub fn config(mut self, config: Vec<ConfigTrait>) -> Self {
self.config = config;
self
}
pub fn anchors(mut self, anchors: Vec<Seal>) -> Self {
self.anchors = anchors;
self
}
pub fn build(self) -> Result<SerializedEvent, SerderError> {
if self.keys.is_empty() {
return Err(SerderError::Validation("keys must not be empty".to_owned()));
}
let sn = self.sn.unwrap_or(1);
if sn == 0 {
return Err(SerderError::Validation(
"rotation sn must be >= 1".to_owned(),
));
}
let threshold = self
.threshold
.unwrap_or_else(|| Tholder::Simple(majority(self.keys.len())));
validate_threshold(&threshold, self.keys.len(), "signing")?;
let next_threshold = self.next_threshold.unwrap_or_else(|| {
if self.next_keys.is_empty() {
Tholder::Simple(0)
} else {
Tholder::Simple(majority(self.next_keys.len()))
}
});
if !self.next_keys.is_empty() {
validate_threshold(&next_threshold, self.next_keys.len(), "next signing")?;
}
let witness_threshold = self.witness_threshold.unwrap_or(0);
let prefix = self
.prefix
.ok_or_else(|| SerderError::Validation("prefix is required".to_owned()))?;
let prior_event_said = self
.prior_event_said
.ok_or_else(|| SerderError::Validation("prior_event_said is required".to_owned()))?;
let event = RotationEvent::new(
prefix.into(),
Seqner::new(sn),
dummy_saider()?,
prior_event_said,
self.keys,
threshold,
self.next_keys,
next_threshold,
self.witness_additions,
self.witness_removals,
witness_threshold,
self.config,
self.anchors,
);
crate::serder::serialize::rot::serialize_rotation(&event)
}
}
#[cfg(test)]
#[allow(clippy::panic, reason = "panics are expected in test assertions")]
mod tests {
use alloc::borrow::Cow;
use crate::core::matter::builder::MatterBuilder;
use crate::core::matter::code::{DigestCode, VerKeyCode};
use crate::core::primitives::{Diger, Prefixer, Saider, Verfer};
use super::*;
fn make_verfer() -> Verfer<'static> {
MatterBuilder::new()
.with_code(VerKeyCode::Ed25519)
.with_raw(Cow::<[u8]>::Owned(vec![1u8; 32]))
.unwrap()
.build()
.unwrap()
}
fn make_diger() -> Diger<'static> {
MatterBuilder::new()
.with_code(DigestCode::Blake3_256)
.with_raw(Cow::<[u8]>::Owned(vec![2u8; 32]))
.unwrap()
.build()
.unwrap()
}
fn make_prefixer() -> Prefixer<'static> {
MatterBuilder::new()
.with_code(VerKeyCode::Ed25519)
.with_raw(Cow::<[u8]>::Owned(vec![3u8; 32]))
.unwrap()
.build()
.unwrap()
}
fn make_saider() -> Saider<'static> {
MatterBuilder::new()
.with_code(DigestCode::Blake3_256)
.with_raw(Cow::<[u8]>::Owned(vec![4u8; 32]))
.unwrap()
.build()
.unwrap()
}
#[test]
fn build_minimal_rotation() {
let result = RotationBuilder::new()
.prefix(make_prefixer())
.prior_event_said(make_saider())
.keys(vec![make_verfer()])
.build()
.unwrap();
assert_eq!(result.ilk(), crate::keri::Ilk::Rot);
let parsed: serde_json::Value = serde_json::from_slice(result.as_bytes()).unwrap();
assert_eq!(parsed["t"].as_str().unwrap(), "rot");
assert_eq!(parsed["s"].as_str().unwrap(), "1");
}
#[test]
fn build_with_all_options() {
let result = RotationBuilder::new()
.prefix(make_prefixer())
.prior_event_said(make_saider())
.keys(vec![make_verfer(), make_verfer()])
.sn(3)
.threshold(Tholder::Simple(1))
.next_keys(vec![make_diger()])
.next_threshold(Tholder::Simple(1))
.witness_additions(vec![make_prefixer()])
.witness_removals(vec![make_prefixer()])
.witness_threshold(1)
.config(vec![])
.anchors(vec![])
.build()
.unwrap();
let parsed: serde_json::Value = serde_json::from_slice(result.as_bytes()).unwrap();
assert_eq!(parsed["t"].as_str().unwrap(), "rot");
assert_eq!(parsed["s"].as_str().unwrap(), "3");
assert_eq!(parsed["kt"].as_str().unwrap(), "1");
}
#[test]
fn threshold_default_majority() {
let result = RotationBuilder::new()
.prefix(make_prefixer())
.prior_event_said(make_saider())
.keys(vec![make_verfer(), make_verfer(), make_verfer()])
.build()
.unwrap();
let parsed: serde_json::Value = serde_json::from_slice(result.as_bytes()).unwrap();
assert_eq!(parsed["kt"].as_str().unwrap(), "2");
}
#[test]
fn roundtrip() {
let serialized = RotationBuilder::new()
.prefix(make_prefixer())
.prior_event_said(make_saider())
.keys(vec![make_verfer()])
.next_keys(vec![make_diger()])
.build()
.unwrap();
let recovered =
crate::serder::deserialize::deserialize_rotation(serialized.as_bytes()).unwrap();
assert_eq!(recovered.sn().value(), 1);
assert_eq!(recovered.keys().len(), 1);
assert_eq!(recovered.next_keys().len(), 1);
}
#[test]
fn sn_zero_rejected() {
let result = RotationBuilder::new()
.prefix(make_prefixer())
.prior_event_said(make_saider())
.keys(vec![make_verfer()])
.sn(0)
.build();
let Err(err) = result else {
panic!("expected error");
};
assert!(err.to_string().contains("sn must be >= 1"));
}
#[test]
fn empty_keys_rejected() {
let result = RotationBuilder::new()
.prefix(make_prefixer())
.prior_event_said(make_saider())
.keys(vec![])
.build();
let Err(err) = result else {
panic!("expected error");
};
assert!(err.to_string().contains("keys must not be empty"));
}
#[test]
fn default_impl() {
let builder = RotationBuilder::default();
let result = builder
.prefix(make_prefixer())
.prior_event_said(make_saider())
.keys(vec![make_verfer()])
.build()
.unwrap();
assert_eq!(result.ilk(), crate::keri::Ilk::Rot);
}
}