-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathnostr.js
213 lines (168 loc) · 4.8 KB
/
nostr.js
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
const WebSocket = require('ws');
const assert = require('assert');
const {
finishEvent,
validateEvent,
verifySignature,
getPublicKey
} = require('nostr-tools');
const config = require('./config');
const xidb = require('./xidb');
const RELAYS = {};
function createMessage(message) {
let event = {
kind: 1,
created_at: Math.floor(Date.now() / 1000),
tags: [],
content: message,
pubkey: getPublicKey(config.nostr_key),
};
finishEvent(event, config.nostr_key);
const valid = validateEvent(event);
const verified = verifySignature(event);
if (valid && verified) {
return event;
}
};
function openRelay(wsurl) {
const ws = new WebSocket(wsurl);
ws.on('open', () => {
console.log(`ws open ${wsurl}`);
RELAYS[wsurl] = ws;
});
ws.on('error', (error) => {
console.log(`ws error from ${wsurl}: ${error}`);
});
ws.on('message', (event) => {
console.log(`ws message from ${wsurl}: ${event} `);
});
ws.on('close', () => {
console.log(`ws close ${wsurl}`);
delete RELAYS[wsurl];
});
}
function closeRelays() {
for (let key in RELAYS) {
const ws = RELAYS[key];
ws.close();
}
}
function countOpenRelays() {
let count = 0;
for (let key in RELAYS) {
const ws = RELAYS[key];
if (ws.readyState === WebSocket.OPEN) {
count++;
}
}
return count;
}
function subscribeToRelays() {
const filters = {
kinds: [1],
limit: 0,
};
sendRequest(filters);
}
function sendEvent(event) {
const message = JSON.stringify(["EVENT", event]);
for (let key in RELAYS) {
const ws = RELAYS[key];
if (ws.readyState === WebSocket.OPEN) {
ws.send(message);
console.log(`ws event sent to ${key}`);
}
else {
console.log(`ws ${key} not open`);
}
}
}
function sendMessage(message) {
const event = createMessage(message);
if (event) {
sendEvent(event);
}
}
function sendRequest(filters) {
const sub = "foo";
const message = JSON.stringify(["REQ", sub, filters]);
for (let key in RELAYS) {
const ws = RELAYS[key];
if (ws.readyState === WebSocket.OPEN) {
ws.send(message);
console.log(`ws req sent to ${key}`);
}
else {
console.log(`ws ${key} not open`);
}
}
}
function createAnnouncement(event) {
if (event.type === 'list') {
const nft = xidb.getNft(event.asset);
assert.ok(nft);
assert.ok(nft.nft.title);
assert.ok(nft.creator.name);
assert.ok(event.price);
assert.ok(nft.nft.link);
assert.ok(nft.nft.preview);
const announcement = `New listing! "${nft.nft.title}" by ${nft.creator.name} for ${event.price} sats\n\n${nft.nft.link}\n\n${nft.nft.preview}`;
return createMessage(announcement);
}
if (event.type === 'sale') {
const nft = xidb.getNft(event.asset);
assert.ok(nft);
assert.ok(nft.owner.name);
assert.ok(nft.nft.title);
assert.ok(nft.creator.name);
assert.ok(nft.nft.link);
assert.ok(nft.nft.preview);
const announcement = `Congratulations to ${nft.owner.name} for collecting "${nft.nft.title}" by ${nft.creator.name}!\n#art #nft\n\n${nft.nft.link}\n\n${nft.nft.preview}`;
return createMessage(announcement);
}
};
async function announceMessage(message) {
try {
const relays = config.nostr_relays.split(',');
for (let relay of relays) {
openRelay(relay);
}
await new Promise(resolve => setTimeout(resolve, 3000));
subscribeToRelays();
console.log(`nostr: announce: ${message.content} on open relays: ${countOpenRelays()}`);
sendEvent(message);
await new Promise(resolve => setTimeout(resolve, 3000));
}
catch (error) {
console.log(`nostr: announceMessage error: ${error}`);
}
finally {
closeRelays();
}
}
async function announceEvent(event) {
try {
console.log(`nostr: announce types ${config.nostr_announce} to relays ${config.nostr_relays}`);
const types = config.nostr_announce.split(',');
if (!types.includes(event.type)) {
console.log(`nostr: ${event.type} not in ${config.nostr_announce} so no announcement`);
return;
}
const message = createAnnouncement(event);
await announceMessage(message);
}
catch (error) {
console.log(`nostr announce error: ${error}`);
}
}
module.exports = {
announceEvent,
announceMessage,
closeRelays,
countOpenRelays,
createMessage,
openRelay,
sendEvent,
sendMessage,
subscribeToRelays,
};