@@ -36,14 +36,7 @@ mod auth;
36
36
///
37
37
/// This is loaded based on the `--registry` flag and the config settings.
38
38
#[ derive( Debug ) ]
39
- pub struct RegistryConfig {
40
- /// The index URL. If `None`, use crates.io.
41
- pub index : Option < String > ,
42
- pub credential : Credential ,
43
- }
44
-
45
- #[ derive( Debug ) ]
46
- pub enum Credential {
39
+ pub enum RegistryConfig {
47
40
None ,
48
41
/// The authentication token.
49
42
Token ( String ) ,
@@ -56,23 +49,23 @@ impl RegistryConfig {
56
49
///
57
50
/// [`None`]: Credential::None
58
51
pub fn is_none ( & self ) -> bool {
59
- matches ! ( & self . credential , Credential :: None )
52
+ matches ! ( self , Self :: None )
60
53
}
61
54
/// Returns `true` if the credential is [`Token`].
62
55
///
63
56
/// [`Token`]: Credential::Token
64
57
pub fn is_token ( & self ) -> bool {
65
- matches ! ( & self . credential , Credential :: Token ( ..) )
58
+ matches ! ( self , Self :: Token ( ..) )
66
59
}
67
60
pub fn as_token ( & self ) -> Option < & str > {
68
- if let Credential :: Token ( v) = & self . credential {
61
+ if let Self :: Token ( v) = self {
69
62
Some ( & * v)
70
63
} else {
71
64
None
72
65
}
73
66
}
74
67
pub fn as_process ( & self ) -> Option < & ( PathBuf , Vec < String > ) > {
75
- if let Credential :: Process ( v) = & self . credential {
68
+ if let Self :: Process ( v) = self {
76
69
Some ( v)
77
70
} else {
78
71
None
@@ -133,8 +126,8 @@ pub fn publish(ws: &Workspace<'_>, opts: &PublishOpts<'_>) -> CargoResult<()> {
133
126
let ( mut registry, _reg_cfg, reg_id) = registry (
134
127
opts. config ,
135
128
opts. token . clone ( ) ,
136
- opts. index . clone ( ) ,
137
- publish_registry,
129
+ opts. index . as_deref ( ) ,
130
+ publish_registry. as_deref ( ) ,
138
131
true ,
139
132
!opts. dry_run ,
140
133
) ?;
@@ -371,17 +364,14 @@ pub fn registry_configuration(
371
364
) -> CargoResult < RegistryConfig > {
372
365
let err_both = |token_key : & str , proc_key : & str | {
373
366
Err ( format_err ! (
374
- "both `{TOKEN_KEY }` and `{PROC_KEY }` \
367
+ "both `{token_key }` and `{proc_key }` \
375
368
were specified in the config\n \
376
369
Only one of these values may be set, remove one or the other to proceed.",
377
- TOKEN_KEY = token_key,
378
- PROC_KEY = proc_key,
379
370
) )
380
371
} ;
381
372
// `registry.default` is handled in command-line parsing.
382
- let ( index , token, process) = match registry {
373
+ let ( token, process) = match registry {
383
374
Some ( registry) => {
384
- let index = Some ( config. get_registry_index ( registry) ?. to_string ( ) ) ;
385
375
let token_key = format ! ( "registries.{registry}.token" ) ;
386
376
let token = config. get_string ( & token_key) ?. map ( |p| p. val ) ;
387
377
let process = if config. cli_unstable ( ) . credential_process {
@@ -399,7 +389,7 @@ pub fn registry_configuration(
399
389
} else {
400
390
None
401
391
} ;
402
- ( index , token, process)
392
+ ( token, process)
403
393
}
404
394
None => {
405
395
// Use crates.io default.
@@ -415,21 +405,18 @@ pub fn registry_configuration(
415
405
} else {
416
406
None
417
407
} ;
418
- ( None , token, process)
408
+ ( token, process)
419
409
}
420
410
} ;
421
411
422
412
let credential_process =
423
413
process. map ( |process| ( process. path . resolve_program ( config) , process. args ) ) ;
424
414
425
- Ok ( RegistryConfig {
426
- index,
427
- credential : match ( token, credential_process) {
428
- ( None , None ) => Credential :: None ,
429
- ( None , Some ( process) ) => Credential :: Process ( process) ,
430
- ( Some ( x) , None ) => Credential :: Token ( x) ,
431
- ( Some ( _) , Some ( _) ) => unreachable ! ( "Only one of these values may be set." ) ,
432
- } ,
415
+ Ok ( match ( token, credential_process) {
416
+ ( None , None ) => RegistryConfig :: None ,
417
+ ( None , Some ( process) ) => RegistryConfig :: Process ( process) ,
418
+ ( Some ( x) , None ) => RegistryConfig :: Token ( x) ,
419
+ ( Some ( _) , Some ( _) ) => unreachable ! ( "Only one of these values may be set." ) ,
433
420
} )
434
421
}
435
422
@@ -447,8 +434,8 @@ pub fn registry_configuration(
447
434
fn registry (
448
435
config : & Config ,
449
436
token : Option < String > ,
450
- index : Option < String > ,
451
- registry : Option < String > ,
437
+ index : Option < & str > ,
438
+ registry : Option < & str > ,
452
439
force_update : bool ,
453
440
validate_token : bool ,
454
441
) -> CargoResult < ( Registry , RegistryConfig , SourceId ) > {
@@ -457,9 +444,12 @@ fn registry(
457
444
bail ! ( "both `--index` and `--registry` should not be set at the same time" ) ;
458
445
}
459
446
// Parse all configuration options
460
- let reg_cfg = registry_configuration ( config, registry. as_deref ( ) ) ?;
461
- let opt_index = reg_cfg. index . as_deref ( ) . or_else ( || index. as_deref ( ) ) ;
462
- let sid = get_source_id ( config, opt_index, registry. as_deref ( ) ) ?;
447
+ let reg_cfg = registry_configuration ( config, registry) ?;
448
+ let opt_index = registry
449
+ . map ( |r| config. get_registry_index ( r) )
450
+ . transpose ( ) ?
451
+ . map ( |u| u. to_string ( ) ) ;
452
+ let sid = get_source_id ( config, opt_index. as_deref ( ) . or ( index) , registry) ?;
463
453
if !sid. is_remote_registry ( ) {
464
454
bail ! (
465
455
"{} does not support API commands.\n \
@@ -512,13 +502,8 @@ fn registry(
512
502
) ?;
513
503
reg_cfg. as_token ( ) . map ( |t| t. to_owned ( ) )
514
504
} else {
515
- let token = auth:: auth_token (
516
- config,
517
- token. as_deref ( ) ,
518
- & reg_cfg. credential ,
519
- registry. as_deref ( ) ,
520
- & api_host,
521
- ) ?;
505
+ let token =
506
+ auth:: auth_token ( config, token. as_deref ( ) , & reg_cfg, registry, & api_host) ?;
522
507
Some ( token)
523
508
}
524
509
}
@@ -730,7 +715,8 @@ pub fn registry_login(
730
715
token : Option < String > ,
731
716
reg : Option < String > ,
732
717
) -> CargoResult < ( ) > {
733
- let ( registry, reg_cfg, _) = registry ( config, token. clone ( ) , None , reg. clone ( ) , false , false ) ?;
718
+ let ( registry, reg_cfg, _) =
719
+ registry ( config, token. clone ( ) , None , reg. as_deref ( ) , false , false ) ?;
734
720
735
721
let token = match token {
736
722
Some ( token) => token,
@@ -752,7 +738,7 @@ pub fn registry_login(
752
738
}
753
739
} ;
754
740
755
- if let Credential :: Token ( old_token) = & reg_cfg. credential {
741
+ if let RegistryConfig :: Token ( old_token) = & reg_cfg {
756
742
if old_token == & token {
757
743
config. shell ( ) . status ( "Login" , "already logged in" ) ?;
758
744
return Ok ( ( ) ) ;
@@ -778,7 +764,7 @@ pub fn registry_login(
778
764
}
779
765
780
766
pub fn registry_logout ( config : & Config , reg : Option < String > ) -> CargoResult < ( ) > {
781
- let ( registry, reg_cfg, _) = registry ( config, None , None , reg. clone ( ) , false , false ) ?;
767
+ let ( registry, reg_cfg, _) = registry ( config, None , None , reg. as_deref ( ) , false , false ) ?;
782
768
let reg_name = reg. as_deref ( ) . unwrap_or ( CRATES_IO_DOMAIN ) ;
783
769
if reg_cfg. is_none ( ) {
784
770
config. shell ( ) . status (
@@ -826,8 +812,8 @@ pub fn modify_owners(config: &Config, opts: &OwnersOptions) -> CargoResult<()> {
826
812
let ( mut registry, _, _) = registry (
827
813
config,
828
814
opts. token . clone ( ) ,
829
- opts. index . clone ( ) ,
830
- opts. registry . clone ( ) ,
815
+ opts. index . as_deref ( ) ,
816
+ opts. registry . as_deref ( ) ,
831
817
true ,
832
818
true ,
833
819
) ?;
@@ -902,7 +888,8 @@ pub fn yank(
902
888
None => bail ! ( "a version must be specified to yank" ) ,
903
889
} ;
904
890
905
- let ( mut registry, _, _) = registry ( config, token, index, reg, true , true ) ?;
891
+ let ( mut registry, _, _) =
892
+ registry ( config, token, index. as_deref ( ) , reg. as_deref ( ) , true , true ) ?;
906
893
907
894
if undo {
908
895
config
@@ -961,7 +948,8 @@ pub fn search(
961
948
prefix
962
949
}
963
950
964
- let ( mut registry, _, source_id) = registry ( config, None , index, reg, false , false ) ?;
951
+ let ( mut registry, _, source_id) =
952
+ registry ( config, None , index. as_deref ( ) , reg. as_deref ( ) , false , false ) ?;
965
953
let ( crates, total_crates) = registry. search ( query, limit) . with_context ( || {
966
954
format ! (
967
955
"failed to retrieve search results from the registry at {}" ,
0 commit comments