desec_cli 0.1.4

Commandline client for the deSEC DNS API
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
use clap::Parser;
use desec_api::{account, Client, Error};
use std::env;
use std::process::ExitCode;

mod cli;

use cli::*;

#[tokio::main]
async fn main() -> ExitCode {
    #[cfg(feature = "logging")]
    env_logger::init();

    let cli = Cli::parse();

    // Create a new client from either a token from env var DESEC_API_TOKEN
    // or from credentials in env vars DESEC_EMAIL & DESEC_PASSWORD.
    // If we have neither a token nor credentials, we abort.
    let mut client = if let Ok(token) = env::var("DESEC_API_TOKEN") {
        match Client::new(token) {
            Ok(c) => c,
            Err(Error::ReqwestClientBuilder(e)) => panic!("{e}"),
            _ => unreachable!(),
        }
    } else if let (Ok(email), Ok(password)) = (env::var("DESEC_EMAIL"), env::var("DESEC_PASSWORD"))
    {
        match Client::new_from_credentials(&email, &password).await {
            Ok(c) => c,
            Err(Error::ReqwestClientBuilder(e)) => panic!("{e}"),
            _ => unreachable!(),
        }
    } else {
        eprintln!("Missing env var TOKEN_ENV_VAR");
        return ExitCode::FAILURE;
    };

    if let Some(max_retries) = cli.max_retries {
        client.set_max_retries(max_retries);
    }

    if let Some(max_wait) = cli.max_wait {
        client.set_max_wait_retry(max_wait);
    }

    client.set_retry(!cli.no_retry);

    match &cli.command {
        Command::Account(subcommand) => match &subcommand.command {
            AccountCommand::Captcha => return get_captcha().await,
            AccountCommand::Register(args) => return register(args).await,
            AccountCommand::Login(args) => return login(args).await,
            AccountCommand::Show => return show_account(&client).await,
        },
        Command::Domain(args) => match &args.command {
            DomainCommand::List => return list_domains(&client).await,
            DomainCommand::Get(args) => return get_domain(&client, args).await,
            DomainCommand::Create(args) => return create_domain(&client, args).await,
            DomainCommand::Delete(args) => return delete_domain(&client, args).await,
            DomainCommand::Responsible(args) => return get_domain_responsible(&client, args).await,
            DomainCommand::Export(args) => return export_domain(&client, args).await,
        },
        Command::ResourceRecordSet(subcommand) => match &subcommand.command {
            ResourceRecordSetCommand::List(args) => return get_all_rrsets(&client, args).await,
            ResourceRecordSetCommand::Get(args) => return get_rrset(&client, args).await,
            ResourceRecordSetCommand::Create(args) => return create_rrset(&client, args).await,
            ResourceRecordSetCommand::Delete(args) => {
                return delete_rrset(&cli, &client, args).await
            }
        },
        Command::Token(subcommand) => match &subcommand.command {
            TokenCommand::List => return list_token(&client).await,
            TokenCommand::Get(args) => return get_token(&client, args).await,
            TokenCommand::Create(args) => return create_token(&client, args).await,
            TokenCommand::Delete(args) => return delete_token(&client, args).await,
            TokenCommand::Patch(args) => return patch_token(&client, args).await,
        },
        Command::TokenPolicy(subcommand) => match &subcommand.command {
            TokenPolicyCommand::List(args) => return list_token_policies(&client, args).await,
            TokenPolicyCommand::Create(args) => return create_token_policy(&client, args).await,
            TokenPolicyCommand::Get(args) => return get_token_policy(&client, args).await,
            TokenPolicyCommand::Patch(args) => return patch_token_policy(&client, args).await,
            TokenPolicyCommand::Delete(args) => return delete_token_policy(&client, args).await,
        },
    }
}

async fn get_captcha() -> ExitCode {
    let captcha = match account::get_captcha().await {
        Ok(captcha) => captcha,
        Err(error) => {
            eprintln!("An error occurred: {}", error);
            return ExitCode::FAILURE;
        }
    };
    let captcha_json = match serde_json::to_string(&captcha) {
        Ok(json) => json,
        Err(error) => panic!("{}", error),
    };
    println!("{captcha_json}");
    ExitCode::SUCCESS
}

async fn register(args: &RegisterArgs) -> ExitCode {
    let account = match account::register(
        &args.email,
        &args.password,
        &args.id,
        &args.solution,
        args.domain.as_deref(),
    )
    .await
    {
        Ok(account) => account,
        Err(error) => {
            eprintln!("An error occurred: {}", error);
            return ExitCode::FAILURE;
        }
    };
    let account_json = match serde_json::to_string(&account) {
        Ok(json) => json,
        Err(error) => panic!("{}", error),
    };
    println!("{account_json}");
    ExitCode::SUCCESS
}

