-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmd.go
308 lines (281 loc) · 8.11 KB
/
cmd.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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
package main
import (
"encoding/csv"
"encoding/json"
"fmt"
"os"
"path/filepath"
"time"
"github.com/rs/zerolog"
"github.com/urfave/cli/v2"
"github.com/xuri/excelize/v2"
)
var (
DiffFiles = cli.Command{
Name: "process",
Aliases: []string{"p"},
Usage: "Process files in a directory and compare with JSON log",
Flags: []cli.Flag{
&cli.StringFlag{
Name: "source",
Usage: "Path to the data JSON file to read",
},
&cli.StringFlag{
Name: "config",
Usage: "Path to the config JSON file",
},
&cli.StringFlag{
Name: "year",
Usage: "Year for the directory to scan for files",
},
&cli.StringFlag{
Name: "output",
Usage: "Path to save the output JSON file",
},
},
Action: func(c *cli.Context) error {
baseOutputPath := os.Getenv("OUTPUT_DIR")
offersBaseDir := os.Getenv("OFFERS_BASE_DIR")
jsonPath := c.String("source")
configPath := c.String("config")
yearToSearch := c.String("year")
outputPath := filepath.Join(baseOutputPath, c.String("output"))
dirPath := filepath.Clean(offersBaseDir + "\\" + yearToSearch)
if configPath == "" {
return cli.Exit("Se requiere el parámetro --config", 1)
}
if jsonPath == "" && dirPath == "" {
return cli.Exit("Se requiere al menos uno de los parámetros --file o --year", 1)
}
// Leer y parsear el archivo JSON de configuración
configData, err := os.ReadFile(configPath)
if err != nil {
return cli.Exit(fmt.Sprintf("No se pudo leer el archivo JSON: %v", err), 1)
}
var fieldConfigs map[string]FieldConfig
if err := json.Unmarshal(configData, &fieldConfigs); err != nil {
return cli.Exit(fmt.Sprintf("No se pudo parsear el archivo JSON: %v", err), 1)
}
newFiles, err := compareAndPrompt(jsonPath, dirPath)
if err != nil {
return err
}
if len(newFiles) > 0 {
// Process the new files
var results []Output
for _, file := range newFiles {
// Your existing processing function
output, err := processFile(file, fieldConfigs)
if err != nil {
logger.Error().Err(err).Str("file", file).Msg("Problemas al leer el fichero.")
continue
}
results = append(results, output)
}
// Save results to JSON
if err := saveToJSON(results, outputPath); err != nil {
return err
}
}
return nil
},
}
CountFiles = cli.Command{
Name: "count",
Aliases: []string{"c"},
Action: func(c *cli.Context) error {
offersBaseDir := os.Getenv("OFFERS_BASE_DIR")
dirPath := filepath.Clean(offersBaseDir)
results, _ := countExcelFiles(dirPath)
for _, v := range results {
fmt.Println(v)
}
return nil
},
}
CountAndListFiles = cli.Command{
Name: "count-and-list",
Aliases: []string{"cl"},
Action: func(c *cli.Context) error {
offersBaseDir := os.Getenv("OFFERS_BASE_DIR")
dirPath := filepath.Clean(offersBaseDir)
files, _ := collectExcelFiles(dirPath)
csvFile, err := os.Create("files.csv")
if err != nil {
logger.Fatal().Err(err).Msg("failed creating file")
}
defer csvFile.Close()
csvwriter := csv.NewWriter(csvFile)
defer csvwriter.Flush()
var data [][]string
for _, v := range files {
row := []string{v}
data = append(data, row)
}
csvwriter.WriteAll(data)
return nil
},
}
ReadSheetTest = cli.Command{
Name: "test",
Aliases: []string{"t"},
Flags: []cli.Flag{
&cli.StringFlag{
Name: "file",
Usage: "Ruta del archivo Excel",
Required: true,
},
},
Action: func(c *cli.Context) error {
fichero, err := excelize.OpenFile(c.String("file"))
if err != nil {
logger.Error().Err(err).Msg("error al abrir fichero")
}
ficha, err := findSheetByRegex(fichero, "(?i)FICHA")
if err != nil {
logger.Error().Err(err).Msg("error al encontrar ficha")
}
logger.Info().Msg(ficha)
return nil
},
}
GetNewFiles = cli.Command{
Name: "get",
Aliases: []string{"g"},
Action: func(c *cli.Context) error {
logger.Info().Msg("New function!")
return nil
},
}
ReadFiles = cli.Command{
Name: "read",
Aliases: []string{"r"},
Flags: []cli.Flag{
&cli.StringFlag{
Name: "file",
Usage: "Ruta del archivo Excel",
Required: false,
},
&cli.StringFlag{
Name: "config",
Usage: "Ruta del archivo JSON con la configuración de campos",
Value: "cell_addressses.json",
Required: true,
},
&cli.StringFlag{
Name: "year",
Usage: "Año de las ofertas que quieres buscar",
Required: false,
},
&cli.IntFlag{
Name: "max",
Usage: "Maximo numero de ficheros a analizar",
Required: false,
},
&cli.StringFlag{
Name: "output",
Usage: "Ruta del archivo de salida JSON",
Required: false,
},
&cli.BoolFlag{
Name: "debug",
Usage: "Mostrar los contenidos obtenidos de los ficheros",
Required: false,
},
},
Action: func(c *cli.Context) error {
baseOutputPath := os.Getenv("OUTPUT_DIR")
offersBaseDir := os.Getenv("OFFERS_BASE_DIR")
initTime := time.Now()
configPath := c.String("config")
filePath := c.String("file")
yearToSearch := c.String("year")
dirPath := filepath.Clean(offersBaseDir + "\\" + yearToSearch)
maxFiles := c.Int("max")
outputPath := filepath.Join(baseOutputPath, c.String("output"))
debugFlag := c.Bool("debug")
if debugFlag {
logger = logger.Level(zerolog.DebugLevel)
}
if configPath == "" {
return cli.Exit("Se requiere el parámetro --config", 1)
}
if filePath == "" && dirPath == "" {
return cli.Exit("Se requiere al menos uno de los parámetros --file o --dir", 1)
}
// Leer y parsear el archivo JSON de configuración
configData, err := os.ReadFile(configPath)
if err != nil {
return cli.Exit(fmt.Sprintf("No se pudo leer el archivo JSON: %v", err), 1)
}
var fieldConfigs map[string]FieldConfig
if err := json.Unmarshal(configData, &fieldConfigs); err != nil {
return cli.Exit(fmt.Sprintf("No se pudo parsear el archivo JSON: %v", err), 1)
}
if len(c.String("output")) > 0 {
// crear carpeta si no existe
if err := ensureDirectory(baseOutputPath); err != nil {
logger.Fatal().Err(err).Str("baseOutputPath", baseOutputPath).Msg("Problema al crear la carpeta destino del output")
return err
}
}
var results []Output
// Procesar un único archivo si se proporciona
if filePath != "" {
output, err := processFile(filePath, fieldConfigs)
if err != nil {
return cli.Exit(fmt.Sprintf("Error procesando el archivo %s: %v", filePath, err), 1)
}
if debugFlag {
fmt.Println(output)
}
results = append(results, output)
}
// Recursively process all Excel files in the specified directory
if yearToSearch != "" {
excelFiles, err := collectExcelFiles(dirPath)
if err != nil {
return cli.Exit(fmt.Sprintf("Failed to read directory: %v", err), 1)
}
fmt.Printf("Se encontraron %d archivos Excel en el directorio %s\n", len(excelFiles), dirPath)
for i, path := range excelFiles {
logger.Info().Int("current_count", i+1).Int("max_count", maxFiles).Int("total_count", len(excelFiles)).Str("search_path", path).Msg("Procesando archivo...")
output, err := processFile(path, fieldConfigs)
if err != nil {
logger.Error().Str("path", path).Err(err).Msg("Error processing file")
continue
}
if debugFlag {
fmt.Println(output)
}
results = append(results, output)
if (i + 1) == maxFiles {
logger.Warn().Int("max_count", maxFiles).Msg("Se ha llegado al numero maximo de ficheros")
break
}
}
}
// Escribir resultados acumulados en un archivo JSON
if len(c.String("output")) > 0 {
saveToJSON(results, outputPath)
}
fmt.Printf("Ejecución completada en %f segundos\n", time.Since(initTime).Seconds())
return nil
},
}
)
func createCLI() *cli.App {
// retrieve the cli
app := cli.NewApp()
app.Name = "Excel Processor"
app.Usage = "Procesa archivos Excel para extraer datos basados en configuraciones JSON"
app.Commands = []*cli.Command{
&CountFiles,
&CountAndListFiles,
&ReadFiles,
&GetNewFiles,
&DiffFiles,
&ReadSheetTest,
}
return app
}