#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SyncListHostsHost {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub account_count: Option<i64>,
pub hostname: String,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub seq: Option<i64>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub status: Option<crate::api::com::atproto::SyncDefsHostStatus>,
#[serde(flatten)]
pub extra: std::collections::HashMap<String, serde_json::Value>,
#[serde(skip)]
pub extra_cbor: Vec<(String, Vec<u8>)>,
}
impl SyncListHostsHost {
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 = 1u64;
if self.seq.is_some() {
count += 1;
}
if self.status.is_some() {
count += 1;
}
if self.account_count.is_some() {
count += 1;
}
crate::cbor::Encoder::new(&mut *buf).encode_map_header(count)?;
if self.seq.is_some() {
crate::cbor::Encoder::new(&mut *buf).encode_text("seq")?;
if let Some(ref val) = self.seq {
crate::cbor::Encoder::new(&mut *buf).encode_i64(*val)?;
}
}
if self.status.is_some() {
crate::cbor::Encoder::new(&mut *buf).encode_text("status")?;
if let Some(ref val) = self.status {
crate::cbor::Encoder::new(&mut *buf).encode_text(val)?;
}
}
crate::cbor::Encoder::new(&mut *buf).encode_text("hostname")?;
crate::cbor::Encoder::new(&mut *buf).encode_text(&self.hostname)?;
if self.account_count.is_some() {
crate::cbor::Encoder::new(&mut *buf).encode_text("accountCount")?;
if let Some(ref val) = self.account_count {
crate::cbor::Encoder::new(&mut *buf).encode_i64(*val)?;
}
}
} else {
let mut pairs: Vec<(&str, Vec<u8>)> = Vec::new();
if self.seq.is_some() {
let mut vbuf = Vec::new();
if let Some(ref val) = self.seq {
crate::cbor::Encoder::new(&mut vbuf).encode_i64(*val)?;
}
pairs.push(("seq", vbuf));
}
if self.status.is_some() {
let mut vbuf = Vec::new();
if let Some(ref val) = self.status {
crate::cbor::Encoder::new(&mut vbuf).encode_text(val)?;
}
pairs.push(("status", vbuf));
}
{
let mut vbuf = Vec::new();
crate::cbor::Encoder::new(&mut vbuf).encode_text(&self.hostname)?;
pairs.push(("hostname", vbuf));
}
if self.account_count.is_some() {
let mut vbuf = Vec::new();
if let Some(ref val) = self.account_count {
crate::cbor::Encoder::new(&mut vbuf).encode_i64(*val)?;
}
pairs.push(("accountCount", 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_seq: Option<i64> = None;
let mut field_status: Option<crate::api::com::atproto::SyncDefsHostStatus> = None;
let mut field_hostname: Option<String> = None;
let mut field_account_count: Option<i64> = None;
let mut extra_cbor: Vec<(String, Vec<u8>)> = Vec::new();
for (key, value) in entries {
match key {
"seq" => match value {
crate::cbor::Value::Unsigned(n) => {
field_seq = Some(n as i64);
}
crate::cbor::Value::Signed(n) => {
field_seq = Some(n);
}
_ => {
return Err(crate::cbor::CborError::InvalidCbor(
"expected integer".into(),
));
}
},
"status" => {
if let crate::cbor::Value::Text(s) = value {
field_status = Some(s.to_string());
} else {
return Err(crate::cbor::CborError::InvalidCbor("expected text".into()));
}
}
"hostname" => {
if let crate::cbor::Value::Text(s) = value {
field_hostname = Some(s.to_string());
} else {
return Err(crate::cbor::CborError::InvalidCbor("expected text".into()));
}
}
"accountCount" => match value {
crate::cbor::Value::Unsigned(n) => {
field_account_count = Some(n as i64);
}
crate::cbor::Value::Signed(n) => {
field_account_count = Some(n);
}
_ => {
return Err(crate::cbor::CborError::InvalidCbor(
"expected integer".into(),
));
}
},
_ => {
let raw = crate::cbor::encode_value(&value)?;
extra_cbor.push((key.to_string(), raw));
}
}
}
Ok(SyncListHostsHost {
seq: field_seq,
status: field_status,
hostname: field_hostname.ok_or_else(|| {
crate::cbor::CborError::InvalidCbor("missing required field 'hostname'".into())
})?,
account_count: field_account_count,
extra: std::collections::HashMap::new(),
extra_cbor,
})
}
}
#[derive(Debug, Clone, Default, serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SyncListHostsParams {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub cursor: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub limit: Option<i64>,
}
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SyncListHostsOutput {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub cursor: Option<String>,
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub hosts: Vec<SyncListHostsHost>,
#[serde(flatten)]
pub extra: std::collections::HashMap<String, serde_json::Value>,
}
pub async fn sync_list_hosts(
client: &crate::xrpc::Client,
params: &SyncListHostsParams,
) -> Result<SyncListHostsOutput, crate::xrpc::Error> {
client.query("com.atproto.sync.listHosts", params).await
}