async fn login(args: &LoginArgs) -> ExitCode {
    let login = match account::login(&args.email, &args.password).await {
        Ok(login) => login,
        Err(Error::ReqwestClientBuilder(e)) => panic!("{e}"),
        _ => unreachable!(),
    };
    let account_json = match serde_json::to_string(&login) {
        Ok(json) => json,
        Err(error) => panic!("{}", error),
    };
    println!("{account_json}");
    ExitCode::SUCCESS
}

async fn show_account(client: &Client) -> ExitCode {
    let account_info = match client.account().get_account_info().await {
        Ok(info) => info,
        Err(_) => {
            eprintln!("An error occurred");
            return ExitCode::FAILURE;
        }
    };
    let account_info_json = match serde_json::to_string(&account_info) {
        Ok(json) => json,
        Err(error) => panic!("{}", error),
    };
    println!("{account_info_json}");
    ExitCode::SUCCESS
}

async fn create_domain(client: &Client, args: &DomainNameArg) -> ExitCode {
    let domain_name = &args.name;
    let domain = match client.domain().create_domain(domain_name).await {
        Ok(domain) => domain,
        Err(error) => {
            eprintln!("Creation of domain failed: {}", error);
            return ExitCode::FAILURE;
        }
    };
    let domain_json = match serde_json::to_string(&domain) {
        Ok(json) => json,
        Err(error) => {
            eprintln!("Failed to serialize the returned domain: {error}");
            return ExitCode::FAILURE;
        }
    };
    println!("{domain_json}");
    ExitCode::SUCCESS
}

async fn list_domains(client: &Client) -> ExitCode {
    let domains = match client.domain().get_domains().await {
        Ok(domains) => domains,
        Err(_) => {
            eprintln!("An error occurred");
            return ExitCode::FAILURE;
        }
    };
    let domains_json = match serde_json::to_string(&domains) {
        Ok(json) => json,
        Err(error) => panic!("{}", error),
    };
    println!("{domains_json}");
    ExitCode::SUCCESS
}

async fn get_domain(client: &Client, args: &DomainNameArg) -> ExitCode {
    let domain_name = &args.name;
    let domain = match client.domain().get_domain(domain_name).await {
        Ok(domain) => domain,
        Err(Error::NotFound) => {
            eprintln!(
                "Domain {} does not exist or you are not the owner",
                domain_name
            );
            return ExitCode::FAILURE;
        }
        Err(_) => {
            eprintln!("An error occurred");
            return ExitCode::FAILURE;
        }
    };
    let domain_json = match serde_json::to_string(&domain) {
        Ok(json) => json,
        Err(error) => {
            eprintln!("Failed to serialize the data: {error}");
            return ExitCode::FAILURE;
        }
    };
    println!("{domain_json}");
    ExitCode::SUCCESS
}

async fn get_domain_responsible(client: &Client, args: &DomainNameArg) -> ExitCode {
    let domain_name = &args.name;
    let domain = match client.domain().get_owning_domain(domain_name).await {
        Ok(domain) => domain,
        Err(Error::NotFound) => {
            eprintln!(
                "Domain {} does not exist or you are not the owner",
                domain_name
            );
            return ExitCode::FAILURE;
        }
        Err(_) => {
            eprintln!("An error occurred");
            return ExitCode::FAILURE;
        }
    };
    let domain_json = match serde_json::to_string(&domain) {
        Ok(json) => json,
        Err(error) => {
            eprintln!("Failed to serialize the data: {error}");
            return ExitCode::FAILURE;
        }
    };
    println!("{domain_json}");
    ExitCode::SUCCESS
}

async fn export_domain(client: &Client, args: &DomainNameArg) -> ExitCode {
    let domain_name = &args.name;
    let zonefile = match client.domain().get_zonefile(domain_name).await {
        Ok(domain) => domain,
        Err(Error::NotFound) => {
            eprintln!(
                "Domain {} does not exist or you are not the owner",
                domain_name
            );
            return ExitCode::FAILURE;
        }
        Err(_) => {
            eprintln!("An error occurred");
            return ExitCode::FAILURE;
        }
    };
    println!("{zonefile}");
    ExitCode::SUCCESS
}

async fn delete_domain(client: &Client, args: &DomainNameArg) -> ExitCode {
    if let Err(error) = client.domain().delete_domain(&args.name).await {
        eprintln!("Deletion of domain failed: {}", error);
        return ExitCode::FAILURE;
    };
    ExitCode::SUCCESS
}

