-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogger.js
More file actions
422 lines (378 loc) · 8.74 KB
/
Copy pathlogger.js
File metadata and controls
422 lines (378 loc) · 8.74 KB
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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
import process from 'node:process';
import { Buffer as _Buffer } from 'node:buffer';
/**
* Winston Logger Configuration
* Provides structured logging with multiple transports and security features
*/
import winston from 'winston';
import DailyRotateFile from 'winston-daily-rotate-file';
import path from 'path';
import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
// Log directory
const LOG_DIR = process.env.LOG_DIR || path.join(__dirname, '../logs');
// Environment configuration
const NODE_ENV = process.env.NODE_ENV || 'development';
const LOG_LEVEL = process.env.LOG_LEVEL || (NODE_ENV === 'production' ? 'info' : 'debug');
// Security: fields to redact from logs
const SENSITIVE_FIELDS = [
'password',
'token',
'authorization',
'cookie',
'secret',
'key',
'apikey',
'api_key',
'access_token',
'refresh_token',
'jwt',
'bearer',
'auth',
'credentials',
'credit_card',
'ssn',
'social_security',
'encrypted',
'signature'
];
/**
* Redact sensitive information from log data
*/
function redactSensitiveData(obj, depth = 0) {
if (depth > 10) return '[Max Depth Reached]'; // Prevent infinite recursion
if (typeof obj !== 'object' || obj === null) {
return obj;
}
if (Array.isArray(obj)) {
return obj.map(item => redactSensitiveData(item, depth + 1));
}
const redacted = {};
for (const [key, value] of Object.entries(obj)) {
const lowerKey = key.toLowerCase();
// Check if field should be redacted
const shouldRedact = SENSITIVE_FIELDS.some(field =>
lowerKey.includes(field) ||
lowerKey === field ||
lowerKey.endsWith('_' + field) ||
lowerKey.startsWith(field + '_')
);
if (shouldRedact) {
redacted[key] = '[REDACTED]';
} else if (typeof value === 'object' && value !== null) {
redacted[key] = redactSensitiveData(value, depth + 1);
} else {
redacted[key] = value;
}
}
return redacted;
}
/**
* Custom log format
*/
const logFormat = winston.format.combine(
winston.format.timestamp({
format: 'YYYY-MM-DD HH:mm:ss.SSS'
}),
winston.format.errors({ stack: true }),
winston.format.json(),
winston.format.printf(({ timestamp, level, message, stack, ...meta }) => {
// Redact sensitive data from meta
const safeMeta = redactSensitiveData(meta);
const logEntry = {
timestamp,
level: level.toUpperCase(),
message,
...(stack && { stack }),
...(Object.keys(safeMeta).length > 0 && { meta: safeMeta })
};
return JSON.stringify(logEntry);
})
);
/**
* Console format for development
*/
const consoleFormat = winston.format.combine(
winston.format.timestamp({
format: 'HH:mm:ss.SSS'
}),
winston.format.colorize(),
winston.format.printf(({ timestamp, level, message, stack, ...meta }) => {
const safeMeta = redactSensitiveData(meta);
const metaStr = Object.keys(safeMeta).length > 0
? '\n' + JSON.stringify(safeMeta, null, 2)
: '';
if (stack) {
return `${timestamp} [${level}] ${message}\n${stack}${metaStr}`;
}
return `${timestamp} [${level}] ${message}${metaStr}`;
})
);
/**
* Create logger transports
*/
const transports = [];
// Console transport for development
if (NODE_ENV === 'development') {
transports.push(
new winston.transports.Console({
format: consoleFormat,
level: LOG_LEVEL
})
);
} else {
// Simple console for production
transports.push(
new winston.transports.Console({
format: logFormat,
level: LOG_LEVEL
})
);
}
// File transport for all logs
transports.push(
new DailyRotateFile({
filename: path.join(LOG_DIR, 'application-%DATE%.log'),
datePattern: 'YYYY-MM-DD',
maxSize: '20m',
maxFiles: '14d',
format: logFormat,
level: LOG_LEVEL
})
);
// Error log file
transports.push(
new DailyRotateFile({
filename: path.join(LOG_DIR, 'error-%DATE%.log'),
datePattern: 'YYYY-MM-DD',
maxSize: '20m',
maxFiles: '30d',
format: logFormat,
level: 'error'
})
);
// Audit log for security events
transports.push(
new DailyRotateFile({
filename: path.join(LOG_DIR, 'audit-%DATE%.log'),
datePattern: 'YYYY-MM-DD',
maxSize: '20m',
maxFiles: '90d',
format: logFormat,
level: 'info'
})
);
/**
* Create logger instance
*/
const logger = winston.createLogger({
level: LOG_LEVEL,
format: logFormat,
defaultMeta: {
service: 'turning-wheel-api',
version: process.env.npm_package_version || '1.0.0',
environment: NODE_ENV,
pid: process.pid,
hostname: require('os').hostname()
},
transports,
exitOnError: false,
// Handle uncaught exceptions and rejections
exceptionHandlers: [
new DailyRotateFile({
filename: path.join(LOG_DIR, 'exceptions-%DATE%.log'),
datePattern: 'YYYY-MM-DD',
maxSize: '20m',
maxFiles: '30d',
format: logFormat
})
],
rejectionHandlers: [
new DailyRotateFile({
filename: path.join(LOG_DIR, 'rejections-%DATE%.log'),
datePattern: 'YYYY-MM-DD',
maxSize: '20m',
maxFiles: '30d',
format: logFormat
})
]
});
/**
* Security audit logging
*/
export function auditLog(event, details = {}) {
logger.info(`AUDIT: ${event}`, {
audit: true,
event,
...details,
timestamp: new Date().toISOString()
});
}
/**
* Authentication event logging
*/
export function authLog(event, userId, details = {}) {
auditLog(`AUTH_${event}`, {
userId,
...details
});
}
/**
* Request logging with sanitization
*/
export function requestLog(req, res, responseTime) {
const { method, url, ip, headers, body, query, params } = req;
logger.info('HTTP Request', {
request: {
method,
url,
ip,
userAgent: headers['user-agent'],
headers: redactSensitiveData(headers),
body: redactSensitiveData(body),
query: redactSensitiveData(query),
params: redactSensitiveData(params)
},
response: {
statusCode: res.statusCode,
contentLength: res.get('content-length'),
responseTime: `${responseTime}ms`
},
userId: req.user?.id || 'anonymous'
});
}
/**
* Error logging with context
*/
export function errorLog(error, context = {}) {
logger.error('Application Error', {
error: {
name: error.name,
message: error.message,
stack: error.stack,
code: error.code
},
context: redactSensitiveData(context)
});
}
/**
* Performance monitoring
*/
export function performanceLog(operation, duration, metadata = {}) {
logger.info('Performance Metric', {
performance: {
operation,
duration: `${duration}ms`,
...metadata
}
});
}
/**
* Database operation logging
*/
export function dbLog(operation, table, duration, metadata = {}) {
logger.debug('Database Operation', {
database: {
operation,
table,
duration: `${duration}ms`,
...redactSensitiveData(metadata)
}
});
}
/**
* Encryption operation logging
*/
export function cryptoLog(operation, success = true, metadata = {}) {
logger.info('Crypto Operation', {
crypto: {
operation,
success,
...redactSensitiveData(metadata)
}
});
}
/**
* Rate limiting events
*/
export function rateLimitLog(ip, endpoint, limit, current) {
logger.warn('Rate Limit Event', {
rateLimit: {
ip,
endpoint,
limit,
current,
exceeded: current >= limit
}
});
}
/**
* Configuration validation logging
*/
export function configLog(component, valid, issues = []) {
logger.info('Configuration Check', {
config: {
component,
valid,
issues
}
});
}
/**
* Health check logging
*/
export function healthLog(component, status, details = {}) {
const level = status === 'healthy' ? 'info' : 'warn';
logger[level]('Health Check', {
health: {
component,
status,
...details
}
});
}
/**
* Startup logging
*/
export function startupLog(component, status, details = {}) {
logger.info('Startup Event', {
startup: {
component,
status,
...details
}
});
}
/**
* Shutdown logging
*/
export function shutdownLog(component, reason, details = {}) {
logger.info('Shutdown Event', {
shutdown: {
component,
reason,
...details
}
});
}
// Add custom methods to logger
logger.audit = auditLog;
logger.auth = authLog;
logger.request = requestLog;
logger.errorLog = errorLog;
logger.performance = performanceLog;
logger.db = dbLog;
logger.crypto = cryptoLog;
logger.rateLimit = rateLimitLog;
logger.config = configLog;
logger.health = healthLog;
logger.startup = startupLog;
logger.shutdown = shutdownLog;
// Stream interface for Morgan
logger.stream = {
write: (message) => {
logger.info(message.trim());
}
};
export default logger;