-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
71 lines (54 loc) · 1.75 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
/*eslint-env node*/
//------------------------------------------------------------------------------
// node.js starter application for Bluemix
//------------------------------------------------------------------------------
// This application uses express as its web server
// for more info, see: http://expressjs.com
var express = require('express');
// cfenv provides access to your Cloud Foundry environment
// for more info, see: https://www.npmjs.com/package/cfenv
var cfenv = require('cfenv');
// create a new express server
var app = express();
// serve the files out of ./public as our main files
app.use(express.static(__dirname + '/public'));
app.get('/login', function(req, res){
setTimeout(function(){
res.redirect("/login.html");
}, 2500);
});
app.get('/search', function(req, res){
var i, a, b, c, max;
max = 1000000000;
var d = Date.now();
for (i = 0; i < max; i++) {
a = 1234 + 5678 + i;
b = 1234 * 5678 + i;
c = 1234 / 2 + i;
}
var r = Date.now() - d;
//res.send("Item: " + r + " not found");
res.redirect("/search.html");
});
app.get('/add_item', function(req, res){
var item = "1";
//res.send("Added item: " + item);
res.redirect("/add_item.html");
});
app.get('/remove_item', function(req, res){
var item = "1";
//res.send("Removed item: " + item);
res.redirect("/remove_item.html");
});
app.get('/buy', function(req, res){
setTimeout(function(){
res.redirect("/buyerr.html");
}, 10000);
});
// get the app environment from Cloud Foundry
var appEnv = cfenv.getAppEnv();
// start server on the specified port and binding host
app.listen(appEnv.port, '0.0.0.0', function() {
// print a message when the server starts listening
console.log("server starting on " + appEnv.url);
});