]> git.mxchange.org Git - fba.git/blob - fba/helpers/domain.py
1830e3f41243a0926c6dd9c4485d8f074d49d41e
[fba.git] / fba / helpers / domain.py
1 # Fedi API Block - An aggregator for fetching blocking data from fediverse nodes
2 # Copyright (C) 2023 Free Software Foundation
3 #
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU Affero General Public License as published
6 # by the Free Software Foundation, either version 3 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU Affero General Public License for more details.
13 #
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
16
17 import logging
18
19 from urllib.parse import urlparse
20
21 import validators
22
23 logging.basicConfig(level=logging.INFO)
24 logger = logging.getLogger(__name__)
25
26 def raise_on(domain: str):
27     logger.debug("domain='%s' - CALLED!", domain)
28     if not isinstance(domain, str):
29         raise ValueError(f"Parameter domain[]='{type(domain)}' is not of type 'str'")
30     elif domain == "":
31         raise ValueError("Parameter 'domain' is empty")
32     elif domain.lower() != domain:
33         raise ValueError(f"Parameter domain='{domain}' must be all lower-case")
34     elif not validators.domain(domain.split("/")[0]):
35         raise ValueError(f"domain='{domain}' is not a valid domain")
36     elif domain.endswith(".arpa"):
37         raise ValueError(f"domain='{domain}' is a domain for reversed IP addresses, please don't crawl them!")
38     elif domain.endswith(".onion"):
39         raise ValueError(f"domain='{domain}' is a TOR, please don't crawl them!")
40     elif domain.endswith(".tld"):
41         raise ValueError(f"domain='{domain}' is a fake domain, please don't crawl them!")
42
43     logger.debug("EXIT!")
44
45 def is_in_url(domain: str, url: str) -> bool:
46     logger.debug("domain='%s',url='%s' - CALLED!", domain, url)
47     raise_on(domain)
48
49     if not isinstance(url, str):
50         raise ValueError(f"Parameter url[]='%s' is not of type 'str'", type(url))
51     elif url == "":
52         raise ValueError("Parameter 'url' is empty")
53
54     components = urlparse(url)
55     punycode = domain.encode("idna").decode("utf-8")
56
57     logger.debug("components[]='%s',punycode='%s'", type(components), punycode)
58     is_found = (punycode in [components.netloc, components.hostname])
59
60     logger.debug("is_found='%s' - EXIT!", is_found)
61     return is_found