forked from MetalDevOps/elei2022
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api_requests.py
136 lines (117 loc) · 5.73 KB
/
api_requests.py
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
import asyncio
from asyncio import futures
from utils.utils import MakeRequest
import json
import os
import aiohttp
import aiofiles
from pyunpack import Archive
from pathlib import Path
from logger import get_logger
from time import sleep
import py7zr
log = get_logger(__name__)
class ApiRequests(MakeRequest):
def __init__(self):
super().__init__()
self.base_url = "https://resultados.tse.jus.br/oficial/ele2022"
self.lista_siglas = [
"ac",
"al",
"ap",
"am",
"ba",
"ce",
"df",
"es",
"zz",
"go",
"ma",
"mt",
"ms",
"mg",
"pr",
"pb",
"pa",
"pe",
"pi",
"rj",
"rn",
"rs",
"ro",
"rr",
"sc",
"se",
"sp",
"to",
]
# self.lista_siglas = ["ce"]
def get(self, url, **kwargs):
return self.request("GET", url, **kwargs)
def get_mun_zon_sec(self, electionRound):
mun_zon_sec_dump = {}
for i in self.lista_siglas:
mun_zon_sec_dump[f"{i.casefold()}"] = []
if (electionRound == 1):
url = f"{self.base_url}/arquivo-urna/406/config/{i}/{i}-p000406-cs.json"
else:
url = f"{self.base_url}/arquivo-urna/407/config/{i}/{i}-p000407-cs.json"
response = self.get(url).json()["abr"]
print(len(response[0]["mu"]))
for j in range(len(response[0]["mu"])):
mu = response[0]["mu"][j]["cd"]
print(mu)
for z in range(len(response[0]["mu"][j]["zon"])):
zon = response[0]["mu"][j]["zon"][z]["cd"]
print(zon)
for s in range(len(response[0]["mu"][j]["zon"][z]["sec"])):
sec = response[0]["mu"][j]["zon"][z]["sec"][s]["ns"]
mun_zon_sec_dump[f"{i.casefold()}"].append({"mu": mu, "zon": zon, "sec": sec})
with open(f"{i.casefold()}.json", "w") as f:
json.dump(mun_zon_sec_dump, f, indent=4)
def get_hash_mun_zon_sec(self, electionRound):
for uf in self.lista_siglas:
with open(f"mun_zon_sec_dump/{uf}.json", "r") as f:
mun_zon_sec_dump = json.load(f)
for i in mun_zon_sec_dump[f"{uf}"]:
if (electionRound == 1):
url = f"{self.base_url}/arquivo-urna/406/dados/{uf}/{i['mu']}/{i['zon']}/{i['sec']}/p000406-{uf}-m{i['mu']}-z{i['zon']}-s{i['sec']}-aux.json"
else:
url = f"{self.base_url}/arquivo-urna/407/dados/{uf}/{i['mu']}/{i['zon']}/{i['sec']}/p000407-{uf}-m{i['mu']}-z{i['zon']}-s{i['sec']}-aux.json"
#log.info(f"Url to get hash: {url}")
# if i["mu"] == "15474" and i["zon"] == "0022" and i["sec"] == "0109":
response = self.get(url).json()["hashes"]
hash = response[0]["hash"]
for j in range(len(response[0]["nmarq"])):
if response[0]["nmarq"][j].endswith("ez") or response[0]["nmarq"][j].endswith(".imgbu"):
nmarq = response[0]["nmarq"][j]
#15474/0022/0109/334b386d615a2b516b4c426f4370397733616b446c5a5a5361754968354f314c374864536e4659554f43593d/o00406-1547400220109.logjez
self.get_hashes(f"{uf}", i["mu"], i["zon"], i["sec"], hash, nmarq, electionRound)
def get_hashes(self, sigla_estado, cd_municipio, cd_zona, cd_secao, hash, nmarq: str, electionRound):
#log.info(f"Get hash for {sigla_estado}, {cd_municipio}, {cd_zona}, {cd_secao}, {hash}")
if (electionRound == 1):
url = f"{self.base_url}/arquivo-urna/406/dados/{sigla_estado}/{cd_municipio}/{cd_zona}/{cd_secao}/{hash}/{nmarq}"
else:
url = f"{self.base_url}/arquivo-urna/407/dados/{sigla_estado}/{cd_municipio}/{cd_zona}/{cd_secao}/{hash}/{nmarq}"
log_path = f"downloads/{electionRound}/{sigla_estado}/{cd_municipio}/{cd_zona}/{cd_secao}"
log_path_extracted = f"downloads/{electionRound}/{sigla_estado}/{cd_municipio}/{cd_zona}/{cd_secao}/{nmarq}.dat"
if not os.path.exists(f"downloads/{electionRound}/{sigla_estado}/{cd_municipio}/{cd_zona}/{cd_secao}"):
os.makedirs(f"downloads/{electionRound}/{sigla_estado}/{cd_municipio}/{cd_zona}/{cd_secao}")
if not os.path.exists(log_path_extracted):
log.info(f"Downloading {url}")
# url = "https://resultados.tse.jus.br/oficial/ele2022/arquivo-urna/406/dados/go/92010/0087/0074/43304f4c543738743847325567706b2d53525a6965734b2b2d37654e597145707a5567567a6e67594b72553d/o00406-9201000870074.logjez"
response = self.get(url)
# path = "dowloads/o00406-9201000870074.logjez"
with open(os.path.join(log_path, nmarq).replace("\\","/"), "wb") as f:
f.write(response.content)
if nmarq.endswith("ez"):
log.info(f"Unpacking {log_path}, {nmarq}, {log_path}")
py7zr.unpack_7zarchive(os.path.join(log_path, nmarq).replace("\\","/"), log_path)
# Archive(os.path.join(log_path, nmarq)).extractall(log_path)
p = Path(log_path + "/" + "logd.dat")
p.rename(log_path_extracted)
log.info(f"File {nmarq} downloaded to {log_path_extracted}")
else:
log.info(f"File {nmarq} downloaded to {log_path_extracted}")
else:
log.info(f"File already exists {log_path_extracted}")