-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathloadPayments.js
133 lines (122 loc) · 4.35 KB
/
loadPayments.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
/*
This script will pos payment objects to the accounts/{accountId}/pay endpoint.
The payload object must contain a _accountId property
*/
const fs = require('fs');
const superagent = require('superagent');
const winston = require('winston');
const readline = require('readline');
const path = require('path');
const { getAuthToken } = require('./lib/login');
let inFile = process.argv[2];
let debug = process.env.DEBUG;
let dolog = process.env.LOG;
(async () => {
try {
const start = new Date().valueOf();
if (!inFile) {
throw 'Usage: node loadPayments.js <jsonl_file>';
} else if (!fs.existsSync(inFile)) {
throw new Error('Can\'t find input file');
}
const config = (fs.existsSync('./config.js')) ? require('./config.js') : require('./config.default.js');
const workingDir = path.dirname(inFile);
const baseName = path.basename(inFile, '.jsonl');
const errPath = `${workingDir}/${baseName}Err.jsonl`;
const outPath = `${workingDir}/${baseName}Out.jsonl`;
const logPath = `${workingDir}/${baseName}.log`;
if (fs.existsSync(errPath)) {
fs.unlinkSync(errPath);
}
if (fs.existsSync(outPath)) {
fs.unlinkSync(outPath);
}
var logger;
if (config.logpath || dolog) {
const lpath = config.logpath;
const lname = inFile.replace(/.+\//, '');
const logFileName = (dolog) ? logPath : `${lpath}/${lname}.log`;
if (fs.existsSync(logFileName)) {
fs.unlinkSync(logFileName);
}
logger = winston.createLogger({
level: 'info',
format: winston.format.json(),
defaultMeta: { service: 'user-service' },
transports: [
new winston.transports.File({ filename: logFileName })
]
});
} else {
logger = console;
}
const authToken = await getAuthToken(superagent, config.okapi, config.tenant, config.authpath, config.username, config.password);
let success = 0;
let fail = 0;
const fileStream = fs.createReadStream(inFile);
const rl = readline.createInterface({
input: fileStream,
crlfDelay: Infinity
});
let x = 0;
for await (const line of rl) {
x++;
let rec = JSON.parse(line);
let accId = rec._accountId;
delete rec._accountId;
let lDate = new Date();
let actionUrl = `${config.okapi}/accounts/${accId}/pay`;
logger.info(`[${x}] ${lDate} POST ${rec.id} to ${actionUrl}`);
try {
let res = await superagent
.post(actionUrl)
.send(rec)
.set('x-okapi-token', authToken)
.set('content-type', 'application/json')
.set('accept', 'application/json');
logger.info(` Successfully added record id ${rec.id}`);
fs.writeFileSync(outPath, JSON.stringify(res.body) + '\n', { flag: 'a' });
success++;
} catch (e) {
let errMsg = (e.response && e.response.text && !debug) ? e.response.text : e;
logger.error(errMsg);
if (errMsg.match(/exceeds/)) {
try {
let url = `${config.okapi}/accounts/${accId}`;
let res = await superagent
.get(url)
.set('x-okapi-token', authToken);
let acc = res.body;
rec.amount = acc.remaining;
try {
console.log(`-----There was an overpayment, reducing the amount to ${rec.amount}----`);
let res = await superagent
.post(actionUrl)
.send(rec)
.set('x-okapi-token', authToken)
.set('content-type', 'application/json')
.set('accept', 'application/json');
logger.info(` Successfully added record id ${rec.id}`);
fs.writeFileSync(outPath, JSON.stringify(res.body) + '\n', { flag: 'a' });
success++;
} catch (e) {
console.log(e);
}
} catch (e) {
console.log(e);
}
}
fs.writeFileSync(errPath, line + '\n', { flag: 'a'});
fail++;
}
}
const end = new Date().valueOf();
const ms = end - start;
const time = Math.floor(ms / 1000);
logger.info(`\nTime: ${time} sec`);
logger.info(`Records added: ${success}`);
logger.info(`Failures: ${fail}\n`);
} catch (e) {
console.error(e);
}
})();