-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcrawler.go
195 lines (172 loc) · 6.05 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
package main
import (
"context"
"fmt"
"log"
"os"
"path/filepath"
"strings"
"time"
"github.com/chromedp/cdproto/browser"
"github.com/chromedp/chromedp"
)
type crawler struct {
collectionTimeout time.Duration
timeBetweenSteps time.Duration
downloadTimeout time.Duration
year string
month string
output string
}
const (
STATUS_DATA_UNAVAILABLE = 4
)
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.NoSandbox,
chromedp.DisableGPU,
chromedp.UserAgent("Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Mobile Safari/537.36"),
)...,
)
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 MPAP.
// Contracheque
log.Printf("Realizando seleção (%s/%s)...", c.month, c.year)
if err := c.abreCaixaDialogo(ctx, "contra"); err != nil {
if strings.Contains(err.Error(), "could not set value on node") {
fmt.Fprintf(os.Stderr, "Erro no setup: Contracheque não disponível")
os.Exit(STATUS_DATA_UNAVAILABLE)
} else {
log.Fatalf("Erro no setup:%v", 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 {
log.Fatalf("Erro fazendo download do contracheque: %v", err)
}
log.Printf("Download realizado com sucesso!\n")
// Indenizações
var erro error
erro = nil
if c.year != "2018" {
log.Printf("Realizando seleção (%s/%s)...", c.month, c.year)
if err := c.abreCaixaDialogo(ctx, "inde"); err != nil {
if strings.Contains(err.Error(), "could not set value on node") {
log.Printf("Indenizações não disponíveis")
erro = err
} else {
log.Fatalf("Erro no setup:%v", err)
}
}
if erro == nil {
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 {
log.Fatalf("Erro fazendo download dos indenizações: %v", err)
}
log.Printf("Download realizado com sucesso!\n")
// Retorna caminhos completos dos arquivos baixados.
return []string{cqFname, iFname}, nil
}
}
// Retorna caminhos completos dos arquivos baixados.
return []string{cqFname}, 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
var selectYear string
if tipo == "contra" {
baseURL = "https://portal.mpap.mp.br/transparencia/index.php?pg=consulta_folha_membros_ativos"
selectYear = `//*[@id="ano"]`
} else {
baseURL = "https://portal.mpap.mp.br/transparencia/index.php?pg=consulta_verbas_indenizatorias"
selectYear = `//*[@id="ano_verbas"]`
}
return chromedp.Run(ctx,
chromedp.Navigate(baseURL),
chromedp.Sleep(c.timeBetweenSteps),
// Seleciona ano
chromedp.SetValue(selectYear, c.year, chromedp.BySearch),
chromedp.Sleep(c.timeBetweenSteps),
// Seleciona mes
chromedp.SetValue(`//*[@id="mes"]`, strings.TrimPrefix(c.month, "0"), chromedp.BySearch, chromedp.NodeVisible),
chromedp.Sleep(c.timeBetweenSteps),
// Busca
chromedp.Click(`//*[@id="enviar"]`, chromedp.BySearch, chromedp.NodeVisible),
chromedp.Sleep(c.timeBetweenSteps),
// Altera o diretório de download
browser.SetDownloadBehavior(browser.SetDownloadBehaviorBehaviorAllowAndName).
WithDownloadPath(c.output).
WithEventsEnabled(true),
)
}
// 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 {
if strings.Contains(fName, "contracheque") {
chromedp.Run(ctx,
// Clica no botão de download
chromedp.Click(`/html/body/div[1]/center/div/fieldset/div[3]/form/button[2]`, chromedp.BySearch, chromedp.NodeVisible),
chromedp.Sleep(c.downloadTimeout),
)
} else {
chromedp.Run(ctx,
// Clica no botão de download
chromedp.Click(`/html/body/div[1]/center/div/fieldset/div/form/button[2]`, chromedp.BySearch, chromedp.NodeVisible),
chromedp.Sleep(c.downloadTimeout),
)
}
if err := nomeiaDownload(c.output, fName); err != nil {
return fmt.Errorf("erro renomeando arquivo (%s): %v", fName, err)
}
if _, err := os.Stat(fName); os.IsNotExist(err) {
return fmt.Errorf("download do arquivo de %s não realizado", fName)
}
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 fmt.Errorf("erro lendo diretório %s: %v", 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 fmt.Errorf("erro obtendo informações sobre arquivo %s: %v", 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 fmt.Errorf("erro renomeando último arquivo modificado (%s)->(%s): %v", newestFPath, fName, err)
}
return nil
}