]> git.mxchange.org Git - fba.git/blob - fba/networks/peertube.py
Continued:
[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 import logging
18
19 from fba import csrf
20
21 from fba.helpers import config
22 from fba.helpers import domain as domain_helper
23
24 from fba.http import network
25
26 from fba.models import instances
27
28 logging.basicConfig(level=logging.INFO)
29 logger = logging.getLogger(__name__)
30
31 def fetch_peers(domain: str) -> list:
32     logger.debug("domain='%s' - CALLED!", domain)
33     domain_helper.raise_on(domain)
34
35     logger.debug("domain='%s' is a PeerTube, fetching JSON ...", domain)
36     peers   = list()
37     start   = 0
38
39     # No CSRF by default, you don't have to add network.api_headers by yourself here
40     headers = tuple()
41
42     try:
43         logger.debug("Checking CSRF for domain='%s'", domain)
44         headers = csrf.determine(domain, dict())
45     except network.exceptions as exception:
46         logger.warning("Exception '%s' during checking CSRF (fetch_peers,%s)", type(exception), __name__)
47         instances.set_last_error(domain, exception)
48
49         logger.debug("Returning empty list ... - EXIT!")
50         return list()
51
52     for mode in ["followers", "following"]:
53         logger.debug("domain='%s',mode='%s'", domain, mode)
54         while True:
55             data = network.get_json_api(
56                 domain,
57                 f"/api/v1/server/{mode}?start={start}&count=100",
58                 headers,
59                 (config.get("connection_timeout"), config.get("read_timeout"))
60             )
61
62             logger.debug("data[]='%s'", type(data))
63             if "error_message" not in data:
64                 logger.debug("Success, data[json]()=%d", len(data['json']))
65                 instances.set_success(domain)
66
67                 if "data" in data["json"]:
68                     rows = data["json"]["data"]
69
70                     logger.debug("Found %d record(s).", len(rows))
71                     for record in rows:
72                         logger.debug("record()=%d", len(record))
73                         for mode2 in ["follower", "following"]:
74                             logger.debug("mode=%s,mode2='%s'", mode, mode2)
75                             if mode2 in record and "host" in record[mode2] and record[mode2]["host"] != domain:
76                                 logger.debug("Found mode2='%s',host='%s', adding ...", mode2, record[mode2]['host'])
77                                 peers.append(record[mode2]["host"])
78
79                     if len(rows) < 100:
80                         logger.debug("Reached end of JSON response, domain='%s'", domain)
81                         break
82                 else:
83                     logger.warning("domain='%s' has no 'data' element returned - SKIPPED!", domain)
84                     break
85
86                 # Continue with next row
87                 start = start + 100
88             else:
89                 logger.warning("domain='%s' causes error during API query: '%s' - SKIPPED!", domain, data['error_message'])
90                 break
91
92     logger.debug("peers[%s]()=%d - EXIT!", type(peers), len(peers))
93     return peers