xmpp-rs/parsers/examples/generate-caps.rs

68 lines
2.1 KiB
Rust
Raw Permalink Normal View History

2019-03-03 19:13:51 +00:00
// Copyright (c) 2019 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
use std::convert::TryFrom;
2019-03-03 19:13:51 +00:00
use std::env;
use std::io::{self, Read};
2019-03-03 19:13:51 +00:00
use xmpp_parsers::{
caps::{compute_disco as compute_disco_caps, hash_caps, Caps},
2019-03-03 19:13:51 +00:00
disco::DiscoInfoResult,
ecaps2::{compute_disco as compute_disco_ecaps2, hash_ecaps2, ECaps2},
2019-03-03 19:13:51 +00:00
hashes::Algo,
2019-12-01 16:00:50 +00:00
Element, Error,
2019-03-03 19:13:51 +00:00
};
fn get_caps(disco: &DiscoInfoResult, node: String) -> Result<Caps, String> {
let data = compute_disco_caps(&disco);
let hash = hash_caps(&data, Algo::Sha_1)?;
Ok(Caps::new(node, hash))
2019-03-03 19:13:51 +00:00
}
2019-12-01 16:00:50 +00:00
fn get_ecaps2(disco: &DiscoInfoResult) -> Result<ECaps2, Error> {
let data = compute_disco_ecaps2(&disco)?;
let hash_sha256 = hash_ecaps2(&data, Algo::Sha_256)?;
let hash_sha3_256 = hash_ecaps2(&data, Algo::Sha3_256)?;
let hash_blake2b_256 = hash_ecaps2(&data, Algo::Blake2b_256)?;
Ok(ECaps2::new(vec![
hash_sha256,
hash_sha3_256,
hash_blake2b_256,
]))
2019-03-03 19:13:51 +00:00
}
2019-12-01 16:00:50 +00:00
fn main() -> Result<(), Box<dyn std::error::Error>> {
2019-03-03 19:13:51 +00:00
let args: Vec<_> = env::args().collect();
if args.len() != 2 {
println!("Usage: {} <node>", args[0]);
2019-12-01 16:00:50 +00:00
std::process::exit(1);
2019-03-03 19:13:51 +00:00
}
let node = args[1].clone();
eprintln!("Reading a disco#info payload from stdin...");
// Read from stdin.
let stdin = io::stdin();
let mut data = String::new();
let mut handle = stdin.lock();
2019-12-01 16:00:50 +00:00
handle.read_to_string(&mut data)?;
2019-03-03 19:13:51 +00:00
// Parse the payload into a DiscoInfoResult.
2019-12-01 16:00:50 +00:00
let elem: Element = data.parse()?;
let disco = DiscoInfoResult::try_from(elem)?;
2019-03-03 19:13:51 +00:00
// Compute both kinds of caps.
2019-12-01 16:00:50 +00:00
let caps = get_caps(&disco, node)?;
let ecaps2 = get_ecaps2(&disco)?;
2019-03-03 19:13:51 +00:00
// Print them.
let caps_elem = Element::from(caps);
let ecaps2_elem = Element::from(ecaps2);
println!("{}", String::from(&caps_elem));
println!("{}", String::from(&ecaps2_elem));
Ok(())
}