-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.mjs
74 lines (66 loc) · 2.05 KB
/
app.mjs
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
import {
sequelize,
Linha,
Horario,
Observacao,
Itinerario,
Empresa
} from "./src/models/index.mjs";
import * as ceturb from "./src/ceturb/index.mjs";
import * as sanremo from "./src/sanremo/index.mjs";
import * as vitoria from "./src/vitoria/index.mjs";
const opts = { truncate: true };
(async () => {
try {
await sequelize.sync();
await Empresa.destroy(opts);
await Linha.destroy(opts);
await Horario.destroy(opts);
await Itinerario.destroy(opts);
await Observacao.destroy(opts);
console.log(`
-------------------------
-------- Transcol -------
-------------------------
`);
const empresaTranscol = await Empresa.build({ nome: "Transcol" }).save();
await ceturb.getLinhas(empresaTranscol.id, "T");
await ceturb.getHorarios(empresaTranscol.id);
await ceturb.getItinerarios(empresaTranscol.id);
await ceturb.getObservacoes(empresaTranscol.id);
console.log(`
-------------------------
--- Seletivo Transcol ---
-------------------------
`);
const empresaSeletivo = await Empresa.build({
nome: "Seletivo Transcol"
}).save();
await ceturb.getLinhas(empresaSeletivo.id, "S");
await ceturb.getHorarios(empresaSeletivo.id);
await ceturb.getItinerarios(empresaSeletivo.id);
await ceturb.getObservacoes(empresaSeletivo.id);
console.log(`
-------------------------
-------- Sanremo --------
-------------------------
`);
const empresaSanremo = await Empresa.build({ nome: "Sanremo" }).save();
await sanremo.getLinhas(empresaSanremo.id);
await sanremo.getHorarios(empresaSanremo.id);
console.log(`
-------------------------
--- Seletivo Vitória ----
-------------------------
`);
const empresaVitoria = await Empresa.build({
nome: "Seletivo Vitória"
}).save();
await vitoria.getLinhas(empresaVitoria.id);
await vitoria.getHorarios(empresaVitoria.id);
await vitoria.getItinerarios(empresaVitoria.id);
console.log("ok");
} catch (e) {
console.log(e);
}
})();