]> git.mxchange.org Git - fba.git/blob - fba/federation/peertube.py
13adea4b25bca2e493709275271b2e184267acc0
[fba.git] / fba / federation / peertube.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='peertube' - 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     # DEBUG: print(f"DEBUG: domain='{domain}' is a PeerTube, fetching JSON ...")
30     peers = list()
31     start = 0
32     for mode in ["followers", "following"]:
33         # DEBUG: print(f"DEBUG: domain='{domain}',mode='{mode}'")
34         while True:
35             try:
36                 response = network.fetch_response(domain, "/api/v1/server/{mode}?start={start}&count=100", headers, (config.get("connection_timeout"), config.get("read_timeout")))
37
38                 data = fba.json_from_response(response)
39                 # DEBUG: print(f"DEBUG: response.ok={response.ok},response.status_code='{response.status_code}',data[]='{type(data)}'")
40                 if response.ok and isinstance(data, dict):
41                     # DEBUG: print("DEBUG: Success, data:", len(data))
42                     if "data" in data:
43                         # DEBUG: print(f"DEBUG: Found {len(data['data'])} record(s).")
44                         for record in data["data"]:
45                             # DEBUG: print(f"DEBUG: record()={len(record)}")
46                             if mode in record and "host" in record[mode]:
47                                 # DEBUG: print(f"DEBUG: Found host={record[mode]['host']}, adding ...")
48                                 peers.append(record[mode]["host"])
49                             else:
50                                 print(f"WARNING: record from '{domain}' has no '{mode}' or 'host' record: {record}")
51
52                         if len(data["data"]) < 100:
53                             # DEBUG: print("DEBUG: Reached end of JSON response:", domain)
54                             break
55
56                     # Continue with next row
57                     start = start + 100
58
59             except BaseException as e:
60                 print(f"WARNING: Exception during fetching JSON: domain='{domain}',exception[{type(e)}]:'{str(e)}'")
61
62     # DEBUG: print(f"DEBUG: Adding '{len(peers)}' for domain='{domain}'")
63     instances.set("total_peers", domain, len(peers))
64
65     # DEBUG: print(f"DEBUG: Updating last_instance_fetch for domain='{domain}' ...")
66     instances.update_last_instance_fetch(domain)
67
68     # DEBUG: print("DEBUG: Returning peers[]:", type(peers))
69     return peers