email-validator 0.1.0

An email syntax validator
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
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
#![cfg_attr(not(feature = "std"), no_std)]

/// Checks the syntax of an email to see if it is valid.
pub fn validate_email(email: &str) -> bool {
    match validate_local(email) {
        Some(domain_start) => validate_domain(&email[domain_start..]),
        None => false,
    }
}

/// Checks if a character can normally appear in local portion of the email.
///
/// Note: Does not include: '.'
fn is_valid_non_escaped(c: char) -> bool {
    match c {
        '!' | '#' | '$' | '%' | '&' | '\'' | '*' | '+' | '-' | '/' | '=' | '?' | '^' | '_'
        | '`' | '{' | '|' | '}' | '~' => true,
        _ => c.is_alphanumeric(),
    }
}

/// Checks if a character is valid within a quote.
///
/// If this is false, the character must be escaped.
fn is_valid_quoted(c: char) -> bool {
    match c {
        ' ' | '@' | ',' | '[' | ']' | '.' => true,
        _ => is_valid_non_escaped(c),
    }
}

/// Checks if an escaped character is valid within a quote.
fn is_valid_quoted_escape(c: char) -> bool {
    match c {
        '\\' | '\"' => true,
        _ => false,
    }
}

/// Checks if a non-quoted escaped character is valid.
fn is_valid_escape(c: char) -> bool {
    match c {
        ' ' | '@' | '\\' | '\"' | ',' | '[' | ']' => true,
        _ => false,
    }
}

/// The current state when validating the local portion.
#[derive(Eq, PartialEq, Debug)]
enum LocalState {
    /// No characters have been validated yet.
    Start,

    /// Nothing interesting has happened.
    Normal,

    /// The previous character was a period ('.').
    NormalPeriod,

    /// The previous character was a backslash ('\'), which escapes the next character.
    Escaped,

    /// Nothing interesting, except we are in a quote.
    QuotedNormal,

    /// We are in a quote where the previous character was a backslash ('\'), which escapes the next character.
    QuotedEscaped,

    /// A quote just ended, meaning the previous character was a double quote ('"').
    QuotedEnd,

    /// The local portion has ended, meaning an at sign ('@') was found.
    End,
}

impl LocalState {
    /// Returns the next state if the character is valid.
    fn transition(self, c: char) -> Option<Self> {
        match self {
            LocalState::Start => {
                // // Is the character normally valid in the local portion?
                // Periods are excluded by this function.
                if is_valid_non_escaped(c) {
                    return Some(LocalState::Normal);
                }

                // Is there an escaped character?
                if c == '\\' {
                    return Some(LocalState::Escaped);
                }

                // Did a quote begin?
                if c == '\"' {
                    return Some(LocalState::QuotedNormal);
                }

                // Nothing else is valid.
                None
            }
            LocalState::Normal => {
                // Is the character normally valid in the local portion?
                if is_valid_non_escaped(c) {
                    return Some(LocalState::Normal);
                }

                // Is the character a period?
                if c == '.' {
                    return Some(LocalState::NormalPeriod);
                }

                // Did the local portion end?
                if c == '@' {
                    return Some(LocalState::End);
                }

                // Is there an escaped character?
                if c == '\\' {
                    return Some(LocalState::Escaped);
                }

                // Nothing else is valid.
                None
            }
            LocalState::NormalPeriod => {
                // Is the character normally valid in the local portion?
                if is_valid_non_escaped(c) {
                    return Some(LocalState::Normal);
                }

                // Is there an escaped character?
                if c == '\\' {
                    return Some(LocalState::Escaped);
                }

                // At signs ('@') are not valid after a period.

                // Nothing else is valid.
                None
            }
            LocalState::Escaped => {
                // Is the escaped character valid?
                if is_valid_escape(c) {
                    return Some(LocalState::Normal);
                }

                // Nothing else can be accepted.
                None
            }
            LocalState::QuotedNormal => {
                // Is this character normally valid in a quote?
                if is_valid_quoted(c) {
                    return Some(LocalState::QuotedNormal);
                }

                // Did the quote end?
                if c == '\"' {
                    return Some(LocalState::QuotedEnd);
                }

                // Is something escaped?
                if c == '\\' {
                    return Some(LocalState::QuotedEscaped);
                }

                // Nothing else is valid.
                None
            }
            LocalState::QuotedEscaped => {
                // Is the escaped character valid?
                if is_valid_quoted_escape(c) {
                    return Some(LocalState::QuotedNormal);
                }

                // Nothing else can be accepted.
                None
            }
            LocalState::QuotedEnd => {
                // Did the local portion end?
                if c == '@' {
                    return Some(LocalState::End);
                }

                // Nothing else is allowed to appear after a quote ends.
                None
            }

            // Nothing (in the local portion) can appear after the local portion ends.
            LocalState::End => None,
        }
    }
}

