]> git.mxchange.org Git - fba.git/blob - fba/networks/peertube.py
f8813d1a2b14f9cdecfbdc9cf0bac6450ebaaaab
[fba.git] / fba / networks / 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 csrf
19 from fba import instances
20 from fba import network
21
22 def fetch_peers(domain: str) -> list:
23     print(f"DEBUG: domain({len(domain)})={domain},software='peertube' - 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     print(f"DEBUG: domain='{domain}' is a PeerTube, fetching JSON ...")
30     peers   = list()
31     start   = 0
32
33     # No CSRF by default, you don't have to add network.api_headers by yourself here
34     headers = tuple()
35
36     try:
37         print(f"DEBUG: Checking CSRF for domain='{domain}'")
38         headers = csrf.determine(domain, dict())
39     except network.exceptions as exception:
40         print(f"WARNING: Exception '{type(exception)}' during checking CSRF (fetch_peers,{__name__}) - EXIT!")
41         return peers
42
43     for mode in ["followers", "following"]:
44         print(f"DEBUG: domain='{domain}',mode='{mode}'")
45         while True:
46             data = network.get_json_api(
47                 domain,
48                 "/api/v1/server/{mode}?start={start}&count=100",
49                 headers,
50                 (config.get("connection_timeout"), config.get("read_timeout"))
51             )
52
53             print(f"DEBUG: data['{type(data)}']='{data}'")
54             if "error_message" not in data:
55                 print("DEBUG: Success, data[json]:", len(data["json"]))
56                 if "data" in data["json"]:
57                     print(f"DEBUG: Found {len(data['data'])} record(s).")
58                     for record in data["json"]["data"]:
59                         print(f"DEBUG: record()={len(record)}")
60                         if mode in record and "host" in record[mode]:
61                             print(f"DEBUG: Found host={record[mode]['host']}, adding ...")
62                             peers.append(record[mode]["host"])
63                         else:
64                             print(f"WARNING: record from '{domain}' has no '{mode}' or 'host' record: {record}")
65
66                     if len(data["json"]["data"]) < 100:
67                         print(f"DEBUG: Reached end of JSON response, domain='{domain}'")
68                         break
69
70                 # Continue with next row
71                 start = start + 100
72
73     print(f"DEBUG: Adding '{len(peers)}' for domain='{domain}'")
74     instances.set_data("total_peers", domain, len(peers))
75
76     print(f"DEBUG: Updating last_instance_fetch for domain='{domain}' ...")
77     instances.update_last_instance_fetch(domain)
78
79     print(f"DEBUG: Returning peers[]='{type(peers)}'")
80     return peers