-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimport.js
218 lines (203 loc) · 5.54 KB
/
import.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
//
// PagerMon - import.js
// 2017-06-04
// Author: Dave McKenzie
//
// Description: Takes a PDW filters.ini or generic CSV file and pushes it to PagerMon server
//
// CSV must have columns in any order of the following: id,address,alias,agency,color,icon,ignore,pluginconf
// Only address,alias,agency are mandatory
//
// Usage: cat filters.ini | node import.js --pdw
// cat aliases.csv | node import.js
//
// TODO: make the posts a bit less async... this dos's the server
// CONFIG
// create config file if it does not exist, and set defaults
var fs = require('fs');
var conf_defaults = require('./config/default.json');
var conf_file = './config/config.json';
if( ! fs.existsSync(conf_file) ) {
fs.writeFileSync( conf_file, JSON.stringify(conf_defaults,null, 2) );
console.log('created config file - set your api key in '+conf_file);
return;
}
// load the config file
var nconf = require('nconf');
nconf.file({file: conf_file});
nconf.load();
var hostname = nconf.get('hostname');
var apikey = nconf.get('apikey');
var uri = hostname+"/api/capcodes";
// Now scroll down and set the agency and color config according to your needs
var http = require('http');
var parse = require('csv-parse');
var request = require('request');
require('request').debug = true
var rp = require('request-promise-native');
var colors = require('colors/safe');
colors.setTheme({
success: ['green', 'bold'],
error: 'red'
});
const readline = require('readline');
const rl = readline.createInterface({
input: process.stdin,
terminal: true
});
var lineCount = 0;
var columns = {};
rl.on('line', (line) => {
lineCount++;
var id;
var address;
var alias;
var agency;
var color;
var icon;
var ignore;
var pluginconf;
if (line.indexOf(',') > -1 && lineCount == 1 && !process.argv[2]) {
// if this is the first line and we're not in pdw mode, get the columns
parse(line, {comment: '#'}, function(err, output){
var ol = output[0];
for (i in ol) {
switch (ol[i]) {
case 'id':
columns.id = i;
break;
case 'address':
columns.address = i;
break;
case 'alias':
columns.alias = i;
break;
case 'agency':
columns.agency = i;
break;
case 'color':
columns.color = i;
break;
case 'icon':
columns.icon = i;
break;
case 'ignore':
columns.ignore = i;
break;
case 'pluginconf':
columns.pluginconf = i;
break;
}
}
});
}
// ignore non-csv lines
if (line.indexOf(',') > -1 && lineCount != 1) {
parse(line, {comment: '#'}, function(err, output){
var ol = output[0];
if (process.argv[2] && process.argv[2] == '--pdw') {
// if pdw mode, then parse the ini file
address = ol[1].replace(/\?/g, "_");
if (ol[2].indexOf(" - ") > -1) {
agency = ol[2].match(/(.*?) - /)[1].trim();
alias = ol[2].match(/ - (.*?)$/)[1].trim();
} else {
agency = '';
alias = ol[2];
}
// Agency config:
// for icons, see http://fontawesome.io
switch (agency) {
case 'RFS':
icon = "fire";
break;
case 'SES':
icon = "medkit";
break;
default:
icon = "question";
}
// Color config:
// change this according to your input file
switch (ol[7]) {
case '3':
color = "darkred";
break;
case '4':
color = "darkorange";
break;
case '7':
color = "darkgrey";
break;
case '8':
color = "darkgreen";
break;
default:
color = "green";
}
} else {
// parse csv file according to the discovered columns
if (columns.id) {
id = ol[columns.id];
}
if (columns.address) {
address = ol[columns.address];
}
if (columns.alias) {
alias = ol[columns.alias];
}
if (columns.agency) {
agency = ol[columns.agency];
}
if (columns.color) {
color = ol[columns.color];
}
if (columns.icon) {
icon = ol[columns.icon];
}
if (columns.ignore) {
ignore = ol[columns.ignore];
}
if (columns.pluginconf) {
pluginconf = ol[columns.pluginconf];
}
}
if (address != '' && agency != '' && alias != '') {
var formData = {
address: address,
alias: alias,
agency: agency
};
if (id)
formData.id = id;
if (color)
formData.color = color;
if (icon)
formData.icon = icon;
if (ignore)
formData.ignore = ignore;
if (pluginconf)
formData.pluginconf = pluginconf;
console.log('Sending capcode: '+JSON.stringify(formData));
var options = {
method: 'POST',
uri: uri,
headers: {
'X-Requested-With': 'XMLHttpRequest',
apikey: apikey
},
form: formData
};
rp(options)
.then(function (body) {
console.log(colors.success('Success! '+body));
})
.catch(function (err) {
console.log(colors.error('Fail! '+err));
});
}
});
}
}).on('close', () => {
console.log('End of input');
});