-
-
Notifications
You must be signed in to change notification settings - Fork 122
/
Copy pathclient.js
63 lines (58 loc) · 2.01 KB
/
client.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
import { API_URL, PREIMAGE_AWAIT_TIMEOUT_MS } from '@/wallets/zebedee'
import { assertContentTypeJson } from '@/lib/url'
import { callWithTimeout } from '@/lib/time'
import { fetchWithTimeout } from '@/lib/fetch'
export * from '@/wallets/zebedee'
export async function testSendPayment ({ apiKey }, { signal }) {
const wallet = await apiCall('wallet', { apiKey, method: 'GET' }, { signal })
if (!wallet.data) throw new Error('wallet not found')
}
export async function sendPayment (bolt11, { apiKey }, { signal }) {
const res = await apiCall('payments', { body: { invoice: bolt11 }, apiKey }, { signal })
const { id, preimage } = res?.data
if (preimage) return preimage
// the api might return before the invoice is paid, so we'll wait for the preimage
return await waitForPreimage(id, { apiKey }, { signal })
}
async function waitForPreimage (id, { apiKey }, { signal }) {
return await callWithTimeout(async () => {
let preimage
while (true) {
const res = await apiCall('payments/{id}', { body: { id }, apiKey, method: 'GET' }, { signal })
preimage = res?.data?.preimage
if (preimage) break
await new Promise(resolve => setTimeout(resolve, 10))
}
return preimage
}, PREIMAGE_AWAIT_TIMEOUT_MS)
}
export async function apiCall (api, { body, apiKey, method = 'POST' }, { signal }) {
const headers = {
apikey: apiKey,
'Content-Type': 'application/json'
}
if (method === 'GET' && body) {
for (const [k, v] of Object.entries(body)) {
api = api.replace('{' + k + '}', v)
}
}
const res = await fetchWithTimeout(API_URL + api, {
method,
headers,
signal,
body: method === 'POST' ? JSON.stringify(body) : undefined
})
// https://zbd.dev/api-reference/errors
if (res.status !== 200) {
let error
try {
assertContentTypeJson(res)
const json = await res.json()
if (json?.message) error = json.message
} catch (e) {
error = res.statusText || 'error ' + res.status
}
throw new Error(error)
}
return res.json()
}