-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnip-05.ts
271 lines (236 loc) · 6.33 KB
/
nip-05.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
/**
* @file NIP-05: DNS-Based Verification
* @module nips/nip-05
* @see https://github.com/nostr-protocol/nips/blob/master/05.md
*/
import { fetchJson } from '../utils/http.js';
import { Logger } from 'pino';
/**
* NIP-05 verification result
*/
export interface NIP05VerificationResult {
valid: boolean;
pubkey?: string;
relays?: string[];
error?: string;
}
/**
* NIP-05 verification response
*/
interface NIP05Response {
names: Record<string, string>;
relays?: Record<string, string[]>;
}
/**
* Verifies a NIP-05 identifier
* @param identifier - Internet identifier ([email protected])
* @param pubkey - Public key to verify
* @param logger - Logger instance
* @returns {Promise<NIP05VerificationResult>} Verification result
*/
export async function verifyNIP05Identifier(
identifier: string,
pubkey: string,
logger: Logger
): Promise<NIP05VerificationResult> {
try {
// Parse identifier
const [name, domain] = identifier.split('@');
if (!name || !domain) {
return {
valid: false,
error: 'Invalid identifier format'
};
}
// Fetch well-known URL
const url = `https://${domain}/.well-known/nostr.json?name=${name}`;
const response = await fetchJson<NIP05Response>(url);
if (!response || !response.names || !response.names[name]) {
return {
valid: false,
error: 'Name not found in well-known file'
};
}
// Verify name matches pubkey
const verifiedPubkey = response.names[name];
if (!verifiedPubkey) {
return {
valid: false,
error: 'Name not found'
};
}
if (verifiedPubkey !== pubkey) {
return {
valid: false,
error: 'Public key mismatch'
};
}
// Get associated relays if available
const relays = response.relays?.[verifiedPubkey];
return {
valid: true,
pubkey: verifiedPubkey,
relays
};
} catch (error: unknown) {
const errorMessage = error instanceof Error ? error.message : 'Unknown error';
logger.error(`NIP-05 verification failed: ${errorMessage}`);
return {
valid: false,
error: errorMessage
};
}
}
/**
* Creates metadata event with NIP-05 identifier
* @param identifier - Internet identifier
* @param metadata - Additional metadata
* @returns {Record<string, unknown>} Metadata event content
*/
export function createNIP05Metadata(
identifier: string,
metadata: Record<string, unknown> = {}
): Record<string, unknown> {
return {
...metadata,
nip05: identifier
};
}
/**
* NIP-05 verification cache interface
*/
export interface NIP05VerificationCache {
/**
* Gets cached verification result
* @param identifier - Internet identifier
* @param pubkey - Public key
* @returns {NIP05VerificationResult | undefined} Cached result
*/
get(identifier: string, pubkey: string): NIP05VerificationResult | undefined;
/**
* Sets verification result in cache
* @param identifier - Internet identifier
* @param pubkey - Public key
* @param result - Verification result
* @param ttl - Time to live in seconds
*/
set(
identifier: string,
pubkey: string,
result: NIP05VerificationResult,
ttl: number
): void;
/**
* Clears expired entries
*/
cleanup(): void;
}
/**
* Creates a NIP-05 verification cache
* @param defaultTTL - Default TTL in seconds
* @returns {NIP05VerificationCache} Verification cache
*/
export function createNIP05VerificationCache(
defaultTTL: number = 3600
): NIP05VerificationCache {
interface CacheEntry {
result: NIP05VerificationResult;
expiresAt: number;
}
const cache = new Map<string, CacheEntry>();
function getCacheKey(identifier: string, pubkey: string): string {
return `${identifier}:${pubkey}`;
}
return {
get(identifier: string, pubkey: string): NIP05VerificationResult | undefined {
const key = getCacheKey(identifier, pubkey);
const entry = cache.get(key);
if (!entry) return undefined;
if (Date.now() > entry.expiresAt) {
cache.delete(key);
return undefined;
}
return entry.result;
},
set(
identifier: string,
pubkey: string,
result: NIP05VerificationResult,
ttl: number = defaultTTL
): void {
const key = getCacheKey(identifier, pubkey);
cache.set(key, {
result,
expiresAt: Date.now() + (ttl * 1000)
});
},
cleanup(): void {
const now = Date.now();
for (const [key, entry] of cache.entries()) {
if (now > entry.expiresAt) {
cache.delete(key);
}
}
}
};
}
/**
* Batch verification interface for multiple identifiers
*/
export interface NIP05BatchVerifier {
/**
* Adds identifier to verification queue
* @param identifier - Internet identifier
* @param pubkey - Public key
*/
addToQueue(identifier: string, pubkey: string): void;
/**
* Verifies all queued identifiers
* @returns {Promise<Map<string, NIP05VerificationResult>>} Verification results
*/
verifyAll(): Promise<Map<string, NIP05VerificationResult>>;
/**
* Clears verification queue
*/
clearQueue(): void;
}
/**
* Creates a NIP-05 batch verifier
* @param logger - Logger instance
* @param cache - Optional verification cache
* @returns {NIP05BatchVerifier} Batch verifier
*/
export function createNIP05BatchVerifier(
logger: Logger,
cache?: NIP05VerificationCache
): NIP05BatchVerifier {
const queue = new Map<string, string>();
return {
addToQueue(identifier: string, pubkey: string): void {
queue.set(identifier, pubkey);
},
async verifyAll(): Promise<Map<string, NIP05VerificationResult>> {
const results = new Map<string, NIP05VerificationResult>();
for (const [identifier, pubkey] of queue.entries()) {
// Check cache first
if (cache) {
const cached = cache.get(identifier, pubkey);
if (cached) {
results.set(identifier, cached);
continue;
}
}
// Verify and cache result
const result = await verifyNIP05Identifier(identifier, pubkey, logger);
results.set(identifier, result);
if (cache) {
cache.set(identifier, pubkey, result, 3600);
}
}
return results;
},
clearQueue(): void {
queue.clear();
}
};
}