rama-core 0.2.0-alpha.8

rama service core code, used by rama and service authors
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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
use super::DEFAULT_USERNAME_LABEL_SEPARATOR;
use crate::context::Extensions;
use crate::error::{BoxError, OpaqueError};
use rama_utils::macros::all_the_tuples_no_last_special_case;
use std::{convert::Infallible, fmt};

/// Parse a username, extracting the username (first part)
/// and passing everything else to the [`UsernameLabelParser`].
#[inline]
pub fn parse_username<P>(
    ext: &mut Extensions,
    parser: P,
    username_ref: impl AsRef<str>,
) -> Result<String, OpaqueError>
where
    P: UsernameLabelParser<Error: Into<BoxError>>,
{
    parse_username_with_separator(ext, parser, username_ref, DEFAULT_USERNAME_LABEL_SEPARATOR)
}

/// Parse a username, extracting the username (first part)
/// and passing everything else to the [`UsernameLabelParser`].
pub fn parse_username_with_separator<P>(
    ext: &mut Extensions,
    mut parser: P,
    username_ref: impl AsRef<str>,
    separator: char,
) -> Result<String, OpaqueError>
where
    P: UsernameLabelParser<Error: Into<BoxError>>,
{
    let username_ref = username_ref.as_ref();
    let mut label_it = username_ref.split(separator);

    let username = match label_it.next() {
        Some(username) => {
            if username.is_empty() {
                return Err(OpaqueError::from_display("empty username"));
            } else {
                username
            }
        }
        None => return Err(OpaqueError::from_display("missing username")),
    };

    for (index, label) in label_it.enumerate() {
        match parser.parse_label(label) {
            UsernameLabelState::Used => (), // optimistic smiley
            UsernameLabelState::Ignored => {
                return Err(OpaqueError::from_display(format!(
                    "ignored username label #{index}: {}",
                    label
                )));
            }
            UsernameLabelState::Abort => {
                return Err(OpaqueError::from_display(format!(
                    "invalid username label #{index}: {}",
                    label
                )));
            }
        }
    }

    parser
        .build(ext)
        .map_err(|err| OpaqueError::from_boxed(err.into()))?;

    Ok(username.to_owned())
}

/// The parse state of a username label.
///
/// This can be used to signal that a label was recognised in the case
/// that you wish to fail on labels that weren't recognised.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum UsernameLabelState {
    /// The label was used by this parser.
    ///
    /// Note in case multiple parsers are used it should in generally be ok,
    /// for multiple to "use" the same label.
    Used,

    /// The label was ignored by this parser,
    /// reasons for which are not important here.
    ///
    /// A parser-user can choose to error a request in case
    /// a label was ignored by its parser.
    Ignored,

    /// Abort the parsing as a state has been reached
    /// from which cannot be recovered.
    Abort,
}

/// A parser which can parse labels from a username.
///
/// [`Default`] is to be implemented for every [`UsernameLabelParser`],
/// as it is what is used to create the parser instances for one-time usage.
pub trait UsernameLabelParser: Default + Send + Sync + 'static {
    /// Error which can occur during the building phase.
    type Error: Into<BoxError>;

    /// Interpret the label and return whether or not the label was recognised and valid.
    ///
    /// [`UsernameLabelState::Ignored`] should be returned in case the label was not recognised or was not valid.
    fn parse_label(&mut self, label: &str) -> UsernameLabelState;

    /// Consume self and store/use any of the relevant info seen.
    fn build(self, ext: &mut Extensions) -> Result<(), Self::Error>;
}

/// Wrapper type that can be used with a tuple of [`UsernameLabelParser`]s
/// in order for it to stop iterating over the parsers once there was one that consumed the label.
pub struct ExclusiveUsernameParsers<P>(pub P);

impl<P: Clone> Clone for ExclusiveUsernameParsers<P> {
    fn clone(&self) -> Self {
        Self(self.0.clone())
    }
}

impl<P: Default> Default for ExclusiveUsernameParsers<P> {
    fn default() -> Self {
        Self(P::default())
    }
}

impl<P: fmt::Debug> fmt::Debug for ExclusiveUsernameParsers<P> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_tuple("ExclusiveUsernameParsers")
            .field(&self.0)
            .finish()
    }
}

macro_rules! username_label_parser_tuple_impl {
    ($($T:ident),+ $(,)?) => {
        #[allow(non_snake_case)]
        impl<$($T,)+> UsernameLabelParser for ($($T,)+)
        where
            $(
                $T: UsernameLabelParser<Error: Into<BoxError>>,
            )+
        {
            type Error = OpaqueError;

            fn parse_label(&mut self, label: &str) -> UsernameLabelState {
                let ($($T,)+) = self;
                let mut state = UsernameLabelState::Ignored;
                $(
                    match $T.parse_label(label) {
                        UsernameLabelState::Ignored => (),
                        UsernameLabelState::Used => state = UsernameLabelState::Used,
                        UsernameLabelState::Abort => return UsernameLabelState::Abort,
                    }
                )+
                state
            }

            fn build(self, ext: &mut Extensions) -> Result<(), Self::Error> {
                let ($($T,)+) = self;
                $(
                    $T.build(ext).map_err(|err| OpaqueError::from_boxed(err.into()))?;
                )+
                Ok(())
            }
        }
    };
}

