nostr-sdk 0.45.0

A full-featured SDK for building high-performance and reliable nostr applications.
Documentation
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
use std::future::IntoFuture;
use std::pin::Pin;
use std::task::{Context, Poll};
use std::time::Duration;

use futures::{Stream, StreamExt};
use nostr::event::Event;
use nostr::filter::Filter;
use nostr::message::SubscriptionId;
use tokio::sync::{mpsc, oneshot};

use super::subscribe::subscribe_auto_closing;
use crate::error::Error;
use crate::future::BoxedFuture;
use crate::relay::{
    Relay, ReqExitPolicy, SubscribeAutoCloseOptions, SubscriptionActivity,
    SubscriptionAutoClosedReason,
};

type EventStream = Pin<Box<dyn Stream<Item = Result<Event, Error>> + Send>>;

pub(crate) enum RelayStreamEvent {
    Event(Event),
    Error(Error),
    Completed,
}

/// Stream events
#[must_use = "Does nothing unless you await!"]
pub struct StreamEvents<'relay> {
    relay: &'relay Relay,
    filters: Vec<Filter>,
    id: Option<SubscriptionId>,
    timeout: Option<Duration>,
    policy: ReqExitPolicy,
}

impl<'relay> StreamEvents<'relay> {
    pub(crate) fn new(relay: &'relay Relay, filters: Vec<Filter>) -> Self {
        Self {
            relay,
            filters,
            id: None,
            timeout: None,
            policy: ReqExitPolicy::ExitOnEOSE,
        }
    }

    /// Set a specific subscription ID
    #[inline]
    pub fn with_id(mut self, id: SubscriptionId) -> Self {
        self.id = Some(id);
        self
    }

    #[inline]
    pub(crate) fn maybe_timeout(mut self, timeout: Option<Duration>) -> Self {
        self.timeout = timeout;
        self
    }

    /// Set a timeout
    ///
    /// By default, no timeout is configured.
    #[inline]
    pub fn timeout(mut self, timeout: Duration) -> Self {
        self.timeout = Some(timeout);
        self
    }

    /// Set request exit policy (default: [`ReqExitPolicy::ExitOnEOSE`]).
    #[inline]
    pub fn policy(mut self, policy: ReqExitPolicy) -> Self {
        self.policy = policy;
        self
    }

    pub(crate) async fn into_relay_event_stream(
        self,
    ) -> Result<SubscriptionActivityEventStream, Error> {
        // Create channels
        let (tx, rx) = mpsc::channel(512);

        // Compose auto-closing options
        let opts: SubscribeAutoCloseOptions = SubscribeAutoCloseOptions::default()
            .exit_policy(self.policy)
            .timeout(self.timeout);

        // Get or generate a subscription ID
        let id: SubscriptionId = self.id.unwrap_or_else(SubscriptionId::generate);

        // Subscribe
        let (cancel_tx, cancel_rx) = oneshot::channel();
        subscribe_auto_closing(
            self.relay,
            id,
            self.filters,
            opts,
            Some(tx),
            Some(cancel_rx),
        )
        .await?;

        Ok(SubscriptionActivityEventStream::new(rx, cancel_tx))
    }
}

impl<'relay> IntoFuture for StreamEvents<'relay> {
    type Output = Result<EventStream, Error>;
    type IntoFuture = BoxedFuture<'relay, Self::Output>;

    fn into_future(self) -> Self::IntoFuture {
        Box::pin(async move {
            let stream = self.into_relay_event_stream().await?;

            Ok(Box::pin(stream.filter_map(async |e| match e {
                RelayStreamEvent::Event(event) => Some(Ok(event)),
                RelayStreamEvent::Error(e) => Some(Err(e)),
                RelayStreamEvent::Completed => None,
            })) as EventStream)
        })
    }
}

pub(crate) struct SubscriptionActivityEventStream {
    rx: mpsc::Receiver<SubscriptionActivity>,
    done: bool,
    cancel: Option<oneshot::Sender<()>>,
}