/// Validates the local portion of an email.
fn validate_local(email: &str) -> Option<usize> {
    let mut state = LocalState::Start;
    for (i, c) in email.char_indices() {
        // Check if the local portion has ended.
        if state == LocalState::End {
            // Make sure the local portion is not too long.
            // Subtract one for the at sign ('@').
            if (i - 1) > 64 {
                return None;
            }
            return Some(i);
        }

        // Attempt to transition to the next state.
        match state.transition(c) {
            None => return None,
            Some(new_state) => state = new_state,
        }
    }

    // We never hit the end state, so the local portion is invalid.
    None
}

/// The current state when validating the domain portion.
#[derive(Eq, PartialEq, Debug)]
enum DomainState {
    /// No characters have been validated yet.
    Start,

    /// Nothing interesting has happened.
    Normal,

    /// A dash ('-') was the previous character.
    Dash,

    /// A period ('.') was the previous character.
    StartDotted,

    /// Nothing interesting has happened since the DNS dot was found.
    ///
    /// The domain is currently valid.
    NormalDotted,

    /// A dash ('-') was the previous character and the DNS dot was found.
    DashDotted,
}

impl DomainState {
    /// Returns the next state if the character is valid.
    fn transition(self, c: char) -> Option<Self> {
        match self {
            DomainState::Start => {
                // Is the character a letter or number?
                if c.is_ascii_alphanumeric() {
                    return Some(DomainState::Normal);
                }

                // Nothing else is valid.
                None
            }
            DomainState::Normal => {
                // Is the character a letter or number?
                if c.is_ascii_alphanumeric() {
                    return Some(DomainState::Normal);
                }

                // Is the character a dash ('-')?
                if c == '-' {
                    return Some(DomainState::Dash);
                }

                // Is the character a period ('.')?
                if c == '.' {
                    return Some(DomainState::StartDotted);
                }

                // Nothing else is valid.
                None
            }
            DomainState::Dash => {
                // Is the character a letter or number?
                if c.is_ascii_alphanumeric() {
                    return Some(DomainState::Normal);
                }

                // Is the character a dash ('-')?
                if c == '-' {
                    return Some(DomainState::Dash);
                }

                // Nothing else is valid.
                None
            }
            DomainState::StartDotted => {
                // Is the character a letter or number?
                if c.is_ascii_alphanumeric() {
                    return Some(DomainState::NormalDotted);
                }

                // Nothing else is valid.
                None
            }
            DomainState::NormalDotted => {
                // Is the character a letter or number?
                if c.is_ascii_alphanumeric() {
                    return Some(DomainState::NormalDotted);
                }

                // Is the character a dash ('-')?
                if c == '-' {
                    return Some(DomainState::DashDotted);
                }

                // Is the character a period ('.')?
                if c == '.' {
                    return Some(DomainState::StartDotted);
                }

                // Nothing else is valid.
                None
            }
            DomainState::DashDotted => {
                // Is the character a letter or number?
                if c.is_ascii_alphanumeric() {
                    return Some(DomainState::NormalDotted);
                }

                // Is the character a dash ('-')?
                if c == '-' {
                    return Some(DomainState::DashDotted);
                }

                // Nothing else is valid.
                None
            }
        }
    }
}

