summaryrefslogtreecommitdiff
path: root/script.py
blob: 4315de99f0c52004c7593158d76c4d3abab005db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import json
import requests
import time
import logging

RECORDS_FILE = "records.json"
ENDPOINT = "https://hatecomputers.club"
API_KEY = open('apikey.secret', 'r').read().strip()

class HatecomputersDNSAdapter:
    def __init__(self, endpoint, api_key):
        self.endpoint = endpoint
        self.session = requests.Session()
        self.headers = {'Authorization': 'Bearer ' + api_key}

    def post_record(self, record):
        endpoint = self.endpoint + "/dns"
        logging.info(f"adding {record} to {endpoint}")

        self.session.post(endpoint, headers=self.headers, data=record)

    def post_records(self, dns_entries, eepy_time=0.25):
        for record in dns_entries:
            self.post_record(record)

            logging.info(f"sleeping for {eepy_time}")
            time.sleep(eepy_time)

if __name__ == "__main__":
    logging.basicConfig()
    logging.root.setLevel(logging.NOTSET)

    records_file = open(RECORDS_FILE, 'r')
    dns_records = json.load(records_file)

    adapter = HatecomputersDNSAdapter(ENDPOINT, API_KEY)
    adapter.post_records(dns_records)