File: domains.py

package info (click to toggle)
i18nspector 0.26-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,356 kB
  • sloc: python: 8,681; sh: 91; makefile: 61
file content (65 lines) | stat: -rw-r--r-- 2,417 bytes parent folder | download | duplicates (3)
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
# Copyright © 2013-2016 Jakub Wilk <jwilk@jwilk.net>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the “Software”), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

'''
special-use domain names
'''

# https://www.iana.org/assignments/special-use-domain-names/special-use-domain-names.xhtml

import re

_regexps = [
    # RFC 1035, §3.5 <https://tools.ietf.org/html/rfc1035#section-3.5>:
    '.+[.]in-addr[.]arpa',
    # RFC 3596, §2.5 <https://tools.ietf.org/html/rfc3596#section-2.5>:
    '.+[.]ip6[.]arpa',
    # RFC 6761, §6 <https://tools.ietf.org/html/rfc6761#section-6>:
    '(.+[.])?test',
    '(.+[.])?localhost',
    '(.+[.])?invalid',
    '(.+[.])?example([.](com|net|org))?',
    # RFC 6762, §3 <https://tools.ietf.org/html/rfc6762#section-3>:
    '(.+[.])local',
]

_is_special = re.compile(
    '^({re})$'.format(re='|'.join(_regexps))
).match

def is_special_domain(domain):
    domain = domain.lower()
    return _is_special(domain)

def is_email_in_special_domain(email):
    _, domain = email.rsplit('@', 1)
    return is_special_domain(domain)

def is_dotless_domain(domain):
    return '.' not in domain

def is_email_in_dotless_domain(email):
    # Technically, e-mail addresses in dotless domains are not forbidden.
    # But in practice they are almost certainly mistakes.
    # See also: RFC 7085 <https://tools.ietf.org/html/rfc7085>
    _, domain = email.rsplit('@', 1)
    return is_dotless_domain(domain)

# vim:ts=4 sts=4 sw=4 et