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