@konemono/nostr-login 1.7.63 → 1.7.64

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@konemono/nostr-login",
3
- "version": "1.7.63",
3
+ "version": "1.7.64",
4
4
  "description": "",
5
5
  "main": "./dist/index.esm.js",
6
6
  "types": "./dist/index.d.ts",
package/src/index.ts CHANGED
@@ -148,7 +148,11 @@ export class NostrLoginInitializer {
148
148
  }
149
149
 
150
150
  private openPopup(url: string) {
151
- this.popupManager.openPopup(url);
151
+ if (url.startsWith('nostrsigner:')) {
152
+ window.location.href = url;
153
+ } else {
154
+ this.popupManager.openPopup(url);
155
+ }
152
156
  }
153
157
 
154
158
  private async switchAccount(info: Info, signup = false) {
@@ -27,64 +27,64 @@ export class AmberDirectSigner implements Signer {
27
27
  decrypt: (pubkey: string, ciphertext: string) => this.decrypt44(pubkey, ciphertext),
28
28
  };
29
29
 
30
- public async getPublicKey(): Promise<string> {
31
- const id = Math.random().toString(36).substring(7);
30
+ public async getPublicKey(id?: string): Promise<string> {
31
+ id = id || Math.random().toString(36).substring(7);
32
32
  const url = this.generateUrl('', 'get_public_key', id);
33
33
  window.location.href = url;
34
34
  return new Promise((resolve) => {
35
- AmberDirectSigner.pendingResolves.set(id, resolve);
35
+ AmberDirectSigner.pendingResolves.set(id!, resolve);
36
36
  });
37
37
  }
38
38
 
39
- public async signEvent(event: any): Promise<any> {
40
- const id = Math.random().toString(36).substring(7);
39
+ public async signEvent(event: any, id?: string): Promise<any> {
40
+ id = id || Math.random().toString(36).substring(7);
41
41
  const url = this.generateUrl(JSON.stringify(event), 'sign_event', id);
42
42
  window.location.href = url;
43
43
  return new Promise((resolve) => {
44
- AmberDirectSigner.pendingResolves.set(id, (result: string) => {
44
+ AmberDirectSigner.pendingResolves.set(id!, (result: string) => {
45
45
  resolve(JSON.parse(result));
46
46
  });
47
47
  });
48
48
  }
49
49
 
50
- public async encrypt04(pubkey: string, plaintext: string): Promise<string> {
51
- const id = Math.random().toString(36).substring(7);
50
+ public async encrypt04(pubkey: string, plaintext: string, id?: string): Promise<string> {
51
+ id = id || Math.random().toString(36).substring(7);
52
52
  const url = this.generateUrl(plaintext, 'nip04_encrypt', id, pubkey);
53
53
  window.location.href = url;
54
54
  return new Promise((resolve) => {
55
- AmberDirectSigner.pendingResolves.set(id, resolve);
55
+ AmberDirectSigner.pendingResolves.set(id!, resolve);
56
56
  });
57
57
  }
58
58
 
59
- public async decrypt04(pubkey: string, ciphertext: string): Promise<string> {
60
- const id = Math.random().toString(36).substring(7);
59
+ public async decrypt04(pubkey: string, ciphertext: string, id?: string): Promise<string> {
60
+ id = id || Math.random().toString(36).substring(7);
61
61
  const url = this.generateUrl(ciphertext, 'nip04_decrypt', id, pubkey);
62
62
  window.location.href = url;
63
63
  return new Promise((resolve) => {
64
- AmberDirectSigner.pendingResolves.set(id, resolve);
64
+ AmberDirectSigner.pendingResolves.set(id!, resolve);
65
65
  });
66
66
  }
67
67
 
68
- public async encrypt44(pubkey: string, plaintext: string): Promise<string> {
69
- const id = Math.random().toString(36).substring(7);
68
+ public async encrypt44(pubkey: string, plaintext: string, id?: string): Promise<string> {
69
+ id = id || Math.random().toString(36).substring(7);
70
70
  const url = this.generateUrl(plaintext, 'nip44_encrypt', id, pubkey);
71
71
  window.location.href = url;
72
72
  return new Promise((resolve) => {
73
- AmberDirectSigner.pendingResolves.set(id, resolve);
73
+ AmberDirectSigner.pendingResolves.set(id!, resolve);
74
74
  });
75
75
  }
76
76
 
77
- public async decrypt44(pubkey: string, ciphertext: string): Promise<string> {
78
- const id = Math.random().toString(36).substring(7);
77
+ public async decrypt44(pubkey: string, ciphertext: string, id?: string): Promise<string> {
78
+ id = id || Math.random().toString(36).substring(7);
79
79
  const url = this.generateUrl(ciphertext, 'nip44_decrypt', id, pubkey);
80
80
  window.location.href = url;
81
81
  return new Promise((resolve) => {
82
- AmberDirectSigner.pendingResolves.set(id, resolve);
82
+ AmberDirectSigner.pendingResolves.set(id!, resolve);
83
83
  });
84
84
  }
85
85
 
86
86
 
87
- private generateUrl(content: string, type: string, id: string, pubkey?: string): string {
87
+ public generateUrl(content: string, type: string, id: string, pubkey?: string): string {
88
88
  const callbackUrl = window.location.href.split('#')[0].split('?')[0];
89
89
  const encodedContent = encodeURIComponent(content || '');
90
90
  const encodedCallback = encodeURIComponent(callbackUrl);
@@ -193,9 +193,21 @@ class AuthNostrService extends EventEmitter implements Signer {
193
193
  if (link && !iframeUrl) {
194
194
  if (link === 'amber') {
195
195
  const signer = new AmberDirectSigner();
196
- const url = (signer as any).generateUrl('', 'get_public_key', Math.random().toString(36).substring(7));
196
+ this.amberSigner = signer;
197
+
198
+ const id = Math.random().toString(36).substring(7);
199
+ const url = signer.generateUrl('', 'get_public_key', id);
197
200
  this.emit('onAuthUrl', { url });
198
- return (signer as any).getPublicKey(); // will redirect
201
+
202
+ const pubkey = await signer.getPublicKey(id);
203
+
204
+ const info: Info = {
205
+ pubkey,
206
+ authMethod: 'amber' as any,
207
+ };
208
+
209
+ this.onAuth('login', info);
210
+ return info;
199
211
  }
200
212
  window.open(link, '_blank', 'width=400,height=700');
201
213
  }