]> git.mxchange.org Git - fba.git/blob - fba/networks/lemmy.py
WIP:
[fba.git] / fba / networks / 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 federation
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 not isinstance(domain, str):
25         raise ValueError(f"Parameter domain[]={type(domain)} is not 'str'")
26     elif domain == "":
27         raise ValueError("Parameter 'domain' is empty")
28
29     peers = list()
30     try:
31         # DEBUG: print(f"DEBUG: domain='{domain}' is Lemmy, fetching JSON ...")
32         data = network.get_json_api(
33             domain,
34             "/api/v3/site",
35             (config.get("connection_timeout"), config.get("read_timeout"))
36         )
37
38         # DEBUG: print(f"DEBUG: data['{type(data)}']='{data}'")
39         if "error_message" in data:
40             print("WARNING: Could not reach any JSON API:", domain)
41             instances.update_last_error(domain, response)
42         elif "federated_instances" in data["json"]:
43             # DEBUG: print(f"DEBUG: Found federated_instances for domain='{domain}'")
44             peers = peers + federation.add_peers(data["json"]["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, data)
49
50     except BaseException as exception:
51         print(f"WARNING: Exception during fetching JSON: domain='{domain}',exception[{type(exception)}]:'{str(exception)}'")
52
53     # DEBUG: print(f"DEBUG: Adding '{len(peers)}' for domain='{domain}'")
54     instances.set_data("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