-
Notifications
You must be signed in to change notification settings - Fork 3
/
script.js
182 lines (174 loc) · 4.98 KB
/
script.js
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
// Acessar: https://agendamento.vitoria.es.gov.br/
// colar esse conteũdo no console e rodar: start('NOME COMPETO', 'CPF', 'TELEFONE', 'EMAIL');
//
//start('Fulano da Silva', '11111111111', '2799999999', '[email protected]', 'centro');
let routine = null;
function agendar(nome, cpf, telefone, email, dia, hora, servico, unidade) {
new Promise((resolve) => {
window.grecaptcha.ready(async () => {
const token = await window.grecaptcha.execute(recaptchaKey, {
action: "novoAgendamento",
});
resolve(token);
});
}).then(async (token) => {
fetch("https://agendamento.vitoria.es.gov.br/api/agendamentos", {
headers: {
Accept: "application/json",
"Content-Type": "application/json",
},
method: "POST",
body: JSON.stringify({
data: dia,
horaDesejada: hora,
nome,
documento: cpf,
tipoDocumento: 1,
servico,
unidade,
telefone,
email,
captcha: token,
respostas: [],
}),
})
.then((res) => {
res.json().then((b) => {
if (!b.error) {
console.log("CONSEGUIMOSSSS!!!!!");
console.log(b);
stop();
}
console.log(b);
});
})
.catch((err) => {
console.log("ERRO", err);
});
});
}
function getServicos() {
return new Promise((resolve) => {
fetch("https://agendamento.vitoria.es.gov.br/api/categorias/2/servicos")
.then((res) => {
res.json().then((j) => resolve(j));
})
.catch((err) => {
console.log("ERRO", err);
});
});
}
function getLocais(servico) {
return new Promise((resolve) => {
fetch(
`https://agendamento.vitoria.es.gov.br/api/servicos/${servico}/unidades/vagas`
)
.then((res) => {
res.json().then((j) => resolve(j));
})
.catch((err) => {
console.log("ERRO", err);
});
});
}
function getHorarios(servico, id, mes, dia) {
return new Promise((resolve) => {
fetch(
`https://agendamento.vitoria.es.gov.br/api/servicos/${servico}/unidades/` +
id +
"/horarios/2021-" +
mes +
"-" +
dia +
"?_=" +
new Date().getTime()
)
.then((res) => {
res.json().then((j) => resolve(j));
})
.catch((err) => {
console.log("ERRO", err);
});
});
}
function getDiaMes(data) {
let ret = { dia: "", mes: "" };
ret.mes =
data.getMonth() + 1 < 10
? "0" + (data.getMonth() + 1)
: "" + (data.getMonth() + 1);
ret.dia = data.getDate() < 10 ? "0" + data.getDate() : "" + data.getDate();
return ret;
}
async function start(nome, cpf, telefone, email, prioridade) {
let locais = [];
routine = setInterval(async () => {
console.log("Consultando serviços...");
let resServico = await getServicos();
resServico = resServico.filter((s) =>
s.nome.toLowerCase().includes("covid")
);
if (resServico.length > 0) {
let servico = resServico[0].id;
console.log("Atualizando locais de vacinação...");
locais = await getLocais(servico);
if (prioridade) {
locais = locais.sort((a, b) => {
if (a.nome.toLowerCase().includes(prioridade.toLowerCase()))
return -1;
if (b.nome.toLowerCase().includes(prioridade.toLowerCase())) return 1;
});
}
for (let i = 0; i < locais.length; i++) {
console.log("Vagas Disponíveis: ", locais[i].vagasdisponiveis);
if (locais[i].vagasdisponiveis) {
let today = new Date();
const h1 = await getHorarios(
servico,
locais[i].id,
getDiaMes(today).mes,
getDiaMes(today).dia
);
console.log(locais[i]);
today.setDate(today.getDate() + 1);
const h2 = await getHorarios(
servico,
locais[i].id,
getDiaMes(today).mes,
getDiaMes(today).dia
);
locais[i].horarios = h1.concat(h2);
if (!locais[i].horarios.length) {
console.log(
`Não há horários disponíveis em "${locais[i].nome} - ${
locais[i].descricao
}" até ${today.toLocaleString()}`
);
} else {
console.log(
`Horarios disponíveis para ${locais[i].descricao}: ${locais[i].horarios}`
);
for (let j = 0; j < locais[i].horarios.length; j++) {
agendar(
nome,
cpf,
telefone,
email,
locais[i].inicio,
locais[i].horarios[j],
servico,
locais[i].id
);
}
}
} else {
console.log(`Não há vagas disponíveis para ${locais[i].nome}`);
}
}
}
}, 2000);
}
function stop() {
if (routine) clearInterval(routine);
}
//start('Fulano da Silva', 'CPF', 'TELEFONE', '[email protected]', 'centro');