Skip to content
This repository was archived by the owner on Feb 3, 2025. It is now read-only.

Commit d01bd30

Browse files
committed
Get contact for npub
1 parent 25bd173 commit d01bd30

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

mutiny-core/src/labels.rs

+14
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,20 @@ pub trait LabelStorage {
155155
}
156156
Ok(None)
157157
}
158+
/// Finds a contact that has the given npub
159+
fn get_contact_for_npub(
160+
&self,
161+
npub: XOnlyPublicKey,
162+
) -> Result<Option<(String, Contact)>, MutinyError> {
163+
// todo this is not efficient, we should have a map of npub to contact
164+
let contacts = self.get_contacts()?;
165+
for (id, contact) in contacts {
166+
if contact.npub == Some(npub) {
167+
return Ok(Some((id, contact)));
168+
}
169+
}
170+
Ok(None)
171+
}
158172
}
159173

160174
impl<S: MutinyStorage> LabelStorage for S {

mutiny-wasm/src/lib.rs

+13
Original file line numberDiff line numberDiff line change
@@ -1312,6 +1312,19 @@ impl MutinyWallet {
13121312
Ok(self.inner.node_manager.edit_contact(id, contact)?)
13131313
}
13141314

1315+
pub async fn get_contact_for_npub(
1316+
&self,
1317+
npub: String,
1318+
) -> Result<Option<TagItem>, MutinyJsError> {
1319+
let npub = parse_npub(&npub)?;
1320+
let contact = self.inner.node_manager.get_contact_for_npub(npub)?;
1321+
1322+
match contact {
1323+
Some((id, c)) => Ok(Some((id, c).into())),
1324+
None => Ok(None),
1325+
}
1326+
}
1327+
13151328
pub fn get_tag_items(&self) -> Result<Vec<TagItem>, MutinyJsError> {
13161329
let mut tags: Vec<TagItem> = self
13171330
.inner

0 commit comments

Comments
 (0)