summaryrefslogtreecommitdiffstats
path: root/ipfs-api-prelude/src/request/pubsub.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ipfs-api-prelude/src/request/pubsub.rs')
-rw-r--r--ipfs-api-prelude/src/request/pubsub.rs53
1 files changed, 53 insertions, 0 deletions
diff --git a/ipfs-api-prelude/src/request/pubsub.rs b/ipfs-api-prelude/src/request/pubsub.rs
new file mode 100644
index 0000000..148a7b1
--- /dev/null
+++ b/ipfs-api-prelude/src/request/pubsub.rs
@@ -0,0 +1,53 @@
+// 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::request::ApiRequest;
+use serde::Serialize;
+
+pub struct PubsubLs;
+
+impl_skip_serialize!(PubsubLs);
+
+impl ApiRequest for PubsubLs {
+ const PATH: &'static str = "/pubsub/ls";
+}
+
+#[derive(Serialize)]
+pub struct PubsubPeers<'a> {
+ #[serde(rename = "arg")]
+ pub topic: Option<&'a str>,
+}
+
+impl<'a> ApiRequest for PubsubPeers<'a> {
+ const PATH: &'static str = "/pubsub/peers";
+}
+
+#[derive(Serialize)]
+pub struct PubsubPub<'a> {
+ #[serde(rename = "arg")]
+ pub topic: &'a str,
+
+ #[serde(rename = "arg")]
+ pub payload: &'a str,
+}
+
+impl<'a> ApiRequest for PubsubPub<'a> {
+ const PATH: &'static str = "/pubsub/pub";
+}
+
+#[derive(Serialize)]
+pub struct PubsubSub<'a> {
+ #[serde(rename = "arg")]
+ pub topic: &'a str,
+
+ pub discover: bool,
+}
+
+impl<'a> ApiRequest for PubsubSub<'a> {
+ const PATH: &'static str = "/pubsub/sub";
+}