-
Notifications
You must be signed in to change notification settings - Fork 1
/
server.js
464 lines (386 loc) · 15.1 KB
/
server.js
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
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
var d = require('domain').create();
d.on('error', function (er) {
//Imprimir el error por consola
console.log('----ERROR----');
console.error(er.message);
console.error(er.stack);
// Declarar la variable express
var express = require('express'),
app = express(),
config = require('./config').init(app),
db = require('monk')(config.DB_URL, config.serverOptions);
// Objeto que almacena la informacion del error
var error = {
fecha: new Date(),
mensaje: er.message,
stack: er.stack
};
// Almacenar el error en la base de datos.
db.get('LOGERROR').insert(error, function (err) {
if (err) {
//Poner error en archivo log-dia
var fs = require('fs');
var urlfs = __dirname + "/log/log-" + new Date().getFullYear() + "-" + (parseInt(new Date().getMonth()) + 1) + "-" + new Date().getDate() + ".txt";
var txtError = "Fecha: " + error.fecha + ", Mensaje: " + error.mensaje + ", Stack: " + error.stack + "\n";
fs.appendFile(urlfs, txtError, function (err) {
if (err) {
console.log(err);
} else {
console.log("The log was saved in " + urlfs);
}
});
}
});
});
d.run(function () {
var express = require('express'),
users = require('./controllers/users'),
campana = require('./controllers/campana'),
usuario = require('./controllers/usuario'),
dashboard = require('./controllers/dashboard'),
mantenimiento = require('./controllers/mantenimiento'),
gestiones = require('./controllers/gestiones'),
util = require('./controllers/util'),
jwt = require('jsonwebtoken'),
auth = require('express-jwt'),
http = require('http'),
validator = require('express-validator'),
cron = require('cron').CronJob,
path = require('path'),
app = express(),
config = require('./config').init(app),
db = require('monk')(config.DB_URL),
jLinq = require('jlinq'),
secret = "asd243131",
nodeSql = require('./controllers/nodeSql'),
MongoClient = require('mongodb').MongoClient,
clienteCampana = require('./controllers/clienteCampana'),
q = require('q');
app.configure(function () {
app.use(express.logger());
app.use(express.methodOverride());
app.use('/api', auth({
secret: secret
}));
app.use(express.json());
app.use(express.urlencoded());
app.use(validator());
app.use(app.router);
app.use(express.responseTime());
app.use(express.compress());
app.use(express.favicon());
app.use('/', express.static(path.join(__dirname, 'public/app')));
});
app.configure('development', function () {
app.use(express.errorHandler({
dumpExceptions: true,
showStack: true
}));
});
app.configure('testing', function () {
app.use(express.errorHandler());
});
app.configure('production', function () {
app.use(express.errorHandler());
});
//kmdc?sdsd;
//throw new Error('something bad happened');
//Test Error
/* app.post('/thtowAnError', mantenimiento.throwAnError(db));*/
//Util
app.post('/obtenerSecuencia', util.getSecuencia(db));
app.post('/util/secuencia', util.getSecuencia(db));
app.get('/obtenerListas', util.getListas(db));
app.post('/util/listas', util.getListas(db));
//Mantenimiento
app.post('/mantenimiento/buscarPorId', mantenimiento.buscarPorId(db));
app.post('/mantenimiento/new', mantenimiento.new(db));
app.post('/mantenimiento/delete', mantenimiento.delete(db));
app.post('/mantenimiento/update', mantenimiento.update(db));
app.post('/mantenimiento/upsert', mantenimiento.upsert(db));
app.post('/mantenimiento/search', mantenimiento.search(db));
app.post('/mantenimiento/count', mantenimiento.count(db));
//Gestiones
app.post('/gestiones/updClienteCamp', gestiones.updateOfficial(db));
app.post('/gestiones/buscarUsJerarquia', gestiones.getUsersHierarchy(db));
app.post('/gestiones/actualizarManager', gestiones.updateManagers(db));
//Parameters
//Tabla: name of the colletion
//limit: number of records
//skip: number of records to be skipped
//sort: object with the fields in which the query is going to be sorted
//filter: filter that is gonna be used, must be passed as a String
//search: a string that is going to be look in a set of fields
//fields: array of strings with the fields names that the 'search' attribute is going to be looked in
app.post('/mantenimiento/paginatedSearch', mantenimiento.paginatedSearch(db));
app.post('/api/mantenimiento/paginatedSearch', mantenimiento.paginatedSearch(db));
//Carga de Campana
app.post('/campana/process', campana.process(db));
//Dashboard
app.post('/api/dashboard/filtros', dashboard.filtros(db));
app.post('/api/dashboard', dashboard.getIndicators(config.DB_URL, db));
app.post('/api/dashboard/getTodayCalls', dashboard.getTodayCalls(db));
//ClienteCampana
app.post('/api/clientecampana/guardarOportunidad', clienteCampana.guardarOportunidad(db));
app.post('/api/clientecampana/guardarActividad', clienteCampana.guardarActividad(db));
//Prospectos
app.post('/api/prospectos/buscarPorId', function (req, res) {
where = req.body.query;
if (req.body.user.rol == "Administrador") {
where["usuarioId"] = {
$in: req.body.user.oficiales || []
};
where["usuarioId"].$in.push(req.body.user.usuarioId) ;
} else {
where["usuarioId"] = req.body.user.usuarioId;
}
db.get(req.body.tabla).findOne(where, function (err, obj) {
res.json(obj);
})
});
app.post('/api/prospectos/count', function (req, res) {
where = {};
if (req.body.user.rol == "Administrador") {
console.log('here')
where["oficialId"] = {
$in: req.body.user.oficiales || []
};
where["oficialId"].$in.push(req.body.user.usuarioId);
}
else {
where["oficialId"] = req.body.user.usuarioId;
}
db.get("CLIENTECAMPANA").count({
tasaDeContacto: {
$exists: req.body.contactado
},
oficialId: where["oficialId"]
},
function (err, campanas) {
res.json(campanas);
});
});
//Campañas
app.get('/campana/get', campana.getCampana(db));
app.post('/campana/getByID', campana.getCampanaByID(db));
app.post('/campana/getPendingProspects', campana.getPendingProspects(config.DB_URL, db));
//My SQL
app.post('/sql/LoadClient', nodeSql.executeQueryInsertClient(db));
app.post('/sql/loadOfficial', nodeSql.executeQueryInsertOfficial(db));
app.post('/sql/loadCampaign', nodeSql.executeQueryInsertCustomerCampaignQueries(db));
//Para ClienteCampaña
//var sqlCustomerCampaignQueries = ['SELECT * FROM clienteCampana order by clienteId, campanaId', 'SELECT * FROM ClienteCampanaOferta order by clienteId, campanaId'];
//nodeSql.executeQueryInsertCustomerCampaignQueries(db, sqlCustomerCampaignQueries, 'CLIENTECAMPANA' );// Para hacer pruebas
//Para los oficiales
//var sqlOfficialQueries = ['SELECT * FROM oficial'];
//nodeSql.executeQueryInsertOfficial(db, sqlOfficialQueries, 'USUARIO' );// Para hacer pruebas
//Para los clientes
// var sqlClientQueries = ['SELECT * FROM cliente where clienteid < 2000 order by clienteId', 'SELECT * from clienteTelefono where clienteid < 2000 order by clienteId','SELECT * FROM clienteProducto where clienteId < 2000 order by clienteId','SELECT * FROM clienteProductoSugerido where clienteId < 2000 order by clienteId'];
// nodeSql.executeQueryInsertClient(db, sqlClientQueries, 'CLIENTE' );// Para hacer pruebas
//nodeSql.executeQueryInsert(db, 'select * from clienteproducto;', 'CLIENTEPRODUCTO' );// Para cargar en la tabla CLIENTEPRODUCTO
//nodeSql.executeQueryInsert(db, 'select * from cliente;', 'CLIENTE' );// Para cargar en la tabla Cliente
//nodeSql.queryInsertPhones(db, 'select * from ClienteTelefono;', 'CLIENTE' );// Para cargar los telefonos a los clientes
//nodeSql.queryInsertPhones(db, 'select * from ClienteTelefono', 'testAriel' );// Para cargar los telefonos a los clientes
//nodeSql.executeQueryInsert(db, 'select * from cliente', 'testAriel' );// Para hacer pruebas
// var sqlQueries = ['SELECT * FROM cliente where clienteid < 800000 order by clienteId', 'SELECT * from clienteTelefono where clienteid < 800000 order by clienteId','SELECT * FROM clienteProducto where clienteId < 800000 order by clienteId','SELECT * FROM clienteProductoSugerido where clienteId < 800000 order by clienteId'];
// nodeSql.executeQueryInsertTest(db, sqlQueries, 'testAriel' );// Para hacer pruebas
//Usuarios
app.get('/usuario/listas', usuario.getListas(db));
app.get('/usuario/get', usuario.getUsuario(db));
app.post('/usuario/count', usuario.usuarioCount(db));
//-- ROUTES
app.get('/api/routes', function (req, res) {
res.send(app.routes);
});
app.post('/login', users.authenticate(db, secret, jwt));
app.post('/signup', users.signup(db)); //DONE
app.post('/api/profile', users.update(db));
app.get('/confirm/email/:token', users.confirmEmail(db)); //DONE
app.get('/api/profile', users.profile(db));
//app.get('/profile/:id/:token', users.profile);
//app.post('/account', isLoggedIn, users.validate, users.update);
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//***********************************************CRON****************************************
//Seconds: 0-59, Minutes: 0-59, Hours: 0-23, Day of Month: 1-31, Months: 0-11, Day of Week: 0-6
//new cron('00 00 23 * * *',
new cron('0 0 0 * * *',
function () {
console.log('[*] Cron job started');
console.log('[*] A las: ' + new Date().getHours() + ":" + new Date().getMinutes() + ":" + new Date().getSeconds());
console.log('[*] El dia: ' + new Date().getDate() + "/" + (parseInt(new Date().getMonth()) + 1) + "/" + new Date().getFullYear());
var settings = {},
campana = {},
// Arreglo de clientes que seran insertados en la coleccion ClienteCampana
clienteCampanaList = [],
// Arreglo de oficiales
officialList = [],
// Fecha de vencimiento con la cual se compararan las fecha de vencimiento de los productos.
dateToCompare = new Date(),
limit = 500000,
allPromises = [],
promises = [],
clientes = [],
group = 0,
tiempo = null,
promiseInsert = [];
db.get('CLIENTE_TEST').count({}, function (err, count) {
group = count / limit;
console.log('Count');
console.log('*****');
console.log(count);
console.log('*****');
console.log('Group');
console.log('*****');
console.log(group);
});
// Buscar los datos de la configuracion para saber el valor del ajuste de tasa
db.get('SETTINGS').findOne({
configId: 1
}, function (err, obj) {
settings = obj;
});
// Buscar la campana Ajuste de tasa
db.get('CAMPANA').findOne({
campanaId: 1
}, function (err, obj) {
campana = obj;
});
// Buscar todos los oficiales
db.get('USUARIO').find({}, function (err, obj) {
officialList = obj;
}).success(function () {
tiempo = new Date();
console.log('>>>>>>');
console.log('INICIO');
console.log(tiempo);
console.log('>>>>>>');
dateToCompare.setDate(dateToCompare.getDate() + settings.ajusteTasa.valor);
dateToCompare.setHours(0, 0, 0, 0);
MongoClient.connect("mongodb://" + config.DB_URL, function (err, dbm) {
var resolveClient = function (pLimit, pSkip) {
var deferred = q.defer();
dbm.collection('CLIENTE_TEST').aggregate([
{
$unwind: '$producto'
},
{
$skip: pSkip
},
{
$limit: pLimit
},
{
$match: {
'producto.vencimiento': dateToCompare
}
},
{
$project: {
clienteId: "$clienteId",
oficialId: "$oficialId",
producto: '$producto',
tipoIdentificacion: '$tipoIdentificacion',
codigoIdentificacion: '$codigoIdentificacion',
nombre: '$nombre',
segmento: '$segmento',
telefono: '$telefono'
}
}
], {}, function (err, clientes) {
deferred.resolve(clientes);
});
return deferred.promise;
};
for (var x = 0; x < group; x++) {
allPromises.push(resolveClient(limit, (x * limit)));
}
q.all(allPromises).then(function (results) {
tiempo = new Date();
console.log('>>>>>>');
console.log('Fin');
console.log(tiempo);
console.log('>>>>>>');
clientes = clientes.concat.apply(clientes, results);
for (var x in clientes) {
var clienteCampana = {};
clienteCampana.oficialId = clientes[x].oficialId;
clienteCampana.clienteId = clientes[x].clienteId;
clienteCampana.campanaId = campana.campanaId;
clienteCampana.productoId = clientes[x].producto.productoId;
clienteCampana.prioridad = 0;
clienteCampana.cliente = {
clienteId: clientes[x].clienteId,
tipoIdentificacion: clientes[x].tipoIdentificacion,
codigoIdentificacion: clientes[x].codigoIdentificacion,
nombreCompleto: clientes[x].nombre,
segmento: clientes[x].segmento,
telefono: clientes[x].telefono
};
clienteCampana.campana = campana;
clienteCampana.producto = clientes[x].producto;
clienteCampana.producto.vencimiento = new Date(clientes[x].producto.vencimiento);
clienteCampana.producto.vencimiento.setHours(0, 0, 0, 0);
clienteCampana.oferta = [];
clienteCampanaList.push(clienteCampana);
}
}).then(function () {
console.log('-');
console.log('/////////////////////////');
console.log('Setear el Oficial');
console.log('-----------------');
console.log('* clienteCampanaList.length');
console.log('*' + clienteCampanaList.length);
console.log('/////////////////////////');
// Setear el oficial del cliente
for (var x in clienteCampanaList) {
for (var y in officialList) {
if (clienteCampanaList[x].oficialId == officialList[y].usuarioId) {
clienteCampanaList[x].oficial = {
usuarioId: officialList[y].usuarioId,
usuarioRed: officialList[y].usuarioRed,
oficial: officialList[y].oficial,
zona: officialList[y].zona,
sucursal: officialList[y].sucursal
};
}
}
}
}).then(function () {
console.log('-');
console.log('/////////////////////////////');
console.log('Insertar en la base de datos:');
console.log('-----------------------------');
console.log('* clienteCampanaList.length');
console.log('* ' + clienteCampanaList.length);
/*db.get('CLIENTECAMPANA_TEST').insert(clienteCampanaList, {
w: 1
}, function (err, records) {
console.log('Datos insertados correctamente!');
console.log('* ERROR');
console.log(err);
console.log('/////////////////////////////');
});*/
/*var insertClients = function () {
var deferred = q.defer();
db.get('CLIENTECAMPANA_TEST').insert({}, function (err, resutl) {\
deferred.resolve(resutl);
});
return deferred.promise;
};
for (var x = 0; x < group; x++) {
promiseInsert.push(insertClients());
}
q.all(promiseInsert).then(function (results) {
});*/
});
});
});
}, null, true);
//routes testing
app.get('/usr/find/:name/:email', users.find(db));
http.createServer(app).listen(config.APP_PORT,
function () {
console.log("\n[*] Server Listening on port %d", config.APP_PORT);
}
);
});