]> git.mxchange.org Git - fba.git/blob - fba/federation/lemmy.py
cc6d132fa8b5fe026ebdabb0691578330f93d478
[fba.git] / fba / federation / lemmy.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 from fba import config
18 from fba import fba
19 from fba import instances
20 from fba import network
21
22 def fetch_peers(domain: str) -> list:
23     # DEBUG: print(f"DEBUG: domain({len(domain)})={domain},software='lemmy' - CALLED!")
24     if type(domain) != str:
25         raise ValueError(f"Parameter domain[]={type(domain)} is not 'str'")
26     elif domain == "":
27         raise ValueError(f"Parameter 'domain' is empty")
28
29     peers = list()
30     try:
31         # DEBUG: print(f"DEBUG: domain='{domain}' is Lemmy, fetching JSON ...")
32         response = network.fetch_response(domain, "/api/v3/site", fba.api_headers, (config.get("connection_timeout"), config.get("read_timeout")))
33
34         data = fba.json_from_response(response)
35
36         # DEBUG: print(f"DEBUG: response.ok={response.ok},response.status_code='{response.status_code}',data[]='{type(data)}'")
37         if not response.ok or response.status_code >= 400:
38             print("WARNING: Could not reach any JSON API:", domain)
39             instances.update_last_error(domain, response)
40         elif response.ok and isinstance(data, list):
41             print(f"UNSUPPORTED: domain='{domain}' returned a list: '{data}'")
42         elif "federated_instances" in data:
43             # DEBUG: print(f"DEBUG: Found federated_instances for domain='{domain}'")
44             peers = peers + fba.add_peers(data["federated_instances"])
45             # DEBUG: print("DEBUG: Added instance(s) to peers")
46         else:
47             print("WARNING: JSON response does not contain 'federated_instances':", domain)
48             instances.update_last_error(domain, response)
49
50     except BaseException as e:
51         print(f"WARNING: Exception during fetching JSON: domain='{domain}',exception[{type(e)}]:'{str(e)}'")
52
53     # DEBUG: print(f"DEBUG: Adding '{len(peers)}' for domain='{domain}'")
54     instances.set("total_peers", domain, len(peers))
55
56     # DEBUG: print(f"DEBUG: Updating last_instance_fetch for domain='{domain}' ...")
57     instances.update_last_instance_fetch(domain)
58
59     # DEBUG: print("DEBUG: Returning peers[]:", type(peers))
60     return peers