-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.js
executable file
·232 lines (197 loc) · 5.79 KB
/
index.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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
#!/usr/bin/env node
const {RelayPool, Relay, signId, calculateId, getPublicKey} = require('nostr')
const fs = require('fs').promises
const {spawn} = require('node:child_process')
function relay_send(ev, url, opts) {
const timeout = (opts && opts.timeout != null && opts.timeout) || 1000
return new Promise((resolve, reject) => {
const relay = Relay(url)
function timeout_reached() {
relay.close()
reject(new Error("Request timeout"))
}
let timer = setTimeout(timeout_reached, timeout)
relay.on('open', () => {
clearTimeout(timer)
timer = setTimeout(timeout_reached, timeout)
relay.send(['EVENT', ev])
})
relay.on('ok', (evid, ok, msg) => {
clearTimeout(timer)
relay.close()
resolve({evid, ok, msg})
})
})
}
async function send_note(urls, {privkey, pubkey}, ev)
{
try {
const tasks = urls.map(relay_send.bind(null, ev))
await Promise.all(tasks)
} catch (e) {
//log?
console.log(e)
}
}
function get_zapreq(desc) {
if (!desc)
return null
if (desc.kind === 9734)
return desc
// TODO: handle private zaps
// This is a deprecated old form, you don't need this
const found = desc.find(tag => tag && tag.length >= 2 && tag[0] == "application/nostr")
if (found && found[1])
return found[1]
return null
}
async function process_invoice_payment(privkey, invoice)
{
const pubkey = getPublicKey(privkey)
const keypair = {privkey, pubkey}
// Parse the invoice metadata
let desc
try {
desc = JSON.parse(invoice.description)
} catch {
//log(`Could not parse description as json`)
return
}
const label = invoice.label
if (!desc) {
//log(`Could not parse metadata description as json for ${label}`)
return
}
// Get the nostr note entry in the metadata
const zapreq = get_zapreq(desc)
if (!zapreq) {
console.log(`Could not find zap request note in metadata for ${label}`)
return
}
// Make sure there are tags on the note
if (!zapreq.tags || zapreq.tags.length === 0) {
console.log(`No tags found in ${label}`)
return
}
// Make sure we only have one p tag
const ptags = zapreq.tags.filter(t => t && t.length && t.length >= 2 && t[0] === "p")
if (ptags.length !== 1) {
console.log(`None or multiple p tags found in ${label}`)
return
}
// Make sure we have 0 or 1 etag (for note zapping)
const etags = zapreq.tags.filter(t => t && t.length && t.length >= 2 && t[0] === "e")
if (!(etags.length === 0 || etags.length === 1)) {
console.log(`Expected none or 1 e tags in ${label}`)
return
}
// Look for the relays tag, we will broadcast to these relays
const relays_tag = zapreq.tags.find(t => t && t.length && t.length >= 2 && t[0] === "relays")
if (!relays_tag) {
console.log(`No relays tag found in ${label}`)
return
}
const relays = relays_tag.slice(1).filter(r => r && r.startsWith && r.startsWith("ws"))
const ptag = ptags[0]
const etag = etags.length > 0 && etags[0]
const data = {zapreq, invoice, keypair, ptag, etag}
const zap_note = await make_zap_note(data)
console.log(`Sending lightning zap note ${zap_note.id} to ${relays.join(", ")}`)
await send_note(relays, keypair, zap_note)
console.log(`done`)
}
async function make_zap_note({keypair, invoice, zapreq, ptag, etag}) {
const kind = 9735
const created_at = invoice.paid_at
const pubkey = keypair.pubkey
const privkey = keypair.privkey
const content = zapreq.content
let tags = [ ptag ]
if (etag)
tags.push(etag)
tags.push(["P", zapreq.pubkey])
tags.push(["bolt11", invoice.bolt11])
tags.push(["description", invoice.description])
tags.push(["preimage", invoice.payment_preimage])
let ev = {pubkey, kind, created_at, content, tags}
ev.id = await calculateId(ev)
ev.sig = await signId(privkey, ev.id)
return ev
}
async function get_invoice(label)
{
const {invoices} = await callrpc("listinvoices", {label})
return invoices && invoices[0]
}
function dospawn(cmd, ...args)
{
return new Promise((resolve, reject) => {
const proc = spawn(cmd, [...args])
proc.stdout.on('data', (data) => {
resolve(data.toString("utf8").trim())
})
proc.on('close', code => {
if (code !== 0)
reject(code)
else
resolve(code)
});
})
}
async function callrpc(rpc, args) {
const params = Object.keys(args).map(key => `${key}=${args[key]}`)
const res = await dospawn("lightning-cli", rpc, params)
return JSON.parse(res)
}
async function waitanyinvoice(index) {
const res = await callrpc("waitanyinvoice", index)
return res
}
async function run_zapper(args) {
const privkey = process.env.NOSTR_KEY
if (!privkey) {
console.log("set NOSTR_KEY")
return
}
let lastpay_index = parseInt(args[0]) || await read_lastpay_index()
while (true) {
const params = {lastpay_index}
console.log("waitanyinvoice %o", params)
try {
const invoice = await waitanyinvoice(params)
if (!invoice || invoice === "") {
console.log("invoice fail", invoice)
process.exit(5)
}
console.log("done waitanyinvoice", params)
await process_invoice_payment(privkey, invoice)
} catch(e) {
console.log("process threw an error", e)
process.exit(1)
}
console.log("%s done processing", format_date(new Date()))
lastpay_index += 1
await write_lastpay_index(lastpay_index)
}
}
const lastpay_file = "tip_lastpay_index"
async function read_lastpay_index() {
try {
const res = await fs.readFile(lastpay_file, 'utf8')
return parseInt(res)
} catch {
return 0
}
}
async function write_lastpay_index(lastpay_index) {
await fs.writeFile(lastpay_file, lastpay_index.toString())
}
function format_date(date) {
const year = date.getFullYear();
const month = (date.getMonth() + 1).toString().padStart(2, '0');
const day = date.getDate().toString().padStart(2, '0');
const hours = date.getHours().toString().padStart(2, '0');
const minutes = date.getMinutes().toString().padStart(2, '0');
return `${year}-${month}-${day}T${hours}:${minutes}`;
};
run_zapper(process.argv.slice(2))