]> git.mxchange.org Git - fba.git/blob - fba/blacklist.py
d78cde8d44a6393829be17686037ca34cb1ceae9
[fba.git] / fba / blacklist.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 # Don't check these, known trolls/flooders/testing/developing
18 blacklist = [
19     # Floods federation with fake nodes as "research" project
20     "activitypub-troll.cf",
21     # Similar troll
22     "gab.best",
23     # Similar troll
24     "4chan.icu",
25     # Flooder (?)
26     "social.shrimpcam.pw",
27     # Flooder (?)
28     "mastotroll.netz.org",
29     # Testing/developing installations
30     "ngrok.io",
31     "ngrok-free.app",
32     "misskeytest.chn.moe",
33 ]
34
35 def is_blacklisted(domain: str) -> bool:
36     # DEBUG: print(f"DEBUG: domain='{domain}' - CALLED!")
37     if type(domain) != str:
38         raise ValueError(f"Parameter domain[]={type(domain)} is not 'str'")
39     elif domain == "":
40         raise ValueError(f"Parameter 'domain' is empty")
41
42     blacklisted = False
43     for peer in blacklist:
44         # DEBUG: print(f"DEBUG: Checking peer='{peer}' ...")
45         if peer in domain:
46             # DEBUG: print(f"DEBUG: domain='{domain}' is blacklisted.")
47             blacklisted = True
48
49     # DEBUG: print(f"DEBUG: blacklisted='{blacklisted}' - EXIT!")
50     return blacklisted