impl SubscriptionActivityEventStream {
    fn new(rx: mpsc::Receiver<SubscriptionActivity>, cancel: oneshot::Sender<()>) -> Self {
        Self {
            rx,
            done: false,
            cancel: Some(cancel),
        }
    }
}

impl Drop for SubscriptionActivityEventStream {
    fn drop(&mut self) {
        if let Some(cancel) = self.cancel.take() {
            let _ = cancel.send(());
        }
    }
}

impl Stream for SubscriptionActivityEventStream {
    type Item = RelayStreamEvent;

    fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
        if self.done {
            return Poll::Ready(None);
        }

        match Pin::new(&mut self.rx).poll_recv(cx) {
            Poll::Ready(Some(activity)) => match activity {
                SubscriptionActivity::ReceivedEvent(event) => {
                    Poll::Ready(Some(RelayStreamEvent::Event(event)))
                }
                SubscriptionActivity::Closed(reason) => match reason {
                    SubscriptionAutoClosedReason::AuthenticationFailed => {
                        self.done = true;
                        Poll::Ready(Some(RelayStreamEvent::Error(Error::authentication_msg(
                            "authentication failed",
                        ))))
                    }
                    SubscriptionAutoClosedReason::Closed(message) => {
                        self.done = true;
                        Poll::Ready(Some(RelayStreamEvent::Error(Error::relay_msg(message))))
                    }
                    SubscriptionAutoClosedReason::Completed => {
                        self.done = true;
                        Poll::Ready(Some(RelayStreamEvent::Completed))
                    }
                },
            },
            Poll::Ready(None) => Poll::Ready(None),
            Poll::Pending => Poll::Pending,
        }
    }
}

#[cfg(test)]
mod tests {
    use std::time::Duration;

    use futures::StreamExt;
    use nostr::event::{EventBuilder, FinalizeEvent, Kind};
    use nostr::filter::Filter;
    use nostr::key::Keys;
    use nostr::message::{MachineReadablePrefix, SubscriptionId};

    use crate::authenticator::SignerAuthenticator;
    use crate::local_relay::*;
    use crate::relay::{Relay, RelayOptions, ReqExitPolicy};
    use crate::test_utils::{
        setup_nip42_read_local_relay, setup_relay, setup_relay_with_authenticator,
    };

    #[tokio::test]
    async fn test_stream_terminates_on_drop() {
        let mock = MockRelay::run().await.unwrap();
        let url = mock.url().await;

        let relay = Relay::new(url);

        relay
            .try_connect()
            .timeout(Duration::from_secs(3))
            .await
            .unwrap();

        let filter = Filter::new().kind(Kind::TextNote).limit(1);
        let id = SubscriptionId::generate();

        let stream = relay
            .stream_events(filter)
            .with_id(id.clone())
            .policy(ReqExitPolicy::WaitForEvents(1))
            .await
            .unwrap();

        // Check if relay has the stream subscription
        let exists: bool = relay.subscription(&id).await.is_some();
        assert!(exists);

        // Drop the stream
        // This must terminate the stream and close the subscription
        drop(stream);

        // Wait a bit
        tokio::time::sleep(Duration::from_secs(1)).await;

        // Now the subscription must not exist anymore
        let exists: bool = relay.subscription(&id).await.is_some();
        assert!(!exists);
    }

    #[tokio::test]
    async fn test_stream_with_subscription_verification_single_filter() {
        let keys = Keys::generate();
        let event = EventBuilder::new(Kind::TextNote, "test")
            .finalize(&keys)
            .unwrap();

        let mock = MockRelay::run().await.unwrap();
        let url = mock.url().await;

        mock.add_event(event.clone()).await.unwrap();

        let opts = RelayOptions::default()
            .verify_subscriptions(true)
            .ban_relay_on_mismatch(true);
        let relay = Relay::builder(url).opts(opts).build();

        relay.connect();

        let filter = Filter::new().author(event.pubkey).kind(Kind::TextNote);

        let mut stream = relay
            .stream_events(filter)
            .timeout(Duration::from_secs(3))
            .await
            .unwrap();

        let streamed_event = stream
            .next()
            .await
            .expect("Received None instead of the event")
            .unwrap();
        assert_eq!(streamed_event.id, event.id);
    }

