This repository was archived by the owner on Feb 3, 2025. It is now read-only.
File tree 2 files changed +27
-0
lines changed
2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -155,6 +155,20 @@ pub trait LabelStorage {
155
155
}
156
156
Ok ( None )
157
157
}
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
+ }
158
172
}
159
173
160
174
impl < S : MutinyStorage > LabelStorage for S {
Original file line number Diff line number Diff line change @@ -1312,6 +1312,19 @@ impl MutinyWallet {
1312
1312
Ok ( self . inner . node_manager . edit_contact ( id, contact) ?)
1313
1313
}
1314
1314
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
+
1315
1328
pub fn get_tag_items ( & self ) -> Result < Vec < TagItem > , MutinyJsError > {
1316
1329
let mut tags: Vec < TagItem > = self
1317
1330
. inner
You can’t perform that action at this time.
0 commit comments