Skip to content
This repository was archived by the owner on Oct 23, 2022. It is now read-only.

Commit ed13282

Browse files
committedAug 5, 2020
feat: make Ipns an async_trait
Signed-off-by: ljedrz <ljedrz@gmail.com>
1 parent c6952cb commit ed13282

File tree

2 files changed

+25
-25
lines changed

2 files changed

+25
-25
lines changed
 

‎src/ipns/mod.rs

+17-16
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#![allow(dead_code)]
22
use crate::error::Error;
33
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;
66
use libp2p::PeerId;
77

88
mod dns;
@@ -11,22 +11,23 @@ mod ipns_pb {
1111
include!(concat!(env!("OUT_DIR"), "/ipns_pb.rs"));
1212
}
1313

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>;
1817

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+
}
2322

23+
#[async_trait]
24+
impl<Types: RepoTypes> Ipns for Repo<Types> {
2425
/// 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> {
2627
let path = path.to_owned();
2728
match path.root() {
2829
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? {
3031
Some(path) => Ok(path),
3132
None => Err(anyhow::anyhow!("unimplemented")),
3233
},
@@ -35,8 +36,8 @@ impl<Types: RepoTypes> Ipns<Types> {
3536
}
3637

3738
/// 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);
4041
let key = key.to_owned();
4142
let mut path = path.to_owned();
4243
future.await?;
@@ -45,8 +46,8 @@ impl<Types: RepoTypes> Ipns<Types> {
4546
}
4647

4748
/// 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?;
5051
Ok(())
5152
}
5253
}

‎src/lib.rs

+8-9
Original file line numberDiff line numberDiff line change
@@ -350,10 +350,6 @@ impl<Types: IpfsTypes> std::ops::Deref for Ipfs<Types> {
350350
}
351351

352352
impl<Types: IpfsTypes> Ipfs<Types> {
353-
fn ipns(&self) -> Ipns<Types> {
354-
Ipns::new(self.clone())
355-
}
356-
357353
/// Puts a block into the ipfs repo.
358354
pub async fn put_block(&self, block: Block) -> Result<Cid, Error> {
359355
self.repo
@@ -445,23 +441,26 @@ impl<Types: IpfsTypes> Ipfs<Types> {
445441

446442
/// Resolves a ipns path to an ipld path.
447443
pub async fn resolve_ipns(&self, path: &IpfsPath) -> Result<IpfsPath, Error> {
448-
self.ipns()
449-
.resolve(path)
444+
self.repo
445+
.resolve_ipns(path)
450446
.instrument(self.span.clone())
451447
.await
452448
}
453449

454450
/// Publishes an ipld path.
455451
pub async fn publish_ipns(&self, key: &PeerId, path: &IpfsPath) -> Result<IpfsPath, Error> {
456-
self.ipns()
457-
.publish(key, path)
452+
self.repo
453+
.publish_ipns(key, path)
458454
.instrument(self.span.clone())
459455
.await
460456
}
461457

462458
/// Cancel an ipns path.
463459
pub async fn cancel_ipns(&self, key: &PeerId) -> Result<(), Error> {
464-
self.ipns().cancel(key).instrument(self.span.clone()).await
460+
self.repo
461+
.cancel_ipns(key)
462+
.instrument(self.span.clone())
463+
.await
465464
}
466465

467466
pub async fn connect<T: Into<ConnectionTarget>>(&self, target: T) -> Result<(), Error> {

0 commit comments

Comments
 (0)