summaryrefslogtreecommitdiffstats
path: root/ipfs-api/src/request
diff options
context:
space:
mode:
Diffstat (limited to 'ipfs-api/src/request')
-rw-r--r--ipfs-api/src/request/id.rs23
-rw-r--r--ipfs-api/src/request/key.rs62
-rw-r--r--ipfs-api/src/request/log.rs99
-rw-r--r--ipfs-api/src/request/mod.rs6
4 files changed, 190 insertions, 0 deletions
diff --git a/ipfs-api/src/request/id.rs b/ipfs-api/src/request/id.rs
new file mode 100644
index 0000000..a97aa67
--- /dev/null
+++ b/ipfs-api/src/request/id.rs
@@ -0,0 +1,23 @@
+// 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 request::ApiRequest;
+
+
+#[derive(Serialize)]
+pub struct Id<'a> {
+ #[serde(rename = "arg")]
+ pub peer: Option<&'a str>,
+}
+
+impl<'a> ApiRequest for Id<'a> {
+ #[inline]
+ fn path() -> &'static str {
+ "/id"
+ }
+}
diff --git a/ipfs-api/src/request/key.rs b/ipfs-api/src/request/key.rs
new file mode 100644
index 0000000..e3c72ce
--- /dev/null
+++ b/ipfs-api/src/request/key.rs
@@ -0,0 +1,62 @@
+// 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 request::ApiRequest;
+use serde::ser::{Serialize, Serializer};
+
+
+#[derive(Copy, Clone)]
+pub enum KeyType {
+ Rsa,
+ Ed25519,
+}
+
+impl Serialize for KeyType {
+ fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
+ where
+ S: Serializer,
+ {
+ let s = match self {
+ &KeyType::Rsa => "rsa",
+ &KeyType::Ed25519 => "ed25519",
+ };
+
+ serializer.serialize_str(s)
+ }
+}
+
+
+#[derive(Serialize)]
+pub struct KeyGen<'a> {
+ #[serde(rename = "arg")]
+ pub name: &'a str,
+
+ #[serde(rename = "type")]
+ pub kind: KeyType,
+
+ pub size: Option<i32>,
+}
+
+impl<'a> ApiRequest for KeyGen<'a> {
+ #[inline]
+ fn path() -> &'static str {
+ "/key/gen"
+ }
+}
+
+
+pub struct KeyList;
+
+impl_skip_serialize!(KeyList);
+
+impl ApiRequest for KeyList {
+ #[inline]
+ fn path() -> &'static str {
+ "/key/list"
+ }
+}
diff --git a/ipfs-api/src/request/log.rs b/ipfs-api/src/request/log.rs
new file mode 100644
index 0000000..7a48e5f
--- /dev/null
+++ b/ipfs-api/src/request/log.rs
@@ -0,0 +1,99 @@
+// 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 request::ApiRequest;
+use serde::ser::{Serialize, Serializer};
+use std::borrow::Cow;
+
+
+#[derive(Copy, Clone)]
+pub enum LoggingLevel {
+ Debug,
+ Info,
+ Warning,
+ Error,
+ Critical,
+}
+
+impl Serialize for LoggingLevel {
+ fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
+ where
+ S: Serializer,
+ {
+ let s = match self {
+ &LoggingLevel::Debug => "debug",
+ &LoggingLevel::Info => "info",
+ &LoggingLevel::Warning => "warning",
+ &LoggingLevel::Error => "error",
+ &LoggingLevel::Critical => "critical",
+ };
+
+ serializer.serialize_str(s)
+ }
+}
+
+
+pub enum Logger<'a> {
+ All,
+ Specific(Cow<'a, str>),
+}
+
+impl<'a> Serialize for Logger<'a> {
+ fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
+ where
+ S: Serializer,
+ {
+ let s = match self {
+ &Logger::All => "*",
+ &Logger::Specific(ref logger) => logger.as_ref(),
+ };
+
+ serializer.serialize_str(s)
+ }
+}
+
+
+#[derive(Serialize)]
+pub struct LogLevel<'a> {
+ #[serde(rename = "arg")]
+ pub logger: Logger<'a>,
+
+ #[serde(rename = "arg")]
+ pub level: LoggingLevel,
+}
+
+impl<'a> ApiRequest for LogLevel<'a> {
+ #[inline]
+ fn path() -> &'static str {
+ "/log/level"
+ }
+}
+
+
+pub struct LogLs;
+
+impl_skip_serialize!(LogLs);
+
+impl ApiRequest for LogLs {
+ #[inline]
+ fn path() -> &'static str {
+ "/log/ls"
+ }
+}
+
+
+pub struct LogTail;
+
+impl_skip_serialize!(LogTail);
+
+impl ApiRequest for LogTail {
+ #[inline]
+ fn path() -> &'static str {
+ "/log/tail"
+ }
+}
diff --git a/ipfs-api/src/request/mod.rs b/ipfs-api/src/request/mod.rs
index 438c6c2..81f1dc1 100644
--- a/ipfs-api/src/request/mod.rs
+++ b/ipfs-api/src/request/mod.rs
@@ -21,7 +21,10 @@ pub use self::file::*;
pub use self::files::*;
pub use self::filestore::*;
pub use self::get::*;
+pub use self::log::*;
pub use self::ls::*;
+pub use self::id::*;
+pub use self::key::*;
pub use self::object::*;
pub use self::pin::*;
pub use self::ping::*;
@@ -81,7 +84,10 @@ mod file;
mod files;
mod filestore;
mod get;
+mod log;
mod ls;
+mod id;
+mod key;
mod object;
mod pin;
mod ping;