From 7dddbde3a1abcb96b75aa4636a07498193f7c551 Mon Sep 17 00:00:00 2001 From: Ferris Tseng Date: Mon, 22 Feb 2021 20:41:44 -0500 Subject: migrate common code to ipfs-api-prelude --- ipfs-api-prelude/src/response/repo.rs | 58 +++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 ipfs-api-prelude/src/response/repo.rs (limited to 'ipfs-api-prelude/src/response/repo.rs') diff --git a/ipfs-api-prelude/src/response/repo.rs b/ipfs-api-prelude/src/response/repo.rs new file mode 100644 index 0000000..b0ba62c --- /dev/null +++ b/ipfs-api-prelude/src/response/repo.rs @@ -0,0 +1,58 @@ +// Copyright 2017 rust-ipfs-api Developers +// +// Licensed under the Apache License, Version 2.0, or the MIT license , at your option. This file may not be +// copied, modified, or distributed except according to those terms. +// + +use crate::response::serde; +use crate::serde::Deserialize; +use std::collections::HashMap; + +#[derive(Deserialize)] +#[serde(rename_all = "PascalCase")] +pub struct RepoFsckResponse { + pub message: String, +} + +#[derive(Deserialize)] +#[serde(rename_all = "PascalCase")] +pub struct RepoGcResponse { + #[serde(deserialize_with = "serde::deserialize_hashmap")] + pub key: HashMap, + pub error: Option, +} + +#[derive(Debug, Deserialize)] +#[serde(rename_all = "PascalCase")] +pub struct RepoStatResponse { + pub num_objects: u64, + pub repo_size: u64, + pub repo_path: String, + pub version: String, +} + +// Defined in go-ipfs:master core/commands/repo.go +#[derive(Deserialize)] +#[serde(rename_all = "PascalCase")] +pub struct RepoVerifyResponse { + pub message: String, + // Could technically be an i64 but this is probably safest? + pub progress: i32, +} + +#[derive(Deserialize)] +#[serde(rename_all = "PascalCase")] +pub struct RepoVersionResponse { + pub version: String, +} + +#[cfg(test)] +mod tests { + deserialize_test!(v0_repo_gc_0, RepoGcResponse); + deserialize_test!(v0_repo_stat_0, RepoStatResponse); + deserialize_test!(v0_repo_verify_0, RepoVerifyResponse); + deserialize_test!(v0_repo_verify_1, RepoVerifyResponse); + deserialize_test!(v0_repo_version_0, RepoVersionResponse); +} -- cgit v1.2.3