forked from siddharthhparikh/cp-web
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.js
320 lines (288 loc) · 14.2 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
"use strict";
/* global process */
/* global __dirname */
/*******************************************************************************
* Copyright (c) 2015 IBM Corp.
*
* All rights reserved.
*
* Contributors:
* David Huffman - Initial implementation
* Dale Avery
*******************************************************************************/
/////////////////////////////////////////
///////////// Setup Node.js /////////////
/////////////////////////////////////////
var express = require('express');
var session = require('express-session');
var compression = require('compression');
var serve_static = require('serve-static');
var path = require('path');
var morgan = require('morgan');
var cookieParser = require('cookie-parser');
var bodyParser = require('body-parser');
var http = require('http');
var app = express();
var url = require('url');
var async = require('async');
var setup = require('./setup');
var cors = require("cors");
var fs = require("fs");
var util = require('util');
//var sleep = require('sleep');
//// Set Server Parameters ////
var host = setup.SERVER.HOST;
var port = setup.SERVER.PORT;
// For logging
var TAG = "app.js:";
//////// Pathing and Module Setup ////////
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'jade');
app.engine('.html', require('jade').__express);
app.use(compression());
app.use(morgan('dev'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded());
app.use(cookieParser());
app.use('/cc/summary', serve_static(path.join(__dirname, 'cc_summaries'))); //for chaincode investigator
app.use(serve_static(path.join(__dirname, 'public'), { maxAge: '1d', setHeaders: setCustomCC })); //1 day cache
//app.use( serve_static(path.join(__dirname, 'public')) );
app.use(session({ secret: 'Somethignsomething1234!test', resave: true, saveUninitialized: true }));
function setCustomCC(res, path) {
if (serve_static.mime.lookup(path) === 'image/jpeg') res.setHeader('Cache-Control', 'public, max-age=2592000'); //30 days cache
else if (serve_static.mime.lookup(path) === 'image/png') res.setHeader('Cache-Control', 'public, max-age=2592000');
else if (serve_static.mime.lookup(path) === 'image/x-icon') res.setHeader('Cache-Control', 'public, max-age=2592000');
}
// Enable CORS preflight across the board.
app.options('*', cors());
app.use(cors());
/////////// Configure Webserver ///////////
app.use(function (req, res, next) {
var keys;
console.log('------------------------------------------ incoming request ------------------------------------------');
//console.log('New ' + req.method + ' request for', req.url);
req.bag = {}; //create my object for my stuff
req.session.count = eval(req.session.count) + 1;
req.bag.session = req.session;
var url_parts = url.parse(req.url, true);
req.parameters = url_parts.query;
keys = Object.keys(req.parameters);
//if (req.parameters && keys.length > 0) console.log({ parameters: req.parameters }); //print request parameters
keys = Object.keys(req.body);
//if (req.body && keys.length > 0) console.log({ body: req.body }); //print request body
next();
});
//// Router ////
var router = require('./routes/site_router');
app.use('/', router);
////////////////////////////////////////////
////////////// Error Handling //////////////
////////////////////////////////////////////
app.use(function (req, res, next) {
var err = new Error('Not Found');
err.status = 404;
next(err);
});
app.use(function (err, req, res, next) { // = development error handler, print stack trace
console.log("Error Handeler -", req.url);
var errorCode = err.status || 500;
res.status(errorCode);
req.bag.error = { msg: err.stack, status: errorCode };
if (req.bag.error.status == 404) req.bag.error.msg = "Sorry, I cannot locate that file";
res.render('template/error', { bag: req.bag });
});
// Track the application deployments
require("cf-deployment-tracker-client").track();
// ============================================================================================================================
// Launch Webserver
// ============================================================================================================================
var server = http.createServer(app).listen(port, function () {
});
process.env.NODE_TLS_REJECT_UNAUTHORIZED = "0";
process.env.NODE_ENV = 'production';
server.timeout = 240000; // Ta-da.
console.log('------------------------------------------ Server Up - ' + host + ':' + port + ' ------------------------------------------');
if (process.env.PRODUCTION) console.log('Running using Production settings');
else console.log('Running using Developer settings');
// Track the application deployments
require("cf-deployment-tracker-client").track();
// ============================================================================================================================
// ============================================================================================================================
// ============================================================================================================================
// ============================================================================================================================
// ============================================================================================================================
// ============================================================================================================================
// ============================================================================================================================
// Warning
// ============================================================================================================================
// ============================================================================================================================
// Entering
// ============================================================================================================================
// ============================================================================================================================
// Test Area
// ============================================================================================================================
var part2 = require('./utils/ws_part2');
var ws = require('ws');
var wss = {};
// Start up the network!!
var user_manager = require('./utils/users');
var hlc = require('hlc');
var chain = hlc.newChain("cp");
var testChaincodePath = "github.com/cp-chaincode-v2";
//var testChaincodePath = "github.com/hyperledger_chaincode/chaincode_example02_new";
var testChaincodeID = "cp";
var WebAppAdmin;
configure_network();
// ==================================
// configure ibm-blockchain-js sdk
// ==================================
function configure_network() {
chain.setKeyValStore(hlc.newFileKeyValStore('./tmp/keyValStore'));
if (fs.existsSync("tlsca.cert")) {
chain.setMemberServicesUrl("grpcs://test-ca.rtp.raleigh.ibm.com:50051", fs.readFileSync('tlsca.cert'));
} else {
chain.setMemberServicesUrl("grpc://test-ca.rtp.raleigh.ibm.com:50051");
}
chain.addPeer("grpc://test-peer1.rtp.raleigh.ibm.com:30303");
//chain.addPeer("grpc://1d06ff84-0d57-4df5-8807-6c9e23e210de_vp2-discovery.blockchain.ibm.com:30303");
//chain.addPeer("grpc://test-peer3.rtp.raleigh.ibm.com:30303");
//chain.setDevMode(true);
chain.getMember("WebAppAdmin", function (err, WebAppAdmin) {
if (err) {
console.log("Failed to get WebAppAdmin member " + " ---> " + err);
//t.end(err);
} else {
console.log("Successfully got WebAppAdmin member" + " ---> " /*+ JSON.stringify(crypto)*/);
// Enroll the WebAppAdmin member with the certificate authority using
// the one time password hard coded inside the membersrvc.yaml.
var pw = "DJY27pEnl16d";
WebAppAdmin.enroll(pw, function (err, crypto) {
if (err) {
console.log("Failed to enroll WebAppAdmin member " + " ---> " + err);
//t.end(err);
} else {
console.log("Successfully enrolled WebAppAdmin member" + " ---> " /*+ JSON.stringify(crypto)*/);
// Confirm that the WebAppAdmin token has been created in the key value store
path = chain.getKeyValStore().dir + "/member." + WebAppAdmin.getName();
fs.exists(path, function (exists) {
if (exists) {
console.log("Successfully stored client token for" + " ---> " + WebAppAdmin.getName());
} else {
console.log("Failed to store client token for " + WebAppAdmin.getName() + " ---> " + err);
}
});
}
chain.setRegistrar(WebAppAdmin);
deploy(WebAppAdmin);
});
}
});
}
//var sleep = require('sleep')
var gccID = {};
function deploy(WebAppAdmin) {
var deployRequest = {
fcn: "init",
args: ['a', '100'],
chaincodePath: "github.com/cp-chaincode-v2/"
};
var deployTx = WebAppAdmin.deploy(deployRequest);
deployTx.on('submitted', function (results) {
console.log("Successfully submitted chaincode deploy transaction" + " ---> " + "function: " + deployRequest.fcn + ", args: " + deployRequest.args + " : " + results.chaincodeID);
});
deployTx.on('complete', function (results) {
console.log("Successfully completed chaincode deploy transaction" + " ---> " + "function: " + deployRequest.fcn + ", args: " + deployRequest.args + " : " + results.chaincodeID);
//sleep.sleep(60);
part2.setup(results.chaincodeID, chain);
user_manager.setup(results.chaincodeID, chain, cb_deployed);
});
deployTx.on('error', function (err) {
// Invoke transaction submission failed
console.log("Failed to submit chaincode deploy transaction" + " ---> " + "function: " + deployRequest.function + ", args: " + deployRequest.arguments + " : " + err);
});
}
// ============================================================================================================================
// WebSocket Communication Madness
// ============================================================================================================================
function cb_deployed(e, d) {
if (e != null) {
//look at tutorial_part1.md in the trouble shooting section for help
console.log('! looks like the final configuration failed, holding off on the starting the socket\n', e);
if (!process.error) process.error = { type: 'deploy', msg: e.details };
}
else {
console.log('------------------------------------------ Websocket Up ------------------------------------------');
//ibc.save('./cc_summaries');
var gws = {}; //save it here for chaincode investigator
wss = new ws.Server({ server: server }); //start the websocket now
wss.on('connection', function connection(ws) {
ws.on('message', function incoming(message) {
console.log('received ws msg:', message);
var data = JSON.parse(message);
part2.process_msg(ws, data);
});
ws.on('close', function () {
});
});
wss.broadcast = function broadcast(data) { //send to all connections
wss.clients.forEach(function each(client) {
try {
data.v = '2';
//console.log("\n\nSending data using client.send\n\n")
client.send(JSON.stringify(data));
}
catch (e) {
console.log('error broadcast ws', e);
}
});
};
//clients will need to know if blockheight changes
setInterval(function () {
var options = {
host: 'test-peer1.rtp.raleigh.ibm.com',
port: '5000',
path: '/chain',
method: 'GET'
};
function success(statusCode, headers, resp) {
//console.log('chainstats success!');
//console.log(resp);
resp = JSON.parse(resp);
if (resp && resp.height) {
wss.broadcast({ msg: 'reset' });
}
};
function failure(statusCode, headers, msg) {
console.log('chainstats failure :(');
console.log('status code: ' + statusCode);
console.log('headers: ' + headers);
console.log('message: ' + msg);
};
var goodJSON = false;
var request = http.request(options, function (resp) {
var str = '', temp, chunks = 0;
resp.setEncoding('utf8');
resp.on('data', function (chunk) { //merge chunks of request
str += chunk;
chunks++;
});
resp.on('end', function () { //wait for end before decision
if (resp.statusCode == 204 || resp.statusCode >= 200 && resp.statusCode <= 399) {
success(resp.statusCode, resp.headers, str);
}
else {
failure(resp.statusCode, resp.headers, str);
}
});
});
request.on('error', function (e) { //handle error event
failure(500, null, e);
});
request.setTimeout(20000);
request.on('timeout', function () { //handle time out event
failure(408, null, 'Request timed out');
});
request.end();
}, 5000);
}
}