#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct VerificationGrantVerificationsGrantError {
pub error: String,
pub subject: crate::syntax::Did,
#[serde(flatten)]
pub extra: std::collections::HashMap<String, serde_json::Value>,
#[serde(skip)]
pub extra_cbor: Vec<(String, Vec<u8>)>,
}
impl VerificationGrantVerificationsGrantError {
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("error")?;
crate::cbor::Encoder::new(&mut *buf).encode_text(&self.error)?;
crate::cbor::Encoder::new(&mut *buf).encode_text("subject")?;
crate::cbor::Encoder::new(&mut *buf).encode_text(self.subject.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.error)?;
pairs.push(("error", vbuf));
}
{
let mut vbuf = Vec::new();
crate::cbor::Encoder::new(&mut vbuf).encode_text(self.subject.as_str())?;
pairs.push(("subject", 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_error: Option<String> = None;
let mut field_subject: Option<crate::syntax::Did> = None;
let mut extra_cbor: Vec<(String, Vec<u8>)> = Vec::new();
for (key, value) in entries {
match key {
"error" => {
if let crate::cbor::Value::Text(s) = value {
field_error = Some(s.to_string());
} else {
return Err(crate::cbor::CborError::InvalidCbor("expected text".into()));
}
}
"subject" => {
if let crate::cbor::Value::Text(s) = value {
field_subject = 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(VerificationGrantVerificationsGrantError {
error: field_error.ok_or_else(|| {
crate::cbor::CborError::InvalidCbor("missing required field 'error'".into())
})?,
subject: field_subject.ok_or_else(|| {
crate::cbor::CborError::InvalidCbor("missing required field 'subject'".into())
})?,
extra: std::collections::HashMap::new(),
extra_cbor,
})
}
}
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct VerificationGrantVerificationsInput {
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub verifications: Vec<VerificationGrantVerificationsVerificationInput>,
#[serde(flatten)]
pub extra: std::collections::HashMap<String, serde_json::Value>,
}
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct VerificationGrantVerificationsOutput {
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub failed_verifications: Vec<VerificationGrantVerificationsGrantError>,
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub verifications: Vec<crate::api::tools::ozone::VerificationDefsVerificationView>,
#[serde(flatten)]
pub extra: std::collections::HashMap<String, serde_json::Value>,
}
pub async fn verification_grant_verifications(
client: &crate::xrpc::Client,
input: &VerificationGrantVerificationsInput,
) -> Result<VerificationGrantVerificationsOutput, crate::xrpc::Error> {
client
.procedure("tools.ozone.verification.grantVerifications", input)
.await
}
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct VerificationGrantVerificationsVerificationInput {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub created_at: Option<crate::syntax::Datetime>,
pub display_name: String,
pub handle: crate::syntax::Handle,
pub subject: crate::syntax::Did,
#[serde(flatten)]
pub extra: std::collections::HashMap<String, serde_json::Value>,
#[serde(skip)]
pub extra_cbor: Vec<(String, Vec<u8>)>,
}
impl VerificationGrantVerificationsVerificationInput {
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 mut count = 3u64;
if self.created_at.is_some() {
count += 1;
}
crate::cbor::Encoder::new(&mut *buf).encode_map_header(count)?;
crate::cbor::Encoder::new(&mut *buf).encode_text("handle")?;
crate::cbor::Encoder::new(&mut *buf).encode_text(self.handle.as_str())?;
crate::cbor::Encoder::new(&mut *buf).encode_text("subject")?;
crate::cbor::Encoder::new(&mut *buf).encode_text(self.subject.as_str())?;
if self.created_at.is_some() {
crate::cbor::Encoder::new(&mut *buf).encode_text("createdAt")?;
if let Some(ref val) = self.created_at {
crate::cbor::Encoder::new(&mut *buf).encode_text(val.as_str())?;
}
}
crate::cbor::Encoder::new(&mut *buf).encode_text("displayName")?;
crate::cbor::Encoder::new(&mut *buf).encode_text(&self.display_name)?;
} else {
let mut pairs: Vec<(&str, Vec<u8>)> = Vec::new();
{
let mut vbuf = Vec::new();
crate::cbor::Encoder::new(&mut vbuf).encode_text(self.handle.as_str())?;
pairs.push(("handle", vbuf));
}
{
let mut vbuf = Vec::new();
crate::cbor::Encoder::new(&mut vbuf).encode_text(self.subject.as_str())?;
pairs.push(("subject", vbuf));
}
if self.created_at.is_some() {
let mut vbuf = Vec::new();
if let Some(ref val) = self.created_at {
crate::cbor::Encoder::new(&mut vbuf).encode_text(val.as_str())?;
}
pairs.push(("createdAt", vbuf));
}
{
let mut vbuf = Vec::new();
crate::cbor::Encoder::new(&mut vbuf).encode_text(&self.display_name)?;
pairs.push(("displayName", 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_handle: Option<crate::syntax::Handle> = None;
let mut field_subject: Option<crate::syntax::Did> = None;
let mut field_created_at: Option<crate::syntax::Datetime> = None;
let mut field_display_name: Option<String> = None;
let mut extra_cbor: Vec<(String, Vec<u8>)> = Vec::new();
for (key, value) in entries {
match key {
"handle" => {
if let crate::cbor::Value::Text(s) = value {
field_handle = Some(
crate::syntax::Handle::try_from(s)
.map_err(|e| crate::cbor::CborError::InvalidCbor(e.to_string()))?,
);
} else {
return Err(crate::cbor::CborError::InvalidCbor("expected text".into()));
}
}
"subject" => {
if let crate::cbor::Value::Text(s) = value {
field_subject = 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()));
}
}
"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()));
}
}
"displayName" => {
if let crate::cbor::Value::Text(s) = value {
field_display_name = 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(VerificationGrantVerificationsVerificationInput {
handle: field_handle.ok_or_else(|| {
crate::cbor::CborError::InvalidCbor("missing required field 'handle'".into())
})?,
subject: field_subject.ok_or_else(|| {
crate::cbor::CborError::InvalidCbor("missing required field 'subject'".into())
})?,
created_at: field_created_at,
display_name: field_display_name.ok_or_else(|| {
crate::cbor::CborError::InvalidCbor("missing required field 'displayName'".into())
})?,
extra: std::collections::HashMap::new(),
extra_cbor,
})
}
}