all_the_tuples_no_last_special_case!(username_label_parser_tuple_impl);

macro_rules! username_label_parser_tuple_exclusive_labels_impl {
    ($($T:ident),+ $(,)?) => {
        #[allow(non_snake_case)]
        impl<$($T,)+> UsernameLabelParser for ExclusiveUsernameParsers<($($T,)+)>
        where
            $(
                $T: UsernameLabelParser<Error: Into<BoxError>>,
            )+
        {
            type Error = OpaqueError;

            fn parse_label(&mut self, label: &str) -> UsernameLabelState {
                let ($(ref mut $T,)+) = self.0;
                $(
                    match $T.parse_label(label) {
                        UsernameLabelState::Ignored => (),
                        UsernameLabelState::Used => return UsernameLabelState::Used,
                        UsernameLabelState::Abort => return UsernameLabelState::Abort,
                    }
                )+
                UsernameLabelState::Ignored
            }

            fn build(self, ext: &mut Extensions) -> Result<(), Self::Error> {
                let ($($T,)+) = self.0;
                $(
                    $T.build(ext).map_err(|err| OpaqueError::from_boxed(err.into()))?;
                )+
                Ok(())
            }
        }
    };
}

all_the_tuples_no_last_special_case!(username_label_parser_tuple_exclusive_labels_impl);

impl UsernameLabelParser for () {
    type Error = Infallible;

    fn parse_label(&mut self, _label: &str) -> UsernameLabelState {
        UsernameLabelState::Used
    }

    fn build(self, _ext: &mut Extensions) -> Result<(), Self::Error> {
        Ok(())
    }
}

#[derive(Debug, Clone, Default)]
/// Opaque string labels parsed collected using the [`UsernameOpaqueLabelParser`].
///
/// Useful in case you want to collect all labels from the username,
/// without any specific parsing logic.
pub struct UsernameLabels(pub Vec<String>);

impl<const SEPARATOR: char> super::UsernameLabelWriter<SEPARATOR> for UsernameLabels {
    fn write_labels(
        &self,
        composer: &mut super::Composer<SEPARATOR>,
    ) -> Result<(), super::ComposeError> {
        self.0.write_labels(composer)
    }
}

#[derive(Debug, Clone, Default)]
/// A [`UsernameLabelParser`] which collects all labels from the username,
/// without any specific parsing logic.
pub struct UsernameOpaqueLabelParser {
    labels: Vec<String>,
}

impl UsernameOpaqueLabelParser {
    /// Create a new [`UsernameOpaqueLabelParser`].
    pub fn new() -> Self {
        Self::default()
    }
}

impl UsernameLabelParser for UsernameOpaqueLabelParser {
    type Error = Infallible;

    fn parse_label(&mut self, label: &str) -> UsernameLabelState {
        self.labels.push(label.to_owned());
        UsernameLabelState::Used
    }

    fn build(self, ext: &mut Extensions) -> Result<(), Self::Error> {
        if !self.labels.is_empty() {
            ext.insert(UsernameLabels(self.labels));
        }
        Ok(())
    }
}

#[cfg(test)]
mod test {
    use super::*;

    #[derive(Debug, Clone, Default)]
    #[non_exhaustive]
    struct UsernameNoLabelParser;

    impl UsernameLabelParser for UsernameNoLabelParser {
        type Error = Infallible;

        fn parse_label(&mut self, _label: &str) -> UsernameLabelState {
            UsernameLabelState::Ignored
        }

        fn build(self, _ext: &mut Extensions) -> Result<(), Self::Error> {
            Ok(())
        }
    }

    #[derive(Debug, Clone, Default)]
    #[non_exhaustive]
    struct UsernameNoLabelPanicParser;

    impl UsernameLabelParser for UsernameNoLabelPanicParser {
        type Error = Infallible;

        fn parse_label(&mut self, _label: &str) -> UsernameLabelState {
            unreachable!("this parser should not be called");
        }

        fn build(self, _ext: &mut Extensions) -> Result<(), Self::Error> {
            Ok(())
        }
    }

    #[derive(Debug, Clone, Default)]
    #[non_exhaustive]
    struct UsernameLabelAbortParser;

    impl UsernameLabelParser for UsernameLabelAbortParser {
        type Error = Infallible;

        fn parse_label(&mut self, _label: &str) -> UsernameLabelState {
            UsernameLabelState::Abort
        }

        fn build(self, _ext: &mut Extensions) -> Result<(), Self::Error> {
            unreachable!("should not happen")
        }
    }

