-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathutils.ts
130 lines (110 loc) · 4.16 KB
/
utils.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
import b4a from 'b4a';
import {CompactEvent, TargetInfo} from './messages';
import {Veritas} from '@spacesprotocol/veritas';
import {DNS_EVENT_KIND} from './constants';
// from nostr-tools:
// https://github.com/nbd-wtf/nostr-tools/blob/160987472fd4922dd80c75648ca8939dd2d96cc0/event.ts#L42
export type NostrEvent = {
id?: string
sig?: string
kind: number
tags: string[][]
pubkey: string
content: string
created_at: number
proof?: string
}
// from nostr-tools:
// https://github.com/nbd-wtf/nostr-tools/blob/160987472fd4922dd80c75648ca8939dd2d96cc0/event.ts#L61
export function validateEvent(event: NostrEvent): boolean {
if (typeof event.content !== 'string') return false
if (typeof event.created_at !== 'number') return false
if (typeof event.pubkey !== 'string') return false
if (!event.pubkey.match(/^[a-f0-9]{64}$/)) return false
if (!Array.isArray(event.tags)) return false
for (let i = 0; i < event.tags.length; i++) {
let tag = event.tags[i]
if (!Array.isArray(tag)) return false
for (let j = 0; j < tag.length; j++) {
if (typeof tag[j] === 'object') return false
}
}
return true
}
// from nostr-tools:
// https://github.com/nbd-wtf/nostr-tools/blob/160987472fd4922dd80c75648ca8939dd2d96cc0/event.ts#L42
export function serializeEvent(evt : NostrEvent) {
if (!validateEvent(evt))
throw new Error("can't serialize event with wrong or missing properties");
return JSON.stringify([
0,
evt.pubkey,
evt.created_at,
evt.kind,
evt.tags,
evt.content,
]);
}
export function nostrTarget(key: string, kind: number, d : string = '') : string {
if (key.length != 64 || !key.match(/^[a-f0-9]{64}$/)) throw new Error('must be a 32-byte hex encoded key string');
if (isNaN(kind)) throw new Error(`kind must be a number, got ${kind}`);
return `${key}.${kind}.${d}`;
}
export function isAcceptableEvent(evtKind: number) : boolean {
return evtKind == DNS_EVENT_KIND || isReplaceableEvent(evtKind) || isAddressableEvent(evtKind)
}
export function isReplaceableEvent(evtKind: number): boolean {
return evtKind === 0 || evtKind === 3 || (evtKind >= 10000 && evtKind < 20000);
}
export function isAddressableEvent(evtKind: number): boolean {
return evtKind >= 30000 && evtKind < 40000;
}
export function computeSpaceTarget(space : string, kind : number, d : string = '') : Uint8Array {
if (!space.startsWith('@')) throw new Error('space name must start with @')
const key = Veritas.sha256(b4a.from(space, 'utf-8'));
const targetString = nostrTarget(b4a.toString(key, 'hex'), kind, d);
return Veritas.sha256(b4a.from(targetString, 'utf-8'));
}
export function computePubkeyTarget(pubkey: string | Uint8Array, kind : number, d : string = '') : Uint8Array {
let pub : string = pubkey instanceof Uint8Array ? b4a.from(pubkey).toString('hex') : pubkey;
if (pub.length !== 64 || !pub.match(/^[a-f0-9]{64}$/)) throw new Error('invalid pubkey');
const targetString = nostrTarget(pub, kind, d);
return Veritas.sha256(b4a.from(targetString, 'utf-8'));
}
export function computeTarget(evt: CompactEvent) : TargetInfo {
const anchored = evt.proof.length !== 0;
if (isNaN(evt.kind)) throw new Error('Invalid event kind must be a number');
let space, d;
for (const tag of evt.tags) {
if (tag.length < 2) continue;
if (!space && anchored && tag[0] === 'space') {
space = tag[1];
continue;
}
if (!d && tag[0] === 'd') {
d = tag[1];
}
if (space && d) break;
}
if (anchored && !space) throw new Error('Anchored event must have a space tag');
if (isAddressableEvent(evt.kind) && !d) throw new Error('Addressable events must have a d tag');
d = d || '';
const target = space ? computeSpaceTarget(space, evt.kind, d) :
computePubkeyTarget(evt.pubkey, evt.kind, d);
return {
d, space, target
}
}
export function verifyTarget(evt: CompactEvent, target: Uint8Array): TargetInfo | null {
try {
const expected = computeTarget(evt);
if (b4a.compare(target, expected.target) !== 0) return null;
return expected
} catch (e) {
return null
}
}
export function log(...args: any[]): void {
const timestamp = new Date().toISOString();
console.log(`[${timestamp}]`, ...args);
}