This repository has been archived by the owner on Mar 9, 2022. It is now read-only.
forked from osmlab/to-fix-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
243 lines (213 loc) · 5.98 KB
/
index.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
var fs = require('fs'),
hapi = require('hapi'),
pg = require('pg'),
boom = require('boom'),
pg_copy = require('pg-copy-streams'),
hstore = require('pg-hstore')(),
queue = require('queue-async'),
reformatCsv = require('./lib/reformat-csv'),
queries = require('./lib/queries');
var get_functions = require('./lib/get_functions');
var post_functions = require('./lib/post_functions');
var user = process.env.DBUsername || 'postgres';
var password = process.env.DBPassword || '';
var address = process.env.DBAddress || 'localhost';
var database = process.env.Database || 'tofix';
var path = process.env.UploadPath;
// short term, to prevent the need from building out user authentication until later
var uploadPassword = process.env.UploadPassword;
if (!path) return console.log('env variable UploadPath must be set');
if (!uploadPassword) return console.log('env variable UploadPassword must be set');
// from the db connection
var client, done;
// seconds to lock each item
var lockPeriod = 600;
var conString = 'postgres://' +
user + ':' +
password + '@' +
address + '/' +
database;
var server = new hapi.Server();
var port = 8000;
server.connection({
port: port,
routes: {
cors: true
}
});
var tasks = {};
server.route({
method: 'GET',
path: '/status',
handler: function(request, reply) {
pg.connect(conString, function(err, c, d) {
if (err) {
reply('error').code(500)
} else {
reply({
status: 'a ok'
});
}
c.end();
});
}
});
server.route({
method: 'GET',
path: '/sends-errors',
handler: function(request, reply) {
reply('error').code(500)
}
});
server.route({
method: 'POST',
path: '/track/{task}',
handler: function(request, reply) {
var table = request.params.task.simplify();
var attributes = request.payload.attributes;
if (!attributes) return reply(boom.badRequest('missing attributes'));
// don't wait
reply();
post_functions.track(client, table, request.payload.time, attributes, function(err, results) {
if (err) console.error('/track err', err);
});
}
});
server.route({
method: 'GET',
path: '/count/{task}',
handler: function(request, reply) {
var table = tasks[request.params.task.simplify()];
get_functions.count(client, request, reply, table);
}
});
server.route({
method: 'GET',
path: '/count_history/{task}/{grouping}',
handler: function(request, reply) {
var table = request.params.task.simplify();
get_functions.count_history(client, request, reply,table);
}
});
server.route({
method: 'GET',
path: '/track/{task}/{key}:{value}/{to?}',
handler: function(request, reply) {
var table = request.params.task.simplify();
get_functions.track(client, request, reply,table);
}
});
server.route({
method: 'GET',
path: '/track_stats/{task}/{from}/{to}',
handler: function(request, reply) {
var table = request.params.task.simplify();
get_functions.track_stats(client, request, reply,table);
}
});
server.route({
method: 'POST',
path: '/task/{task}',
handler: function(request, reply) {
var table = tasks[request.params.task.simplify()];
post_functions.task(client, request, reply, lockPeriod, table);
}
});
server.route({
method: 'POST',
path: '/fixed/{task}',
config: {
payload: {
output: 'data'
}
},
handler: function(request, reply) {
var table = tasks[request.params.task.simplify()];
post_functions.fixed(client, request, reply, table);
}
});
server.route({
method: 'POST',
path: '/noterror/{task}',
config: {
payload: {
output: 'data'
}
},
handler: function(request, reply) {
var table = tasks[request.params.task.simplify()];
post_functions.noterror(client, request, reply, table);
}
});
server.route({
method: 'GET',
path: '/detail/{idtask}',
handler: function(request, reply) {
get_functions.detail(client, request, reply);
}
});
server.route({
method: 'GET',
path: '/tasks',
handler: function(request, reply) {
get_functions.tasks(client, request, reply);
}
});
server.route({
method: 'POST',
path: '/csv',
config: {
payload: {
maxBytes: 200000000,
output: 'stream',
parse: true
}
},
handler: function(request, reply) {
post_functions.csv(client, request, reply, function(results) {
load_tasks(results.status);
return reply(JSON.stringify({
taskid: results.taskid
}));
});
}
});
function load_tasks(status) {
if (status) {
tasks = {};
var query = 'SELECT id, tasktable FROM task_details ORDER BY status, title;';
var cliente = client.query(query, function(err, results) {
results.rows.forEach(function(row) {
tasks[row.id] = row.tasktable;
});
});
// cliente.on('end', function(result) {
// console.log(tasks);
// });
}
}
String.prototype.simplify = function() {
return this.replace(/[^a-zA-Z]+/g, '').toLowerCase()
};
server.route({
method: 'GET',
path: '/tasks',
handler: function(request, reply) {
client.query('SELECT task, hstore_to_json(attributes) as attributes FROM task_details;', function(err, results) {
if (err) return reply(boom.badRequest(err));
reply({
data: results.rows
});
});
}
});
pg.connect(conString, function(err, c, d) {
if (err) return console.log(err);
console.log('connected to:', address);
client = c;
done = d;
server.start(function() {
console.log('server on port', port);
load_tasks(true)
});
});