@@ -183,8 +183,10 @@ impl RecertConfig {
183
183
. context ( "force_expire must be a boolean" ) ?;
184
184
let cluster_rename = match value. remove ( "cluster_rename" ) {
185
185
Some ( value) => Some (
186
- ClusterNamesRename :: parse ( value. as_str ( ) . context ( "cluster_rename must be a string" ) ?)
187
- . context ( format ! ( "cluster_rename {}" , value. as_str( ) . unwrap( ) ) ) ?,
186
+ ClusterNamesRename :: parse ( value. as_str ( ) . context ( "cluster_rename must be a string" ) ?) . context ( format ! (
187
+ "cluster_rename {}" ,
188
+ value. as_str( ) . context( "cluster_rename must be a string" ) ?
189
+ ) ) ?,
188
190
) ,
189
191
None => None ,
190
192
} ;
@@ -202,7 +204,8 @@ impl RecertConfig {
202
204
} ;
203
205
let proxy = match value. remove ( "proxy" ) {
204
206
Some ( value) => Some (
205
- Proxy :: parse ( value. as_str ( ) . context ( "proxy must be a string" ) ?) . context ( format ! ( "proxy {}" , value. as_str( ) . unwrap( ) ) ) ?,
207
+ Proxy :: parse ( value. as_str ( ) . context ( "proxy must be a string" ) ?)
208
+ . context ( format ! ( "proxy {}" , value. as_str( ) . context( "proxy must be a string" ) ?) ) ?,
206
209
) ,
207
210
None => None ,
208
211
} ;
@@ -376,29 +379,33 @@ impl RecertConfig {
376
379
}
377
380
}
378
381
379
- fn parse_summary_file_clean ( value : Value ) -> Result < Option < ConfigPath > , anyhow :: Error > {
382
+ fn parse_summary_file_clean ( value : Value ) -> Result < Option < ConfigPath > > {
380
383
Ok ( Some (
381
- ConfigPath :: new ( value. as_str ( ) . context ( "summary_file_clean must be a string" ) ?)
382
- . context ( format ! ( "summary_file_clean {}" , value. as_str( ) . unwrap( ) ) ) ?,
384
+ ConfigPath :: new ( value. as_str ( ) . context ( "summary_file_clean must be a string" ) ?) . context ( format ! (
385
+ "summary_file_clean {}" ,
386
+ value. as_str( ) . context( "summary_file_clean must be a string" ) ?
387
+ ) ) ?,
383
388
) )
384
389
}
385
390
386
- fn parse_summary_file ( value : Value ) -> Result < Option < ConfigPath > , anyhow :: Error > {
391
+ fn parse_summary_file ( value : Value ) -> Result < Option < ConfigPath > > {
387
392
Ok ( Some (
388
393
ConfigPath :: new ( value. as_str ( ) . context ( "summary_file must be a string" ) ?)
389
- . context ( format ! ( "summary_file {}" , value. as_str( ) . unwrap ( ) ) ) ?,
394
+ . context ( format ! ( "summary_file {}" , value. as_str( ) . context ( "summary_file must be a string" ) ? ) ) ?,
390
395
) )
391
396
}
392
397
393
- fn parse_server_ssh_keys ( value : Value ) -> Result < Option < ConfigPath > , anyhow:: Error > {
394
- let config_path = ConfigPath :: new ( value. as_str ( ) . context ( "regenerate_server_ssh_keys must be a string" ) ?)
395
- . context ( format ! ( "regenerate_server_ssh_keys {}" , value. as_str( ) . unwrap( ) ) ) ?;
398
+ fn parse_server_ssh_keys ( value : Value ) -> Result < Option < ConfigPath > > {
399
+ let config_path = ConfigPath :: new ( value. as_str ( ) . context ( "regenerate_server_ssh_keys must be a string" ) ?) . context ( format ! (
400
+ "regenerate_server_ssh_keys {}" ,
401
+ value. as_str( ) . context( "regenerate_server_ssh_keys must be a string" ) ?
402
+ ) ) ?;
396
403
ensure ! ( config_path. try_exists( ) ?, "regenerate_server_ssh_keys must exist" ) ;
397
404
ensure ! ( config_path. is_dir( ) , "regenerate_server_ssh_keys must be a directory" ) ;
398
405
Ok ( Some ( config_path) )
399
406
}
400
407
401
- fn parse_threads ( value : Value ) -> Result < Option < usize > , anyhow :: Error > {
408
+ fn parse_threads ( value : Value ) -> Result < Option < usize > > {
402
409
Ok ( Some (
403
410
value
404
411
. as_u64 ( )
@@ -415,8 +422,10 @@ fn parse_cert_rules(value: Value) -> Result<UseCertRules> {
415
422
. context ( "use_cert_rules must be an array" ) ?
416
423
. iter ( )
417
424
. map ( |value| {
418
- UseCert :: parse ( value. as_str ( ) . context ( "use_cert_rules must be an array of strings" ) ?)
419
- . context ( format ! ( "use_cert_rule {}" , value. as_str( ) . unwrap( ) ) )
425
+ UseCert :: parse ( value. as_str ( ) . context ( "use_cert_rules must be an array of strings" ) ?) . context ( format ! (
426
+ "use_cert_rule {}" ,
427
+ value. as_str( ) . context( "use_cert_rules must be an array of strings" ) ?
428
+ ) )
420
429
} )
421
430
. collect :: < Result < Vec < UseCert > > > ( ) ?,
422
431
) )
@@ -429,8 +438,10 @@ fn parse_use_key_rules(value: Value) -> Result<UseKeyRules> {
429
438
. context ( "use_key_rules must be an array" ) ?
430
439
. iter ( )
431
440
. map ( |value| {
432
- UseKey :: parse ( value. as_str ( ) . context ( "use_key_rules must be an array of strings" ) ?)
433
- . context ( format ! ( "use_key_rule {}" , value. as_str( ) . unwrap( ) ) )
441
+ UseKey :: parse ( value. as_str ( ) . context ( "use_key_rules must be an array of strings" ) ?) . context ( format ! (
442
+ "use_key_rule {}" ,
443
+ value. as_str( ) . context( "use_key_rules must be an array of strings" ) ?
444
+ ) )
434
445
} )
435
446
. collect :: < Result < Vec < UseKey > > > ( ) ?,
436
447
) )
@@ -443,8 +454,10 @@ fn parse_cs_san_rules(value: Value) -> Result<CnSanReplaceRules> {
443
454
. context ( "cn_san_replace_rules must be an array" ) ?
444
455
. iter ( )
445
456
. map ( |value| {
446
- CnSanReplace :: parse ( value. as_str ( ) . context ( "cn_san_replace_rules must be an array of strings" ) ?)
447
- . context ( format ! ( "cn_san_replace_rule {}" , value. as_str( ) . unwrap( ) ) )
457
+ CnSanReplace :: parse ( value. as_str ( ) . context ( "cn_san_replace_rules must be an array of strings" ) ?) . context ( format ! (
458
+ "cn_san_replace_rule {}" ,
459
+ value. as_str( ) . context( "cn_san_replace_rules must be an array of strings" ) ?
460
+ ) )
448
461
} )
449
462
. collect :: < Result < Vec < CnSanReplace > > > ( ) ?,
450
463
) )
@@ -474,8 +487,9 @@ fn parse_dir_file_config(
474
487
. context ( "static_dirs must be an array" ) ?
475
488
. iter ( )
476
489
. map ( |value| {
477
- let config_path = ConfigPath :: new ( value. as_str ( ) . context ( "static_dirs must be an array of strings" ) ?)
478
- . context ( format ! ( "config dir {}" , value. as_str( ) . unwrap( ) ) ) ?;
490
+ let config_path = ConfigPath :: new ( value. as_str ( ) . context ( "static_dirs must be an array of strings" ) ?) . context (
491
+ format ! ( "config dir {}" , value. as_str( ) . context( "static_dirs must be an array of strings" ) ?) ,
492
+ ) ?;
479
493
480
494
ensure ! ( config_path. try_exists( ) ?, format!( "static_dir must exist: {}" , config_path) ) ;
481
495
ensure ! ( config_path. is_dir( ) , format!( "static_dir must be a directory: {}" , config_path) ) ;
@@ -506,8 +520,11 @@ fn parse_dir_file_config(
506
520
. context ( "static_files must be an array" ) ?
507
521
. iter ( )
508
522
. map ( |value| {
509
- let config_path = ConfigPath :: new ( value. as_str ( ) . context ( "static_files must be an array of strings" ) ?)
510
- . context ( format ! ( "config file {}" , value. as_str( ) . unwrap( ) ) ) ?;
523
+ let config_path =
524
+ ConfigPath :: new ( value. as_str ( ) . context ( "static_files must be an array of strings" ) ?) . context ( format ! (
525
+ "config file {}" ,
526
+ value. as_str( ) . context( "static_files must be an array of strings" ) ?
527
+ ) ) ?;
511
528
512
529
ensure ! ( config_path. try_exists( ) ?, format!( "static_file must exist: {}" , config_path) ) ;
513
530
ensure ! ( config_path. is_file( ) , format!( "static_file must be a file: {}" , config_path) ) ;
@@ -525,8 +542,9 @@ fn parse_dir_file_config(
525
542
. context ( "crypto_dirs must be an array" ) ?
526
543
. iter ( )
527
544
. map ( |value| {
528
- let config_path = ConfigPath :: new ( value. as_str ( ) . context ( "crypto_dirs must be an array of strings" ) ?)
529
- . context ( format ! ( "crypto dir {}" , value. as_str( ) . unwrap( ) ) ) ?;
545
+ let config_path = ConfigPath :: new ( value. as_str ( ) . context ( "crypto_dirs must be an array of strings" ) ?) . context (
546
+ format ! ( "crypto dir {}" , value. as_str( ) . context( "crypto_dirs must be an array of strings" ) ?) ,
547
+ ) ?;
530
548
531
549
ensure ! ( config_path. try_exists( ) ?, format!( "crypto_dir must exist: {}" , config_path) ) ;
532
550
ensure ! ( config_path. is_dir( ) , format!( "crypto_dir must be a directory: {}" , config_path) ) ;
@@ -546,8 +564,11 @@ fn parse_dir_file_config(
546
564
. context ( "crypto_files must be an array" ) ?
547
565
. iter ( )
548
566
. map ( |value| {
549
- let config_path = ConfigPath :: new ( value. as_str ( ) . context ( "crypto_files must be an array of strings" ) ?)
550
- . context ( format ! ( "crypto file {}" , value. as_str( ) . unwrap( ) ) ) ?;
567
+ let config_path =
568
+ ConfigPath :: new ( value. as_str ( ) . context ( "crypto_files must be an array of strings" ) ?) . context ( format ! (
569
+ "crypto file {}" ,
570
+ value. as_str( ) . context( "crypto_files must be an array of strings" ) ?
571
+ ) ) ?;
551
572
552
573
ensure ! ( config_path. try_exists( ) ?, format!( "crypto_file must exist: {}" , config_path) ) ;
553
574
ensure ! ( config_path. is_file( ) , format!( "crypto_file must be a file: {}" , config_path) ) ;
@@ -569,7 +590,10 @@ fn parse_dir_file_config(
569
590
. iter ( )
570
591
. map ( |value| {
571
592
let config_path = ConfigPath :: new ( value. as_str ( ) . context ( "cluster_customization_dirs must be an array of strings" ) ?)
572
- . context ( format ! ( "cluster_customization dir {}" , value. as_str( ) . unwrap( ) ) ) ?;
593
+ . context ( format ! (
594
+ "cluster_customization dir {}" ,
595
+ value. as_str( ) . context( "cluster_customization_dirs must be an array of strings" ) ?
596
+ ) ) ?;
573
597
574
598
ensure ! (
575
599
config_path. try_exists( ) ?,
@@ -597,7 +621,10 @@ fn parse_dir_file_config(
597
621
. iter ( )
598
622
. map ( |value| {
599
623
let config_path = ConfigPath :: new ( value. as_str ( ) . context ( "cluster_customization_files must be an array of strings" ) ?)
600
- . context ( format ! ( "cluster_customization file {}" , value. as_str( ) . unwrap( ) ) ) ?;
624
+ . context ( format ! (
625
+ "cluster_customization file {}" ,
626
+ value. as_str( ) . context( "cluster_customization_files must be an array of strings" ) ?
627
+ ) ) ?;
601
628
602
629
ensure ! (
603
630
config_path. try_exists( ) ?,
0 commit comments