aboutsummaryrefslogtreecommitdiffstats
path: root/src/bin/zot/command
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/zot/command')
-rw-r--r--src/bin/zot/command/channel.rs10
-rw-r--r--src/bin/zot/command/channel/export.rs19
-rw-r--r--src/bin/zot/command/channel/list.rs21
-rw-r--r--src/bin/zot/command/channel/stream.rs47
-rw-r--r--src/bin/zot/command/contact.rs8
-rw-r--r--src/bin/zot/command/contact/list.rs21
-rw-r--r--src/bin/zot/command/verify.rs21
-rw-r--r--src/bin/zot/command/version.rs19
8 files changed, 166 insertions, 0 deletions
diff --git a/src/bin/zot/command/channel.rs b/src/bin/zot/command/channel.rs
new file mode 100644
index 0000000..883922f
--- /dev/null
+++ b/src/bin/zot/command/channel.rs
@@ -0,0 +1,10 @@
+/*
+ * SPDX-FileCopyrightText: 2024 Eilertsens Kodeknekkeri
+ * SPDX-FileCopyrightText: 2024 Harald Eilertsen
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+
+pub mod export;
+pub mod list;
+pub mod stream;
diff --git a/src/bin/zot/command/channel/export.rs b/src/bin/zot/command/channel/export.rs
new file mode 100644
index 0000000..ad006de
--- /dev/null
+++ b/src/bin/zot/command/channel/export.rs
@@ -0,0 +1,19 @@
+/*
+ * SPDX-FileCopyrightText: 2024 Eilertsens Kodeknekkeri
+ * SPDX-FileCopyrightText: 2024 Harald Eilertsen
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+
+use zotapi::ZotApi;
+use std::error::Error;
+
+pub struct ChannelExportCmd {
+}
+
+impl ChannelExportCmd {
+ pub async fn run(&self, client: ZotApi) -> Result<(), Box<dyn Error + 'static>> {
+ println!("{}", client.channel_export().await?);
+ Ok(())
+ }
+}
diff --git a/src/bin/zot/command/channel/list.rs b/src/bin/zot/command/channel/list.rs
new file mode 100644
index 0000000..a308517
--- /dev/null
+++ b/src/bin/zot/command/channel/list.rs
@@ -0,0 +1,21 @@
+/*
+ * SPDX-FileCopyrightText: 2024 Eilertsens Kodeknekkeri
+ * SPDX-FileCopyrightText: 2024 Harald Eilertsen
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+
+use zotapi::ZotApi;
+use std::error::Error;
+
+pub struct ChannelListCmd {
+}
+
+impl ChannelListCmd {
+ pub async fn run(&self, client: ZotApi) -> Result<(), Box<(dyn Error + 'static)>> {
+ for ch in client.channel_list().await? {
+ println!("{}", ch);
+ }
+ Ok(())
+ }
+}
diff --git a/src/bin/zot/command/channel/stream.rs b/src/bin/zot/command/channel/stream.rs
new file mode 100644
index 0000000..365158b
--- /dev/null
+++ b/src/bin/zot/command/channel/stream.rs
@@ -0,0 +1,47 @@
+/*
+ * SPDX-FileCopyrightText: 2024 Eilertsens Kodeknekkeri
+ * SPDX-FileCopyrightText: 2024 Harald Eilertsen
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+
+use zotapi::{
+ Stream,
+ ZotApi,
+};
+
+pub struct ChannelStreamCmd {
+}
+
+impl ChannelStreamCmd {
+ pub async fn run(&self, client: ZotApi) -> Result<(), Box<(dyn std::error::Error + 'static)>> {
+ let json = client.channel_stream().await?;
+
+ std::fs::write("channel_stream.json", &json)
+ .expect("Unable to write channel_stream.json file");
+
+ let s = Stream::from_json(&json)?;
+ for item in s.items {
+ if item.is_post() {
+ let mut summary = item.title;
+
+ if summary.len() == 0 {
+ if item.summary.len() > 0 {
+ summary = item.summary;
+ } else {
+ summary = item.body;
+ }
+ }
+
+ summary.truncate(64);
+
+ println!("{} | {:24} | {}",
+ item.created.to_string(),
+ item.author.name,
+ summary);
+ }
+ }
+ //println!("{}", z.channel_stream().await?);
+ Ok(())
+ }
+}
diff --git a/src/bin/zot/command/contact.rs b/src/bin/zot/command/contact.rs
new file mode 100644
index 0000000..5db992d
--- /dev/null
+++ b/src/bin/zot/command/contact.rs
@@ -0,0 +1,8 @@
+/*
+ * SPDX-FileCopyrightText: 2024 Eilertsens Kodeknekkeri
+ * SPDX-FileCopyrightText: 2024 Harald Eilertsen
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+
+pub mod list;
diff --git a/src/bin/zot/command/contact/list.rs b/src/bin/zot/command/contact/list.rs
new file mode 100644
index 0000000..ee5f167
--- /dev/null
+++ b/src/bin/zot/command/contact/list.rs
@@ -0,0 +1,21 @@
+/*
+ * SPDX-FileCopyrightText: 2024 Eilertsens Kodeknekkeri
+ * SPDX-FileCopyrightText: 2024 Harald Eilertsen
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+
+use std::error::Error;
+use zotapi::ZotApi;
+
+pub struct ContactListCmd {
+}
+
+impl ContactListCmd {
+ pub async fn run(&self, client: ZotApi) -> Result<(), Box<dyn Error + 'static>> {
+ let r = client.abook_list().await?;
+ println!("{}", r);
+
+ Ok(())
+ }
+}
diff --git a/src/bin/zot/command/verify.rs b/src/bin/zot/command/verify.rs
new file mode 100644
index 0000000..5c6432f
--- /dev/null
+++ b/src/bin/zot/command/verify.rs
@@ -0,0 +1,21 @@
+/*
+ * SPDX-FileCopyrightText: 2024 Eilertsens Kodeknekkeri
+ * SPDX-FileCopyrightText: 2024 Harald Eilertsen
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+
+use std::error::Error;
+use zotapi::ZotApi;
+
+pub struct VerifyCmd {
+}
+
+impl VerifyCmd {
+ pub async fn run(&self, client: ZotApi) -> Result<(), Box<dyn Error + 'static>> {
+ let channel = client.verify().await;
+ println!("{:?}", channel);
+
+ Ok(())
+ }
+}
diff --git a/src/bin/zot/command/version.rs b/src/bin/zot/command/version.rs
new file mode 100644
index 0000000..a184247
--- /dev/null
+++ b/src/bin/zot/command/version.rs
@@ -0,0 +1,19 @@
+/*
+ * SPDX-FileCopyrightText: 2024 Eilertsens Kodeknekkeri
+ * SPDX-FileCopyrightText: 2024 Harald Eilertsen
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+
+use std::error::Error;
+use zotapi::ZotApi;
+
+pub struct VersionCmd {
+}
+
+impl VersionCmd {
+ pub async fn run(&self, client: ZotApi) -> Result<(), Box<dyn Error + 'static>> {
+ println!("{}", client.version().await?);
+ Ok(())
+ }
+}