mirror of
https://github.com/nbd-wtf/nostr-tools.git
synced 2025-12-09 08:38:50 +00:00
Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1bec9fa365 | ||
|
|
e8927d78e6 | ||
|
|
bc1294e4e6 | ||
|
|
226d7d07e2 | ||
|
|
c9ff51e278 | ||
|
|
23aebbd341 | ||
|
|
a3fcd79545 | ||
|
|
0e6e7af934 | ||
|
|
8866042edf | ||
|
|
ebe7df7b9e | ||
|
|
86235314c4 | ||
|
|
b39dac3551 |
95
README.md
95
README.md
@@ -133,7 +133,9 @@ import WebSocket from 'ws'
|
|||||||
useWebSocketImplementation(WebSocket)
|
useWebSocketImplementation(WebSocket)
|
||||||
```
|
```
|
||||||
|
|
||||||
You can enable regular pings of connected relays with the `enablePing` option. This will set up a heartbeat that closes the websocket if it doesn't receive a response in time. Some platforms don't report websocket disconnections due to network issues, and enabling this can increase reliability.
|
#### enablePing
|
||||||
|
|
||||||
|
You can enable regular pings of connected relays with the `enablePing` option. This will set up a heartbeat that closes the websocket if it doesn't receive a response in time. Some platforms, like Node.js, don't report websocket disconnections due to network issues, and enabling this can increase the reliability of the `onclose` event.
|
||||||
|
|
||||||
```js
|
```js
|
||||||
import { SimplePool } from 'nostr-tools/pool'
|
import { SimplePool } from 'nostr-tools/pool'
|
||||||
@@ -141,6 +143,34 @@ import { SimplePool } from 'nostr-tools/pool'
|
|||||||
const pool = new SimplePool({ enablePing: true })
|
const pool = new SimplePool({ enablePing: true })
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### enableReconnect
|
||||||
|
|
||||||
|
You can also enable automatic reconnection with the `enableReconnect` option. This will make the pool try to reconnect to relays with an exponential backoff delay if the connection is lost unexpectedly.
|
||||||
|
|
||||||
|
```js
|
||||||
|
import { SimplePool } from 'nostr-tools/pool'
|
||||||
|
|
||||||
|
const pool = new SimplePool({ enableReconnect: true })
|
||||||
|
```
|
||||||
|
|
||||||
|
Using both `enablePing: true` and `enableReconnect: true` is recommended as it will improve the reliability and timeliness of the reconnection (at the expense of slighly higher bandwidth due to the ping messages).
|
||||||
|
|
||||||
|
```js
|
||||||
|
// on Node.js
|
||||||
|
const pool = new SimplePool({ enablePing: true, enableReconnect: true })
|
||||||
|
```
|
||||||
|
|
||||||
|
The `enableReconnect` option can also be a callback function which will receive the current subscription filters and should return a new set of filters. This is useful if you want to modify the subscription on reconnect, for example, to update the `since` parameter to fetch only new events.
|
||||||
|
|
||||||
|
```js
|
||||||
|
const pool = new SimplePool({
|
||||||
|
enableReconnect: (filters) => {
|
||||||
|
const newSince = Math.floor(Date.now() / 1000)
|
||||||
|
return filters.map(filter => ({ ...filter, since: newSince }))
|
||||||
|
}
|
||||||
|
})
|
||||||
|
```
|
||||||
|
|
||||||
### Parsing references (mentions) from a content based on NIP-27
|
### Parsing references (mentions) from a content based on NIP-27
|
||||||
|
|
||||||
```js
|
```js
|
||||||
@@ -169,8 +199,10 @@ for (let block of nip27.parse(evt.content)) {
|
|||||||
case 'video':
|
case 'video':
|
||||||
case 'audio':
|
case 'audio':
|
||||||
console.log("it's a media url:", block.url)
|
console.log("it's a media url:", block.url)
|
||||||
|
break
|
||||||
case 'relay':
|
case 'relay':
|
||||||
console.log("it's a websocket url, probably a relay address:", block.url)
|
console.log("it's a websocket url, probably a relay address:", block.url)
|
||||||
|
break
|
||||||
default:
|
default:
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
@@ -179,14 +211,24 @@ for (let block of nip27.parse(evt.content)) {
|
|||||||
|
|
||||||
### Connecting to a bunker using NIP-46
|
### Connecting to a bunker using NIP-46
|
||||||
|
|
||||||
|
`BunkerSigner` allows your application to request signatures and other actions from a remote NIP-46 signer, often called a "bunker". There are two primary ways to establish a connection, depending on whether the client or the bunker initiates the connection.
|
||||||
|
|
||||||
|
A local secret key is required for the client to communicate securely with the bunker. This key should generally be persisted for the user's session.
|
||||||
|
|
||||||
|
```js
|
||||||
|
import { generateSecretKey } from '@nostr/tools/pure'
|
||||||
|
|
||||||
|
const localSecretKey = generateSecretKey()
|
||||||
|
```
|
||||||
|
|
||||||
|
### Method 1: Using a Bunker URI (`bunker://`)
|
||||||
|
|
||||||
|
This is the bunker-initiated flow. Your client receives a `bunker://` string or a NIP-05 identifier from the user. You use `BunkerSigner.fromBunker()` to create an instance, which returns immediately. For the **initial connection** with a new bunker, you must explicitly call `await bunker.connect()` to establish the connection and receive authorization.
|
||||||
|
|
||||||
```js
|
```js
|
||||||
import { generateSecretKey, getPublicKey } from '@nostr/tools/pure'
|
|
||||||
import { BunkerSigner, parseBunkerInput } from '@nostr/tools/nip46'
|
import { BunkerSigner, parseBunkerInput } from '@nostr/tools/nip46'
|
||||||
import { SimplePool } from '@nostr/tools/pool'
|
import { SimplePool } from '@nostr/tools/pool'
|
||||||
|
|
||||||
// the client needs a local secret key (which is generally persisted) for communicating with the bunker
|
|
||||||
const localSecretKey = generateSecretKey()
|
|
||||||
|
|
||||||
// parse a bunker URI
|
// parse a bunker URI
|
||||||
const bunkerPointer = await parseBunkerInput('bunker://abcd...?relay=wss://relay.example.com')
|
const bunkerPointer = await parseBunkerInput('bunker://abcd...?relay=wss://relay.example.com')
|
||||||
if (!bunkerPointer) {
|
if (!bunkerPointer) {
|
||||||
@@ -195,7 +237,7 @@ if (!bunkerPointer) {
|
|||||||
|
|
||||||
// create the bunker instance
|
// create the bunker instance
|
||||||
const pool = new SimplePool()
|
const pool = new SimplePool()
|
||||||
const bunker = new BunkerSigner(localSecretKey, bunkerPointer, { pool })
|
const bunker = BunkerSigner.fromBunker(localSecretKey, bunkerPointer, { pool })
|
||||||
await bunker.connect()
|
await bunker.connect()
|
||||||
|
|
||||||
// and use it
|
// and use it
|
||||||
@@ -211,6 +253,47 @@ const event = await bunker.signEvent({
|
|||||||
await signer.close()
|
await signer.close()
|
||||||
pool.close([])
|
pool.close([])
|
||||||
```
|
```
|
||||||
|
> **Note on Reconnecting:** Once a connection has been successfully established and the `BunkerPointer` is stored, you do **not** need to call `await bunker.connect()` on subsequent sessions.
|
||||||
|
|
||||||
|
### Method 2: Using a Client-generated URI (`nostrconnect://`)
|
||||||
|
|
||||||
|
This is the client-initiated flow, which generally provides a better user experience for first-time connections (e.g., via QR code). Your client generates a `nostrconnect://` URI and waits for the bunker to connect to it.
|
||||||
|
|
||||||
|
`BunkerSigner.fromURI()` is an **asynchronous** method. It returns a `Promise` that resolves only after the bunker has successfully connected. Therefore, the returned signer instance is already fully connected and ready to use, so you **do not** need to call `.connect()` on it.
|
||||||
|
|
||||||
|
```js
|
||||||
|
import { getPublicKey } from '@nostr/tools/pure'
|
||||||
|
import { BunkerSigner, createNostrConnectURI } from '@nostr/tools/nip46'
|
||||||
|
import { SimplePool } from '@nostr/tools/pool'
|
||||||
|
|
||||||
|
const clientPubkey = getPublicKey(localSecretKey)
|
||||||
|
|
||||||
|
// generate a connection URI for the bunker to scan
|
||||||
|
const connectionUri = createNostrConnectURI({
|
||||||
|
clientPubkey,
|
||||||
|
relays: ['wss://relay.damus.io', 'wss://relay.primal.net'],
|
||||||
|
secret: 'a-random-secret-string', // A secret to verify the bunker's response
|
||||||
|
name: 'My Awesome App'
|
||||||
|
})
|
||||||
|
|
||||||
|
// wait for the bunker to connect
|
||||||
|
const pool = new SimplePool()
|
||||||
|
const signer = await BunkerSigner.fromURI(localSecretKey, connectionUri, { pool })
|
||||||
|
|
||||||
|
// and use it
|
||||||
|
const pubkey = await signer.getPublicKey()
|
||||||
|
const event = await signer.signEvent({
|
||||||
|
kind: 1,
|
||||||
|
created_at: Math.floor(Date.now() / 1000),
|
||||||
|
tags: [],
|
||||||
|
content: 'Hello from a client-initiated connection!'
|
||||||
|
})
|
||||||
|
|
||||||
|
// cleanup
|
||||||
|
await signer.close()
|
||||||
|
pool.close([])
|
||||||
|
```
|
||||||
|
> **Note on Persistence:** This method is ideal for the initial sign-in. To allow users to stay logged in across sessions, you should store the connection details and use `Method 1` for subsequent reconnections.
|
||||||
|
|
||||||
### Parsing thread from any note based on NIP-10
|
### Parsing thread from any note based on NIP-10
|
||||||
|
|
||||||
|
|||||||
@@ -33,6 +33,7 @@ export class AbstractSimplePool {
|
|||||||
|
|
||||||
public verifyEvent: Nostr['verifyEvent']
|
public verifyEvent: Nostr['verifyEvent']
|
||||||
public enablePing: boolean | undefined
|
public enablePing: boolean | undefined
|
||||||
|
public enableReconnect: boolean | ((filters: Filter[]) => Filter[]) | undefined
|
||||||
public trustedRelayURLs: Set<string> = new Set()
|
public trustedRelayURLs: Set<string> = new Set()
|
||||||
|
|
||||||
private _WebSocket?: typeof WebSocket
|
private _WebSocket?: typeof WebSocket
|
||||||
@@ -41,6 +42,7 @@ export class AbstractSimplePool {
|
|||||||
this.verifyEvent = opts.verifyEvent
|
this.verifyEvent = opts.verifyEvent
|
||||||
this._WebSocket = opts.websocketImplementation
|
this._WebSocket = opts.websocketImplementation
|
||||||
this.enablePing = opts.enablePing
|
this.enablePing = opts.enablePing
|
||||||
|
this.enableReconnect = opts.enableReconnect
|
||||||
}
|
}
|
||||||
|
|
||||||
async ensureRelay(url: string, params?: { connectionTimeout?: number }): Promise<AbstractRelay> {
|
async ensureRelay(url: string, params?: { connectionTimeout?: number }): Promise<AbstractRelay> {
|
||||||
@@ -52,9 +54,12 @@ export class AbstractSimplePool {
|
|||||||
verifyEvent: this.trustedRelayURLs.has(url) ? alwaysTrue : this.verifyEvent,
|
verifyEvent: this.trustedRelayURLs.has(url) ? alwaysTrue : this.verifyEvent,
|
||||||
websocketImplementation: this._WebSocket,
|
websocketImplementation: this._WebSocket,
|
||||||
enablePing: this.enablePing,
|
enablePing: this.enablePing,
|
||||||
|
enableReconnect: this.enableReconnect,
|
||||||
})
|
})
|
||||||
relay.onclose = () => {
|
relay.onclose = () => {
|
||||||
this.relays.delete(url)
|
if (relay && !relay.enableReconnect) {
|
||||||
|
this.relays.delete(url)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (params?.connectionTimeout) relay.connectionTimeout = params.connectionTimeout
|
if (params?.connectionTimeout) relay.connectionTimeout = params.connectionTimeout
|
||||||
this.relays.set(url, relay)
|
this.relays.set(url, relay)
|
||||||
@@ -74,24 +79,44 @@ export class AbstractSimplePool {
|
|||||||
subscribe(relays: string[], filter: Filter, params: SubscribeManyParams): SubCloser {
|
subscribe(relays: string[], filter: Filter, params: SubscribeManyParams): SubCloser {
|
||||||
params.onauth = params.onauth || params.doauth
|
params.onauth = params.onauth || params.doauth
|
||||||
|
|
||||||
return this.subscribeMap(
|
const request: { url: string; filter: Filter }[] = []
|
||||||
relays.map(url => ({ url, filter })),
|
for (let i = 0; i < relays.length; i++) {
|
||||||
params,
|
const url = normalizeURL(relays[i])
|
||||||
)
|
if (!request.find(r => r.url === url)) {
|
||||||
|
request.push({ url, filter: filter })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.subscribeMap(request, params)
|
||||||
}
|
}
|
||||||
|
|
||||||
subscribeMany(relays: string[], filters: Filter[], params: SubscribeManyParams): SubCloser {
|
subscribeMany(relays: string[], filter: Filter, params: SubscribeManyParams): SubCloser {
|
||||||
params.onauth = params.onauth || params.doauth
|
params.onauth = params.onauth || params.doauth
|
||||||
|
|
||||||
return this.subscribeMap(
|
const request: { url: string; filter: Filter }[] = []
|
||||||
relays.flatMap(url => filters.map(filter => ({ url, filter }))),
|
const uniqUrls: string[] = []
|
||||||
params,
|
for (let i = 0; i < relays.length; i++) {
|
||||||
)
|
const url = normalizeURL(relays[i])
|
||||||
|
if (uniqUrls.indexOf(url) === -1) {
|
||||||
|
uniqUrls.push(url)
|
||||||
|
request.push({ url, filter: filter })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.subscribeMap(request, params)
|
||||||
}
|
}
|
||||||
|
|
||||||
subscribeMap(requests: { url: string; filter: Filter }[], params: SubscribeManyParams): SubCloser {
|
subscribeMap(requests: { url: string; filter: Filter }[], params: SubscribeManyParams): SubCloser {
|
||||||
params.onauth = params.onauth || params.doauth
|
params.onauth = params.onauth || params.doauth
|
||||||
|
|
||||||
|
const grouped = new Map<string, Filter[]>()
|
||||||
|
for (const req of requests) {
|
||||||
|
const { url, filter } = req
|
||||||
|
if (!grouped.has(url)) grouped.set(url, [])
|
||||||
|
grouped.get(url)!.push(filter)
|
||||||
|
}
|
||||||
|
const groupedRequests = Array.from(grouped.entries()).map(([url, filters]) => ({ url, filters }))
|
||||||
|
|
||||||
if (this.trackRelays) {
|
if (this.trackRelays) {
|
||||||
params.receivedEvent = (relay: AbstractRelay, id: string) => {
|
params.receivedEvent = (relay: AbstractRelay, id: string) => {
|
||||||
let set = this.seenOn.get(id)
|
let set = this.seenOn.get(id)
|
||||||
@@ -139,7 +164,7 @@ export class AbstractSimplePool {
|
|||||||
|
|
||||||
// open a subscription in all given relays
|
// open a subscription in all given relays
|
||||||
const allOpened = Promise.all(
|
const allOpened = Promise.all(
|
||||||
requests.map(async ({ url, filter }, i) => {
|
groupedRequests.map(async ({ url, filters }, i) => {
|
||||||
let relay: AbstractRelay
|
let relay: AbstractRelay
|
||||||
try {
|
try {
|
||||||
relay = await this.ensureRelay(url, {
|
relay = await this.ensureRelay(url, {
|
||||||
@@ -150,7 +175,7 @@ export class AbstractSimplePool {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
let subscription = relay.subscribe([filter], {
|
let subscription = relay.subscribe(filters, {
|
||||||
...params,
|
...params,
|
||||||
oneose: () => handleEose(i),
|
oneose: () => handleEose(i),
|
||||||
onclose: reason => {
|
onclose: reason => {
|
||||||
@@ -158,7 +183,7 @@ export class AbstractSimplePool {
|
|||||||
relay
|
relay
|
||||||
.auth(params.onauth)
|
.auth(params.onauth)
|
||||||
.then(() => {
|
.then(() => {
|
||||||
relay.subscribe([filter], {
|
relay.subscribe(filters, {
|
||||||
...params,
|
...params,
|
||||||
oneose: () => handleEose(i),
|
oneose: () => handleEose(i),
|
||||||
onclose: reason => {
|
onclose: reason => {
|
||||||
@@ -211,12 +236,12 @@ export class AbstractSimplePool {
|
|||||||
|
|
||||||
subscribeManyEose(
|
subscribeManyEose(
|
||||||
relays: string[],
|
relays: string[],
|
||||||
filters: Filter[],
|
filter: Filter,
|
||||||
params: Pick<SubscribeManyParams, 'label' | 'id' | 'onevent' | 'onclose' | 'maxWait' | 'onauth' | 'doauth'>,
|
params: Pick<SubscribeManyParams, 'label' | 'id' | 'onevent' | 'onclose' | 'maxWait' | 'onauth' | 'doauth'>,
|
||||||
): SubCloser {
|
): SubCloser {
|
||||||
params.onauth = params.onauth || params.doauth
|
params.onauth = params.onauth || params.doauth
|
||||||
|
|
||||||
const subcloser = this.subscribeMany(relays, filters, {
|
const subcloser = this.subscribeMany(relays, filter, {
|
||||||
...params,
|
...params,
|
||||||
oneose() {
|
oneose() {
|
||||||
subcloser.close('closed automatically on eose')
|
subcloser.close('closed automatically on eose')
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ export type AbstractRelayConstructorOptions = {
|
|||||||
verifyEvent: Nostr['verifyEvent']
|
verifyEvent: Nostr['verifyEvent']
|
||||||
websocketImplementation?: typeof WebSocket
|
websocketImplementation?: typeof WebSocket
|
||||||
enablePing?: boolean
|
enablePing?: boolean
|
||||||
|
enableReconnect?: boolean | ((filters: Filter[]) => Filter[])
|
||||||
}
|
}
|
||||||
|
|
||||||
export class SendingOnClosedConnection extends Error {
|
export class SendingOnClosedConnection extends Error {
|
||||||
@@ -37,9 +38,15 @@ export class AbstractRelay {
|
|||||||
public publishTimeout: number = 4400
|
public publishTimeout: number = 4400
|
||||||
public pingFrequency: number = 20000
|
public pingFrequency: number = 20000
|
||||||
public pingTimeout: number = 20000
|
public pingTimeout: number = 20000
|
||||||
|
public resubscribeBackoff: number[] = [10000, 10000, 10000, 20000, 20000, 30000, 60000]
|
||||||
public openSubs: Map<string, Subscription> = new Map()
|
public openSubs: Map<string, Subscription> = new Map()
|
||||||
public enablePing: boolean | undefined
|
public enablePing: boolean | undefined
|
||||||
|
public enableReconnect: boolean | ((filters: Filter[]) => Filter[])
|
||||||
private connectionTimeoutHandle: ReturnType<typeof setTimeout> | undefined
|
private connectionTimeoutHandle: ReturnType<typeof setTimeout> | undefined
|
||||||
|
private reconnectTimeoutHandle: ReturnType<typeof setTimeout> | undefined
|
||||||
|
private pingTimeoutHandle: ReturnType<typeof setTimeout> | undefined
|
||||||
|
private reconnectAttempts: number = 0
|
||||||
|
private closedIntentionally: boolean = false
|
||||||
|
|
||||||
private connectionPromise: Promise<void> | undefined
|
private connectionPromise: Promise<void> | undefined
|
||||||
private openCountRequests = new Map<string, CountResolver>()
|
private openCountRequests = new Map<string, CountResolver>()
|
||||||
@@ -59,6 +66,7 @@ export class AbstractRelay {
|
|||||||
this.verifyEvent = opts.verifyEvent
|
this.verifyEvent = opts.verifyEvent
|
||||||
this._WebSocket = opts.websocketImplementation || WebSocket
|
this._WebSocket = opts.websocketImplementation || WebSocket
|
||||||
this.enablePing = opts.enablePing
|
this.enablePing = opts.enablePing
|
||||||
|
this.enableReconnect = opts.enableReconnect || false
|
||||||
}
|
}
|
||||||
|
|
||||||
static async connect(url: string, opts: AbstractRelayConstructorOptions): Promise<AbstractRelay> {
|
static async connect(url: string, opts: AbstractRelayConstructorOptions): Promise<AbstractRelay> {
|
||||||
@@ -88,6 +96,40 @@ export class AbstractRelay {
|
|||||||
return this._connected
|
return this._connected
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private async reconnect(): Promise<void> {
|
||||||
|
const backoff = this.resubscribeBackoff[Math.min(this.reconnectAttempts, this.resubscribeBackoff.length - 1)]
|
||||||
|
this.reconnectAttempts++
|
||||||
|
|
||||||
|
this.reconnectTimeoutHandle = setTimeout(async () => {
|
||||||
|
try {
|
||||||
|
await this.connect()
|
||||||
|
} catch (err) {
|
||||||
|
// this will be called again through onclose/onerror
|
||||||
|
}
|
||||||
|
}, backoff)
|
||||||
|
}
|
||||||
|
|
||||||
|
private handleHardClose(reason: string) {
|
||||||
|
if (this.pingTimeoutHandle) {
|
||||||
|
clearTimeout(this.pingTimeoutHandle)
|
||||||
|
this.pingTimeoutHandle = undefined
|
||||||
|
}
|
||||||
|
|
||||||
|
this._connected = false
|
||||||
|
this.connectionPromise = undefined
|
||||||
|
|
||||||
|
const wasIntentional = this.closedIntentionally
|
||||||
|
this.closedIntentionally = false // reset for next time
|
||||||
|
|
||||||
|
this.onclose?.()
|
||||||
|
|
||||||
|
if (this.enableReconnect && !wasIntentional) {
|
||||||
|
this.reconnect()
|
||||||
|
} else {
|
||||||
|
this.closeAllSubscriptions(reason)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public async connect(): Promise<void> {
|
public async connect(): Promise<void> {
|
||||||
if (this.connectionPromise) return this.connectionPromise
|
if (this.connectionPromise) return this.connectionPromise
|
||||||
|
|
||||||
@@ -110,8 +152,23 @@ export class AbstractRelay {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.ws.onopen = () => {
|
this.ws.onopen = () => {
|
||||||
|
if (this.reconnectTimeoutHandle) {
|
||||||
|
clearTimeout(this.reconnectTimeoutHandle)
|
||||||
|
this.reconnectTimeoutHandle = undefined
|
||||||
|
}
|
||||||
clearTimeout(this.connectionTimeoutHandle)
|
clearTimeout(this.connectionTimeoutHandle)
|
||||||
this._connected = true
|
this._connected = true
|
||||||
|
this.reconnectAttempts = 0
|
||||||
|
|
||||||
|
// resubscribe to all open subscriptions
|
||||||
|
for (const sub of this.openSubs.values()) {
|
||||||
|
sub.eosed = false
|
||||||
|
if (typeof this.enableReconnect === 'function') {
|
||||||
|
sub.filters = this.enableReconnect(sub.filters)
|
||||||
|
}
|
||||||
|
sub.fire()
|
||||||
|
}
|
||||||
|
|
||||||
if (this.enablePing) {
|
if (this.enablePing) {
|
||||||
this.pingpong()
|
this.pingpong()
|
||||||
}
|
}
|
||||||
@@ -121,23 +178,13 @@ export class AbstractRelay {
|
|||||||
this.ws.onerror = ev => {
|
this.ws.onerror = ev => {
|
||||||
clearTimeout(this.connectionTimeoutHandle)
|
clearTimeout(this.connectionTimeoutHandle)
|
||||||
reject((ev as any).message || 'websocket error')
|
reject((ev as any).message || 'websocket error')
|
||||||
if (this._connected) {
|
this.handleHardClose('relay connection errored')
|
||||||
this._connected = false
|
|
||||||
this.connectionPromise = undefined
|
|
||||||
this.onclose?.()
|
|
||||||
this.closeAllSubscriptions('relay connection errored')
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ws.onclose = ev => {
|
this.ws.onclose = ev => {
|
||||||
clearTimeout(this.connectionTimeoutHandle)
|
clearTimeout(this.connectionTimeoutHandle)
|
||||||
reject((ev as any).message || 'websocket closed')
|
reject((ev as any).message || 'websocket closed')
|
||||||
if (this._connected) {
|
this.handleHardClose('relay connection closed')
|
||||||
this._connected = false
|
|
||||||
this.connectionPromise = undefined
|
|
||||||
this.onclose?.()
|
|
||||||
this.closeAllSubscriptions('relay connection closed')
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ws.onmessage = this._onmessage.bind(this)
|
this.ws.onmessage = this._onmessage.bind(this)
|
||||||
@@ -146,23 +193,23 @@ export class AbstractRelay {
|
|||||||
return this.connectionPromise
|
return this.connectionPromise
|
||||||
}
|
}
|
||||||
|
|
||||||
private async waitForPingPong() {
|
private waitForPingPong() {
|
||||||
return new Promise((res, err) => {
|
return new Promise(resolve => {
|
||||||
// listen for pong
|
// listen for pong
|
||||||
;(this.ws && this.ws.on && this.ws.on('pong', () => res(true))) || err("ws can't listen for pong")
|
;(this.ws as any).once('pong', () => resolve(true))
|
||||||
// send a ping
|
// send a ping
|
||||||
this.ws && this.ws.ping && this.ws.ping()
|
this.ws!.ping!()
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
private async waitForDummyReq() {
|
private async waitForDummyReq() {
|
||||||
return new Promise((res, err) => {
|
return new Promise((resolve, _) => {
|
||||||
// make a dummy request with expected empty eose reply
|
// make a dummy request with expected empty eose reply
|
||||||
// ["REQ", "_", {"ids":["aaaa...aaaa"]}]
|
// ["REQ", "_", {"ids":["aaaa...aaaa"]}]
|
||||||
const sub = this.subscribe([{ ids: ['a'.repeat(64)] }], {
|
const sub = this.subscribe([{ ids: ['a'.repeat(64)] }], {
|
||||||
oneose: () => {
|
oneose: () => {
|
||||||
sub.close()
|
sub.close()
|
||||||
res(true)
|
resolve(true)
|
||||||
},
|
},
|
||||||
eoseTimeout: this.pingTimeout + 1000,
|
eoseTimeout: this.pingTimeout + 1000,
|
||||||
})
|
})
|
||||||
@@ -177,18 +224,17 @@ export class AbstractRelay {
|
|||||||
// wait for either a ping-pong reply or a timeout
|
// wait for either a ping-pong reply or a timeout
|
||||||
const result = await Promise.any([
|
const result = await Promise.any([
|
||||||
// browsers don't have ping so use a dummy req
|
// browsers don't have ping so use a dummy req
|
||||||
this.ws && this.ws.ping && this.ws.on ? this.waitForPingPong() : this.waitForDummyReq(),
|
this.ws && this.ws.ping && (this.ws as any).once ? this.waitForPingPong() : this.waitForDummyReq(),
|
||||||
new Promise(res => setTimeout(() => res(false), this.pingTimeout)),
|
new Promise(res => setTimeout(() => res(false), this.pingTimeout)),
|
||||||
])
|
])
|
||||||
if (result) {
|
if (result) {
|
||||||
// schedule another pingpong
|
// schedule another pingpong
|
||||||
setTimeout(() => this.pingpong(), this.pingFrequency)
|
this.pingTimeoutHandle = setTimeout(() => this.pingpong(), this.pingFrequency)
|
||||||
} else {
|
} else {
|
||||||
// pingpong closing socket
|
// pingpong closing socket
|
||||||
this.closeAllSubscriptions('pingpong timed out')
|
if (this.ws?.readyState === this._WebSocket.OPEN) {
|
||||||
this._connected = false
|
this.ws?.close()
|
||||||
this.ws?.close()
|
}
|
||||||
this.onclose?.()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -376,10 +422,21 @@ export class AbstractRelay {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public close() {
|
public close() {
|
||||||
|
this.closedIntentionally = true
|
||||||
|
if (this.reconnectTimeoutHandle) {
|
||||||
|
clearTimeout(this.reconnectTimeoutHandle)
|
||||||
|
this.reconnectTimeoutHandle = undefined
|
||||||
|
}
|
||||||
|
if (this.pingTimeoutHandle) {
|
||||||
|
clearTimeout(this.pingTimeoutHandle)
|
||||||
|
this.pingTimeoutHandle = undefined
|
||||||
|
}
|
||||||
this.closeAllSubscriptions('relay connection closed by us')
|
this.closeAllSubscriptions('relay connection closed by us')
|
||||||
this._connected = false
|
this._connected = false
|
||||||
this.ws?.close()
|
|
||||||
this.onclose?.()
|
this.onclose?.()
|
||||||
|
if (this.ws?.readyState === this._WebSocket.OPEN) {
|
||||||
|
this.ws?.close()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// this is the function assigned to this.ws.onmessage
|
// this is the function assigned to this.ws.onmessage
|
||||||
|
|||||||
2
jsr.json
2
jsr.json
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nostr/tools",
|
"name": "@nostr/tools",
|
||||||
"version": "2.16.1",
|
"version": "2.17.1",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.ts",
|
".": "./index.ts",
|
||||||
"./core": "./core.ts",
|
"./core": "./core.ts",
|
||||||
|
|||||||
22
nip27.ts
22
nip27.ts
@@ -90,35 +90,19 @@ export function* parse(content: string): Iterable<Block> {
|
|||||||
yield { type: 'text', text: content.substring(prevIndex, u - prefixLen) }
|
yield { type: 'text', text: content.substring(prevIndex, u - prefixLen) }
|
||||||
}
|
}
|
||||||
|
|
||||||
if (
|
if (/\.(png|jpe?g|gif|webp)$/i.test(url.pathname)) {
|
||||||
url.pathname.endsWith('.png') ||
|
|
||||||
url.pathname.endsWith('.jpg') ||
|
|
||||||
url.pathname.endsWith('.jpeg') ||
|
|
||||||
url.pathname.endsWith('.gif') ||
|
|
||||||
url.pathname.endsWith('.webp')
|
|
||||||
) {
|
|
||||||
yield { type: 'image', url: url.toString() }
|
yield { type: 'image', url: url.toString() }
|
||||||
index = end
|
index = end
|
||||||
prevIndex = index
|
prevIndex = index
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if (
|
if (/\.(mp4|avi|webm|mkv)$/i.test(url.pathname)) {
|
||||||
url.pathname.endsWith('.mp4') ||
|
|
||||||
url.pathname.endsWith('.avi') ||
|
|
||||||
url.pathname.endsWith('.webm') ||
|
|
||||||
url.pathname.endsWith('.mkv')
|
|
||||||
) {
|
|
||||||
yield { type: 'video', url: url.toString() }
|
yield { type: 'video', url: url.toString() }
|
||||||
index = end
|
index = end
|
||||||
prevIndex = index
|
prevIndex = index
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if (
|
if (/\.(mp3|aac|ogg|opus)$/i.test(url.pathname)) {
|
||||||
url.pathname.endsWith('.mp3') ||
|
|
||||||
url.pathname.endsWith('.aac') ||
|
|
||||||
url.pathname.endsWith('.ogg') ||
|
|
||||||
url.pathname.endsWith('.opus')
|
|
||||||
) {
|
|
||||||
yield { type: 'audio', url: url.toString() }
|
yield { type: 'audio', url: url.toString() }
|
||||||
index = end
|
index = end
|
||||||
prevIndex = index
|
prevIndex = index
|
||||||
|
|||||||
203
nip46.ts
203
nip46.ts
@@ -77,6 +77,114 @@ export async function queryBunkerProfile(nip05: string): Promise<BunkerPointer |
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export type NostrConnectParams = {
|
||||||
|
clientPubkey: string
|
||||||
|
relays: string[]
|
||||||
|
secret: string
|
||||||
|
perms?: string[]
|
||||||
|
name?: string
|
||||||
|
url?: string
|
||||||
|
image?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export type ParsedNostrConnectURI = {
|
||||||
|
protocol: 'nostrconnect'
|
||||||
|
clientPubkey: string
|
||||||
|
params: {
|
||||||
|
relays: string[]
|
||||||
|
secret: string
|
||||||
|
perms?: string[]
|
||||||
|
name?: string
|
||||||
|
url?: string
|
||||||
|
image?: string
|
||||||
|
}
|
||||||
|
originalString: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export function createNostrConnectURI(params: NostrConnectParams): string {
|
||||||
|
if (!params.clientPubkey) {
|
||||||
|
throw new Error('clientPubkey is required.')
|
||||||
|
}
|
||||||
|
if (!params.relays || params.relays.length === 0) {
|
||||||
|
throw new Error('At least one relay is required.')
|
||||||
|
}
|
||||||
|
if (!params.secret) {
|
||||||
|
throw new Error('secret is required.')
|
||||||
|
}
|
||||||
|
|
||||||
|
const queryParams = new URLSearchParams()
|
||||||
|
|
||||||
|
params.relays.forEach(relay => {
|
||||||
|
queryParams.append('relay', relay)
|
||||||
|
})
|
||||||
|
|
||||||
|
queryParams.append('secret', params.secret)
|
||||||
|
|
||||||
|
if (params.perms && params.perms.length > 0) {
|
||||||
|
queryParams.append('perms', params.perms.join(','))
|
||||||
|
}
|
||||||
|
if (params.name) {
|
||||||
|
queryParams.append('name', params.name)
|
||||||
|
}
|
||||||
|
if (params.url) {
|
||||||
|
queryParams.append('url', params.url)
|
||||||
|
}
|
||||||
|
if (params.image) {
|
||||||
|
queryParams.append('image', params.image)
|
||||||
|
}
|
||||||
|
|
||||||
|
return `nostrconnect://${params.clientPubkey}?${queryParams.toString()}`
|
||||||
|
}
|
||||||
|
|
||||||
|
export function parseNostrConnectURI(uri: string): ParsedNostrConnectURI {
|
||||||
|
if (!uri.startsWith('nostrconnect://')) {
|
||||||
|
throw new Error('Invalid nostrconnect URI: Must start with "nostrconnect://".')
|
||||||
|
}
|
||||||
|
|
||||||
|
const [protocolAndPubkey, queryString] = uri.split('?')
|
||||||
|
if (!protocolAndPubkey || !queryString) {
|
||||||
|
throw new Error('Invalid nostrconnect URI: Missing query string.')
|
||||||
|
}
|
||||||
|
|
||||||
|
const clientPubkey = protocolAndPubkey.substring('nostrconnect://'.length)
|
||||||
|
if (!clientPubkey) {
|
||||||
|
throw new Error('Invalid nostrconnect URI: Missing client-pubkey.')
|
||||||
|
}
|
||||||
|
|
||||||
|
const queryParams = new URLSearchParams(queryString)
|
||||||
|
|
||||||
|
const relays = queryParams.getAll('relay')
|
||||||
|
if (relays.length === 0) {
|
||||||
|
throw new Error('Invalid nostrconnect URI: Missing "relay" parameter.')
|
||||||
|
}
|
||||||
|
|
||||||
|
const secret = queryParams.get('secret')
|
||||||
|
if (!secret) {
|
||||||
|
throw new Error('Invalid nostrconnect URI: Missing "secret" parameter.')
|
||||||
|
}
|
||||||
|
|
||||||
|
const permsString = queryParams.get('perms')
|
||||||
|
const perms = permsString ? permsString.split(',') : undefined
|
||||||
|
|
||||||
|
const name = queryParams.get('name') || undefined
|
||||||
|
const url = queryParams.get('url') || undefined
|
||||||
|
const image = queryParams.get('image') || undefined
|
||||||
|
|
||||||
|
return {
|
||||||
|
protocol: 'nostrconnect',
|
||||||
|
clientPubkey,
|
||||||
|
params: {
|
||||||
|
relays,
|
||||||
|
secret,
|
||||||
|
perms,
|
||||||
|
name,
|
||||||
|
url,
|
||||||
|
image,
|
||||||
|
},
|
||||||
|
originalString: uri,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
export type BunkerSignerParams = {
|
export type BunkerSignerParams = {
|
||||||
pool?: AbstractSimplePool
|
pool?: AbstractSimplePool
|
||||||
onauth?: (url: string) => void
|
onauth?: (url: string) => void
|
||||||
@@ -97,8 +205,9 @@ export class BunkerSigner implements Signer {
|
|||||||
}
|
}
|
||||||
private waitingForAuth: { [id: string]: boolean }
|
private waitingForAuth: { [id: string]: boolean }
|
||||||
private secretKey: Uint8Array
|
private secretKey: Uint8Array
|
||||||
private conversationKey: Uint8Array
|
// If the client initiates the connection, the two variables below can be filled in later.
|
||||||
public bp: BunkerPointer
|
private conversationKey!: Uint8Array
|
||||||
|
public bp!: BunkerPointer
|
||||||
|
|
||||||
private cachedPubKey: string | undefined
|
private cachedPubKey: string | undefined
|
||||||
|
|
||||||
@@ -108,23 +217,95 @@ export class BunkerSigner implements Signer {
|
|||||||
* @param remotePubkey - An optional remote public key. This is the key you want to sign as.
|
* @param remotePubkey - An optional remote public key. This is the key you want to sign as.
|
||||||
* @param secretKey - An optional key pair.
|
* @param secretKey - An optional key pair.
|
||||||
*/
|
*/
|
||||||
public constructor(clientSecretKey: Uint8Array, bp: BunkerPointer, params: BunkerSignerParams = {}) {
|
private constructor(clientSecretKey: Uint8Array, params: BunkerSignerParams) {
|
||||||
if (bp.relays.length === 0) {
|
|
||||||
throw new Error('no relays are specified for this bunker')
|
|
||||||
}
|
|
||||||
|
|
||||||
this.params = params
|
this.params = params
|
||||||
this.pool = params.pool || new SimplePool()
|
this.pool = params.pool || new SimplePool()
|
||||||
this.secretKey = clientSecretKey
|
this.secretKey = clientSecretKey
|
||||||
this.conversationKey = getConversationKey(clientSecretKey, bp.pubkey)
|
|
||||||
this.bp = bp
|
|
||||||
this.isOpen = false
|
this.isOpen = false
|
||||||
this.idPrefix = Math.random().toString(36).substring(7)
|
this.idPrefix = Math.random().toString(36).substring(7)
|
||||||
this.serial = 0
|
this.serial = 0
|
||||||
this.listeners = {}
|
this.listeners = {}
|
||||||
this.waitingForAuth = {}
|
this.waitingForAuth = {}
|
||||||
|
}
|
||||||
|
|
||||||
this.setupSubscription(params)
|
/**
|
||||||
|
* [Factory Method 1] Creates a Signer using bunker information (bunker:// URL or NIP-05).
|
||||||
|
* This method is used when the public key of the bunker is known in advance.
|
||||||
|
*/
|
||||||
|
public static fromBunker(
|
||||||
|
clientSecretKey: Uint8Array,
|
||||||
|
bp: BunkerPointer,
|
||||||
|
params: BunkerSignerParams = {},
|
||||||
|
): BunkerSigner {
|
||||||
|
if (bp.relays.length === 0) {
|
||||||
|
throw new Error('No relays specified for this bunker')
|
||||||
|
}
|
||||||
|
|
||||||
|
const signer = new BunkerSigner(clientSecretKey, params)
|
||||||
|
|
||||||
|
signer.conversationKey = getConversationKey(clientSecretKey, bp.pubkey)
|
||||||
|
signer.bp = bp
|
||||||
|
|
||||||
|
signer.setupSubscription(params)
|
||||||
|
return signer
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* [Factory Method 2] Creates a Signer using a nostrconnect:// URI generated by the client.
|
||||||
|
* In this method, the bunker initiates the connection by scanning the URI.
|
||||||
|
*/
|
||||||
|
public static async fromURI(
|
||||||
|
clientSecretKey: Uint8Array,
|
||||||
|
connectionURI: string,
|
||||||
|
params: BunkerSignerParams = {},
|
||||||
|
maxWait: number = 300_000,
|
||||||
|
): Promise<BunkerSigner> {
|
||||||
|
const signer = new BunkerSigner(clientSecretKey, params)
|
||||||
|
const parsedURI = parseNostrConnectURI(connectionURI)
|
||||||
|
const clientPubkey = getPublicKey(clientSecretKey)
|
||||||
|
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
const timer = setTimeout(() => {
|
||||||
|
sub.close()
|
||||||
|
reject(new Error(`Connection timed out after ${maxWait / 1000} seconds`))
|
||||||
|
}, maxWait)
|
||||||
|
|
||||||
|
const sub = signer.pool.subscribe(
|
||||||
|
parsedURI.params.relays,
|
||||||
|
{ kinds: [NostrConnect], '#p': [clientPubkey] },
|
||||||
|
{
|
||||||
|
onevent: async (event: NostrEvent) => {
|
||||||
|
try {
|
||||||
|
const tempConvKey = getConversationKey(clientSecretKey, event.pubkey)
|
||||||
|
const decryptedContent = decrypt(event.content, tempConvKey)
|
||||||
|
|
||||||
|
const response = JSON.parse(decryptedContent)
|
||||||
|
|
||||||
|
if (response.result === parsedURI.params.secret) {
|
||||||
|
clearTimeout(timer)
|
||||||
|
sub.close()
|
||||||
|
|
||||||
|
signer.bp = {
|
||||||
|
pubkey: event.pubkey,
|
||||||
|
relays: parsedURI.params.relays,
|
||||||
|
secret: parsedURI.params.secret,
|
||||||
|
}
|
||||||
|
signer.conversationKey = getConversationKey(clientSecretKey, event.pubkey)
|
||||||
|
signer.setupSubscription(params)
|
||||||
|
resolve(signer)
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.warn('Failed to process potential connection event', e)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onclose: () => {
|
||||||
|
clearTimeout(timer)
|
||||||
|
reject(new Error('Subscription closed before connection was established.'))
|
||||||
|
},
|
||||||
|
maxWait,
|
||||||
|
},
|
||||||
|
)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
private setupSubscription(params: BunkerSignerParams) {
|
private setupSubscription(params: BunkerSignerParams) {
|
||||||
@@ -290,7 +471,7 @@ export async function createAccount(
|
|||||||
): Promise<BunkerSigner> {
|
): Promise<BunkerSigner> {
|
||||||
if (email && !EMAIL_REGEX.test(email)) throw new Error('Invalid email')
|
if (email && !EMAIL_REGEX.test(email)) throw new Error('Invalid email')
|
||||||
|
|
||||||
let rpc = new BunkerSigner(localSecretKey, bunker.bunkerPointer, params)
|
let rpc = BunkerSigner.fromBunker(localSecretKey, bunker.bunkerPointer, params)
|
||||||
|
|
||||||
let pubkey = await rpc.sendRequest('create_account', [username, domain, email || ''])
|
let pubkey = await rpc.sendRequest('create_account', [username, domain, email || ''])
|
||||||
|
|
||||||
|
|||||||
9
nip57.ts
9
nip57.ts
@@ -18,13 +18,13 @@ export async function getZapEndpoint(metadata: Event): Promise<null | string> {
|
|||||||
try {
|
try {
|
||||||
let lnurl: string = ''
|
let lnurl: string = ''
|
||||||
let { lud06, lud16 } = JSON.parse(metadata.content)
|
let { lud06, lud16 } = JSON.parse(metadata.content)
|
||||||
if (lud06) {
|
if (lud16) {
|
||||||
|
let [name, domain] = lud16.split('@')
|
||||||
|
lnurl = new URL(`/.well-known/lnurlp/${name}`, `https://${domain}`).toString()
|
||||||
|
} else if (lud06) {
|
||||||
let { words } = bech32.decode(lud06, 1000)
|
let { words } = bech32.decode(lud06, 1000)
|
||||||
let data = bech32.fromWords(words)
|
let data = bech32.fromWords(words)
|
||||||
lnurl = utf8Decoder.decode(data)
|
lnurl = utf8Decoder.decode(data)
|
||||||
} else if (lud16) {
|
|
||||||
let [name, domain] = lud16.split('@')
|
|
||||||
lnurl = new URL(`/.well-known/lnurlp/${name}`, `https://${domain}`).toString()
|
|
||||||
} else {
|
} else {
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
@@ -69,6 +69,7 @@ export function makeZapRequest(params: ProfileZap | EventZap): EventTemplate {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ('event' in params) {
|
if ('event' in params) {
|
||||||
|
zr.tags.push(['e', params.event.id])
|
||||||
if (isReplaceableKind(params.event.kind)) {
|
if (isReplaceableKind(params.event.kind)) {
|
||||||
const a = ['a', `${params.event.kind}:${params.event.pubkey}:`]
|
const a = ['a', `${params.event.kind}:${params.event.pubkey}:`]
|
||||||
zr.tags.push(a)
|
zr.tags.push(a)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"name": "nostr-tools",
|
"name": "nostr-tools",
|
||||||
"version": "2.16.1",
|
"version": "2.17.1",
|
||||||
"description": "Tools for making a Nostr client.",
|
"description": "Tools for making a Nostr client.",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|||||||
201
pool.test.ts
201
pool.test.ts
@@ -35,14 +35,18 @@ test('removing duplicates when subscribing', async () => {
|
|||||||
priv,
|
priv,
|
||||||
)
|
)
|
||||||
|
|
||||||
pool.subscribeMany(relayURLs, [{ authors: [pub] }], {
|
pool.subscribeMany(
|
||||||
onevent(event: Event) {
|
relayURLs,
|
||||||
// this should be called only once even though we're listening
|
{ authors: [pub] },
|
||||||
// to multiple relays because the events will be caught and
|
{
|
||||||
// deduplicated efficiently (without even being parsed)
|
onevent(event: Event) {
|
||||||
received.push(event)
|
// this should be called only once even though we're listening
|
||||||
|
// to multiple relays because the events will be caught and
|
||||||
|
// deduplicated efficiently (without even being parsed)
|
||||||
|
received.push(event)
|
||||||
|
},
|
||||||
},
|
},
|
||||||
})
|
)
|
||||||
|
|
||||||
await Promise.any(pool.publish(relayURLs, event))
|
await Promise.any(pool.publish(relayURLs, event))
|
||||||
await new Promise(resolve => setTimeout(resolve, 200)) // wait for the new published event to be received
|
await new Promise(resolve => setTimeout(resolve, 200)) // wait for the new published event to be received
|
||||||
@@ -55,16 +59,24 @@ test('same with double subs', async () => {
|
|||||||
let priv = generateSecretKey()
|
let priv = generateSecretKey()
|
||||||
let pub = getPublicKey(priv)
|
let pub = getPublicKey(priv)
|
||||||
|
|
||||||
pool.subscribeMany(relayURLs, [{ authors: [pub] }], {
|
pool.subscribeMany(
|
||||||
onevent(event) {
|
relayURLs,
|
||||||
received.push(event)
|
{ authors: [pub] },
|
||||||
|
{
|
||||||
|
onevent(event) {
|
||||||
|
received.push(event)
|
||||||
|
},
|
||||||
},
|
},
|
||||||
})
|
)
|
||||||
pool.subscribeMany(relayURLs, [{ authors: [pub] }], {
|
pool.subscribeMany(
|
||||||
onevent(event) {
|
relayURLs,
|
||||||
received.push(event)
|
{ authors: [pub] },
|
||||||
|
{
|
||||||
|
onevent(event) {
|
||||||
|
received.push(event)
|
||||||
|
},
|
||||||
},
|
},
|
||||||
})
|
)
|
||||||
|
|
||||||
let received: Event[] = []
|
let received: Event[] = []
|
||||||
|
|
||||||
@@ -168,12 +180,16 @@ test('query a bunch of events and cancel on eose', async () => {
|
|||||||
let events = new Set<string>()
|
let events = new Set<string>()
|
||||||
|
|
||||||
await new Promise<void>(resolve => {
|
await new Promise<void>(resolve => {
|
||||||
pool.subscribeManyEose(relayURLs, [{ kinds: [0, 1, 2, 3, 4, 5, 6], limit: 40 }], {
|
pool.subscribeManyEose(
|
||||||
onevent(event) {
|
relayURLs,
|
||||||
events.add(event.id)
|
{ kinds: [0, 1, 2, 3, 4, 5, 6], limit: 40 },
|
||||||
|
{
|
||||||
|
onevent(event) {
|
||||||
|
events.add(event.id)
|
||||||
|
},
|
||||||
|
onclose: resolve as any,
|
||||||
},
|
},
|
||||||
onclose: resolve as any,
|
)
|
||||||
})
|
|
||||||
})
|
})
|
||||||
|
|
||||||
expect(events.size).toBeGreaterThan(50)
|
expect(events.size).toBeGreaterThan(50)
|
||||||
@@ -206,6 +222,151 @@ test('get()', async () => {
|
|||||||
expect(event).toHaveProperty('id', ids[0])
|
expect(event).toHaveProperty('id', ids[0])
|
||||||
})
|
})
|
||||||
|
|
||||||
|
test('ping-pong timeout in pool', async () => {
|
||||||
|
const mockRelay = mockRelays[0]
|
||||||
|
pool = new SimplePool({ enablePing: true })
|
||||||
|
const relay = await pool.ensureRelay(mockRelay.url)
|
||||||
|
relay.pingTimeout = 50
|
||||||
|
relay.pingFrequency = 50
|
||||||
|
|
||||||
|
let closed = false
|
||||||
|
const closedPromise = new Promise<void>(resolve => {
|
||||||
|
relay.onclose = () => {
|
||||||
|
closed = true
|
||||||
|
resolve()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
expect(relay.connected).toBeTrue()
|
||||||
|
|
||||||
|
// wait for the first ping to succeed
|
||||||
|
await new Promise(resolve => setTimeout(resolve, 75))
|
||||||
|
expect(closed).toBeFalse()
|
||||||
|
|
||||||
|
// now make it unresponsive
|
||||||
|
mockRelay.unresponsive = true
|
||||||
|
|
||||||
|
// wait for the second ping to fail
|
||||||
|
await closedPromise
|
||||||
|
|
||||||
|
expect(relay.connected).toBeFalse()
|
||||||
|
expect(closed).toBeTrue()
|
||||||
|
})
|
||||||
|
|
||||||
|
test('reconnect on disconnect in pool', async () => {
|
||||||
|
const mockRelay = mockRelays[0]
|
||||||
|
pool = new SimplePool({ enablePing: true, enableReconnect: true })
|
||||||
|
const relay = await pool.ensureRelay(mockRelay.url)
|
||||||
|
relay.pingTimeout = 50
|
||||||
|
relay.pingFrequency = 50
|
||||||
|
relay.resubscribeBackoff = [50, 100]
|
||||||
|
|
||||||
|
let closes = 0
|
||||||
|
relay.onclose = () => {
|
||||||
|
closes++
|
||||||
|
}
|
||||||
|
|
||||||
|
expect(relay.connected).toBeTrue()
|
||||||
|
|
||||||
|
// wait for the first ping to succeed
|
||||||
|
await new Promise(resolve => setTimeout(resolve, 75))
|
||||||
|
expect(closes).toBe(0)
|
||||||
|
|
||||||
|
// now make it unresponsive
|
||||||
|
mockRelay.unresponsive = true
|
||||||
|
|
||||||
|
// wait for the second ping to fail, which will trigger a close
|
||||||
|
await new Promise(resolve => {
|
||||||
|
const interval = setInterval(() => {
|
||||||
|
if (closes > 0) {
|
||||||
|
clearInterval(interval)
|
||||||
|
resolve(null)
|
||||||
|
}
|
||||||
|
}, 10)
|
||||||
|
})
|
||||||
|
expect(closes).toBe(1)
|
||||||
|
expect(relay.connected).toBeFalse()
|
||||||
|
|
||||||
|
// now make it responsive again
|
||||||
|
mockRelay.unresponsive = false
|
||||||
|
|
||||||
|
// wait for reconnect
|
||||||
|
await new Promise(resolve => {
|
||||||
|
const interval = setInterval(() => {
|
||||||
|
if (relay.connected) {
|
||||||
|
clearInterval(interval)
|
||||||
|
resolve(null)
|
||||||
|
}
|
||||||
|
}, 10)
|
||||||
|
})
|
||||||
|
|
||||||
|
expect(relay.connected).toBeTrue()
|
||||||
|
expect(closes).toBe(1)
|
||||||
|
})
|
||||||
|
|
||||||
|
test('reconnect with filter update in pool', async () => {
|
||||||
|
const mockRelay = mockRelays[0]
|
||||||
|
const newSince = Math.floor(Date.now() / 1000)
|
||||||
|
pool = new SimplePool({
|
||||||
|
enablePing: true,
|
||||||
|
enableReconnect: filters => {
|
||||||
|
return filters.map(f => ({ ...f, since: newSince }))
|
||||||
|
},
|
||||||
|
})
|
||||||
|
const relay = await pool.ensureRelay(mockRelay.url)
|
||||||
|
relay.pingTimeout = 50
|
||||||
|
relay.pingFrequency = 50
|
||||||
|
relay.resubscribeBackoff = [50, 100]
|
||||||
|
|
||||||
|
let closes = 0
|
||||||
|
relay.onclose = () => {
|
||||||
|
closes++
|
||||||
|
}
|
||||||
|
|
||||||
|
expect(relay.connected).toBeTrue()
|
||||||
|
|
||||||
|
const sub = relay.subscribe([{ kinds: [1], since: 0 }], { onevent: () => {} })
|
||||||
|
expect(sub.filters[0].since).toBe(0)
|
||||||
|
|
||||||
|
// wait for the first ping to succeed
|
||||||
|
await new Promise(resolve => setTimeout(resolve, 75))
|
||||||
|
expect(closes).toBe(0)
|
||||||
|
|
||||||
|
// now make it unresponsive
|
||||||
|
mockRelay.unresponsive = true
|
||||||
|
|
||||||
|
// wait for the second ping to fail, which will trigger a close
|
||||||
|
await new Promise(resolve => {
|
||||||
|
const interval = setInterval(() => {
|
||||||
|
if (closes > 0) {
|
||||||
|
clearInterval(interval)
|
||||||
|
resolve(null)
|
||||||
|
}
|
||||||
|
}, 10)
|
||||||
|
})
|
||||||
|
expect(closes).toBe(1)
|
||||||
|
expect(relay.connected).toBeFalse()
|
||||||
|
|
||||||
|
// now make it responsive again
|
||||||
|
mockRelay.unresponsive = false
|
||||||
|
|
||||||
|
// wait for reconnect
|
||||||
|
await new Promise(resolve => {
|
||||||
|
const interval = setInterval(() => {
|
||||||
|
if (relay.connected) {
|
||||||
|
clearInterval(interval)
|
||||||
|
resolve(null)
|
||||||
|
}
|
||||||
|
}, 10)
|
||||||
|
})
|
||||||
|
|
||||||
|
expect(relay.connected).toBeTrue()
|
||||||
|
expect(closes).toBe(1)
|
||||||
|
|
||||||
|
// check if filter was updated
|
||||||
|
expect(sub.filters[0].since).toBe(newSince)
|
||||||
|
})
|
||||||
|
|
||||||
test('track relays when publishing', async () => {
|
test('track relays when publishing', async () => {
|
||||||
let event1 = finalizeEvent(
|
let event1 = finalizeEvent(
|
||||||
{
|
{
|
||||||
|
|||||||
4
pool.ts
4
pool.ts
@@ -1,7 +1,7 @@
|
|||||||
/* global WebSocket */
|
/* global WebSocket */
|
||||||
|
|
||||||
import { verifyEvent } from './pure.ts'
|
import { verifyEvent } from './pure.ts'
|
||||||
import { AbstractSimplePool } from './abstract-pool.ts'
|
import { AbstractSimplePool, type AbstractPoolConstructorOptions } from './abstract-pool.ts'
|
||||||
|
|
||||||
var _WebSocket: typeof WebSocket
|
var _WebSocket: typeof WebSocket
|
||||||
|
|
||||||
@@ -14,7 +14,7 @@ export function useWebSocketImplementation(websocketImplementation: any) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export class SimplePool extends AbstractSimplePool {
|
export class SimplePool extends AbstractSimplePool {
|
||||||
constructor(options?: { enablePing?: boolean }) {
|
constructor(options?: Pick<AbstractPoolConstructorOptions, 'enablePing' | 'enableReconnect'>) {
|
||||||
super({ verifyEvent, websocketImplementation: _WebSocket, ...options })
|
super({ verifyEvent, websocketImplementation: _WebSocket, ...options })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
282
relay.test.ts
282
relay.test.ts
@@ -117,3 +117,285 @@ test('publish timeout', async () => {
|
|||||||
),
|
),
|
||||||
).rejects.toThrow('publish timed out')
|
).rejects.toThrow('publish timed out')
|
||||||
})
|
})
|
||||||
|
|
||||||
|
test('ping-pong timeout (with native ping)', async () => {
|
||||||
|
const mockRelay = new MockRelay()
|
||||||
|
let pingCalled = false
|
||||||
|
|
||||||
|
// mock a native ping/pong mechanism
|
||||||
|
;(MockWebSocketClient.prototype as any).ping = function (this: any) {
|
||||||
|
pingCalled = true
|
||||||
|
if (!mockRelay.unresponsive) {
|
||||||
|
this.dispatchEvent(new Event('pong'))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
;(MockWebSocketClient.prototype as any).once = function (
|
||||||
|
this: any,
|
||||||
|
event: string,
|
||||||
|
listener: (...args: any[]) => void,
|
||||||
|
) {
|
||||||
|
if (event === 'pong') {
|
||||||
|
const onceListener = (...args: any[]) => {
|
||||||
|
this.removeEventListener(event, onceListener)
|
||||||
|
listener.apply(this, args)
|
||||||
|
}
|
||||||
|
this.addEventListener('pong', onceListener)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const relay = new Relay(mockRelay.url, { enablePing: true })
|
||||||
|
relay.pingTimeout = 50
|
||||||
|
relay.pingFrequency = 50
|
||||||
|
|
||||||
|
let closed = false
|
||||||
|
const closedPromise = new Promise<void>(resolve => {
|
||||||
|
relay.onclose = () => {
|
||||||
|
closed = true
|
||||||
|
resolve()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
await relay.connect()
|
||||||
|
expect(relay.connected).toBeTrue()
|
||||||
|
|
||||||
|
// wait for the first ping to succeed
|
||||||
|
await new Promise(resolve => setTimeout(resolve, 75))
|
||||||
|
expect(pingCalled).toBeTrue()
|
||||||
|
expect(closed).toBeFalse()
|
||||||
|
|
||||||
|
// now make it unresponsive
|
||||||
|
mockRelay.unresponsive = true
|
||||||
|
|
||||||
|
// wait for the second ping to fail
|
||||||
|
await closedPromise
|
||||||
|
|
||||||
|
expect(relay.connected).toBeFalse()
|
||||||
|
expect(closed).toBeTrue()
|
||||||
|
} finally {
|
||||||
|
delete (MockWebSocketClient.prototype as any).ping
|
||||||
|
delete (MockWebSocketClient.prototype as any).once
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
test('ping-pong timeout (no-ping browser environment)', async () => {
|
||||||
|
// spy on send to ensure the fallback dummy REQ is used, since MockWebSocketClient has no ping
|
||||||
|
const originalSend = MockWebSocketClient.prototype.send
|
||||||
|
let dummyReqSent = false
|
||||||
|
|
||||||
|
try {
|
||||||
|
MockWebSocketClient.prototype.send = function (message: string) {
|
||||||
|
if (message.includes('REQ') && message.includes('a'.repeat(64))) {
|
||||||
|
dummyReqSent = true
|
||||||
|
}
|
||||||
|
originalSend.call(this, message)
|
||||||
|
}
|
||||||
|
|
||||||
|
const mockRelay = new MockRelay()
|
||||||
|
const relay = new Relay(mockRelay.url, { enablePing: true })
|
||||||
|
relay.pingTimeout = 50
|
||||||
|
relay.pingFrequency = 50
|
||||||
|
|
||||||
|
let closed = false
|
||||||
|
const closedPromise = new Promise<void>(resolve => {
|
||||||
|
relay.onclose = () => {
|
||||||
|
closed = true
|
||||||
|
resolve()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
await relay.connect()
|
||||||
|
expect(relay.connected).toBeTrue()
|
||||||
|
|
||||||
|
// wait for the first ping to succeed
|
||||||
|
await new Promise(resolve => setTimeout(resolve, 75))
|
||||||
|
expect(dummyReqSent).toBeTrue()
|
||||||
|
expect(closed).toBeFalse()
|
||||||
|
|
||||||
|
// now make it unresponsive
|
||||||
|
mockRelay.unresponsive = true
|
||||||
|
|
||||||
|
// wait for the second ping to fail
|
||||||
|
await closedPromise
|
||||||
|
|
||||||
|
expect(relay.connected).toBeFalse()
|
||||||
|
expect(closed).toBeTrue()
|
||||||
|
} finally {
|
||||||
|
MockWebSocketClient.prototype.send = originalSend
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
test('ping-pong listeners are cleaned up', async () => {
|
||||||
|
const mockRelay = new MockRelay()
|
||||||
|
let listenerCount = 0
|
||||||
|
|
||||||
|
// mock a native ping/pong mechanism
|
||||||
|
;(MockWebSocketClient.prototype as any).ping = function (this: any) {
|
||||||
|
if (!mockRelay.unresponsive) {
|
||||||
|
this.dispatchEvent(new Event('pong'))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const originalAddEventListener = MockWebSocketClient.prototype.addEventListener
|
||||||
|
MockWebSocketClient.prototype.addEventListener = function (event, listener, options) {
|
||||||
|
if (event === 'pong') {
|
||||||
|
listenerCount++
|
||||||
|
}
|
||||||
|
// @ts-ignore
|
||||||
|
return originalAddEventListener.call(this, event, listener, options)
|
||||||
|
}
|
||||||
|
|
||||||
|
const originalRemoveEventListener = MockWebSocketClient.prototype.removeEventListener
|
||||||
|
MockWebSocketClient.prototype.removeEventListener = function (event, listener) {
|
||||||
|
if (event === 'pong') {
|
||||||
|
listenerCount--
|
||||||
|
}
|
||||||
|
// @ts-ignore
|
||||||
|
return originalRemoveEventListener.call(this, event, listener)
|
||||||
|
}
|
||||||
|
|
||||||
|
// the check in pingpong() is for .once() so we must mock it
|
||||||
|
;(MockWebSocketClient.prototype as any).once = function (
|
||||||
|
this: any,
|
||||||
|
event: string,
|
||||||
|
listener: (...args: any[]) => void,
|
||||||
|
) {
|
||||||
|
const onceListener = (...args: any[]) => {
|
||||||
|
this.removeEventListener(event, onceListener)
|
||||||
|
listener.apply(this, args)
|
||||||
|
}
|
||||||
|
this.addEventListener(event, onceListener)
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const relay = new Relay(mockRelay.url, { enablePing: true })
|
||||||
|
relay.pingTimeout = 50
|
||||||
|
relay.pingFrequency = 50
|
||||||
|
|
||||||
|
await relay.connect()
|
||||||
|
await new Promise(resolve => setTimeout(resolve, 175))
|
||||||
|
|
||||||
|
expect(listenerCount).toBeLessThan(2)
|
||||||
|
|
||||||
|
relay.close()
|
||||||
|
} finally {
|
||||||
|
delete (MockWebSocketClient.prototype as any).ping
|
||||||
|
delete (MockWebSocketClient.prototype as any).once
|
||||||
|
MockWebSocketClient.prototype.addEventListener = originalAddEventListener
|
||||||
|
MockWebSocketClient.prototype.removeEventListener = originalRemoveEventListener
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
test('reconnect on disconnect', async () => {
|
||||||
|
const mockRelay = new MockRelay()
|
||||||
|
const relay = new Relay(mockRelay.url, { enablePing: true, enableReconnect: true })
|
||||||
|
relay.pingTimeout = 50
|
||||||
|
relay.pingFrequency = 50
|
||||||
|
relay.resubscribeBackoff = [50, 100] // short backoff for testing
|
||||||
|
|
||||||
|
let closes = 0
|
||||||
|
relay.onclose = () => {
|
||||||
|
closes++
|
||||||
|
}
|
||||||
|
|
||||||
|
await relay.connect()
|
||||||
|
expect(relay.connected).toBeTrue()
|
||||||
|
|
||||||
|
// wait for the first ping to succeed
|
||||||
|
await new Promise(resolve => setTimeout(resolve, 75))
|
||||||
|
expect(closes).toBe(0)
|
||||||
|
|
||||||
|
// now make it unresponsive
|
||||||
|
mockRelay.unresponsive = true
|
||||||
|
|
||||||
|
// wait for the second ping to fail, which will trigger a close
|
||||||
|
await new Promise(resolve => {
|
||||||
|
const interval = setInterval(() => {
|
||||||
|
if (closes > 0) {
|
||||||
|
clearInterval(interval)
|
||||||
|
resolve(null)
|
||||||
|
}
|
||||||
|
}, 10)
|
||||||
|
})
|
||||||
|
expect(closes).toBe(1)
|
||||||
|
expect(relay.connected).toBeFalse()
|
||||||
|
|
||||||
|
// now make it responsive again
|
||||||
|
mockRelay.unresponsive = false
|
||||||
|
|
||||||
|
// wait for reconnect
|
||||||
|
await new Promise(resolve => {
|
||||||
|
const interval = setInterval(() => {
|
||||||
|
if (relay.connected) {
|
||||||
|
clearInterval(interval)
|
||||||
|
resolve(null)
|
||||||
|
}
|
||||||
|
}, 10)
|
||||||
|
})
|
||||||
|
|
||||||
|
expect(relay.connected).toBeTrue()
|
||||||
|
expect(closes).toBe(1) // should not have closed again
|
||||||
|
})
|
||||||
|
|
||||||
|
test('reconnect with filter update', async () => {
|
||||||
|
const mockRelay = new MockRelay()
|
||||||
|
const newSince = Math.floor(Date.now() / 1000)
|
||||||
|
const relay = new Relay(mockRelay.url, {
|
||||||
|
enablePing: true,
|
||||||
|
enableReconnect: filters => {
|
||||||
|
return filters.map(f => ({ ...f, since: newSince }))
|
||||||
|
},
|
||||||
|
})
|
||||||
|
relay.pingTimeout = 50
|
||||||
|
relay.pingFrequency = 50
|
||||||
|
relay.resubscribeBackoff = [50, 100]
|
||||||
|
|
||||||
|
let closes = 0
|
||||||
|
relay.onclose = () => {
|
||||||
|
closes++
|
||||||
|
}
|
||||||
|
|
||||||
|
await relay.connect()
|
||||||
|
expect(relay.connected).toBeTrue()
|
||||||
|
|
||||||
|
const sub = relay.subscribe([{ kinds: [1], since: 0 }], { onevent: () => {} })
|
||||||
|
expect(sub.filters[0].since).toBe(0)
|
||||||
|
|
||||||
|
// wait for the first ping to succeed
|
||||||
|
await new Promise(resolve => setTimeout(resolve, 75))
|
||||||
|
expect(closes).toBe(0)
|
||||||
|
|
||||||
|
// now make it unresponsive
|
||||||
|
mockRelay.unresponsive = true
|
||||||
|
|
||||||
|
// wait for the second ping to fail, which will trigger a close
|
||||||
|
await new Promise(resolve => {
|
||||||
|
const interval = setInterval(() => {
|
||||||
|
if (closes > 0) {
|
||||||
|
clearInterval(interval)
|
||||||
|
resolve(null)
|
||||||
|
}
|
||||||
|
}, 10)
|
||||||
|
})
|
||||||
|
expect(closes).toBe(1)
|
||||||
|
expect(relay.connected).toBeFalse()
|
||||||
|
|
||||||
|
// now make it responsive again
|
||||||
|
mockRelay.unresponsive = false
|
||||||
|
|
||||||
|
// wait for reconnect
|
||||||
|
await new Promise(resolve => {
|
||||||
|
const interval = setInterval(() => {
|
||||||
|
if (relay.connected) {
|
||||||
|
clearInterval(interval)
|
||||||
|
resolve(null)
|
||||||
|
}
|
||||||
|
}, 10)
|
||||||
|
})
|
||||||
|
|
||||||
|
expect(relay.connected).toBeTrue()
|
||||||
|
expect(closes).toBe(1)
|
||||||
|
|
||||||
|
// check if filter was updated
|
||||||
|
expect(sub.filters[0].since).toBe(newSince)
|
||||||
|
})
|
||||||
|
|||||||
13
relay.ts
13
relay.ts
@@ -1,7 +1,7 @@
|
|||||||
/* global WebSocket */
|
/* global WebSocket */
|
||||||
|
|
||||||
import { verifyEvent } from './pure.ts'
|
import { verifyEvent } from './pure.ts'
|
||||||
import { AbstractRelay } from './abstract-relay.ts'
|
import { AbstractRelay, type AbstractRelayConstructorOptions } from './abstract-relay.ts'
|
||||||
|
|
||||||
var _WebSocket: typeof WebSocket
|
var _WebSocket: typeof WebSocket
|
||||||
|
|
||||||
@@ -14,12 +14,15 @@ export function useWebSocketImplementation(websocketImplementation: any) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export class Relay extends AbstractRelay {
|
export class Relay extends AbstractRelay {
|
||||||
constructor(url: string) {
|
constructor(url: string, options?: Pick<AbstractRelayConstructorOptions, 'enablePing' | 'enableReconnect'>) {
|
||||||
super(url, { verifyEvent, websocketImplementation: _WebSocket })
|
super(url, { verifyEvent, websocketImplementation: _WebSocket, ...options })
|
||||||
}
|
}
|
||||||
|
|
||||||
static async connect(url: string): Promise<Relay> {
|
static async connect(
|
||||||
const relay = new Relay(url)
|
url: string,
|
||||||
|
options?: Pick<AbstractRelayConstructorOptions, 'enablePing' | 'enableReconnect'>,
|
||||||
|
): Promise<Relay> {
|
||||||
|
const relay = new Relay(url, options)
|
||||||
await relay.connect()
|
await relay.connect()
|
||||||
return relay
|
return relay
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -26,6 +26,7 @@ export class MockRelay {
|
|||||||
public url: string
|
public url: string
|
||||||
public secretKeys: Uint8Array[]
|
public secretKeys: Uint8Array[]
|
||||||
public preloadedEvents: Event[]
|
public preloadedEvents: Event[]
|
||||||
|
public unresponsive: boolean = false
|
||||||
|
|
||||||
constructor(url?: string | undefined) {
|
constructor(url?: string | undefined) {
|
||||||
serial++
|
serial++
|
||||||
@@ -48,6 +49,7 @@ export class MockRelay {
|
|||||||
let subs: { [subId: string]: { conn: any; filters: Filter[] } } = {}
|
let subs: { [subId: string]: { conn: any; filters: Filter[] } } = {}
|
||||||
|
|
||||||
conn.on('message', (message: string) => {
|
conn.on('message', (message: string) => {
|
||||||
|
if (this.unresponsive) return
|
||||||
const data = JSON.parse(message)
|
const data = JSON.parse(message)
|
||||||
|
|
||||||
switch (data[0]) {
|
switch (data[0]) {
|
||||||
|
|||||||
Reference in New Issue
Block a user