-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
57 lines (49 loc) · 1.65 KB
/
index.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
var express = require('express');
var winston = require('winston');
var app = express();
var fs = require("fs");
var ip = require("ip");
const logConfiguration = {
'transports': [
new winston.transports.Console({
level: 'info'
}),
new winston.transports.File({
level: 'info',
filename: 'logs/log.log'
})
],
format: winston.format.combine(
winston.format.label({
label: 'audit log'
}),
winston.format.timestamp({
format: 'DD-MM-DD-YYYY HH:mm:ss'
}),
winston.format.printf(info => `${info.level}, ${info.label}, ${[info.timestamp]}, ${info.message}`),
)
};
const logger = winston.createLogger(logConfiguration);
app.get('/listSAs', (req, res) => {
fs.readFile( __dirname + '/' + '/data/users.json', 'utf8', function (err, data) {
//console.log( "/listUsers API is being GET." );
res.statusMessage = 'OK';
logger.info(`200, ${res.statusMessage}, ${req.originalUrl}, ${req.method}, ${req.ip}, ${ip.address()}`);
res.end( data );
});
})
app.use((req,res,next) => {
res.status(404).send('400 PAGE NOT FOUND');
logger.error(`400, ${res.statusMessage}, ${req.originalUrl}, ${req.method}, ${req.ip}, ${ip.address()}`);
})
// Capture 500 errors
app.use((err,req,res,next) => {
res.status(500).send('500 SERVER ERROR');
logger.error(`${err.status || 500}, ${err.message}, ${req.originalUrl}, ${req.method}, ${req.ip}, ${ip.address()}`);
})
var server = app.listen(8081, function () {
var host = server.address().address
var port = server.address().port
//console.log(ip.address())
//console.log("RestAPI is listening at http://%s:%s", host, port)
})