    #[derive(Debug, Clone, Default)]
    #[non_exhaustive]
    struct MyLabelParser {
        labels: Vec<String>,
    }

    #[derive(Debug, Clone, Default)]
    struct MyLabels(Vec<String>);

    impl UsernameLabelParser for MyLabelParser {
        type Error = Infallible;

        fn parse_label(&mut self, label: &str) -> UsernameLabelState {
            self.labels.push(label.to_owned());
            UsernameLabelState::Used
        }

        fn build(self, ext: &mut Extensions) -> Result<(), Self::Error> {
            if !self.labels.is_empty() {
                ext.insert(MyLabels(self.labels));
            }
            Ok(())
        }
    }

    #[test]
    fn test_parse_username_empty() {
        let mut ext = Extensions::default();

        assert!(parse_username(&mut ext, (), "",).is_err());
        assert!(parse_username(&mut ext, (), "-",).is_err());
    }

    #[test]
    fn test_parse_username_no_labels() {
        let mut ext = Extensions::default();

        assert_eq!(
            parse_username(&mut ext, UsernameNoLabelParser, "username",).unwrap(),
            "username"
        );
    }

    #[test]
    fn test_parse_username_label_collector() {
        let mut ext = Extensions::default();
        assert_eq!(
            parse_username(
                &mut ext,
                UsernameOpaqueLabelParser::new(),
                "username-label1-label2",
            )
            .unwrap(),
            "username"
        );

        let labels = ext.get::<UsernameLabels>().unwrap();
        assert_eq!(labels.0, vec!["label1".to_owned(), "label2".to_owned()]);
    }

    #[test]
    fn test_username_labels_multi_parser() {
        let mut ext = Extensions::default();

        let parser = (
            UsernameOpaqueLabelParser::new(),
            UsernameNoLabelParser::default(),
        );

        assert_eq!(
            parse_username(&mut ext, parser, "username-label1-label2",).unwrap(),
            "username"
        );

        let labels = ext.get::<UsernameLabels>().unwrap();
        assert_eq!(labels.0, vec!["label1".to_owned(), "label2".to_owned()]);
    }

    #[test]
    fn test_username_labels_multi_consumer_parser() {
        let mut ext = Extensions::default();

        let parser = (
            UsernameNoLabelParser::default(),
            MyLabelParser::default(),
            UsernameOpaqueLabelParser::new(),
        );

        assert_eq!(
            parse_username(&mut ext, parser, "username-label1-label2",).unwrap(),
            "username"
        );

        let labels = ext.get::<UsernameLabels>().unwrap();
        assert_eq!(labels.0, vec!["label1".to_owned(), "label2".to_owned()]);

        let labels = ext.get::<MyLabels>().unwrap();
        assert_eq!(labels.0, vec!["label1".to_owned(), "label2".to_owned()]);
    }

    #[test]
    fn test_username_labels_multi_consumer_exclusive_parsers() {
        let mut ext = Extensions::default();

        let parser = ExclusiveUsernameParsers((
            UsernameOpaqueLabelParser::default(),
            MyLabelParser::default(),
            UsernameNoLabelPanicParser::default(),
        ));

        assert_eq!(
            parse_username(&mut ext, parser, "username-label1-label2",).unwrap(),
            "username"
        );

        let labels = ext.get::<UsernameLabels>().unwrap();
        assert_eq!(labels.0, vec!["label1".to_owned(), "label2".to_owned()]);

        assert!(ext.get::<MyLabels>().is_none());
    }

    #[test]
    fn test_username_opaque_labels_none() {
        let mut ext = Extensions::default();

        let parser = UsernameOpaqueLabelParser::new();

        assert_eq!(
            parse_username(&mut ext, parser, "username",).unwrap(),
            "username"
        );

        assert!(ext.get::<UsernameLabels>().is_none());
    }

    #[test]
    fn test_username_label_parser_abort_tuple() {
        let mut ext = Extensions::default();

        let parser = (
            UsernameLabelAbortParser::default(),
            UsernameOpaqueLabelParser::default(),
        );
        assert!(parse_username(&mut ext, parser, "username-foo",).is_err());

        let parser = (
            UsernameOpaqueLabelParser::default(),
            UsernameLabelAbortParser::default(),
        );
        assert!(parse_username(&mut ext, parser, "username-foo",).is_err());
    }

    #[test]
    fn test_username_label_parser_abort_exclusive_tuple() {
        let mut ext = Extensions::default();

        let parser = ExclusiveUsernameParsers((
            UsernameLabelAbortParser::default(),
            UsernameOpaqueLabelParser::default(),
        ));
        assert!(parse_username(&mut ext, parser, "username-foo",).is_err());

        let parser = (
            UsernameOpaqueLabelParser::default(),
            UsernameLabelAbortParser::default(),
        );
        assert!(parse_username(&mut ext, parser, "username-foo",).is_err());
    }
}