async fn create_rrset(client: &Client, args: &ResourceRecordSetCreateArgs) -> ExitCode {
    let subname = if args.subname == "@" {
        None
    } else {
        Some(args.subname.as_str())
    };
    let rrset = match client
        .rrset()
        .create_rrset(&args.name, subname, &args.r#type, args.ttl, &args.records)
        .await
    {
        Ok(rrset) => rrset,
        Err(Error::NotFound) => {
            eprintln!(
                "RRSet {} does not exist or you are not the owner",
                args.name
            );
            return ExitCode::FAILURE;
        }
        Err(error) => {
            eprintln!("An error occurred: {}", error);
            return ExitCode::FAILURE;
        }
    };
    let rrset_json = match serde_json::to_string(&rrset) {
        Ok(json) => json,
        Err(error) => {
            eprintln!("Failed to serialize the data: {error}");
            return ExitCode::FAILURE;
        }
    };
    println!("{rrset_json}");

    ExitCode::SUCCESS
}
async fn get_rrset(client: &Client, args: &ResourceRecordSetGetArgs) -> ExitCode {
    let subname = if args.subname == "@" {
        None
    } else {
        Some(args.subname.clone())
    };
    let rrset = match client
        .rrset()
        .get_rrset(&args.name, subname.as_deref(), &args.r#type)
        .await
    {
        Ok(rrset) => rrset,
        Err(Error::NotFound) => {
            eprintln!(
                "RRSet {} does not exist or you are not the owner",
                args.name
            );
            return ExitCode::FAILURE;
        }
        Err(_) => {
            eprintln!("An error occurred");
            return ExitCode::FAILURE;
        }
    };
    let rrset_json = match serde_json::to_string(&rrset) {
        Ok(json) => json,
        Err(error) => {
            eprintln!("Failed to serialize the data: {error}");
            return ExitCode::FAILURE;
        }
    };
    println!("{rrset_json}");
    ExitCode::SUCCESS
}

async fn get_all_rrsets(client: &Client, args: &ResourceRecordSetListArgs) -> ExitCode {
    let rrset = match client.rrset().get_rrsets(&args.name).await {
        Ok(rrset) => rrset,
        Err(Error::NotFound) => {
            eprintln!(
                "RRSet {} does not exist or you are not the owner",
                args.name
            );
            return ExitCode::FAILURE;
        }
        Err(_) => {
            eprintln!("An error occurred");
            return ExitCode::FAILURE;
        }
    };
    let rrset_json = match serde_json::to_string(&rrset) {
        Ok(json) => json,
        Err(error) => {
            eprintln!("Failed to serialize the data: {error}");
            return ExitCode::FAILURE;
        }
    };
    println!("{rrset_json}");
    ExitCode::SUCCESS
}

async fn delete_rrset(cli: &Cli, client: &Client, args: &ResourceRecordSetDeleteArgs) -> ExitCode {
    let subname = if args.subname == "@" {
        None
    } else {
        Some(args.subname.as_str())
    };
    match client
        .rrset()
        .delete_rrset(&args.name, subname, &args.r#type)
        .await
    {
        Ok(_) => {
            if !cli.quiet {
                eprintln!(
                    "rrset {} {}.{} has been deleted or did not exist",
                    args.r#type, args.subname, args.name
                )
            }
        }
        Err(Error::NotFound) => {
            if !cli.quiet {
                eprintln!(
                    "RRSet {} does not exist or you are not the owner",
                    args.name
                );
            }
            return ExitCode::FAILURE;
        }
        Err(error) => {
            if !cli.quiet {
                eprintln!(
                    "Deletion of rrset {} {}.{} failed: {}",
                    args.r#type, args.subname, args.name, error
                );
            }
            return ExitCode::FAILURE;
        }
    };
    ExitCode::SUCCESS
}

async fn list_token(client: &Client) -> ExitCode {
    let tokens = match client.token().list().await {
        Ok(rrset) => rrset,
        Err(error) => {
            eprintln!("Failed to list tokens: {}", error);
            return ExitCode::FAILURE;
        }
    };
    let tokens_json = match serde_json::to_string(&tokens) {
        Ok(json) => json,
        Err(error) => {
            eprintln!("Failed to serialize tokin list: {error}");
            return ExitCode::FAILURE;
        }
    };
    println!("{tokens_json}");
    ExitCode::SUCCESS
}

async fn get_token(client: &Client, args: &TokenIdArgs) -> ExitCode {
    let tokens = match client.token().get(&args.token_id).await {
        Ok(rrset) => rrset,
        Err(error) => {
            eprintln!("Failed to get token: {}", error);
            return ExitCode::FAILURE;
        }
    };
    let tokens_json = match serde_json::to_string(&tokens) {
        Ok(json) => json,
        Err(error) => {
            eprintln!("Failed to serialize tokin list: {error}");
            return ExitCode::FAILURE;
        }
    };
    println!("{tokens_json}");
    ExitCode::SUCCESS
}

async fn create_token(client: &Client, args: &TokenCreateArgs) -> ExitCode {
    let tokens = match client
        .token()
        .create(
            args.name.clone(),
            args.subnets.clone(),
            args.manage,
            args.max_age.clone(),
            args.max_unused_period.clone(),
        )
        .await
    {
        Ok(rrset) => rrset,
        Err(error) => {
            eprintln!("Failed to get token: {}", error);
            return ExitCode::FAILURE;
        }
    };
    let tokens_json = match serde_json::to_string(&tokens) {
        Ok(json) => json,
        Err(error) => {
            eprintln!("Failed to serialize tokin list: {error}");
            return ExitCode::FAILURE;
        }
    };
    println!("{tokens_json}");
    ExitCode::SUCCESS
}

async fn patch_token(client: &Client, args: &TokenPatchArgs) -> ExitCode {
    let tokens = match client
        .token()
        .patch(
            &args.token_id,
            args.name.clone(),
            args.subnets.clone(),
            args.manage,
            args.max_age.clone(),
            args.max_unused_period.clone(),
        )
        .await
    {
        Ok(rrset) => rrset,
        Err(error) => {
            eprintln!("Failed to patch token: {}", error);
            return ExitCode::FAILURE;
        }
    };
    let tokens_json = match serde_json::to_string(&tokens) {
        Ok(json) => json,
        Err(error) => {
            eprintln!("Failed to serialize tokin list: {error}");
            return ExitCode::FAILURE;
        }
    };
    println!("{tokens_json}");
    ExitCode::SUCCESS
}

async fn delete_token(client: &Client, args: &TokenIdArgs) -> ExitCode {
    match client.token().delete(&args.token_id).await {
        Ok(_) => (),
        Err(error) => {
            eprintln!("Failed to delete token: {}", error);
            return ExitCode::FAILURE;
        }
    };
    ExitCode::SUCCESS
}

async fn get_token_policy(client: &Client, args: &TokenPolicyGetArgs) -> ExitCode {
    match client
        .token()
        .get_policy(&args.token_id, &args.policy_id)
        .await
    {
        Ok(response) => match serde_json::to_string(&response) {
            Ok(json) => println!("{json}"),
            Err(error) => {
                eprintln!("Failed to serialize tokin policy: {error}");
                return ExitCode::FAILURE;
            }
        },
        Err(error) => {
            eprintln!("Failed to get token policy: {}", error);
            return ExitCode::FAILURE;
        }
    };
    ExitCode::SUCCESS
}

async fn list_token_policies(client: &Client, args: &TokenPolicyListArgs) -> ExitCode {
    match client.token().list_policies(&args.token_id).await {
        Ok(response) => match serde_json::to_string(&response) {
            Ok(json) => println!("{json}"),
            Err(error) => {
                eprintln!("Failed to serialize tokin policy list: {error}");
                return ExitCode::FAILURE;
            }
        },
        Err(error) => {
            eprintln!("Failed to get list of token policies: {}", error);
            return ExitCode::FAILURE;
        }
    };
    ExitCode::SUCCESS
}

async fn create_token_policy(client: &Client, args: &TokenPolicyCreateArgs) -> ExitCode {
    match client
        .token()
        .create_policy(
            &args.token_id,
            args.domain.clone().filter(|d| !d.is_empty()),
            args.subname.clone().filter(|s| !s.is_empty()),
            args.r#type.clone().filter(|r| !r.is_empty()),
            args.perm_write,
        )
        .await
    {
        Ok(_) => (),
        Err(error) => {
            eprintln!("Failed to create the token policies: {}", error);
            return ExitCode::FAILURE;
        }
    };
    ExitCode::SUCCESS
}

async fn patch_token_policy(client: &Client, args: &TokenPolicyPatchArgs) -> ExitCode {
    match client
        .token()
        .patch_policy(
            &args.token_id,
            &args.policy_id,
            args.domain.clone().filter(|d| !d.is_empty()),
            args.subname.clone().filter(|s| !s.is_empty()),
            args.r#type.clone().filter(|r| !r.is_empty()),
            args.perm_write,
        )
        .await
    {
        Ok(_) => (),
        Err(error) => {
            eprintln!("Failed to create the token policies: {}", error);
            return ExitCode::FAILURE;
        }
    };
    ExitCode::SUCCESS
}

async fn delete_token_policy(client: &Client, args: &TokenPolicyDeleteArgs) -> ExitCode {
    match client
        .token()
        .delete_policy(&args.token_id, &args.policy_id)
        .await
    {
        Ok(_) => (),
        Err(error) => {
            eprintln!("Failed to delete the token policies: {}", error);
            return ExitCode::FAILURE;
        }
    };
    ExitCode::SUCCESS
}