forked from IBM-Cloud/nodejs-cloudant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
435 lines (356 loc) · 13.9 KB
/
app.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
/**
* Module dependencies.
*/
var express = require('express'),
routes = require('./routes'),
user = require('./routes/user'),
http = require('http'),
path = require('path'),
fs = require('fs');
var app = express();
var db;
var cloudant;
var fileToUpload;
var dbCredentials = {
dbName: 'my_sample_db'
};
var bodyParser = require('body-parser');
var methodOverride = require('method-override');
var logger = require('morgan');
var errorHandler = require('errorhandler');
var multipart = require('connect-multiparty')
var multipartMiddleware = multipart();
// all environments
app.set('port', process.env.PORT || 3000);
app.set('views', __dirname + '/views');
app.set('view engine', 'ejs');
app.engine('html', require('ejs').renderFile);
app.use(logger('dev'));
app.use(bodyParser.urlencoded({
extended: true
}));
app.use(bodyParser.json());
app.use(methodOverride());
app.use(express.static(path.join(__dirname, 'public')));
app.use('/style', express.static(path.join(__dirname, '/views/style')));
// development only
if ('development' == app.get('env')) {
app.use(errorHandler());
}
function getDBCredentialsUrl(jsonData) {
var vcapServices = JSON.parse(jsonData);
// Pattern match to find the first instance of a Cloudant service in
// VCAP_SERVICES. If you know your service key, you can access the
// service credentials directly by using the vcapServices object.
for (var vcapService in vcapServices) {
if (vcapService.match(/cloudant/i)) {
return vcapServices[vcapService][0].credentials.url;
}
}
}
function initDBConnection() {
//When running on Bluemix, this variable will be set to a json object
//containing all the service credentials of all the bound services
if (process.env.VCAP_SERVICES) {
dbCredentials.url = getDBCredentialsUrl(process.env.VCAP_SERVICES);
} else { //When running locally, the VCAP_SERVICES will not be set
// When running this app locally you can get your Cloudant credentials
// from Bluemix (VCAP_SERVICES in "cf env" output or the Environment
// Variables section for an app in the Bluemix console dashboard).
// Once you have the credentials, paste them into a file called vcap-local.json.
// Alternately you could point to a local database here instead of a
// Bluemix service.
// url will be in this format: https://username:[email protected]
dbCredentials.url = getDBCredentialsUrl(fs.readFileSync("vcap-local.json", "utf-8"));
}
cloudant = require('cloudant')(dbCredentials.url);
// check if DB exists if not create
cloudant.db.create(dbCredentials.dbName, function(err, res) {
if (err) {
console.log('Could not create new db: ' + dbCredentials.dbName + ', it might already exist.');
}
});
db = cloudant.use(dbCredentials.dbName);
}
initDBConnection();
app.get('/', routes.index);
function createResponseData(id, name, value, attachments) {
var responseData = {
id: id,
name: sanitizeInput(name),
value: sanitizeInput(value),
attachements: []
};
attachments.forEach(function(item, index) {
var attachmentData = {
content_type: item.type,
key: item.key,
url: '/api/favorites/attach?id=' + id + '&key=' + item.key
};
responseData.attachements.push(attachmentData);
});
return responseData;
}
function sanitizeInput(str) {
return String(str).replace(/&(?!amp;|lt;|gt;)/g, '&').replace(/</g, '<').replace(/>/g, '>');
}
var saveDocument = function(id, name, value, response) {
if (id === undefined) {
// Generated random id
id = '';
}
db.insert({
name: name,
value: value
}, id, function(err, doc) {
if (err) {
console.log(err);
response.sendStatus(500);
} else
response.sendStatus(200);
response.end();
});
}
app.get('/api/favorites/attach', function(request, response) {
var doc = request.query.id;
var key = request.query.key;
db.attachment.get(doc, key, function(err, body) {
if (err) {
response.status(500);
response.setHeader('Content-Type', 'text/plain');
response.write('Error: ' + err);
response.end();
return;
}
response.status(200);
response.setHeader("Content-Disposition", 'inline; filename="' + key + '"');
response.write(body);
response.end();
return;
});
});
app.post('/api/favorites/attach', multipartMiddleware, function(request, response) {
console.log("Upload File Invoked..");
console.log('Request: ' + JSON.stringify(request.headers));
var id;
db.get(request.query.id, function(err, existingdoc) {
var isExistingDoc = false;
if (!existingdoc) {
id = '-1';
} else {
id = existingdoc.id;
isExistingDoc = true;
}
var name = sanitizeInput(request.query.name);
var value = sanitizeInput(request.query.value);
var file = request.files.file;
var newPath = './public/uploads/' + file.name;
var insertAttachment = function(file, id, rev, name, value, response) {
fs.readFile(file.path, function(err, data) {
if (!err) {
if (file) {
db.attachment.insert(id, file.name, data, file.type, {
rev: rev
}, function(err, document) {
if (!err) {
console.log('Attachment saved successfully.. ');
db.get(document.id, function(err, doc) {
console.log('Attachements from server --> ' + JSON.stringify(doc._attachments));
var attachements = [];
var attachData;
for (var attachment in doc._attachments) {
if (attachment == value) {
attachData = {
"key": attachment,
"type": file.type
};
} else {
attachData = {
"key": attachment,
"type": doc._attachments[attachment]['content_type']
};
}
attachements.push(attachData);
}
var responseData = createResponseData(
id,
name,
value,
attachements);
console.log('Response after attachment: \n' + JSON.stringify(responseData));
response.write(JSON.stringify(responseData));
response.end();
return;
});
} else {
console.log(err);
}
});
}
}
});
}
if (!isExistingDoc) {
existingdoc = {
name: name,
value: value,
create_date: new Date()
};
// save doc
db.insert({
name: name,
value: value
}, '', function(err, doc) {
if (err) {
console.log(err);
} else {
existingdoc = doc;
console.log("New doc created ..");
console.log(existingdoc);
insertAttachment(file, existingdoc.id, existingdoc.rev, name, value, response);
}
});
} else {
console.log('Adding attachment to existing doc.');
console.log(existingdoc);
insertAttachment(file, existingdoc._id, existingdoc._rev, name, value, response);
}
});
});
app.post('/api/favorites', function(request, response) {
console.log("Create Invoked..");
console.log("Name: " + request.body.name);
console.log("Value: " + request.body.value);
// var id = request.body.id;
var name = sanitizeInput(request.body.name);
var value = sanitizeInput(request.body.value);
saveDocument(null, name, value, response);
});
app.delete('/api/favorites', function(request, response) {
console.log("Delete Invoked..");
var id = request.query.id;
// var rev = request.query.rev; // Rev can be fetched from request. if
// needed, send the rev from client
console.log("Removing document of ID: " + id);
console.log('Request Query: ' + JSON.stringify(request.query));
db.get(id, {
revs_info: true
}, function(err, doc) {
if (!err) {
db.destroy(doc._id, doc._rev, function(err, res) {
// Handle response
if (err) {
console.log(err);
response.sendStatus(500);
} else {
response.sendStatus(200);
}
});
}
});
});
app.put('/api/favorites', function(request, response) {
console.log("Update Invoked..");
var id = request.body.id;
var name = sanitizeInput(request.body.name);
var value = sanitizeInput(request.body.value);
console.log("ID: " + id);
db.get(id, {
revs_info: true
}, function(err, doc) {
if (!err) {
console.log(doc);
doc.name = name;
doc.value = value;
db.insert(doc, doc.id, function(err, doc) {
if (err) {
console.log('Error inserting data\n' + err);
return 500;
}
return 200;
});
}
});
});
app.get('/api/favorites', function(request, response) {
console.log("Get method invoked.. ")
db = cloudant.use(dbCredentials.dbName);
var docList = [];
var i = 0;
db.list(function(err, body) {
if (!err) {
var len = body.rows.length;
console.log('total # of docs -> ' + len);
if (len == 0) {
// push sample data
// save doc
var docName = 'sample_doc';
var docDesc = 'A sample Document';
db.insert({
name: docName,
value: 'A sample Document'
}, '', function(err, doc) {
if (err) {
console.log(err);
} else {
console.log('Document : ' + JSON.stringify(doc));
var responseData = createResponseData(
doc.id,
docName,
docDesc, []);
docList.push(responseData);
response.write(JSON.stringify(docList));
console.log(JSON.stringify(docList));
console.log('ending response...');
response.end();
}
});
} else {
body.rows.forEach(function(document) {
db.get(document.id, {
revs_info: true
}, function(err, doc) {
if (!err) {
if (doc['_attachments']) {
var attachments = [];
for (var attribute in doc['_attachments']) {
if (doc['_attachments'][attribute] && doc['_attachments'][attribute]['content_type']) {
attachments.push({
"key": attribute,
"type": doc['_attachments'][attribute]['content_type']
});
}
console.log(attribute + ": " + JSON.stringify(doc['_attachments'][attribute]));
}
var responseData = createResponseData(
doc._id,
doc.name,
doc.value,
attachments);
} else {
var responseData = createResponseData(
doc._id,
doc.name,
doc.value, []);
}
docList.push(responseData);
i++;
if (i >= len) {
response.write(JSON.stringify(docList));
console.log('ending response...');
response.end();
}
} else {
console.log(err);
}
});
});
}
} else {
console.log(err);
}
});
});
http.createServer(app).listen(app.get('port'), '0.0.0.0', function() {
console.log('Express server listening on port ' + app.get('port'));
});