1
1
#![ allow( dead_code) ]
2
2
use crate :: error:: Error ;
3
3
use crate :: path:: { IpfsPath , PathRoot } ;
4
- use crate :: repo:: RepoTypes ;
5
- use crate :: Ipfs ;
4
+ use crate :: repo:: { Repo , RepoTypes } ;
5
+ use async_trait :: async_trait ;
6
6
use libp2p:: PeerId ;
7
7
8
8
mod dns;
@@ -11,22 +11,23 @@ mod ipns_pb {
11
11
include ! ( concat!( env!( "OUT_DIR" ) , "/ipns_pb.rs" ) ) ;
12
12
}
13
13
14
- #[ derive( Clone , Debug ) ]
15
- pub struct Ipns < Types : RepoTypes > {
16
- ipfs : Ipfs < Types > ,
17
- }
14
+ #[ async_trait]
15
+ pub trait Ipns {
16
+ async fn resolve_ipns ( & self , path : & IpfsPath ) -> Result < IpfsPath , Error > ;
18
17
19
- impl < Types : RepoTypes > Ipns < Types > {
20
- pub fn new ( ipfs : Ipfs < Types > ) -> Self {
21
- Ipns { ipfs }
22
- }
18
+ async fn publish_ipns ( & self , key : & PeerId , path : & IpfsPath ) -> Result < IpfsPath , Error > ;
19
+
20
+ async fn cancel_ipns ( & self , key : & PeerId ) -> Result < ( ) , Error > ;
21
+ }
23
22
23
+ #[ async_trait]
24
+ impl < Types : RepoTypes > Ipns for Repo < Types > {
24
25
/// Resolves a ipns path to an ipld path.
25
- pub async fn resolve ( & self , path : & IpfsPath ) -> Result < IpfsPath , Error > {
26
+ async fn resolve_ipns ( & self , path : & IpfsPath ) -> Result < IpfsPath , Error > {
26
27
let path = path. to_owned ( ) ;
27
28
match path. root ( ) {
28
29
PathRoot :: Ipld ( _) => Ok ( path) ,
29
- PathRoot :: Ipns ( peer_id) => match self . ipfs . repo . get_ipns ( peer_id) . await ? {
30
+ PathRoot :: Ipns ( peer_id) => match self . get_ipns ( peer_id) . await ? {
30
31
Some ( path) => Ok ( path) ,
31
32
None => Err ( anyhow:: anyhow!( "unimplemented" ) ) ,
32
33
} ,
@@ -35,8 +36,8 @@ impl<Types: RepoTypes> Ipns<Types> {
35
36
}
36
37
37
38
/// Publishes an ipld path.
38
- pub async fn publish ( & self , key : & PeerId , path : & IpfsPath ) -> Result < IpfsPath , Error > {
39
- let future = self . ipfs . repo . put_ipns ( key, path) ;
39
+ async fn publish_ipns ( & self , key : & PeerId , path : & IpfsPath ) -> Result < IpfsPath , Error > {
40
+ let future = self . put_ipns ( key, path) ;
40
41
let key = key. to_owned ( ) ;
41
42
let mut path = path. to_owned ( ) ;
42
43
future. await ?;
@@ -45,8 +46,8 @@ impl<Types: RepoTypes> Ipns<Types> {
45
46
}
46
47
47
48
/// Cancel an ipns path.
48
- pub async fn cancel ( & self , key : & PeerId ) -> Result < ( ) , Error > {
49
- self . ipfs . repo . remove_ipns ( key) . await ?;
49
+ async fn cancel_ipns ( & self , key : & PeerId ) -> Result < ( ) , Error > {
50
+ self . remove_ipns ( key) . await ?;
50
51
Ok ( ( ) )
51
52
}
52
53
}
0 commit comments