summaryrefslogtreecommitdiffstats
path: root/ipfs-api-prelude/src/response/pubsub.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ipfs-api-prelude/src/response/pubsub.rs')
-rw-r--r--ipfs-api-prelude/src/response/pubsub.rs48
1 files changed, 48 insertions, 0 deletions
diff --git a/ipfs-api-prelude/src/response/pubsub.rs b/ipfs-api-prelude/src/response/pubsub.rs
new file mode 100644
index 0000000..c645fb6
--- /dev/null
+++ b/ipfs-api-prelude/src/response/pubsub.rs
@@ -0,0 +1,48 @@
+// Copyright 2017 rust-ipfs-api Developers
+//
+// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
+// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
+// http://opensource.org/licenses/MIT>, 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;
+
+#[derive(Debug, Deserialize)]
+#[serde(rename_all = "PascalCase")]
+pub struct PubsubLsResponse {
+ #[serde(deserialize_with = "serde::deserialize_vec")]
+ pub strings: Vec<String>,
+}
+
+#[derive(Debug, Deserialize)]
+#[serde(rename_all = "PascalCase")]
+pub struct PubsubPeersResponse {
+ #[serde(deserialize_with = "serde::deserialize_vec")]
+ pub strings: Vec<String>,
+}
+
+pub type PubsubPubResponse = ();
+
+#[derive(Debug, Deserialize)]
+pub struct PubsubSubResponse {
+ pub from: Option<String>,
+ pub data: Option<String>,
+ pub seqno: Option<String>,
+
+ #[serde(rename = "topicIDs")]
+ pub topic_ids: Option<Vec<String>>,
+
+ #[serde(rename = "XXX_unrecognized")]
+ pub unrecognized: Option<Vec<u8>>,
+}
+
+#[cfg(test)]
+mod tests {
+ deserialize_test!(v0_pubsub_ls_0, PubsubLsResponse);
+ deserialize_test!(v0_pubsub_ls_1, PubsubLsResponse);
+ deserialize_test!(v0_pubsub_peers_0, PubsubPeersResponse);
+ deserialize_test!(v0_pubsub_sub_0, PubsubSubResponse);
+ deserialize_test!(v0_pubsub_sub_1, PubsubSubResponse);
+}