-
Notifications
You must be signed in to change notification settings - Fork 235
/
server.js
202 lines (176 loc) · 5.62 KB
/
server.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
var express = require("express");
var app = express();
var cfenv = require("cfenv");
var bodyParser = require('body-parser')
// parse application/x-www-form-urlencoded
app.use(bodyParser.urlencoded({ extended: false }))
// parse application/json
app.use(bodyParser.json())
let mydb, cloudant;
var vendor; // Because the MongoDB and Cloudant use different API commands, we
// have to check which command should be used based on the database
// vendor.
var dbName = 'mydb';
// Separate functions are provided for inserting/retrieving content from
// MongoDB and Cloudant databases. These functions must be prefixed by a
// value that may be assigned to the 'vendor' variable, such as 'mongodb' or
// 'cloudant' (i.e., 'cloudantInsertOne' and 'mongodbInsertOne')
var insertOne = {};
var getAll = {};
insertOne.cloudant = function(doc, response) {
mydb.insert(doc, function(err, body, header) {
if (err) {
console.log('[mydb.insert] ', err.message);
response.send("Error");
return;
}
doc._id = body.id;
response.send(doc);
});
}
getAll.cloudant = function(response) {
var names = [];
mydb.list({ include_docs: true }, function(err, body) {
if (!err) {
body.rows.forEach(function(row) {
if(row.doc.name)
names.push(row.doc.name);
});
response.json(names);
}
});
//return names;
}
let collectionName = 'mycollection'; // MongoDB requires a collection name.
insertOne.mongodb = function(doc, response) {
mydb.collection(collectionName).insertOne(doc, function(err, body, header) {
if (err) {
console.log('[mydb.insertOne] ', err.message);
response.send("Error");
return;
}
doc._id = body.id;
response.send(doc);
});
}
getAll.mongodb = function(response) {
var names = [];
mydb.collection(collectionName).find({}, {fields:{_id: 0, count: 0}}).toArray(function(err, result) {
if (!err) {
result.forEach(function(row) {
names.push(row.name);
});
response.json(names);
}
});
}
/* Endpoint to greet and add a new visitor to database.
* Send a POST request to localhost:3000/api/visitors with body
* {
* "name": "Bob"
* }
*/
app.post("/api/visitors", function (request, response) {
var userName = request.body.name;
var doc = { "name" : userName };
if(!mydb) {
console.log("No database.");
response.send(doc);
return;
}
insertOne[vendor](doc, response);
});
/**
* Endpoint to get a JSON array of all the visitors in the database
* REST API example:
* <code>
* GET http://localhost:3000/api/visitors
* </code>
*
* Response:
* [ "Bob", "Jane" ]
* @return An array of all the visitor names
*/
app.get("/api/visitors", function (request, response) {
var names = [];
if(!mydb) {
response.json(names);
return;
}
getAll[vendor](response);
});
// load local VCAP configuration and service credentials
var vcapLocal;
try {
vcapLocal = require('./vcap-local.json');
console.log("Loaded local VCAP", vcapLocal);
} catch (e) { }
const appEnvOpts = vcapLocal ? { vcap: vcapLocal} : {}
const appEnv = cfenv.getAppEnv(appEnvOpts);
if (appEnv.services['compose-for-mongodb'] || appEnv.getService(/.*[Mm][Oo][Nn][Gg][Oo].*/)) {
// Load the MongoDB library.
var MongoClient = require('mongodb').MongoClient;
dbName = 'mydb';
// Initialize database with credentials
if (appEnv.services['compose-for-mongodb']) {
MongoClient.connect(appEnv.services['compose-for-mongodb'][0].credentials.uri, null, function(err, db) {
if (err) {
console.log(err);
} else {
mydb = db.db(dbName);
console.log("Created database: " + dbName);
}
});
} else {
// user-provided service with 'mongodb' in its name
MongoClient.connect(appEnv.getService(/.*[Mm][Oo][Nn][Gg][Oo].*/).credentials.uri, null,
function(err, db) {
if (err) {
console.log(err);
} else {
mydb = db.db(dbName);
console.log("Created database: " + dbName);
}
}
);
}
vendor = 'mongodb';
} else if (appEnv.services['cloudantNoSQLDB'] || appEnv.getService(/[Cc][Ll][Oo][Uu][Dd][Aa][Nn][Tt]/)) {
// Load the Cloudant library.
var Cloudant = require('@cloudant/cloudant');
// Initialize database with credentials
if (appEnv.services['cloudantNoSQLDB']) {
cloudant = Cloudant(appEnv.services['cloudantNoSQLDB'][0].credentials);
} else {
// user-provided service with 'cloudant' in its name
cloudant = Cloudant(appEnv.getService(/cloudant/).credentials);
}
} else if (process.env.CLOUDANT_URL){
// Load the Cloudant library.
var Cloudant = require('@cloudant/cloudant');
if (process.env.CLOUDANT_IAM_API_KEY){ // IAM API key credentials
let cloudantURL = process.env.CLOUDANT_URL
let cloudantAPIKey = process.env.CLOUDANT_IAM_API_KEY
cloudant = Cloudant({ url: cloudantURL, plugins: { iamauth: { iamApiKey: cloudantAPIKey } } });
} else { //legacy username/password credentials as part of cloudant URL
cloudant = Cloudant(process.env.CLOUDANT_URL);
}
}
if(cloudant) {
//database name
dbName = 'mydb';
// Create a new "mydb" database.
cloudant.db.create(dbName, function(err, data) {
if(!err) //err if database doesn't already exists
console.log("Created database: " + dbName);
});
// Specify the database we are going to use (mydb)...
mydb = cloudant.db.use(dbName);
vendor = 'cloudant';
}
//serve static file (index.html, images, css)
app.use(express.static(__dirname + '/views'));
var port = process.env.PORT || 3000
app.listen(port, function() {
console.log("To view your app, open this link in your browser: http://localhost:" + port);
});