#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ServerDefsInviteCode {
pub available: i64,
pub code: String,
pub created_at: crate::syntax::Datetime,
pub created_by: String,
pub disabled: bool,
pub for_account: String,
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub uses: Vec<ServerDefsInviteCodeUse>,
#[serde(flatten)]
pub extra: std::collections::HashMap<String, serde_json::Value>,
#[serde(skip)]
pub extra_cbor: Vec<(String, Vec<u8>)>,
}
impl ServerDefsInviteCode {
pub fn to_cbor(&self) -> Result<Vec<u8>, crate::cbor::CborError> {
let mut buf = Vec::new();
self.encode_cbor(&mut buf)?;
Ok(buf)
}
pub fn encode_cbor(&self, buf: &mut Vec<u8>) -> Result<(), crate::cbor::CborError> {
if self.extra_cbor.is_empty() {
let count = 7u64;
crate::cbor::Encoder::new(&mut *buf).encode_map_header(count)?;
crate::cbor::Encoder::new(&mut *buf).encode_text("code")?;
crate::cbor::Encoder::new(&mut *buf).encode_text(&self.code)?;
crate::cbor::Encoder::new(&mut *buf).encode_text("uses")?;
crate::cbor::Encoder::new(&mut *buf).encode_array_header(self.uses.len() as u64)?;
for item in &self.uses {
item.encode_cbor(buf)?;
}
crate::cbor::Encoder::new(&mut *buf).encode_text("disabled")?;
crate::cbor::Encoder::new(&mut *buf).encode_bool(self.disabled)?;
crate::cbor::Encoder::new(&mut *buf).encode_text("available")?;
crate::cbor::Encoder::new(&mut *buf).encode_i64(self.available)?;
crate::cbor::Encoder::new(&mut *buf).encode_text("createdAt")?;
crate::cbor::Encoder::new(&mut *buf).encode_text(self.created_at.as_str())?;
crate::cbor::Encoder::new(&mut *buf).encode_text("createdBy")?;
crate::cbor::Encoder::new(&mut *buf).encode_text(&self.created_by)?;
crate::cbor::Encoder::new(&mut *buf).encode_text("forAccount")?;
crate::cbor::Encoder::new(&mut *buf).encode_text(&self.for_account)?;
} else {
let mut pairs: Vec<(&str, Vec<u8>)> = Vec::new();
{
let mut vbuf = Vec::new();
crate::cbor::Encoder::new(&mut vbuf).encode_text(&self.code)?;
pairs.push(("code", vbuf));
}
{
let mut vbuf = Vec::new();
crate::cbor::Encoder::new(&mut vbuf).encode_array_header(self.uses.len() as u64)?;
for item in &self.uses {
item.encode_cbor(&mut vbuf)?;
}
pairs.push(("uses", vbuf));
}
{
let mut vbuf = Vec::new();
crate::cbor::Encoder::new(&mut vbuf).encode_bool(self.disabled)?;
pairs.push(("disabled", vbuf));
}
{
let mut vbuf = Vec::new();
crate::cbor::Encoder::new(&mut vbuf).encode_i64(self.available)?;
pairs.push(("available", vbuf));
}
{
let mut vbuf = Vec::new();
crate::cbor::Encoder::new(&mut vbuf).encode_text(self.created_at.as_str())?;
pairs.push(("createdAt", vbuf));
}
{
let mut vbuf = Vec::new();
crate::cbor::Encoder::new(&mut vbuf).encode_text(&self.created_by)?;
pairs.push(("createdBy", vbuf));
}
{
let mut vbuf = Vec::new();
crate::cbor::Encoder::new(&mut vbuf).encode_text(&self.for_account)?;
pairs.push(("forAccount", vbuf));
}
for (k, v) in &self.extra_cbor {
pairs.push((k.as_str(), v.clone()));
}
pairs.sort_by(|a, b| crate::cbor::cbor_key_cmp(a.0, b.0));
crate::cbor::Encoder::new(&mut *buf).encode_map_header(pairs.len() as u64)?;
for (k, v) in &pairs {
crate::cbor::Encoder::new(&mut *buf).encode_text(k)?;
buf.extend_from_slice(v);
}
}
Ok(())
}
pub fn from_cbor(data: &[u8]) -> Result<Self, crate::cbor::CborError> {
let mut decoder = crate::cbor::Decoder::new(data);
let result = Self::decode_cbor(&mut decoder)?;
if !decoder.is_empty() {
return Err(crate::cbor::CborError::InvalidCbor("trailing data".into()));
}
Ok(result)
}
pub fn decode_cbor(decoder: &mut crate::cbor::Decoder) -> Result<Self, crate::cbor::CborError> {
let val = decoder.decode()?;
let entries = match val {
crate::cbor::Value::Map(entries) => entries,
_ => return Err(crate::cbor::CborError::InvalidCbor("expected map".into())),
};
let mut field_code: Option<String> = None;
let mut field_uses: Vec<ServerDefsInviteCodeUse> = Vec::new();
let mut field_disabled: Option<bool> = None;
let mut field_available: Option<i64> = None;
let mut field_created_at: Option<crate::syntax::Datetime> = None;
let mut field_created_by: Option<String> = None;
let mut field_for_account: Option<String> = None;
let mut extra_cbor: Vec<(String, Vec<u8>)> = Vec::new();
for (key, value) in entries {
match key {
"code" => {
if let crate::cbor::Value::Text(s) = value {
field_code = Some(s.to_string());
} else {
return Err(crate::cbor::CborError::InvalidCbor("expected text".into()));
}
}
"uses" => {
if let crate::cbor::Value::Array(items) = value {
for item in items {
let raw = crate::cbor::encode_value(&item)?;
let mut dec = crate::cbor::Decoder::new(&raw);
field_uses.push(ServerDefsInviteCodeUse::decode_cbor(&mut dec)?);
}
} else {
return Err(crate::cbor::CborError::InvalidCbor("expected array".into()));
}
}
"disabled" => {
if let crate::cbor::Value::Bool(b) = value {
field_disabled = Some(b);
} else {
return Err(crate::cbor::CborError::InvalidCbor("expected bool".into()));
}
}
"available" => match value {
crate::cbor::Value::Unsigned(n) => {
field_available = Some(n as i64);
}
crate::cbor::Value::Signed(n) => {
field_available = Some(n);
}
_ => {
return Err(crate::cbor::CborError::InvalidCbor(
"expected integer".into(),
));
}
},
"createdAt" => {
if let crate::cbor::Value::Text(s) = value {
field_created_at = Some(
crate::syntax::Datetime::try_from(s)
.map_err(|e| crate::cbor::CborError::InvalidCbor(e.to_string()))?,
);
} else {
return Err(crate::cbor::CborError::InvalidCbor("expected text".into()));
}
}
"createdBy" => {
if let crate::cbor::Value::Text(s) = value {
field_created_by = Some(s.to_string());
} else {
return Err(crate::cbor::CborError::InvalidCbor("expected text".into()));
}
}
"forAccount" => {
if let crate::cbor::Value::Text(s) = value {
field_for_account = Some(s.to_string());
} else {
return Err(crate::cbor::CborError::InvalidCbor("expected text".into()));
}
}
_ => {
let raw = crate::cbor::encode_value(&value)?;
extra_cbor.push((key.to_string(), raw));
}
}
}
Ok(ServerDefsInviteCode {
code: field_code.ok_or_else(|| {
crate::cbor::CborError::InvalidCbor("missing required field 'code'".into())
})?,
uses: field_uses,
disabled: field_disabled.ok_or_else(|| {
crate::cbor::CborError::InvalidCbor("missing required field 'disabled'".into())
})?,
available: field_available.ok_or_else(|| {
crate::cbor::CborError::InvalidCbor("missing required field 'available'".into())
})?,
created_at: field_created_at.ok_or_else(|| {
crate::cbor::CborError::InvalidCbor("missing required field 'createdAt'".into())
})?,
created_by: field_created_by.ok_or_else(|| {
crate::cbor::CborError::InvalidCbor("missing required field 'createdBy'".into())
})?,
for_account: field_for_account.ok_or_else(|| {
crate::cbor::CborError::InvalidCbor("missing required field 'forAccount'".into())
})?,
extra: std::collections::HashMap::new(),
extra_cbor,
})
}
}
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ServerDefsInviteCodeUse {
pub used_at: crate::syntax::Datetime,
pub used_by: crate::syntax::Did,
#[serde(flatten)]
pub extra: std::collections::HashMap<String, serde_json::Value>,
#[serde(skip)]
pub extra_cbor: Vec<(String, Vec<u8>)>,
}
impl ServerDefsInviteCodeUse {
pub fn to_cbor(&self) -> Result<Vec<u8>, crate::cbor::CborError> {
let mut buf = Vec::new();
self.encode_cbor(&mut buf)?;
Ok(buf)
}
pub fn encode_cbor(&self, buf: &mut Vec<u8>) -> Result<(), crate::cbor::CborError> {
if self.extra_cbor.is_empty() {
let count = 2u64;
crate::cbor::Encoder::new(&mut *buf).encode_map_header(count)?;
crate::cbor::Encoder::new(&mut *buf).encode_text("usedAt")?;
crate::cbor::Encoder::new(&mut *buf).encode_text(self.used_at.as_str())?;
crate::cbor::Encoder::new(&mut *buf).encode_text("usedBy")?;
crate::cbor::Encoder::new(&mut *buf).encode_text(self.used_by.as_str())?;
} else {
let mut pairs: Vec<(&str, Vec<u8>)> = Vec::new();
{
let mut vbuf = Vec::new();
crate::cbor::Encoder::new(&mut vbuf).encode_text(self.used_at.as_str())?;
pairs.push(("usedAt", vbuf));
}
{
let mut vbuf = Vec::new();
crate::cbor::Encoder::new(&mut vbuf).encode_text(self.used_by.as_str())?;
pairs.push(("usedBy", vbuf));
}
for (k, v) in &self.extra_cbor {
pairs.push((k.as_str(), v.clone()));
}
pairs.sort_by(|a, b| crate::cbor::cbor_key_cmp(a.0, b.0));
crate::cbor::Encoder::new(&mut *buf).encode_map_header(pairs.len() as u64)?;
for (k, v) in &pairs {
crate::cbor::Encoder::new(&mut *buf).encode_text(k)?;
buf.extend_from_slice(v);
}
}
Ok(())
}
pub fn from_cbor(data: &[u8]) -> Result<Self, crate::cbor::CborError> {
let mut decoder = crate::cbor::Decoder::new(data);
let result = Self::decode_cbor(&mut decoder)?;
if !decoder.is_empty() {
return Err(crate::cbor::CborError::InvalidCbor("trailing data".into()));
}
Ok(result)
}
pub fn decode_cbor(decoder: &mut crate::cbor::Decoder) -> Result<Self, crate::cbor::CborError> {
let val = decoder.decode()?;
let entries = match val {
crate::cbor::Value::Map(entries) => entries,
_ => return Err(crate::cbor::CborError::InvalidCbor("expected map".into())),
};
let mut field_used_at: Option<crate::syntax::Datetime> = None;
let mut field_used_by: Option<crate::syntax::Did> = None;
let mut extra_cbor: Vec<(String, Vec<u8>)> = Vec::new();
for (key, value) in entries {
match key {
"usedAt" => {
if let crate::cbor::Value::Text(s) = value {
field_used_at = Some(
crate::syntax::Datetime::try_from(s)
.map_err(|e| crate::cbor::CborError::InvalidCbor(e.to_string()))?,
);
} else {
return Err(crate::cbor::CborError::InvalidCbor("expected text".into()));
}
}
"usedBy" => {
if let crate::cbor::Value::Text(s) = value {
field_used_by = Some(
crate::syntax::Did::try_from(s)
.map_err(|e| crate::cbor::CborError::InvalidCbor(e.to_string()))?,
);
} else {
return Err(crate::cbor::CborError::InvalidCbor("expected text".into()));
}
}
_ => {
let raw = crate::cbor::encode_value(&value)?;
extra_cbor.push((key.to_string(), raw));
}
}
}
Ok(ServerDefsInviteCodeUse {
used_at: field_used_at.ok_or_else(|| {
crate::cbor::CborError::InvalidCbor("missing required field 'usedAt'".into())
})?,
used_by: field_used_by.ok_or_else(|| {
crate::cbor::CborError::InvalidCbor("missing required field 'usedBy'".into())
})?,
extra: std::collections::HashMap::new(),
extra_cbor,
})
}
}