@@ -20,7 +20,7 @@ use super::{
20
20
refs:: { self , Refs } ,
21
21
storage:: { self , Storage } ,
22
22
tracking,
23
- types:: { reference, Force , Namespace , Reference } ,
23
+ types:: { reference, Force , Namespace , One , Reference } ,
24
24
} ;
25
25
use crate :: {
26
26
identities:: git:: { Person , Project , Revision , SomeIdentity , VerifiedPerson , VerifiedProject } ,
@@ -429,6 +429,40 @@ fn ensure_rad_id(storage: &Storage, urn: &Urn, tip: ext::Oid) -> Result<ext::Oid
429
429
. map_err ( |e| Error :: Store ( e. into ( ) ) )
430
430
}
431
431
432
+ fn adopt_rad_self ( storage : & Storage , urn : & Urn , peer : PeerId ) -> Result < ( ) , Error > {
433
+ let rad_self = Reference :: rad_self ( Namespace :: from ( urn) , peer) ;
434
+
435
+ // We only need to crate the rad/id there's a rad/self
436
+ if storage. has_ref ( & rad_self) ? {
437
+ if let Some ( person) =
438
+ identities:: person:: verify ( storage, & unsafe_into_urn ( rad_self. clone ( ) ) ) ?
439
+ {
440
+ let rad_id = unsafe_into_urn ( Reference :: rad_id ( Namespace :: from ( person. urn ( ) ) ) ) ;
441
+ if !storage. has_urn ( & person. urn ( ) ) ? {
442
+ ensure_rad_id ( storage, & rad_id, person. content_id ) ?;
443
+ symref ( storage, & rad_id, rad_self) ?;
444
+ tracking:: track ( storage, & rad_id, peer) ?;
445
+ }
446
+ }
447
+ }
448
+
449
+ Ok ( ( ) )
450
+ }
451
+
452
+ fn symref ( storage : & Storage , top_level : & Urn , symbolic : Reference < One > ) -> Result < ( ) , Error > {
453
+ // Now point our view to the top-level
454
+ Reference :: try_from ( top_level)
455
+ . map_err ( |e| Error :: RefFromUrn {
456
+ urn : top_level. clone ( ) ,
457
+ source : e,
458
+ } ) ?
459
+ . symbolic_ref :: < _ , PeerId > ( symbolic, Force :: False )
460
+ . create ( storage. as_raw ( ) )
461
+ . and ( Ok ( ( ) ) )
462
+ . or_matches ( is_exists_err, || Ok ( ( ) ) )
463
+ . map_err ( |e : git2:: Error | Error :: Store ( e. into ( ) ) )
464
+ }
465
+
432
466
/// Untrack the list of `PeerId`s, which also has the side-effect of removing
433
467
/// that peer's remote references in the storage.
434
468
///
@@ -534,6 +568,7 @@ mod person {
534
568
for peer_id in delegations. iter ( ) {
535
569
if peer_id != local_peer {
536
570
tracking:: track ( storage, & urn, * peer_id) ?;
571
+ adopt_rad_self ( storage, & urn, * peer_id) ?;
537
572
}
538
573
}
539
574
@@ -651,6 +686,7 @@ mod project {
651
686
for peer in tracked {
652
687
if peer != * local_peer {
653
688
tracking:: track ( & storage, & urn, peer) ?;
689
+ adopt_rad_self ( storage, & urn, peer) ?;
654
690
}
655
691
}
656
692
@@ -779,19 +815,11 @@ mod project {
779
815
tracking:: track ( storage, & project_urn, peer) ?;
780
816
781
817
// Now point our view to the top-level
782
- Reference :: try_from ( & delegate_urn)
783
- . map_err ( |e| Error :: RefFromUrn {
784
- urn : delegate_urn. clone ( ) ,
785
- source : e,
786
- } ) ?
787
- . symbolic_ref :: < _ , PeerId > (
788
- Reference :: rad_delegate ( Namespace :: from ( project_urn) , & delegate_urn) ,
789
- Force :: False ,
790
- )
791
- . create ( storage. as_raw ( ) )
792
- . and ( Ok ( ( ) ) )
793
- . or_matches ( is_exists_err, || Ok ( ( ) ) )
794
- . map_err ( |e : git2:: Error | Error :: Store ( e. into ( ) ) )
818
+ symref (
819
+ storage,
820
+ & delegate_urn,
821
+ Reference :: rad_delegate ( Namespace :: from ( project_urn) , & delegate_urn) ,
822
+ )
795
823
}
796
824
797
825
/// Track all direct delegations of a `Project`.
0 commit comments