|
| 1 | +// use the express framework |
| 2 | +var express = require('express'); |
| 3 | +var app = express(); |
| 4 | + |
| 5 | +var fs = require('fs'); |
| 6 | +var code_hash = fs.readFileSync('code_hash.txt','utf8'); |
| 7 | +console.log (code_hash); |
| 8 | + |
| 9 | +// internal-ip: detect the correct IP based on default gw |
| 10 | +var internalip = require('internal-ip'); |
| 11 | +var ipaddress = internalip.v4.sync(); |
| 12 | + |
| 13 | +// use ipaddress to find interface netmask |
| 14 | +var ifaces = require('os').networkInterfaces(); |
| 15 | +for (var dev in ifaces) { |
| 16 | + // ... and find the one that matches the criteria |
| 17 | + var iface = ifaces[dev].filter(function(details) { |
| 18 | + return details.address === `${ipaddress}` && details.family === 'IPv4'; |
| 19 | + }); |
| 20 | + if(iface.length > 0) ifacenetmask = iface[0].netmask; |
| 21 | +} |
| 22 | + |
| 23 | +// ip: separate out the network using the subnet mask |
| 24 | +var ipnet = require('ip'); |
| 25 | +var network = ipnet.mask(`${ipaddress}`, `${ifacenetmask}`) |
| 26 | + |
| 27 | +// morgan: generate apache style logs to the console |
| 28 | +var morgan = require('morgan') |
| 29 | +app.use(morgan('combined')); |
| 30 | + |
| 31 | +// express-healthcheck: respond on /health route for LB checks |
| 32 | +app.use('/health', require('express-healthcheck')()); |
| 33 | + |
| 34 | +// label the AZ based on which subnet we are on |
| 35 | +switch (network) { |
| 36 | + case '10.0.100.0': |
| 37 | + var az = '1a'; |
| 38 | + break; |
| 39 | + case '10.0.101.0': |
| 40 | + var az = '1b'; |
| 41 | + break; |
| 42 | + case '10.0.102.0': |
| 43 | + var az = '1c'; |
| 44 | + break; |
| 45 | + default: |
| 46 | + var az = 'unknown' |
| 47 | + break; |
| 48 | +} |
| 49 | + |
| 50 | +// main route |
| 51 | +app.get('/', function (req, res) { |
| 52 | + res.set({ |
| 53 | + 'Content-Type': 'text/plain' |
| 54 | +}) |
| 55 | + res.send(`Node.js backend: Hello! from ${ipaddress} in AZ-${az} commit ${code_hash}`); |
| 56 | + // res.send(`Hello World! from ${ipaddress} in AZ-${az} which has been up for ` + process.uptime() + 'ms'); |
| 57 | +}); |
| 58 | + |
| 59 | +// health route - variable subst is more pythonic just as an example |
| 60 | +var server = app.listen(3000, function() { |
| 61 | + var port = server.address().port; |
| 62 | + console.log('Example app listening on port %s!', port); |
| 63 | +}); |
| 64 | + |
| 65 | +// export the server to make tests work |
| 66 | +module.exports = server; |
0 commit comments