floriday/floriday.js

73 lines
1.7 KiB
JavaScript

import * as utils from './utils.js';
import { models, checkConn, closeConn } from './models/index.js';
import moment from 'moment';
import chalk from 'chalk';
// Añade la hora a todos los console.log
// console.log = (...args) => console.info(`${new moment().format('HH:mm:ss')} -`, ...args);
const env = process.env;
class Floriday {
async start() {
try {
await utils.checkConfig();
this.tokenExpirationDate = await utils.requestToken(models);
if (JSON.parse(env.SYNC_SEQUENCE)) await utils.syncSequence();
if (JSON.parse(env.SYNC_SUPPLIER)) await utils.syncSuppliers();
if (JSON.parse(env.SYNC_CONN)) await utils.syncConn();
if (JSON.parse(env.SYNC_TRADEITEM)) await utils.syncTradeItems();
} catch (err) {
utils.criticalError(err);
}
await this.trunk();
}
async tryConn() {
try {
utils.sleep(env.DB_TIMEOUT_RECONECT);
await checkConn();
await this.schedule();
}
catch (err) {
throw new Error(err);
}
}
async schedule () {
try {
const intervalTime = JSON.parse(env.IS_PRODUCTION)
? env.MS_PRODUCTION_SCHEDULE
: env.MS_TEST_SCHEDULE;
setInterval(async () => {
try {
await this.trunk();
}
catch (err) {
await this.tryConn();
}
}, intervalTime);
} catch (err) {
throw new Error(err);
}
}
async trunk() {
try{
if (moment().isAfter(await utils.getCurrentTokenExpiration())) {
this.tokenExpirationDate = await utils.requestToken(models);
}
await utils.syncSupplyLines();
// Continuar con todo lo que haga falta realizar en la rutina
} catch (err) {
throw new Error(err);
}
}
async stop() {
await closeConn();
console.log(chalk.dim('Bye, come back soon 👋'))
}
}
export default Floriday;