-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.ts
152 lines (124 loc) · 8.99 KB
/
main.ts
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
import { resolve } from 'node:path';
import { readFileSync, writeFileSync } from 'node:fs';
import { estatisticasData, golsData, partidaData, type cartoesData } from './types/types';
export class SQLConstructor {
public static clubeMap = new Map<string, number>();
public static clubeIdCounter = 1;
private static parseCSV<T>(content: string): T[] {
const [headerLine, ...lines] = content.split('\n');
const headers = headerLine.split(',').map(field => field.trim().replace(/^"|"$/g, ''));
return lines.map(line => {
const fields = line.split(',').map(field => field.trim().replace(/^"|"$/g, ''));
return headers.reduce((acc, header, index) => {
acc[header] = fields[index] as unknown as T[keyof T];
return acc;
}, {} as T);
});
}
public static createPartida() {
const csvPath = resolve('./data/campeonato-brasileiro-full.csv');
const content = readFileSync(csvPath, { encoding: 'utf-8' });
const rows = SQLConstructor.parseCSV<partidaData>(content);
const requiredFields = new Set(['ID', 'rodata', 'data', 'hora', 'mandante', 'visitante', 'formacao_mandante', 'formacao_visitante', 'tecnico_mandante', 'tecnico_visitante', 'vencedor', 'arena', 'mandante_Placar', 'visitante_Placar', 'mandante_Estado', 'visitante_Estado']);
let sql = `SET GLOBAL net_buffer_length = 1000000;\nSET GLOBAL max_allowed_packet = 1000000000;\n\nUSE brasileirao;\n\n`;
sql += `INSERT INTO partidas (id_partida, rodada, horario, data_partida, mandante, visitante, formacao_mandante, formacao_visitante, tecnico_mandante, tecnico_visitante, vencedor, arena, mandante_placar, visitante_placar, estado_mandante, estado_visitante)\nVALUES\n` +
rows.reduce<string[]>((acc, row) => {
if ([...requiredFields].every(field => (row)[field] !== undefined)) {
if (row.data) row.data = row.data.split('/').reverse().join('-');
row.formacao_mandante = !row.formacao_mandante ? 'NULL' : `"${row.formacao_mandante}"`;
row.formacao_visitante = !row.formacao_visitante ? 'NULL' : `"${row.formacao_visitante}"`;
row.tecnico_mandante = !row.tecnico_mandante ? 'NULL' : `"${row.tecnico_mandante}"`;
row.tecnico_visitante = !row.tecnico_visitante ? 'NULL' : `"${row.tecnico_visitante}"`;
acc.push(`\t(${row.ID}, ${row.rodata}, "${row.hora}", "${row.data}", "${row.mandante}", "${row.visitante}", ${row.formacao_mandante}, ${row.formacao_visitante}, ${row.tecnico_mandante}, ${row.tecnico_visitante}, "${row.vencedor}", "${row.arena}", ${row.mandante_Placar}, ${row.visitante_Placar}, "${row.mandante_Estado}", "${row.visitante_Estado}")`);
}
return acc;
}, []).join(',\n') + ';';
const sqlPath = resolve('./sql/insert_partidas.sql');
writeFileSync(sqlPath, sql);
}
public static createGols() {
const csvPath = resolve('./data/campeonato-brasileiro-gols.csv');
const content = readFileSync(csvPath, { encoding: 'utf-8' });
const rows = SQLConstructor.parseCSV<golsData>(content);
const requiredFields = new Set(['partida_id', 'rodata', 'clube', 'atleta', 'minuto', 'tipo_de_gol']);
let sql = `SET GLOBAL net_buffer_length = 1000000;\nSET GLOBAL max_allowed_packet = 1000000000;\n\nUSE brasileirao;\n\n`;
sql += `INSERT INTO gols (id_gol, id_partida, id_clube, rodada, clube, atleta, minuto, tipo_de_gol)\nVALUES\n` +
rows.reduce<string[]>((acc, row) => {
if ([...requiredFields].every(field => (row)[field] !== undefined)) {
row.tipo_de_gol = !row.tipo_de_gol ? 'NULL' : `"${row.tipo_de_gol}"`;
const id = SQLConstructor.clubeMap.get(row.clube);
acc.push(`\t(NULL, ${row.partida_id}, ${id}, ${row.rodata}, "${row.clube}", "${row.atleta}", "${row.minuto}", ${row.tipo_de_gol})`);
}
return acc;
}, []).join(',\n') + ';';
const sqlPath = resolve('./sql/insert_gols.sql');
writeFileSync(sqlPath, sql);
}
public static createCartoes() {
const csvPath = resolve('./data/campeonato-brasileiro-cartoes.csv');
const content = readFileSync(csvPath, { encoding: 'utf-8' });
const rows = SQLConstructor.parseCSV<cartoesData>(content);
const requiredFields = new Set(['partida_id', 'rodata', 'clube', 'cartao', 'atleta', 'minuto']);
let sql = `SET GLOBAL net_buffer_length = 1000000;\nSET GLOBAL max_allowed_packet = 1000000000;\n\nUSE brasileirao;\n\n`;
sql += `INSERT INTO cartoes (id_cartao, id_partida, id_clube, rodada, clube, cartao, atleta, num_camisa, posicao, minuto)\nVALUES\n` +
rows.reduce<string[]>((acc, row) => {
if ([...requiredFields].every(field => (row)[field] !== undefined)) {
row.num_camisa = !row.num_camisa ? 'NULL' : `${row.num_camisa}`;
row.posicao = !row.posicao ? 'NULL' : `"${row.posicao}"`;
const id = SQLConstructor.clubeMap.get(row.clube);
acc.push(`\t(NULL, ${row.partida_id}, ${id}, ${row.rodata}, "${row.clube}", "${row.cartao}", "${row.atleta}", ${row.num_camisa}, ${row.posicao}, "${row.minuto}")`);
}
return acc;
}, []).join(',\n') + ';';
const sqlPath = resolve('./sql/insert_cartoes.sql');
writeFileSync(sqlPath, sql);
}
public static createEstatisticas() {
const csvPath = resolve('./data/campeonato-brasileiro-estatisticas-full.csv');
const content = readFileSync(csvPath, { encoding: 'utf-8' });
const rows = SQLConstructor.parseCSV<estatisticasData>(content);
const requiredFields = new Set(['partida_id', 'rodata', 'clube', 'chutes', 'chutes_no_alvo', 'posse_de_bola', 'passes', 'precisao_passes', 'faltas', 'cartao_amarelo', 'cartao_vermelho', 'impedimentos', 'escanteios']);
let sql = `SET GLOBAL net_buffer_length = 1000000;\nSET GLOBAL max_allowed_packet = 1000000000;\n\nUSE brasileirao;\n\n`;
sql += `INSERT INTO estatisticas (id_estatistica, id_partida, id_clube, rodada, clube, chutes, chutes_a_gol, posse_de_bola, passes, precisao_passes, faltas, cartao_amarelo, cartao_vermelho, impedimentos, escanteios)\nVALUES\n` +
rows.reduce<string[]>((acc, row) => {
if ([...requiredFields].every(field => (row)[field] !== undefined)) {
row.posse_de_bola = !row.posse_de_bola ? 'NULL' : `"${row.posse_de_bola}"`;
row.precisao_passes = !row.precisao_passes ? 'NULL' : `"${row.precisao_passes}"`;
row.posse_de_bola = row.posse_de_bola == '\"None\"' ? 'NULL' : `${row.posse_de_bola}`;
row.precisao_passes = row.precisao_passes == '\"None\"' ? 'NULL' : `${row.precisao_passes}`;
const id = SQLConstructor.clubeMap.get(row.clube);
acc.push(`\t(NULL, ${row.partida_id}, ${id}, ${row.rodata}, "${row.clube}", ${row.chutes}, ${row.chutes_no_alvo}, ${row.posse_de_bola}, ${row.passes}, ${row.precisao_passes}, ${row.faltas}, ${row.cartao_amarelo}, ${row.cartao_vermelho}, ${row.impedimentos}, ${row.escanteios})`);
}
return acc;
}, []).join(',\n') + ';';
const sqlPath = resolve('./sql/insert_estatisticas.sql');
writeFileSync(sqlPath, sql);
}
public static createClube() {
const csvPath = resolve('./data/campeonato-brasileiro-full.csv');
const content = readFileSync(csvPath, { encoding: 'utf-8' });
const rows = SQLConstructor.parseCSV<partidaData>(content);
const requiredFields = new Set(['ID', 'rodata', 'data', 'hora', 'mandante', 'visitante', 'formacao_mandante', 'formacao_visitante', 'tecnico_mandante', 'tecnico_visitante', 'vencedor', 'arena', 'mandante_Placar', 'visitante_Placar', 'mandante_Estado', 'visitante_Estado']);
let sql = `SET GLOBAL net_buffer_length = 1000000;\nSET GLOBAL max_allowed_packet = 1000000000;\n\nUSE brasileirao;\n\n`;
sql += `INSERT INTO clubes (id_clube, nome, estado)\nVALUES\n` +
rows.reduce<string[]>((acc, row) => {
if ([...requiredFields].every(field => (row)[field] !== undefined)) {
if (!acc.some(clube => clube.includes(row.visitante))) {
const id = SQLConstructor.clubeIdCounter++;
SQLConstructor.clubeMap.set(row.visitante, id);
acc.push(`\t(${id}, "${row.visitante}", "${row.visitante_Estado}")`);
}
}
return acc;
}, []).join(',\n') + ';';
const sqlPath = resolve('./sql/insert_clubes.sql');
writeFileSync(sqlPath, sql);
}
}
(() => {
SQLConstructor.createPartida();
SQLConstructor.createClube();
SQLConstructor.createGols();
SQLConstructor.createCartoes();
SQLConstructor.createEstatisticas();
})();