]> git.mxchange.org Git - fba.git/blob - fba.py
6ccaf13791780048ee0de82cb04ab433900db6a1
[fba.git] / fba.py
1 import bs4
2 import hashlib
3 import re
4 import reqto
5 import json
6 import sqlite3
7 import sys
8 import time
9 import validators
10
11 with open("config.json") as f:
12     config = json.loads(f.read())
13
14 # Don't check these, known trolls/flooders/testing/developing
15 blacklist = [
16     # Floods network with fake nodes as "research" project
17     "activitypub-troll.cf",
18     # Similar troll
19     "gab.best",
20     # Similar troll
21     "4chan.icu",
22     # Flooder (?)
23     "social.shrimpcam.pw",
24     # Flooder (?)
25     "mastotroll.netz.org",
26     # Testing/developing installations
27     "ngrok.io",
28 ]
29
30 # Array with pending errors needed to be written to database
31 pending_errors = {
32 }
33
34 # "rel" identifiers (no real URLs)
35 nodeinfo_identifier = [
36     "http://nodeinfo.diaspora.software/ns/schema/2.1",
37     "http://nodeinfo.diaspora.software/ns/schema/2.0",
38     "http://nodeinfo.diaspora.software/ns/schema/1.1",
39     "http://nodeinfo.diaspora.software/ns/schema/1.0",
40 ]
41
42 # HTTP headers for requests
43 headers = {
44     "user-agent": config["useragent"],
45 }
46
47 # Found info from node, such as nodeinfo URL, detection mode that needs to be
48 # written to database. Both arrays must be filled at the same time or else
49 # update_nodeinfos() will fail
50 nodeinfos = {
51     # Detection mode: 'AUTO_DISCOVERY', 'STATIC_CHECKS' or 'GENERATOR'
52     # NULL means all detection methods have failed (maybe still reachable instance)
53     "detection_mode": {},
54     # Found nodeinfo URL
55     "nodeinfo_url": {},
56     # Where to fetch peers (other instances)
57     "get_peers_url": {},
58 }
59
60 language_mapping = {
61     # English -> English
62     "Silenced instances"            : "Silenced servers",
63     "Suspended instances"           : "Suspended servers",
64     "Limited instances"             : "Limited servers",
65     # Mappuing German -> English
66     "Gesperrte Server"              : "Suspended servers",
67     "Gefilterte Medien"             : "Filtered media",
68     "Stummgeschaltete Server"       : "Silenced servers",
69     # Japanese -> English
70     "停止済みのサーバー"            : "Suspended servers",
71     "制限中のサーバー"              : "Limited servers",
72     "メディアを拒否しているサーバー": "Filtered media",
73     "サイレンス済みのサーバー"      : "Silenced servers",
74     # ??? -> English
75     "שרתים מושעים"                  : "Suspended servers",
76     "מדיה מסוננת"                   : "Filtered media",
77     "שרתים מוגבלים"                 : "Silenced servers",
78     # French -> English
79     "Serveurs suspendus"            : "Suspended servers",
80     "Médias filtrés"                : "Filtered media",
81     "Serveurs limités"              : "Limited servers",
82     "Serveurs modérés"              : "Limited servers",
83 }
84
85 # URL for fetching peers
86 get_peers_url = "/api/v1/instance/peers"
87
88 # Connect to database
89 connection = sqlite3.connect("blocks.db")
90 cursor = connection.cursor()
91
92 # Pattern instance for version numbers
93 pattern = re.compile("^(?P<version>v|V{0,1})(\.{0,1})(?P<major>0|[1-9]\d*)\.(?P<minor>0|[1-9]\d*)(\.(?P<patch>0|[1-9]\d*)(?:-(?P<prerelease>(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+(?P<buildmetadata>[0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?)?$")
94
95 def remove_version(software: str) -> str:
96     # NOISY-DEBUG: print(f"DEBUG: software='{software}' - CALLED!")
97     if not "." in software:
98         print(f"WARNING: software='{software}' does not contain a version number.")
99         raise
100
101     version = None
102     if " " in software:
103         version = software.split(" ")[-1]
104     elif "/" in software:
105         version = software.split("/")[-1]
106     elif "-" in software:
107         version = software.split("-")[-1]
108     else:
109         # NOISY-DEBUG: print(f"DEBUG: Was not able to find common seperator, returning untouched software='{software}'")
110         return software
111
112     # Run match()
113     matches = pattern.match(version)
114
115     # NOISY-DEBUG: print(f"DEBUG: version[{type(version)}]='{version}',matches='{matches}'")
116     if type(matches) is not re.Match:
117         print(f"WARNING: version='{version}' does not match regex, leaving software='{software}' untouched.")
118         return software
119
120     # NOISY-DEBUG: print(f"DEBUG: Found valid version number: '{version}', removing it ...")
121     end = len(software) - len(version)
122
123     # NOISY-DEBUG: print(f"DEBUG: end[{type(end)}]={end}")
124     software = software[0:end].strip()
125
126     # NOISY-DEBUG: print(f"DEBUG: software='{software}' - EXIT!")
127     return software
128
129 def is_blacklisted(domain: str) -> bool:
130     blacklisted = False
131     for peer in blacklist:
132         if peer in domain:
133             blacklisted = True
134
135     return blacklisted
136
137 def remove_pending_error(domain: str):
138     try:
139         # Prevent updating any pending errors, nodeinfo was found
140         del pending_errors[domain]
141
142     except:
143         pass
144
145 def get_hash(domain: str) -> str:
146     return hashlib.sha256(domain.encode("utf-8")).hexdigest()
147
148 def update_last_blocked(domain: str):
149     # NOISY-DEBUG: print("DEBUG: Updating last_blocked for domain", domain)
150     try:
151         cursor.execute("UPDATE instances SET last_blocked = ?, last_updated = ? WHERE domain = ? LIMIT 1", [
152             time.time(),
153             time.time(),
154             domain
155         ])
156
157         if cursor.rowcount == 0:
158             print("WARNING: Did not update any rows:", domain)
159
160     except BaseException as e:
161         print("ERROR: failed SQL query:", domain, e)
162         sys.exit(255)
163
164     # NOISY-DEBUG: print("DEBUG: EXIT!")
165
166 def update_nodeinfos(domain: str):
167     # NOISY-DEBUG: print("DEBUG: Updating nodeinfo for domain:", domain)
168     sql_string = ''
169     fields = list()
170     for key in nodeinfos:
171         # NOISY-DEBUG: print("DEBUG: key:", key)
172         if domain in nodeinfos[key]:
173            # NOISY-DEBUG: print(f"DEBUG: Adding '{nodeinfos[key][domain]}' for key='{key}' ...")
174            fields.append(nodeinfos[key][domain])
175            sql_string += f" {key} = ?,"
176
177     fields.append(domain)
178     # NOISY-DEBUG: print(f"DEBUG: sql_string='{sql_string}',fields()={len(fields)}")
179
180     sql = "UPDATE instances SET" + sql_string + " last_status_code = NULL, last_error_details = NULL WHERE domain = ? LIMIT 1"
181     # NOISY-DEBUG: print("DEBUG: sql:", sql)
182
183     try:
184         # NOISY-DEBUG: print("DEBUG: Executing SQL:", sql)
185         cursor.execute(sql, fields)
186         # NOISY-DEBUG: print(f"DEBUG: Success! (rowcount={cursor.rowcount })")
187
188         if cursor.rowcount == 0:
189             print("WARNING: Did not update any rows:", domain)
190
191     except BaseException as e:
192         print(f"ERROR: failed SQL query: domain='{domain}',sql='{sql}',exception:'{e}'")
193         sys.exit(255)
194
195     # NOISY-DEBUG: print("DEBUG: Deleting nodeinfos for domain:", domain)
196     for key in nodeinfos:
197         try:
198             # NOISY-DEBUG: print("DEBUG: Deleting key:", key)
199             del nodeinfos[key][domain]
200         except:
201             pass
202
203     # NOISY-DEBUG: print("DEBUG: EXIT!")
204
205 def update_last_error(domain: str, res: any):
206     # NOISY-DEBUG: print("DEBUG: domain,res[]:", domain, type(res))
207     try:
208         # NOISY-DEBUG: print("DEBUG: BEFORE res[]:", type(res))
209         if isinstance(res, BaseException) or isinstance(res, json.JSONDecodeError):
210             res = str(res)
211
212         # NOISY-DEBUG: print("DEBUG: AFTER res[]:", type(res))
213         if type(res) is str:
214             # NOISY-DEBUG: print(f"DEBUG: Setting last_error_details='{res}'");
215             cursor.execute("UPDATE instances SET last_status_code = 999, last_error_details = ?, last_updated = ? WHERE domain = ? LIMIT 1", [
216                 res,
217                 time.time(),
218                 domain
219             ])
220         else:
221             # NOISY-DEBUG: print(f"DEBUG: Setting last_error_details='{res.reason}'");
222             cursor.execute("UPDATE instances SET last_status_code = ?, last_error_details = ?, last_updated = ? WHERE domain = ? LIMIT 1", [
223                 res.status_code,
224                 res.reason,
225                 time.time(),
226                 domain
227             ])
228
229         if cursor.rowcount == 0:
230             # NOISY-DEBUG: print("DEBUG: Did not update any rows:", domain)
231             pending_errors[domain] = res
232
233     except BaseException as e:
234         print("ERROR: failed SQL query:", domain, e)
235         sys.exit(255)
236
237     # NOISY-DEBUG: print("DEBUG: EXIT!")
238
239 def update_last_nodeinfo(domain: str):
240     # NOISY-DEBUG: print("DEBUG: Updating last_nodeinfo for domain:", domain)
241     try:
242         cursor.execute("UPDATE instances SET last_nodeinfo = ?, last_updated = ? WHERE domain = ? LIMIT 1", [
243             time.time(),
244             time.time(),
245             domain
246         ])
247
248         if cursor.rowcount == 0:
249             print("WARNING: Did not update any rows:", domain)
250
251     except BaseException as e:
252         print("ERROR: failed SQL query:", domain, e)
253         sys.exit(255)
254
255     connection.commit()
256     # NOISY-DEBUG: print("DEBUG: EXIT!")
257
258 def get_peers(domain: str, software: str) -> list:
259     # NOISY-DEBUG: print("DEBUG: Getting peers for domain:", domain, software)
260     peers = list()
261
262     if software == "lemmy":
263         # NOISY-DEBUG: print(f"DEBUG: domain='{domain}' is Lemmy, fetching JSON ...")
264         try:
265             res = reqto.get(f"https://{domain}/api/v3/site", headers=headers, timeout=(config["connection_timeout"], config["read_timeout"]))
266
267             # NOISY-DEBUG: print(f"DEBUG: res.ok={res.ok},res.json[]={type(res.json())}")
268             if res.ok and isinstance(res.json(), dict):
269                 # NOISY-DEBUG: print("DEBUG: Success, res.json():", len(res.json()))
270                 json = res.json()
271
272                 if "federated_instances" in json and "linked" in json["federated_instances"]:
273                     # NOISY-DEBUG: print("DEBUG: Found federated_instances", domain)
274                     peers = json["federated_instances"]["linked"] + json["federated_instances"]["allowed"] + json["federated_instances"]["blocked"]
275
276         except BaseException as e:
277             print("WARNING: Exception during fetching JSON:", domain, e)
278
279         update_last_nodeinfo(domain)
280
281         # NOISY-DEBUG: print("DEBUG: Returning peers[]:", type(peers))
282         return peers
283     elif software == "peertube":
284         # NOISY-DEBUG: print(f"DEBUG: domain='{domain}' is a PeerTube, fetching JSON ...")
285
286         start = 0
287         for mode in ["followers", "following"]:
288             # NOISY-DEBUG: print(f"DEBUG: domain='{domain}',mode='{mode}'")
289             while True:
290                 try:
291                     res = reqto.get(f"https://{domain}/api/v1/server/{mode}?start={start}&count=100", headers=headers, timeout=(config["connection_timeout"], config["read_timeout"]))
292
293                     # NOISY-DEBUG: print(f"DEBUG: res.ok={res.ok},res.json[]={type(res.json())}")
294                     if res.ok and isinstance(res.json(), dict):
295                         # NOISY-DEBUG: print("DEBUG: Success, res.json():", len(res.json()))
296                         json = res.json()
297
298                         if "data" in json:
299                             # NOISY-DEBUG: print(f"DEBUG: Found {len(json['data'])} record(s).")
300                             for record in json["data"]:
301                                 # NOISY-DEBUG: print(f"DEBUG: record()={len(record)}")
302                                 if mode in record and "host" in record[mode]:
303                                     # NOISY-DEBUG: print(f"DEBUG: Found host={record[mode]['host']}, adding ...")
304                                     peers.append(record[mode]["host"])
305                                 else:
306                                     print(f"WARNING: record from '{domain}' has no '{mode}' or 'host' record: {record}")
307
308                             if len(json["data"]) < 100:
309                                 # NOISY-DEBUG: print("DEBUG: Reached end of JSON response:", domain)
310                                 break
311
312                         # Continue with next row
313                         start = start + 100
314
315                 except BaseException as e:
316                     print("WARNING: Exception during fetching JSON:", domain, e)
317
318             update_last_nodeinfo(domain)
319
320             # NOISY-DEBUG: print("DEBUG: Returning peers[]:", type(peers))
321             return peers
322
323     # NOISY-DEBUG: print(f"DEBUG: Fetching '{get_peers_url}' from '{domain}' ...")
324     try:
325         res = reqto.get(f"https://{domain}{get_peers_url}", headers=headers, timeout=(config["connection_timeout"], config["read_timeout"]))
326
327         # NOISY-DEBUG: print("DEBUG: res.ok,res.json[]:", res.ok, type(res.json()))
328         if not res.ok or res.status_code >= 400:
329             res = reqto.get(f"https://{domain}/api/v3/site", headers=headers, timeout=(config["connection_timeout"], config["read_timeout"]))
330
331             if "federated_instances" in json and "linked" in json["federated_instances"]:
332                 # NOISY-DEBUG: print("DEBUG: Found federated_instances", domain)
333                 peers = json["federated_instances"]["linked"] + json["federated_instances"]["allowed"] + json["federated_instances"]["blocked"]
334             else:
335                 print("WARNING: Could not reach any JSON API:", domain)
336                 update_last_error(domain, res)
337         else:
338             # NOISY-DEBUG: print("DEBUG:Querying API was successful:", domain, len(res.json()))
339             peers = res.json()
340             nodeinfos["get_peers_url"][domain] = get_peers_url
341
342     except BaseException as e:
343         print("WARNING: Some error during get():", domain, e)
344         update_last_error(domain, e)
345
346     update_last_nodeinfo(domain)
347
348     # NOISY-DEBUG: print("DEBUG: Returning peers[]:", type(peers))
349     return peers
350
351 def post_json_api(domain: str, path: str, data: str) -> list:
352     # NOISY-DEBUG: print("DEBUG: Sending POST to domain,path,data:", domain, path, data)
353     json = {}
354     try:
355         res = reqto.post(f"https://{domain}{path}", data=data, headers=headers, timeout=(config["connection_timeout"], config["read_timeout"]))
356
357         # NOISY-DEBUG: print("DEBUG: res.ok,res.json[]:", res.ok, type(res.json()))
358         if not res.ok or res.status_code >= 400:
359             print("WARNING: Cannot query JSON API:", domain, path, data, res.status_code)
360             update_last_error(domain, res)
361             raise
362
363         update_last_nodeinfo(domain)
364         json = res.json()
365     except BaseException as e:
366         print("WARNING: Some error during post():", domain, path, data, e)
367
368     # NOISY-DEBUG: print("DEBUG: Returning json():", len(json))
369     return json
370
371 def fetch_nodeinfo(domain: str) -> list:
372     # NOISY-DEBUG: print("DEBUG: Fetching nodeinfo from domain:", domain)
373
374     nodeinfo = fetch_wellknown_nodeinfo(domain)
375     # NOISY-DEBUG: print("DEBUG:nodeinfo:", len(nodeinfo))
376
377     if len(nodeinfo) > 0:
378         # NOISY-DEBUG: print("DEBUG: Returning auto-discovered nodeinfo:", len(nodeinfo))
379         return nodeinfo
380
381     requests = [
382        f"https://{domain}/nodeinfo/2.1.json",
383        f"https://{domain}/nodeinfo/2.1",
384        f"https://{domain}/nodeinfo/2.0.json",
385        f"https://{domain}/nodeinfo/2.0",
386        f"https://{domain}/nodeinfo/1.0",
387        f"https://{domain}/api/v1/instance"
388     ]
389
390     json = {}
391     for request in requests:
392         try:
393             # NOISY-DEBUG: print("DEBUG: Fetching request:", request)
394             res = reqto.get(request, headers=headers, timeout=(config["connection_timeout"], config["read_timeout"]))
395
396             # NOISY-DEBUG: print("DEBUG: res.ok,res.json[]:", res.ok, type(res.json()))
397             if res.ok and isinstance(res.json(), dict):
398                 # NOISY-DEBUG: print("DEBUG: Success:", request)
399                 json = res.json()
400                 nodeinfos["detection_mode"][domain] = "STATIC_CHECK"
401                 nodeinfos["nodeinfo_url"][domain] = request
402                 break
403             elif not res.ok or res.status_code >= 400:
404                 print("WARNING: Failed fetching nodeinfo from domain:", domain)
405                 update_last_error(domain, res)
406                 continue
407
408         except BaseException as e:
409             # NOISY-DEBUG: print("DEBUG: Cannot fetch API request:", request)
410             update_last_error(domain, e)
411             pass
412
413     # NOISY-DEBUG: print("DEBUG: Returning json[]:", type(json))
414     return json
415
416 def fetch_wellknown_nodeinfo(domain: str) -> list:
417     # NOISY-DEBUG: print("DEBUG: Fetching .well-known info for domain:", domain)
418     json = {}
419
420     try:
421         res = reqto.get(f"https://{domain}/.well-known/nodeinfo", headers=headers, timeout=(config["connection_timeout"], config["read_timeout"]))
422         # NOISY-DEBUG: print("DEBUG: domain,res.ok,res.json[]:", domain, res.ok, type(res.json()))
423         if res.ok and isinstance(res.json(), dict):
424             nodeinfo = res.json()
425             # NOISY-DEBUG: print("DEBUG: Found entries:", len(nodeinfo), domain)
426             if "links" in nodeinfo:
427                 # NOISY-DEBUG: print("DEBUG: Found links in nodeinfo():", len(nodeinfo["links"]))
428                 for link in nodeinfo["links"]:
429                     # NOISY-DEBUG: print("DEBUG: rel,href:", link["rel"], link["href"])
430                     if link["rel"] in nodeinfo_identifier:
431                         # NOISY-DEBUG: print("DEBUG: Fetching nodeinfo from:", link["href"])
432                         res = reqto.get(link["href"])
433
434                         # NOISY-DEBUG: print("DEBUG: href,res.ok,res.status_code:", link["href"], res.ok, res.status_code)
435                         if res.ok and isinstance(res.json(), dict):
436                             # NOISY-DEBUG: print("DEBUG: Found JSON nodeinfo():", len(res.json()))
437                             json = res.json()
438                             nodeinfos["detection_mode"][domain] = "AUTO_DISCOVERY"
439                             nodeinfos["nodeinfo_url"][domain] = link["href"]
440                             break
441                     else:
442                         print("WARNING: Unknown 'rel' value:", domain, link["rel"])
443             else:
444                 print("WARNING: nodeinfo does not contain 'links':", domain)
445
446     except BaseException as e:
447         print("WARNING: Failed fetching .well-known info:", domain)
448         update_last_error(domain, e)
449         pass
450
451     # NOISY-DEBUG: print("DEBUG: Returning json[]:", type(json))
452     return json
453
454 def fetch_generator_from_path(domain: str, path: str = "/") -> str:
455     # NOISY-DEBUG: print(f"DEBUG: domain='{domain}',path='{path}' - CALLED!")
456     software = None
457
458     try:
459         # NOISY-DEBUG: print(f"DEBUG: Fetching '{path}' from '{domain}' ...")
460         res = reqto.get(f"https://{domain}{path}", headers=headers, timeout=(config["connection_timeout"], config["read_timeout"]))
461
462         # NOISY-DEBUG: print("DEBUG: domain,res.ok,res.status_code,res.text[]:", domain, res.ok, res.status_code, type(res.text))
463         if res.ok and res.status_code < 300 and len(res.text) > 0:
464             # NOISY-DEBUG: print("DEBUG: Search for <meta name='generator'>:", domain)
465             doc = bs4.BeautifulSoup(res.text, "html.parser")
466
467             # NOISY-DEBUG: print("DEBUG: doc[]:", type(doc))
468             tag = doc.find("meta", {"name": "generator"})
469
470             # NOISY-DEBUG: print(f"DEBUG: tag[{type(tag)}: {tag}")
471             if isinstance(tag, bs4.element.Tag):
472                 # NOISY-DEBUG: print("DEBUG: Found generator meta tag: ", domain)
473                 software = tidyup(tag.get("content"))
474                 # NOISY-DEBUG: print(f"DEBUG: software='{software}'")
475                 nodeinfos["detection_mode"] = "GENERATOR"
476                 remove_pending_error(domain)
477
478     except BaseException as e:
479         print(f"WARNING: Cannot fetch / from '{domain}':", e)
480         update_last_error(domain, e)
481         pass
482
483     # NOISY-DEBUG: print(f"DEBUG: software[]={type(software)}")
484     if type(software) is str and software == "":
485         software = None
486     elif type(software) is str and "." in software:
487         # NOISY-DEBUG: print(f"DEBUG: software='{software}' may contain a version number, domain='{domain}', removing it ...")
488         software = remove_version(software)
489
490     # NOISY-DEBUG: print(f"DEBUG: software='{software}' - EXIT!")
491     return software
492
493
494 def determine_software(domain: str) -> str:
495     # NOISY-DEBUG: print("DEBUG: Determining software for domain:", domain)
496     software = None
497
498     # NOISY-DEBUG: print(f"DEBUG: Fetching nodeinfo from '{domain}' ...")
499     json = fetch_nodeinfo(domain)
500
501     # NOISY-DEBUG: print("DEBUG: json[]:", type(json))
502     if not isinstance(json, dict) or len(json) == 0:
503         # NOISY-DEBUG: print("DEBUG: Could not determine software type:", domain)
504         return fetch_generator_from_path(domain)
505
506     # NOISY-DEBUG: print("DEBUG: json():", len(json), json)
507     if "status" in json and json["status"] == "error" and "message" in json:
508         print("WARNING: JSON response is an error:", json["message"])
509         update_last_error(domain, json["message"])
510         return fetch_generator_from_path(domain)
511     elif "software" not in json or "name" not in json["software"]:
512         # NOISY-DEBUG: print(f"DEBUG: JSON response from {domain} does not include [software][name], fetching / ...")
513         software = fetch_generator_from_path(domain)
514
515         # NOISY-DEBUG: print(f"DEBUG: Generator for domain='{domain}' is: {software}, EXIT!")
516         return software
517
518     software = tidyup(json["software"]["name"])
519
520     # NOISY-DEBUG: print("DEBUG: sofware after tidyup():", software)
521     if software in ["akkoma", "rebased"]:
522         # NOISY-DEBUG: print("DEBUG: Setting pleroma:", domain, software)
523         software = "pleroma"
524     elif software in ["hometown", "ecko"]:
525         # NOISY-DEBUG: print("DEBUG: Setting mastodon:", domain, software)
526         software = "mastodon"
527     elif software in ["calckey", "groundpolis", "foundkey", "cherrypick", "meisskey"]:
528         # NOISY-DEBUG: print("DEBUG: Setting misskey:", domain, software)
529         software = "misskey"
530     elif software.find("/") > 0:
531         print("WARNING: Spliting of slash:", software)
532         software = software.split("/")[-1];
533     elif software.find("|") > 0:
534         print("WARNING: Spliting of pipe:", software)
535         software = tidyup(software.split("|")[0]);
536
537     # NOISY-DEBUG: print(f"DEBUG: software[]={type(software)}")
538     if software == "":
539         print("WARNING: tidyup() left no software name behind:", domain)
540         software = None
541
542     # NOISY-DEBUG: print(f"DEBUG: software[]={type(software)}")
543     if str(software) == "":
544         # NOISY-DEBUG: print(f"DEBUG: software for '{domain}' was not detected, trying generator ...")
545         software = fetch_generator_from_path(domain)
546     elif len(str(software)) > 0 and "." in software:
547         # NOISY-DEBUG: print(f"DEBUG: software='{software}' may contain a version number, domain='{domain}', removing it ...")
548         software = remove_version(software)
549
550     # NOISY-DEBUG: print("DEBUG: Returning domain,software:", domain, software)
551     return software
552
553 def update_block_reason(reason: str, blocker: str, blocked: str, block_level: str):
554     # NOISY-DEBUG: print("DEBUG: Updating block reason:", reason, blocker, blocked, block_level)
555     try:
556         cursor.execute(
557             "UPDATE blocks SET reason = ?, last_seen = ? WHERE blocker = ? AND blocked = ? AND block_level = ? AND reason = ''",
558             (
559                 reason,
560                 time.time(),
561                 blocker,
562                 blocked,
563                 block_level
564             ),
565         )
566
567         # NOISY-DEBUG: print(f"DEBUG: cursor.rowcount={cursor.rowcount}")
568         if cursor.rowcount == 0:
569             print("WARNING: Did not update any rows:", domain)
570
571     except BaseException as e:
572         print("ERROR: failed SQL query:", reason, blocker, blocked, block_level, e)
573         sys.exit(255)
574
575     # NOISY-DEBUG: print("DEBUG: EXIT!")
576
577 def update_last_seen(blocker: str, blocked: str, block_level: str):
578     # NOISY-DEBUG: print("DEBUG: Updating last_seen for:", blocker, blocked, block_level)
579     try:
580         cursor.execute(
581             "UPDATE blocks SET last_seen = ? WHERE blocker = ? AND blocked = ? AND block_level = ?",
582             (
583                 time.time(),
584                 blocker,
585                 blocked,
586                 block_level
587             )
588         )
589
590         if cursor.rowcount == 0:
591             print("WARNING: Did not update any rows:", domain)
592
593     except BaseException as e:
594         print("ERROR: failed SQL query:", last_seen, blocker, blocked, block_level, e)
595         sys.exit(255)
596
597     # NOISY-DEBUG: print("DEBUG: EXIT!")
598
599 def block_instance(blocker: str, blocked: str, reason: str, block_level: str):
600     # NOISY-DEBUG: print("DEBUG: blocker,blocked,reason,block_level:", blocker, blocked, reason, block_level)
601     if not validators.domain(blocker):
602         print("WARNING: Bad blocker:", blocker)
603         raise
604     elif not validators.domain(blocked):
605         print("WARNING: Bad blocked:", blocked)
606         raise
607
608     print("INFO: New block:", blocker, blocked, reason, block_level, first_added, last_seen)
609     try:
610         cursor.execute(
611             "INSERT INTO blocks (blocker, blocked, reason, block_level, first_added, last_seen) VALUES(?, ?, ?, ?, ?, ?)",
612              (
613                  blocker,
614                  blocked,
615                  reason,
616                  block_level,
617                  time.time(),
618                  time.time()
619              ),
620         )
621
622     except BaseException as e:
623         print("ERROR: failed SQL query:", blocker, blocked, reason, block_level, first_added, last_seen, e)
624         sys.exit(255)
625
626     # NOISY-DEBUG: print("DEBUG: EXIT!")
627
628 def add_instance(domain: str, origin: str, originator: str):
629     # NOISY-DEBUG: print("DEBUG: domain,origin:", domain, origin, originator)
630     if not validators.domain(domain):
631         print("WARNING: Bad domain name:", domain)
632         raise
633     elif origin is not None and not validators.domain(origin):
634         print("WARNING: Bad origin name:", origin)
635         raise
636
637     software = determine_software(domain)
638     # NOISY-DEBUG: print("DEBUG: Determined software:", software)
639
640     print(f"INFO: Adding new instance {domain} (origin: {origin})")
641     try:
642         cursor.execute(
643             "INSERT INTO instances (domain, origin, originator, hash, software, first_seen) VALUES (?, ?, ?, ?, ?, ?)",
644             (
645                domain,
646                origin,
647                originator,
648                get_hash(domain),
649                software,
650                time.time()
651             ),
652         )
653
654         if domain in nodeinfos["nodeinfo_url"]:
655             # NOISY-DEBUG # NOISY-DEBUG: print("DEBUG: domain has pending nodeinfo being updated:", domain)
656             update_nodeinfos(domain)
657             remove_pending_error(domain)
658         elif domain in pending_errors:
659             # NOISY-DEBUG: print("DEBUG: domain has pending error being updated:", domain)
660             update_last_error(domain, pending_errors[domain])
661             remove_pending_error(domain)
662
663     except BaseException as e:
664         print("ERROR: failed SQL query:", domain, e)
665         sys.exit(255)
666     else:
667         # NOISY-DEBUG: print("DEBUG: Updating nodeinfo for domain:", domain)
668         update_last_nodeinfo(domain)
669
670     # NOISY-DEBUG: print("DEBUG: EXIT!")
671
672 def send_bot_post(instance: str, blocks: dict):
673     message = instance + " has blocked the following instances:\n\n"
674     truncated = False
675
676     if len(blocks) > 20:
677         truncated = True
678         blocks = blocks[0 : 19]
679
680     for block in blocks:
681         if block["reason"] == None or block["reason"] == '':
682             message = message + block["blocked"] + " with unspecified reason\n"
683         else:
684             if len(block["reason"]) > 420:
685                 block["reason"] = block["reason"][0:419] + "[…]"
686
687             message = message + block["blocked"] + ' for "' + block["reason"].replace("@", "@\u200b") + '"\n'
688
689     if truncated:
690         message = message + "(the list has been truncated to the first 20 entries)"
691
692     botheaders = {**headers, **{"Authorization": "Bearer " + config["bot_token"]}}
693
694     req = reqto.post(
695         f"{config['bot_instance']}/api/v1/statuses",
696         data={
697             "status"      : message,
698             "visibility"  : config['bot_visibility'],
699             "content_type": "text/plain"
700         },
701         headers=botheaders,
702         timeout=10
703     ).json()
704
705     return True
706
707 def get_mastodon_blocks(domain: str) -> dict:
708     # NOISY-DEBUG: print("DEBUG: Fetching mastodon blocks from domain:", domain)
709     blocks = {
710         "Suspended servers": [],
711         "Filtered media"   : [],
712         "Limited servers"  : [],
713         "Silenced servers" : [],
714     }
715
716     try:
717         doc = bs4.BeautifulSoup(
718             reqto.get(f"https://{domain}/about/more", headers=headers, timeout=(config["connection_timeout"], config["read_timeout"])).text,
719             "html.parser",
720         )
721     except BaseException as e:
722         print("ERROR: Cannot fetch from domain:", domain, e)
723         update_last_error(domain, e)
724         return {}
725
726     for header in doc.find_all("h3"):
727         header_text = tidyup(header.text)
728
729         if header_text in language_mapping:
730             # NOISY-DEBUG: print(f"DEBUG: header_text='{header_text}'")
731             header_text = language_mapping[header_text]
732
733         if header_text in blocks or header_text.lower() in blocks:
734             # replaced find_next_siblings with find_all_next to account for instances that e.g. hide lists in dropdown menu
735             for line in header.find_all_next("table")[0].find_all("tr")[1:]:
736                 blocks[header_text].append(
737                     {
738                         "domain": tidyup(line.find("span").text),
739                         "hash"  : tidyup(line.find("span")["title"][9:]),
740                         "reason": tidyup(line.find_all("td")[1].text),
741                     }
742                 )
743
744     # NOISY-DEBUG: print("DEBUG: Returning blocks for domain:", domain)
745     return {
746         "reject"        : blocks["Suspended servers"],
747         "media_removal" : blocks["Filtered media"],
748         "followers_only": blocks["Limited servers"] + blocks["Silenced servers"],
749     }
750
751 def get_friendica_blocks(domain: str) -> dict:
752     # NOISY-DEBUG: print("DEBUG: Fetching friendica blocks from domain:", domain)
753     blocks = []
754
755     try:
756         doc = bs4.BeautifulSoup(
757             reqto.get(f"https://{domain}/friendica", headers=headers, timeout=(config["connection_timeout"], config["read_timeout"])).text,
758             "html.parser",
759         )
760     except BaseException as e:
761         print("WARNING: Failed to fetch /friendica from domain:", domain, e)
762         update_last_error(domain, e)
763         return {}
764
765     blocklist = doc.find(id="about_blocklist")
766
767     # Prevents exceptions:
768     if blocklist is None:
769         # NOISY-DEBUG: print("DEBUG:Instance has no block list:", domain)
770         return {}
771
772     for line in blocklist.find("table").find_all("tr")[1:]:
773         blocks.append({
774             "domain": tidyup(line.find_all("td")[0].text),
775             "reason": tidyup(line.find_all("td")[1].text)
776         })
777
778     # NOISY-DEBUG: print("DEBUG: Returning blocks() for domain:", domain, len(blocks))
779     return {
780         "reject": blocks
781     }
782
783 def get_misskey_blocks(domain: str) -> dict:
784     # NOISY-DEBUG: print("DEBUG: Fetching misskey blocks from domain:", domain)
785     blocks = {
786         "suspended": [],
787         "blocked"  : []
788     }
789
790     counter = 0
791     step = 99
792     while True:
793         # iterating through all "suspended" (follow-only in its terminology)
794         # instances page-by-page, since that troonware doesn't support
795         # sending them all at once
796         try:
797             if counter == 0:
798                 # NOISY-DEBUG: print("DEBUG: Sending JSON API request to domain,step,counter:", domain, step, counter)
799                 doc = post_json_api(domain, "/api/federation/instances/", json.dumps({
800                     "sort"     : "+caughtAt",
801                     "host"     : None,
802                     "suspended": True,
803                     "limit"    : step
804                 }))
805             else:
806                 # NOISY-DEBUG: print("DEBUG: Sending JSON API request to domain,step,counter:", domain, step, counter)
807                 doc = post_json_api(domain, "/api/federation/instances/", json.dumps({
808                     "sort"     : "+caughtAt",
809                     "host"     : None,
810                     "suspended": True,
811                     "limit"    : step,
812                     "offset"   : counter-1
813                 }))
814
815             # NOISY-DEBUG: print("DEBUG: doc():", len(doc))
816             if len(doc) == 0:
817                 # NOISY-DEBUG: print("DEBUG: Returned zero bytes, exiting loop:", domain)
818                 break
819
820             for instance in doc:
821                 # just in case
822                 if instance["isSuspended"]:
823                     blocks["suspended"].append(
824                         {
825                             "domain": tidyup(instance["host"]),
826                             # no reason field, nothing
827                             "reason": ""
828                         }
829                     )
830
831             if len(doc) < step:
832                 # NOISY-DEBUG: print("DEBUG: End of request:", len(doc), step)
833                 break
834
835             # NOISY-DEBUG: print("DEBUG: Raising counter by step:", step)
836             counter = counter + step
837
838         except BaseException as e:
839             print("WARNING: Caught error, exiting loop:", domain, e)
840             update_last_error(domain, e)
841             counter = 0
842             break
843
844     while True:
845         # same shit, different asshole ("blocked" aka full suspend)
846         try:
847             if counter == 0:
848                 # NOISY-DEBUG: print("DEBUG: Sending JSON API request to domain,step,counter:", domain, step, counter)
849                 doc = post_json_api(domain,"/api/federation/instances", json.dumps({
850                     "sort"   : "+caughtAt",
851                     "host"   : None,
852                     "blocked": True,
853                     "limit"  : step
854                 }))
855             else:
856                 # NOISY-DEBUG: print("DEBUG: Sending JSON API request to domain,step,counter:", domain, step, counter)
857                 doc = post_json_api(domain,"/api/federation/instances", json.dumps({
858                     "sort"   : "+caughtAt",
859                     "host"   : None,
860                     "blocked": True,
861                     "limit"  : step,
862                     "offset" : counter-1
863                 }))
864
865             # NOISY-DEBUG: print("DEBUG: doc():", len(doc))
866             if len(doc) == 0:
867                 # NOISY-DEBUG: print("DEBUG: Returned zero bytes, exiting loop:", domain)
868                 break
869
870             for instance in doc:
871                 if instance["isBlocked"]:
872                     blocks["blocked"].append({
873                         "domain": tidyup(instance["host"]),
874                         "reason": ""
875                     })
876
877             if len(doc) < step:
878                 # NOISY-DEBUG: print("DEBUG: End of request:", len(doc), step)
879                 break
880
881             # NOISY-DEBUG: print("DEBUG: Raising counter by step:", step)
882             counter = counter + step
883
884         except BaseException as e:
885             print("ERROR: Exception during POST:", domain, e)
886             update_last_error(domain, e)
887             counter = 0
888             break
889
890     # NOISY-DEBUG: print("DEBUG: Returning for domain,blocked(),suspended():", domain, len(blocks["blocked"]), len(blocks["suspended"]))
891     return {
892         "reject"        : blocks["blocked"],
893         "followers_only": blocks["suspended"]
894     }
895
896 def tidyup(string: str) -> str:
897     # some retards put their blocks in variable case
898     string = string.lower().strip()
899
900     # other retards put the port
901     string = re.sub("\:\d+$", "", string)
902
903     # bigger retards put the schema in their blocklist, sometimes even without slashes
904     string = re.sub("^https?\:(\/*)", "", string)
905
906     # and trailing slash
907     string = re.sub("\/$", "", string)
908
909     # and the @
910     string = re.sub("^\@", "", string)
911
912     # the biggest retards of them all try to block individual users
913     string = re.sub("(.+)\@", "", string)
914
915     return string