    #[tokio::test]
    async fn test_stream_with_subscription_verification_multiple_filters() {
        let keys = Keys::generate();
        let event = EventBuilder::new(Kind::TextNote, "test")
            .finalize(&keys)
            .unwrap();

        let mock = MockRelay::run().await.unwrap();
        let url = mock.url().await;

        mock.add_event(event.clone()).await.unwrap();

        let opts = RelayOptions::default()
            .verify_subscriptions(true)
            .ban_relay_on_mismatch(true);
        let relay = Relay::builder(url).opts(opts).build();

        relay.connect();

        let matching_filter = Filter::new().author(event.pubkey).kind(Kind::TextNote);
        let non_matching_filter = Filter::new().author(event.pubkey).kind(Kind::Repost);

        let mut stream = relay
            .stream_events([matching_filter, non_matching_filter])
            .timeout(Duration::from_secs(3))
            .await
            .unwrap();

        let streamed_event = stream
            .next()
            .await
            .expect("Received None instead of the event")
            .unwrap();
        assert_eq!(streamed_event.id, event.id);
    }

    #[tokio::test]
    async fn test_stream_events_dont_resubscribes_after_auth_required_closed_without_authenticator()
    {
        let local = setup_nip42_read_local_relay().await;

        let keys = Keys::generate();
        let event = EventBuilder::new(Kind::TextNote, "Test")
            .finalize(&keys)
            .unwrap();
        local.add_event(event.clone()).await.unwrap();

        let url = local.url().await;
        let relay: Relay = setup_relay(url).await;

        let filter: Filter = Filter::new().kind(Kind::TextNote).limit(3);

        let mut stream = relay
            .stream_events(filter.clone())
            .timeout(Duration::from_secs(5))
            .await
            .unwrap();

        let err = stream
            .next()
            .await
            .expect("stream ended before error was received")
            .unwrap_err();

        assert_eq!(
            MachineReadablePrefix::parse(&err.to_string()).unwrap(),
            MachineReadablePrefix::AuthRequired
        );
    }

    #[tokio::test]
    async fn test_stream_events_resubscribes_after_auth_required_closed() {
        let local = setup_nip42_read_local_relay().await;

        let keys = Keys::generate();
        let expected = EventBuilder::new(Kind::TextNote, "Test")
            .finalize(&keys)
            .unwrap();
        local.add_event(expected.clone()).await.unwrap();

        let authenticator = SignerAuthenticator::new(keys);
        let relay = setup_relay_with_authenticator(local.url().await, authenticator).await;

        let filter = Filter::new().kind(Kind::TextNote).limit(1);

        let mut stream = relay
            .stream_events(filter)
            .timeout(Duration::from_secs(5))
            .await
            .unwrap();

        let event = stream
            .next()
            .await
            .expect("stream ended before event was received")
            .unwrap();
        assert_eq!(event.id, expected.id);
    }

    #[tokio::test]
    async fn test_stream_events_keeps_auto_closing_subscription_after_auth_required_resubscribe() {
        let local = setup_nip42_read_local_relay().await;

        let keys = Keys::generate();
        let expected = EventBuilder::new(Kind::TextNote, "Test")
            .finalize(&keys)
            .unwrap();
        local.add_event(expected.clone()).await.unwrap();

        let authenticator = SignerAuthenticator::new(keys);
        let relay = setup_relay_with_authenticator(local.url().await, authenticator).await;

        let id = SubscriptionId::new("auto-closing-auth-required");
        let mut stream = relay
            .stream_events(Filter::new().kind(Kind::TextNote).limit(1))
            .with_id(id.clone())
            .policy(ReqExitPolicy::WaitDurationAfterEOSE(Duration::from_secs(2)))
            .timeout(Duration::from_secs(5))
            .await
            .unwrap();

        let event = stream
            .next()
            .await
            .expect("stream ended before event was received")
            .unwrap();
        assert_eq!(event.id, expected.id);

        assert!(relay.inner.has_subscription(&id).await);
    }
}