-
Notifications
You must be signed in to change notification settings - Fork 1
/
crawler.go
207 lines (182 loc) · 7.34 KB
/
crawler.go
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
package main
import (
"context"
"fmt"
"log"
"os"
"path/filepath"
"strings"
"time"
"github.com/chromedp/cdproto/browser"
"github.com/chromedp/chromedp"
"github.com/dadosjusbr/status"
)
type crawler struct {
collectionTimeout time.Duration
timeBetweenSteps time.Duration
year string
month string
output string
}
func (c crawler) crawl() ([]string, error) {
// Chromedp setup.
log.SetOutput(os.Stderr) // Enviando logs para o stderr para não afetar a execução do coletor.
alloc, allocCancel := chromedp.NewExecAllocator(
context.Background(),
append(chromedp.DefaultExecAllocatorOptions[:],
chromedp.Flag("headless", true), // mude para false para executar com navegador visível.
chromedp.Flag("ignore-certificate-errors", "1"),
chromedp.NoSandbox,
chromedp.DisableGPU,
)...,
)
defer allocCancel()
ctx, cancel := chromedp.NewContext(
alloc,
chromedp.WithLogf(log.Printf), // remover comentário para depurar
)
defer cancel()
ctx, cancel = context.WithTimeout(ctx, c.collectionTimeout)
defer cancel()
// NOTA IMPORTANTE: os prefixos dos nomes dos arquivos tem que ser igual
// ao esperado no parser MPAM.
// Contracheque
log.Printf("Realizando seleção (%s/%s)...", c.month, c.year)
if err := c.abreCaixaDialogo(ctx, "contracheque"); err != nil {
status.ExitFromError(err)
}
log.Printf("Seleção realizada com sucesso!\n")
cqFname := c.downloadFilePath("contracheque")
log.Printf("Fazendo download do contracheque (%s)...", cqFname)
if err := c.exportaPlanilha(ctx, cqFname); err != nil {
status.ExitFromError(err)
}
log.Printf("Download realizado com sucesso!\n")
// Indenizações
log.Printf("Realizando seleção (%s/%s)...", c.month, c.year)
if err := c.abreCaixaDialogo(ctx, "indenizatorias"); err != nil {
status.ExitFromError(err)
}
log.Printf("Seleção realizada com sucesso!\n")
iFname := c.downloadFilePath("indenizatorias")
log.Printf("Fazendo download das indenizações (%s)...", iFname)
if err := c.exportaPlanilha(ctx, iFname); err != nil {
status.ExitFromError(err)
}
log.Printf("Download realizado com sucesso!\n")
// Retorna caminhos completos dos arquivos baixados.
return []string{cqFname, iFname}, nil
}
func (c crawler) downloadFilePath(prefix string) string {
return filepath.Join(c.output, fmt.Sprintf("membros-ativos-%s-%s-%s.xls", prefix, c.month, c.year))
}
func (c crawler) abreCaixaDialogo(ctx context.Context, tipo string) error {
var baseURL string
selectYear := `//*[@id="SC_data"]`
if tipo == "contracheque" {
baseURL = "https://contrachequetransparencia.mpam.mp.br/grid_VW_TRANSPARENCIA_GERAL/"
if err := chromedp.Run(ctx,
chromedp.Navigate(baseURL),
chromedp.Sleep(c.timeBetweenSteps),
// Seleciona ano
chromedp.SetValue(selectYear, fmt.Sprintf("%s/%s##@@%s/%s", c.month, c.year, c.month, c.year), chromedp.BySearch),
chromedp.Sleep(c.timeBetweenSteps),
// Seleciona mes
chromedp.SetValue(`//*[@id="SC_classificacao"]`, "MEMBROS ATIVOS##@@MEMBROS ATIVOS", chromedp.BySearch, chromedp.NodeVisible),
chromedp.Sleep(c.timeBetweenSteps),
// Busca
chromedp.Click(`//*[@id="sc_b_pesq_bot"]`, chromedp.BySearch, chromedp.NodeVisible),
chromedp.Sleep(c.timeBetweenSteps),
// Altera o diretório de download
browser.SetDownloadBehavior(browser.SetDownloadBehaviorBehaviorAllowAndName).
WithDownloadPath(c.output).
WithEventsEnabled(true),
); err != nil {
// Caso haja erro na coleta, verificamos se este erro é por não haver dados e retornamos status 4.
if strings.Contains(err.Error(), "could not set value on node") {
return status.NewError(status.DataUnavailable, fmt.Errorf("não há dados disponíveis de contracheques para %s/%s: %w", c.month, c.year, err))
} else {
return status.NewError(status.ConnectionError, fmt.Errorf("erro abrindo caixa da planilha de contracheque: %w", err))
}
}
} else {
baseURL = "https://contrachequetransparencia.mpam.mp.br/grid_TRANSPARENCIA_INDENIZACAO/"
if err := chromedp.Run(ctx,
chromedp.Navigate(baseURL),
chromedp.Sleep(c.timeBetweenSteps),
// Seleciona ano
chromedp.SetValue(selectYear, fmt.Sprintf("%s/%s##@@%s/%s", c.month, c.year, c.month, c.year), chromedp.BySearch),
chromedp.Sleep(c.timeBetweenSteps),
// Busca
chromedp.Click(`//*[@id="sc_b_pesq_bot"]`, chromedp.BySearch, chromedp.NodeVisible),
chromedp.Sleep(c.timeBetweenSteps),
// Altera o diretório de download
browser.SetDownloadBehavior(browser.SetDownloadBehaviorBehaviorAllowAndName).
WithDownloadPath(c.output).
WithEventsEnabled(true),
); err != nil {
// Caso haja erro na coleta, verificamos se este erro é por não haver dados e retornamos status 4.
if strings.Contains(err.Error(), "could not set value on node") {
return status.NewError(status.DataUnavailable, fmt.Errorf("não há dados disponíveis de indenizações para %s/%s: %w", c.month, c.year, err))
} else {
return status.NewError(status.ConnectionError, fmt.Errorf("erro abrindo caixa da planilha de verbas indenizatorias: %w", err))
}
}
}
return nil
}
// exportaPlanilha clica no botão correto para exportar para excel, espera um tempo para download renomeia o arquivo.
func (c crawler) exportaPlanilha(ctx context.Context, fName string) error {
tctx, tcancel := context.WithTimeout(ctx, 30*time.Second)
defer tcancel()
if err := chromedp.Run(tctx,
// Clica no botão de download
chromedp.Click(`//*[@id="sc_btgp_btn_group_1_top"]`, chromedp.BySearch, chromedp.NodeVisible),
chromedp.Sleep(c.timeBetweenSteps),
); err != nil {
return status.NewError(status.DataUnavailable, fmt.Errorf("não há dados disponíveis"))
}
if err := chromedp.Run(ctx,
chromedp.Click(`//*[@id="xls_top"]`, chromedp.BySearch, chromedp.NodeVisible),
chromedp.Sleep(c.timeBetweenSteps),
chromedp.Click(`//*[@id="idBtnDown"]`, chromedp.BySearch, chromedp.NodeVisible),
chromedp.Sleep(c.timeBetweenSteps),
); err != nil {
return status.NewError(status.ConnectionError, fmt.Errorf("falha no download: %w", err))
}
if err := nomeiaDownload(c.output, fName); err != nil {
return status.NewError(status.SystemError, fmt.Errorf("erro renomeando arquivo (%s): %w", fName, err))
}
if _, err := os.Stat(fName); os.IsNotExist(err) {
return status.NewError(status.SystemError, fmt.Errorf("download do arquivo de %s não realizado: %w", fName, err))
}
return nil
}
// nomeiaDownload dá um nome ao último arquivo modificado dentro do diretório
// passado como parâmetro nomeiaDownload dá pega um arquivo
func nomeiaDownload(output, fName string) error {
// Identifica qual foi o ultimo arquivo
files, err := os.ReadDir(output)
if err != nil {
return status.NewError(status.SystemError, fmt.Errorf("erro lendo diretório %s: %w", output, err))
}
var newestFPath string
var newestTime int64 = 0
for _, f := range files {
fPath := filepath.Join(output, f.Name())
fi, err := os.Stat(fPath)
if err != nil {
return status.NewError(status.SystemError, fmt.Errorf("erro obtendo informações sobre arquivo %s: %w", fPath, err))
}
currTime := fi.ModTime().Unix()
if currTime > newestTime {
newestTime = currTime
newestFPath = fPath
}
}
// Renomeia o ultimo arquivo modificado.
if err := os.Rename(newestFPath, fName); err != nil {
return status.NewError(status.SystemError, fmt.Errorf("erro renomeando último arquivo modificado (%s)->(%s): %w", newestFPath, fName, err))
}
return nil
}