2016-02-07 05:23:23 -05:00
|
|
|
// Thanks http://tostring.it/2014/06/23/advanced-logging-with-nodejs/
|
2021-07-26 09:04:37 -04:00
|
|
|
import { mkdirpSync, stat } from 'fs-extra'
|
2021-01-25 09:37:41 -05:00
|
|
|
import { omit } from 'lodash'
|
2017-06-05 15:53:49 -04:00
|
|
|
import * as path from 'path'
|
2021-01-25 09:37:41 -05:00
|
|
|
import { format as sqlFormat } from 'sql-formatter'
|
2017-06-05 15:53:49 -04:00
|
|
|
import * as winston from 'winston'
|
2019-06-11 08:30:44 -04:00
|
|
|
import { FileTransportOptions } from 'winston/lib/winston/transports'
|
2019-04-11 05:33:44 -04:00
|
|
|
import { CONFIG } from '../initializers/config'
|
2020-01-20 14:40:30 -05:00
|
|
|
import { LOG_FILENAME } from '../initializers/constants'
|
2015-06-09 11:41:40 -04:00
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
const label = CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT
|
2016-05-01 03:58:34 -04:00
|
|
|
|
|
|
|
// Create the directory if it does not exist
|
2019-04-10 09:26:33 -04:00
|
|
|
// FIXME: use async
|
2018-08-27 07:28:49 -04:00
|
|
|
mkdirpSync(CONFIG.STORAGE.LOG_DIR)
|
2016-05-01 03:58:34 -04:00
|
|
|
|
2019-11-05 05:08:51 -05:00
|
|
|
function getLoggerReplacer () {
|
|
|
|
const seen = new WeakSet()
|
2018-07-30 04:59:31 -04:00
|
|
|
|
2019-11-05 05:08:51 -05:00
|
|
|
// Thanks: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Errors/Cyclic_object_value#Examples
|
|
|
|
return (key: string, value: any) => {
|
2020-11-25 08:43:18 -05:00
|
|
|
if (key === 'cert') return 'Replaced by the logger to avoid large log message'
|
|
|
|
|
2019-11-05 05:08:51 -05:00
|
|
|
if (typeof value === 'object' && value !== null) {
|
|
|
|
if (seen.has(value)) return
|
2018-03-26 09:54:13 -04:00
|
|
|
|
2019-11-05 05:08:51 -05:00
|
|
|
seen.add(value)
|
|
|
|
}
|
|
|
|
|
2021-01-28 09:52:44 -05:00
|
|
|
if (value instanceof Set) {
|
|
|
|
return Array.from(value)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (value instanceof Map) {
|
|
|
|
return Array.from(value.entries())
|
|
|
|
}
|
|
|
|
|
2019-11-05 05:08:51 -05:00
|
|
|
if (value instanceof Error) {
|
|
|
|
const error = {}
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
Object.getOwnPropertyNames(value).forEach(key => { error[key] = value[key] })
|
2018-03-26 09:54:13 -04:00
|
|
|
|
2019-11-05 05:08:51 -05:00
|
|
|
return error
|
|
|
|
}
|
|
|
|
|
|
|
|
return value
|
|
|
|
}
|
2018-01-19 07:58:13 -05:00
|
|
|
}
|
|
|
|
|
2018-02-21 04:07:02 -05:00
|
|
|
const consoleLoggerFormat = winston.format.printf(info => {
|
2021-03-05 07:26:02 -05:00
|
|
|
const toOmit = [ 'label', 'timestamp', 'level', 'message', 'sql', 'tags' ]
|
2021-01-26 03:54:32 -05:00
|
|
|
|
|
|
|
const obj = omit(info, ...toOmit)
|
2018-08-31 05:43:46 -04:00
|
|
|
|
2019-11-05 05:08:51 -05:00
|
|
|
let additionalInfos = JSON.stringify(obj, getLoggerReplacer(), 2)
|
2019-04-10 09:26:33 -04:00
|
|
|
|
2018-07-30 04:59:31 -04:00
|
|
|
if (additionalInfos === undefined || additionalInfos === '{}') additionalInfos = ''
|
2018-01-19 08:47:03 -05:00
|
|
|
else additionalInfos = ' ' + additionalInfos
|
2018-01-19 07:58:13 -05:00
|
|
|
|
2021-01-26 04:03:41 -05:00
|
|
|
if (info.sql) {
|
|
|
|
if (CONFIG.LOG.PRETTIFY_SQL) {
|
|
|
|
additionalInfos += '\n' + sqlFormat(info.sql, {
|
|
|
|
language: 'sql',
|
2021-02-03 03:33:05 -05:00
|
|
|
indent: ' '
|
2021-01-26 04:03:41 -05:00
|
|
|
})
|
|
|
|
} else {
|
|
|
|
additionalInfos += ' - ' + info.sql
|
|
|
|
}
|
2021-01-25 09:37:41 -05:00
|
|
|
}
|
|
|
|
|
2018-01-19 08:47:03 -05:00
|
|
|
return `[${info.label}] ${info.timestamp} ${info.level}: ${info.message}${additionalInfos}`
|
2018-01-19 07:58:13 -05:00
|
|
|
})
|
|
|
|
|
2018-07-30 04:59:31 -04:00
|
|
|
const jsonLoggerFormat = winston.format.printf(info => {
|
2019-11-05 05:08:51 -05:00
|
|
|
return JSON.stringify(info, getLoggerReplacer())
|
2018-02-21 04:07:02 -05:00
|
|
|
})
|
|
|
|
|
2018-01-19 07:58:13 -05:00
|
|
|
const timestampFormatter = winston.format.timestamp({
|
2018-03-08 12:16:15 -05:00
|
|
|
format: 'YYYY-MM-DD HH:mm:ss.SSS'
|
2018-01-19 07:58:13 -05:00
|
|
|
})
|
2020-04-09 03:57:32 -04:00
|
|
|
const labelFormatter = (suffix?: string) => {
|
|
|
|
return winston.format.label({
|
|
|
|
label: suffix ? `${label} ${suffix}` : label
|
|
|
|
})
|
|
|
|
}
|
2018-01-19 07:58:13 -05:00
|
|
|
|
2019-06-11 08:30:44 -04:00
|
|
|
const fileLoggerOptions: FileTransportOptions = {
|
2019-12-11 08:14:01 -05:00
|
|
|
filename: path.join(CONFIG.STORAGE.LOG_DIR, LOG_FILENAME),
|
2019-06-11 08:30:44 -04:00
|
|
|
handleExceptions: true,
|
|
|
|
format: winston.format.combine(
|
|
|
|
winston.format.timestamp(),
|
|
|
|
jsonLoggerFormat
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-12-12 11:15:38 -05:00
|
|
|
if (CONFIG.LOG.ROTATION.ENABLED) {
|
|
|
|
fileLoggerOptions.maxsize = CONFIG.LOG.ROTATION.MAX_FILE_SIZE
|
|
|
|
fileLoggerOptions.maxFiles = CONFIG.LOG.ROTATION.MAX_FILES
|
2019-06-11 08:30:44 -04:00
|
|
|
}
|
|
|
|
|
2020-04-09 03:57:32 -04:00
|
|
|
const logger = buildLogger()
|
|
|
|
|
|
|
|
function buildLogger (labelSuffix?: string) {
|
|
|
|
return winston.createLogger({
|
|
|
|
level: CONFIG.LOG.LEVEL,
|
|
|
|
format: winston.format.combine(
|
|
|
|
labelFormatter(labelSuffix),
|
|
|
|
winston.format.splat()
|
|
|
|
),
|
|
|
|
transports: [
|
|
|
|
new winston.transports.File(fileLoggerOptions),
|
|
|
|
new winston.transports.Console({
|
|
|
|
handleExceptions: true,
|
|
|
|
format: winston.format.combine(
|
|
|
|
timestampFormatter,
|
|
|
|
winston.format.colorize(),
|
|
|
|
consoleLoggerFormat
|
|
|
|
)
|
|
|
|
})
|
|
|
|
],
|
|
|
|
exitOnError: true
|
|
|
|
})
|
|
|
|
}
|
2015-06-09 11:41:40 -04:00
|
|
|
|
2018-03-22 06:32:43 -04:00
|
|
|
function bunyanLogFactory (level: string) {
|
|
|
|
return function () {
|
|
|
|
let meta = null
|
2018-07-25 16:01:25 -04:00
|
|
|
let args: any[] = []
|
|
|
|
args.concat(arguments)
|
2018-03-22 06:32:43 -04:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
if (arguments[0] instanceof Error) {
|
|
|
|
meta = arguments[0].toString()
|
2018-03-22 06:32:43 -04:00
|
|
|
args = Array.prototype.slice.call(arguments, 1)
|
|
|
|
args.push(meta)
|
2020-01-31 10:56:52 -05:00
|
|
|
} else if (typeof (args[0]) !== 'string') {
|
|
|
|
meta = arguments[0]
|
2018-03-22 06:32:43 -04:00
|
|
|
args = Array.prototype.slice.call(arguments, 1)
|
|
|
|
args.push(meta)
|
|
|
|
}
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
logger[level].apply(logger, args)
|
2018-03-22 06:32:43 -04:00
|
|
|
}
|
|
|
|
}
|
2020-01-31 10:56:52 -05:00
|
|
|
|
2018-03-22 06:32:43 -04:00
|
|
|
const bunyanLogger = {
|
|
|
|
trace: bunyanLogFactory('debug'),
|
|
|
|
debug: bunyanLogFactory('debug'),
|
|
|
|
info: bunyanLogFactory('info'),
|
|
|
|
warn: bunyanLogFactory('warn'),
|
|
|
|
error: bunyanLogFactory('error'),
|
|
|
|
fatal: bunyanLogFactory('error')
|
|
|
|
}
|
2021-03-05 07:26:02 -05:00
|
|
|
|
2021-06-02 10:49:59 -04:00
|
|
|
type LoggerTagsFn = (...tags: string[]) => { tags: string[] }
|
|
|
|
function loggerTagsFactory (...defaultTags: string[]): LoggerTagsFn {
|
2021-03-05 07:26:02 -05:00
|
|
|
return (...tags: string[]) => {
|
|
|
|
return { tags: defaultTags.concat(tags) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-26 09:04:37 -04:00
|
|
|
async function mtimeSortFilesDesc (files: string[], basePath: string) {
|
|
|
|
const promises = []
|
|
|
|
const out: { file: string, mtime: number }[] = []
|
|
|
|
|
|
|
|
for (const file of files) {
|
|
|
|
const p = stat(basePath + '/' + file)
|
|
|
|
.then(stats => {
|
|
|
|
if (stats.isFile()) out.push({ file, mtime: stats.mtime.getTime() })
|
|
|
|
})
|
|
|
|
|
|
|
|
promises.push(p)
|
|
|
|
}
|
|
|
|
|
|
|
|
await Promise.all(promises)
|
|
|
|
|
|
|
|
out.sort((a, b) => b.mtime - a.mtime)
|
|
|
|
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 05:23:52 -05:00
|
|
|
|
2018-01-19 07:58:13 -05:00
|
|
|
export {
|
2021-06-02 10:49:59 -04:00
|
|
|
LoggerTagsFn,
|
|
|
|
|
2020-04-09 03:57:32 -04:00
|
|
|
buildLogger,
|
2018-01-19 07:58:13 -05:00
|
|
|
timestampFormatter,
|
|
|
|
labelFormatter,
|
2018-02-21 04:07:02 -05:00
|
|
|
consoleLoggerFormat,
|
2018-07-31 08:02:47 -04:00
|
|
|
jsonLoggerFormat,
|
2021-07-26 09:04:37 -04:00
|
|
|
mtimeSortFilesDesc,
|
2018-03-22 06:32:43 -04:00
|
|
|
logger,
|
2021-03-05 07:26:02 -05:00
|
|
|
loggerTagsFactory,
|
2018-03-22 06:32:43 -04:00
|
|
|
bunyanLogger
|
2018-01-19 07:58:13 -05:00
|
|
|
}
|