/// Validates the domain portion of an email.
fn validate_domain(domain: &str) -> bool {
    // Make sure the domain is not too long.
    if domain.len() > 255 {
        return false;
    }

    let mut state = DomainState::Start;
    for c in domain.chars() {
        // Attempt to transition to the next state.
        match state.transition(c) {
            None => return false,
            Some(new_state) => state = new_state,
        }
    }

    // The domain has been parsed and the last portion is in a good state.
    state == DomainState::NormalDotted
}

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

    /// This email should be valid.
    fn check(str: &str) {
        assert!(validate_email(&str));
    }

    /// This email should be invalid.
    fn x(str: &str) {
        assert!(!validate_email(&str));
    }

    #[test]
    fn normal_email() {
        check("normalemail@example.com");
    }

    #[test]
    fn normal_plus() {
        check("user+mailbox@example.com");
    }

    #[test]
    fn normal_slash_eq() {
        check("customer/department=shipping@example.com");
    }

    #[test]
    fn normal_dollar() {
        check("$A12345@example.com");
    }

    #[test]
    fn normal_exclamation_percent() {
        check("!def!xyz%abc@example.com");
    }

    #[test]
    fn normal_underscore() {
        check("_somename@example.com");
    }

    #[test]
    fn normal_apostrophe_acute_accent() {
        check("lol`'lol'@example.com");
    }

    #[test]
    fn normal_crazy_symbols() {
        check("!#$%&'*+-/=?^_`{|}~@example.com");
    }

    #[test]
    fn normal_dot() {
        check("a.name@example.com");
    }

    #[test]
    fn escaped_at() {
        check("Abc\\@def@example.com");
    }

    #[test]
    fn escaped_space() {
        check("Fred\\ Bloggs@example.com");
    }

    #[test]
    fn escaped_backslash() {
        check("Joe.\\\\Blow@example.com");
    }

    #[test]
    fn all_escaped() {
        check("\\\\\\ \\\"\\,\\[\\]@example.com");
    }

    #[test]
    fn quoted_at() {
        check("\"Abc@def\"@example.com");
    }

    #[test]
    fn quoted_space() {
        check("\"Fred Bloggs\"@example.com");
    }

    #[test]
    fn all_quoted() {
        check("\"this is..quoted [te,xt]\"@example.com");
    }

    #[test]
    fn all_escaped_quoted() {
        check("\"\\\\\\\"\"@example.com");
    }

    #[test]
    fn almost_too_long_local() {
        check("thisisnotaslonglocalportionofanemailaddressthatshouldberejected1@example.com");
    }

    #[test]
    fn subdomains() {
        check("example@sub.domain.com");
    }

    #[test]
    fn domain_single_dash() {
        check("example@domain-x.com");
    }

    #[test]
    fn domain_multi_dash() {
        check("example@domain--x.com");
    }

    #[test]
    fn almost_long_domain() {
        check(
            "example@thisisalongdomainnamethatshouldberejectedifihaveimplementedthelogiccorrectlyandwillnowrepeattisisalongdomainnamethatshouldberejectedifihaveimplementedthelogiccorrectlywowwhyoneartharethismanycharactersallowedmypooridecannotrenderinonescreenalmostdone1.com",
        );
    }

    #[test]
    fn almost_long_email() {
        check(
            "thisisnotaslonglocalportionofanemailaddressthatshouldberejected1@thisisalongdomainnamethatshouldberejectedifihaveimplementedthelogiccorrectlyandwillnowrepeattisisalongdomainnamethatshouldberejectedifihaveimplementedthelogiccorrectlywowwhyoneartharethismanycharactersallowedmypooridecannotrenderinonescreenalmostdone1.com",
        );
    }

    // Bad

    #[test]
    fn start_dot() {
        x(".example@example.com");
    }

    #[test]
    fn double_dot() {
        x("example..name@example.com");
    }

    #[test]
    fn end_dot() {
        x("example.@example.com");
    }

    #[test]
    fn empty_local() {
        x("@example.com");
    }

    #[test]
    fn no_domain() {
        x("myname");
    }

    #[test]
    fn unescaped_quote() {
        x("my\"name@example.com");
    }

    #[test]
    fn things_after_quote() {
        x("\"quoted\"abc@example.com");
    }

    #[test]
    fn too_long_local() {
        x("thisisasuperlonglocalportionofanemailaddressthatshouldberejected1@example.com");
    }

    #[test]
    fn domain_start_dot() {
        x("example@.domain.com");
    }

    #[test]
    fn domain_end_dot() {
        x("example@domain.com.");
    }

    #[test]
    fn domain_with_double_dot() {
        x("example@domain..com");
    }

    #[test]
    fn domain_start_dash() {
        x("example@-domain.com");
    }

    #[test]
    fn domain_end_dash() {
        x("example@domain-.com");
    }

    #[test]
    fn tld_end_dash() {
        x("example@domain.com-");
    }

    #[test]
    fn domain_without_tld() {
        x("example@domain");
    }

    #[test]
    fn domain_with_only_tld() {
        x("example@.com");
    }

    #[test]
    fn domain_with_space() {
        x("example@example .com");
    }

    #[test]
    fn long_domain() {
        x(
            "example@thisisalongdomainnamethatshouldberejectedifihaveimplementedthelogiccorrectlyandwillnowrepeatthisisalongdomainnamethatshouldberejectedifihaveimplementedthelogiccorrectlywowwhyoneartharethismanycharactersallowedmypooridecannotrenderinonescreenalmostdone1.com",
        );
    }
}