-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcorrectCompanyData.js
More file actions
422 lines (392 loc) · 11.4 KB
/
Copy pathcorrectCompanyData.js
File metadata and controls
422 lines (392 loc) · 11.4 KB
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
// D:\contask_v2\contask_api\correctCompanyData.js
require("dotenv").config(); // Carrega as variáveis de ambiente
const { Sequelize, DataTypes, Op } = require("sequelize");
const axios = require("axios");
const path = require("path");
// --- Configuração do Logger (copiado e adaptado de logger/logger.js) ---
const winston = require("winston");
require("winston-daily-rotate-file");
const levels = {
error: 0,
warn: 1,
info: 2,
debug: 3, // Usaremos debug para logs mais detalhados do script
};
const colors = {
error: "red",
warn: "yellow",
info: "green",
debug: "white",
};
winston.addColors(colors);
const formatLog = winston.format.combine(
winston.format.timestamp({ format: "YYYY-MM-DD HH:mm:ss" }),
winston.format.printf(
(info) => `${info.timestamp} [${info.level.toUpperCase()}]: ${info.message}`
)
);
const scriptLogger = winston.createLogger({
levels,
format: formatLog,
transports: [
new winston.transports.Console({
level: "debug", // Mostrar tudo no console
format: winston.format.combine(winston.format.colorize(), formatLog),
}),
new winston.transports.DailyRotateFile({
// Opcional: logar para arquivo também
level: "info",
filename: "logs/script-correction-%DATE%.log",
datePattern: "YYYY-MM-DD",
zippedArchive: true,
maxSize: "10m",
maxFiles: "7d",
}),
new winston.transports.DailyRotateFile({
level: "error",
filename: "logs/script-correction-error-%DATE%.log",
datePattern: "YYYY-MM-DD",
zippedArchive: true,
maxSize: "10m",
maxFiles: "7d",
}),
],
exitOnError: false,
});
// --- Fim da Configuração do Logger ---
// --- Configuração do Banco de Dados (copiado e adaptado de db/conn.js) ---
const sequelize = new Sequelize(
process.env.DB_NAME,
process.env.DB_USER,
process.env.DB_PASSWORD,
{
host: process.env.DB_HOST,
dialect: process.env.DB_DIALECT,
logging: (msg) => scriptLogger.debug(msg), // Opcional: logar as queries do Sequelize
}
);
try {
sequelize.authenticate();
scriptLogger.info("Conexão com o banco de dados realizada com sucesso.");
} catch (err) {
scriptLogger.error(
`Ocorreu um erro ao conectar no banco de dados: ${err.message}`,
{ stack: err.stack }
);
process.exit(1); // Encerra o script se não conseguir conectar ao DB
}
// --- Definição do Modelo Company (essencial para o script) ---
// Copie apenas o modelo Company, já que é o único que o script precisa interagir diretamente.
const Company = sequelize.define(
"Company",
{
num: {
type: DataTypes.STRING,
allowNull: false,
},
name: {
type: DataTypes.STRING,
allowNull: false,
},
cnpj: {
type: DataTypes.STRING,
allowNull: false,
},
ie: {
type: DataTypes.STRING,
allowNull: false,
},
rule: {
type: DataTypes.STRING,
allowNull: false,
},
classi: {
type: DataTypes.STRING,
allowNull: false,
},
contractInit: {
type: DataTypes.STRING,
allowNull: true,
},
contact: {
type: DataTypes.STRING,
allowNull: true,
},
email: {
type: DataTypes.STRING,
allowNull: false,
},
phone: {
type: DataTypes.STRING,
allowNull: true,
},
status: {
type: DataTypes.STRING,
allowNull: false,
},
statusUpdatedAt: {
type: DataTypes.DATE,
allowNull: false,
defaultValue: DataTypes.NOW,
},
respFiscalId: {
type: DataTypes.INTEGER,
allowNull: true,
},
respDpId: {
type: DataTypes.INTEGER,
allowNull: true,
},
respContabilId: {
type: DataTypes.INTEGER,
allowNull: true,
},
contactModeId: {
type: DataTypes.INTEGER,
allowNull: true,
},
important_info: {
type: DataTypes.TEXT,
allowNull: true,
},
openedByUs: {
type: DataTypes.BOOLEAN,
},
uf: {
type: DataTypes.STRING,
allowNull: true,
},
obs: {
type: DataTypes.STRING,
allowNull: true,
},
isArchived: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
branchNumber: {
type: DataTypes.STRING,
allowNull: true,
},
sentToClient: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
declarationsCompleted: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
bonusValue: {
type: DataTypes.INTEGER,
allowNull: true,
},
employeesCount: {
type: DataTypes.INTEGER,
allowNull: true,
},
isZeroed: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
isHeadquarters: {
// NOVO CAMPO: isHeadquarters
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
},
{
timestamps: true,
}
);
// --- Fim da Definição do Modelo Company ---
// --- Função para consultar Brasil API (copiada de services/brasilApi.js) ---
const BRASIL_API_BASE_URL = "https://brasilapi.com.br/api";
const getCnpjData = async (cnpj) => {
try {
const cleanCnpj = cnpj.replace(/[^\d]/g, "");
if (cleanCnpj.length !== 14) {
scriptLogger.warn(`CNPJ inválido para consulta na Brasil API: ${cnpj}`);
return null;
}
const url = `${BRASIL_API_BASE_URL}/cnpj/v1/${cleanCnpj}`;
scriptLogger.debug(`Consultando Brasil API para CNPJ: ${cleanCnpj}`);
const response = await axios.get(url, { timeout: 15000 }); // Aumentei o timeout para 15s por segurança
if (response.status === 200) {
scriptLogger.debug(`Dados do CNPJ ${cleanCnpj} consultados com sucesso.`);
return response.data;
} else {
scriptLogger.warn(
`Erro na Brasil API para CNPJ ${cleanCnpj}: Status ${response.status}`
);
return null;
}
} catch (error) {
if (error.response) {
scriptLogger.error(
`Erro na resposta da Brasil API para CNPJ ${cnpj}: Status ${
error.response.status
}, Data: ${JSON.stringify(error.response.data)}`
);
} else if (error.request) {
scriptLogger.error(
`Nenhuma resposta da Brasil API para CNPJ ${cnpj} dentro do tempo limite: ${error.message}`
);
} else {
scriptLogger.error(
`Erro ao configurar requisição para Brasil API (CNPJ: ${cnpj}): ${error.message}`
);
}
return null;
}
};
// --- Fim da Função para consultar Brasil API ---
// --- Lógica Principal do Script ---
const correctCompanyData = async () => {
scriptLogger.info(
"Iniciando a correção em massa de dados de empresas via Brasil API."
);
let updatedCount = 0;
let errorCount = 0;
let skippedCount = 0;
const errors = [];
const updatedCompaniesDetails = [];
try {
// Sincroniza o modelo com o banco de dados (garante que a tabela existe)
// Usar force: false e alter: true com cautela em produção, mas para um script único pode ser útil para garantir o modelo
await sequelize.sync({ force: false, alter: false }); // Buscar todas as empresas que não estão arquivadas
const companies = await Company.findAll({
where: { isArchived: false },
attributes: ["id", "name", "cnpj", "uf"], // Selecionar apenas os campos necessários
});
if (companies.length === 0) {
scriptLogger.info("Nenhuma empresa encontrada para correção de dados.");
return {
updatedCount: 0,
errorCount: 0,
skippedCount: 0,
updatedCompaniesDetails: [],
errors: [],
};
}
scriptLogger.info(
`Total de ${companies.length} empresas não arquivadas encontradas para processamento.`
);
for (const company of companies) {
try {
scriptLogger.debug(
`Processando empresa ID: ${company.id}, CNPJ: ${company.cnpj}`
);
const cnpjData = await getCnpjData(company.cnpj);
if (cnpjData) {
const newUf = cnpjData.uf;
const newName = cnpjData.razao_social;
let needsUpdate = false;
const updates = {};
const oldValues = {};
if (newUf && company.uf !== newUf) {
updates.uf = newUf;
oldValues.uf = company.uf;
needsUpdate = true;
}
if (newName && company.name !== newName) {
updates.name = newName;
oldValues.name = company.name;
needsUpdate = true;
}
if (needsUpdate) {
await Company.update(updates, { where: { id: company.id } });
updatedCount++;
updatedCompaniesDetails.push({
id: company.id,
cnpj: company.cnpj,
oldName: oldValues.name || company.name,
newName: updates.name || company.name,
oldUf: oldValues.uf || company.uf,
newUf: updates.uf || company.uf,
});
scriptLogger.info(
`Empresa ID ${company.id} (${
company.cnpj
}) atualizada. Mudanças: ${JSON.stringify(updates)}`
);
} else {
skippedCount++;
scriptLogger.debug(
`Empresa ID ${company.id} (${company.cnpj}): Nenhuma atualização necessária.`
);
}
} else {
errorCount++;
errors.push({
companyId: company.id,
cnpj: company.cnpj,
message: "Não foi possível obter dados da Brasil API.",
});
}
await new Promise((resolve) => setTimeout(resolve, 1000)); // Pequeno delay para não sobrecarregar a API
} catch (innerError) {
errorCount++;
errors.push({
companyId: company.id,
cnpj: company.cnpj,
message: innerError.message,
});
scriptLogger.error(
`Erro ao processar empresa ID ${company.id} (${company.cnpj}): ${innerError.message}`
);
}
}
scriptLogger.info(`--- Processo de correção em massa concluído ---`);
scriptLogger.info(`Empresas atualizadas: ${updatedCount}`);
scriptLogger.info(`Empresas com erro: ${errorCount}`);
scriptLogger.info(`Empresas puladas (já corretas): ${skippedCount}`);
if (updatedCount > 0) {
scriptLogger.info("Detalhes das empresas atualizadas:");
updatedCompaniesDetails.forEach((detail) => {
scriptLogger.info(
` ID: ${detail.id}, CNPJ: ${detail.cnpj}, Nome: '${detail.oldName}' -> '${detail.newName}', UF: '${detail.oldUf}' -> '${detail.newUf}'`
);
});
}
if (errorCount > 0) {
scriptLogger.warn("Detalhes dos erros:");
errors.forEach((err) => {
scriptLogger.error(
` Empresa ID: ${err.companyId}, CNPJ: ${err.cnpj}, Erro: ${err.message}`
);
});
}
return {
updatedCount,
errorCount,
skippedCount,
updatedCompaniesDetails,
errors,
fatalError: mainError.message,
};
} catch (mainError) {
scriptLogger.error(
`Erro fatal no script de correção de dados: ${mainError.message}`,
{ stack: mainError.stack }
);
return {
updatedCount,
errorCount,
skippedCount,
updatedCompaniesDetails,
errors,
fatalError: mainError.message,
};
} finally {
await sequelize.close(); // Fechar a conexão com o banco de dados
scriptLogger.info("Conexão com o banco de dados fechada.");
process.exit(0); // Encerra o processo Node.js
}
};
// Executar o script
correctCompanyData();