Skip to content

Commit

Permalink
CLI list advised DNS records for domain (#705)
Browse files Browse the repository at this point in the history
  • Loading branch information
eyJhb authored Aug 23, 2024
1 parent e4cd866 commit 0186c21
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 1 deletion.
6 changes: 6 additions & 0 deletions crates/cli/src/modules/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,12 @@ pub enum DomainCommands {
name: String,
},

/// List DNS records for domain
DNSRecords {
/// Domain name to list DNS records for
name: String,
},

/// List all domains
List {
/// Starting point for listing domains
Expand Down
44 changes: 43 additions & 1 deletion crates/cli/src/modules/domain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,23 @@

use std::borrow::Cow;

use prettytable::{Attr, Cell, Row, Table};
use prettytable::{Attr, Cell, Row, Table, format};
use reqwest::Method;
use serde_json::Value;

use crate::modules::List;

use super::cli::{Client, DomainCommands};

use serde::{Deserialize, Serialize};
#[derive(Debug, Serialize, Deserialize, Clone)]
struct DnsRecord {
#[serde(rename = "type")]
typ: String,
name: String,
content: String,
}

impl DomainCommands {
pub async fn exec(self, client: Client) {
match self {
Expand All @@ -37,6 +46,39 @@ impl DomainCommands {
.await;
eprintln!("Successfully deleted domain {name:?}");
}
DomainCommands::DNSRecords { name } => {
let records = client
.http_request::<Vec<DnsRecord>, String>(
Method::GET,
&format!("/api/domain/{name}"),
None,
)
.await;

if !records.is_empty() {
let mut table = Table::new();
// no borderline separator separator, as long values will mess it up
table.set_format(*format::consts::FORMAT_NO_BORDER_LINE_SEPARATOR);

table.add_row(Row::new(vec![
Cell::new("Type").with_style(Attr::Bold),
Cell::new("Name").with_style(Attr::Bold),
Cell::new("Contents").with_style(Attr::Bold),
]));

for record in &records {
table.add_row(Row::new(vec![
Cell::new(&record.typ),
Cell::new(&record.name),
Cell::new(&record.content),
]));
}

eprintln!();
table.printstd();
eprintln!();
}
}
DomainCommands::List { from, limit } => {
let query = if from.is_none() && limit.is_none() {
Cow::Borrowed("/api/domain")
Expand Down

0 comments on commit 0186c21

Please sign in to comment.