This repository was archived by the owner on Aug 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
65 lines (53 loc) · 1.57 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
58
59
60
61
62
63
64
65
'use strict'
// **Github:** https://github.com/toajs/toa-logging
//
// **License:** MIT
// Modified from https://github.com/expressjs/logging
const ilog = require('ilog')
/**
* Create a logging middleware.
*
* @param {Object} [options]
* @return {Function} Toa middleware
* @public
*/
function logging (options) {
options = options || {}
// check if log entry should be skipped
const skipper = typeof options.skipper === 'function' ? options.skipper : noOp
const initFn = typeof options.init === 'function' ? options.init : defaultInit
const consumeFn = typeof options.consume === 'function' ? options.consume : defaultConsume
return function logger () {
if (skipper.call(this)) return
this.state.log = new Log(this)
initFn.call(this, this.state.log)
this.on('end', handle).on('close', handle)
}
function handle () {
this.removeListener('end', handle).removeListener('close', handle)
let log = this.state.log
if (log.start > 0) log.time = Date.now() - log.start
consumeFn.call(this, log)
}
}
function noOp () { return false }
function defaultInit (log) {} // do nothing~
function defaultConsume (log) {
log.status = this.status
ilog.info(log) // write the log by ilog.info
}
class Log {
constructor (ctx) {
this.start = Date.now()
this.time = 0
this.ip = ctx.ip
this.method = ctx.method
this.url = ctx.originalUrl
this.protocol = ctx.protocol
this.origin = ctx.get('origin')
this.referer = ctx.get('referer')
this.userAgent = ctx.get('user-agent')
}
}
logging.Log = Log
module.exports = logging