1
0
Fork 0
peertube/server/helpers/logger.ts

209 lines
5.5 KiB
TypeScript
Raw Normal View History

2021-10-26 06:37:00 +00:00
import { stat } from 'fs-extra'
2021-08-27 12:32:44 +00:00
import { join } from 'path'
import { format as sqlFormat } from 'sql-formatter'
2021-08-27 12:32:44 +00:00
import { createLogger, format, transports } from 'winston'
import { FileTransportOptions } from 'winston/lib/winston/transports'
2022-07-05 13:43:21 +00:00
import { context } from '@opentelemetry/api'
import { getSpanContext } from '@opentelemetry/api/build/src/trace/context-utils'
2022-08-17 13:25:58 +00:00
import { omit } from '@shared/core-utils'
2019-04-11 09:33:44 +00:00
import { CONFIG } from '../initializers/config'
import { LOG_FILENAME } from '../initializers/constants'
2015-06-09 15:41:40 +00:00
2017-05-15 20:22:03 +00:00
const label = CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT
2021-08-27 12:32:44 +00:00
const consoleLoggerFormat = format.printf(info => {
2022-07-05 13:43:21 +00:00
let additionalInfos = JSON.stringify(getAdditionalInfo(info), removeCyclicValues(), 2)
2019-04-10 13:26:33 +00:00
2018-07-30 08:59:31 +00:00
if (additionalInfos === undefined || additionalInfos === '{}') additionalInfos = ''
2018-01-19 13:47:03 +00:00
else additionalInfos = ' ' + additionalInfos
2018-01-19 12:58:13 +00:00
2021-01-26 09:03:41 +00:00
if (info.sql) {
if (CONFIG.LOG.PRETTIFY_SQL) {
additionalInfos += '\n' + sqlFormat(info.sql, {
language: 'sql',
2022-06-21 09:16:38 +00:00
tabWidth: 2
2021-01-26 09:03:41 +00:00
})
} else {
additionalInfos += ' - ' + info.sql
}
}
2018-01-19 13:47:03 +00:00
return `[${info.label}] ${info.timestamp} ${info.level}: ${info.message}${additionalInfos}`
2018-01-19 12:58:13 +00:00
})
2021-08-27 12:32:44 +00:00
const jsonLoggerFormat = format.printf(info => {
2022-07-05 13:43:21 +00:00
return JSON.stringify(info, removeCyclicValues())
})
2021-08-27 12:32:44 +00:00
const timestampFormatter = format.timestamp({
2018-03-08 17:16:15 +00:00
format: 'YYYY-MM-DD HH:mm:ss.SSS'
2018-01-19 12:58:13 +00:00
})
2020-04-09 07:57:32 +00:00
const labelFormatter = (suffix?: string) => {
2021-08-27 12:32:44 +00:00
return format.label({
2020-04-09 07:57:32 +00:00
label: suffix ? `${label} ${suffix}` : label
})
}
2018-01-19 12:58:13 +00:00
const fileLoggerOptions: FileTransportOptions = {
2021-08-27 12:32:44 +00:00
filename: join(CONFIG.STORAGE.LOG_DIR, LOG_FILENAME),
handleExceptions: true,
2021-08-27 12:32:44 +00:00
format: format.combine(
format.timestamp(),
jsonLoggerFormat
)
}
if (CONFIG.LOG.ROTATION.ENABLED) {
fileLoggerOptions.maxsize = CONFIG.LOG.ROTATION.MAX_FILE_SIZE
fileLoggerOptions.maxFiles = CONFIG.LOG.ROTATION.MAX_FILES
}
2020-04-09 07:57:32 +00:00
function buildLogger (labelSuffix?: string) {
2021-08-27 12:32:44 +00:00
return createLogger({
2020-04-09 07:57:32 +00:00
level: CONFIG.LOG.LEVEL,
2022-07-05 13:43:21 +00:00
defaultMeta: {
get traceId () { return getSpanContext(context.active())?.traceId },
get spanId () { return getSpanContext(context.active())?.spanId },
get traceFlags () { return getSpanContext(context.active())?.traceFlags }
},
2021-08-27 12:32:44 +00:00
format: format.combine(
2020-04-09 07:57:32 +00:00
labelFormatter(labelSuffix),
2021-08-27 12:32:44 +00:00
format.splat()
2020-04-09 07:57:32 +00:00
),
transports: [
2021-08-27 12:32:44 +00:00
new transports.File(fileLoggerOptions),
new transports.Console({
2020-04-09 07:57:32 +00:00
handleExceptions: true,
2021-08-27 12:32:44 +00:00
format: format.combine(
2020-04-09 07:57:32 +00:00
timestampFormatter,
2021-08-27 12:32:44 +00:00
format.colorize(),
2020-04-09 07:57:32 +00:00
consoleLoggerFormat
)
})
],
exitOnError: true
})
}
2015-06-09 15:41:40 +00:00
2022-07-05 13:43:21 +00:00
const logger = buildLogger()
// ---------------------------------------------------------------------------
2018-03-22 10:32:43 +00:00
function bunyanLogFactory (level: string) {
2021-10-11 12:49:10 +00:00
return function (...params: any[]) {
2018-03-22 10:32:43 +00:00
let meta = null
2021-10-11 12:49:10 +00:00
let args = [].concat(params)
2018-03-22 10:32:43 +00:00
2020-01-31 15:56:52 +00:00
if (arguments[0] instanceof Error) {
meta = arguments[0].toString()
2018-03-22 10:32:43 +00:00
args = Array.prototype.slice.call(arguments, 1)
args.push(meta)
2020-01-31 15:56:52 +00:00
} else if (typeof (args[0]) !== 'string') {
meta = arguments[0]
2018-03-22 10:32:43 +00:00
args = Array.prototype.slice.call(arguments, 1)
args.push(meta)
}
2020-01-31 15:56:52 +00:00
logger[level].apply(logger, args)
2018-03-22 10:32:43 +00:00
}
}
2020-01-31 15:56:52 +00:00
2018-03-22 10:32:43 +00:00
const bunyanLogger = {
2021-10-11 12:49:10 +00:00
level: () => { },
2018-03-22 10:32:43 +00:00
trace: bunyanLogFactory('debug'),
debug: bunyanLogFactory('debug'),
2022-07-05 13:43:21 +00:00
verbose: bunyanLogFactory('debug'),
2018-03-22 10:32:43 +00:00
info: bunyanLogFactory('info'),
warn: bunyanLogFactory('warn'),
error: bunyanLogFactory('error'),
fatal: bunyanLogFactory('error')
}
2022-07-05 13:43:21 +00:00
// ---------------------------------------------------------------------------
2021-06-02 14:49:59 +00:00
type LoggerTagsFn = (...tags: string[]) => { tags: string[] }
function loggerTagsFactory (...defaultTags: string[]): LoggerTagsFn {
return (...tags: string[]) => {
return { tags: defaultTags.concat(tags) }
}
}
2022-07-05 13:43:21 +00:00
// ---------------------------------------------------------------------------
2021-07-26 13:04:37 +00: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-01-31 10:23:52 +00:00
2018-01-19 12:58:13 +00:00
export {
2021-06-02 14:49:59 +00:00
LoggerTagsFn,
2020-04-09 07:57:32 +00:00
buildLogger,
2018-01-19 12:58:13 +00:00
timestampFormatter,
labelFormatter,
consoleLoggerFormat,
2018-07-31 12:02:47 +00:00
jsonLoggerFormat,
2021-07-26 13:04:37 +00:00
mtimeSortFilesDesc,
2018-03-22 10:32:43 +00:00
logger,
loggerTagsFactory,
2018-03-22 10:32:43 +00:00
bunyanLogger
2018-01-19 12:58:13 +00:00
}
2022-07-05 13:43:21 +00:00
// ---------------------------------------------------------------------------
function removeCyclicValues () {
const seen = new WeakSet()
// Thanks: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Errors/Cyclic_object_value#Examples
return (key: string, value: any) => {
if (key === 'cert') return 'Replaced by the logger to avoid large log message'
if (typeof value === 'object' && value !== null) {
if (seen.has(value)) return
seen.add(value)
}
if (value instanceof Set) {
return Array.from(value)
}
if (value instanceof Map) {
return Array.from(value.entries())
}
if (value instanceof Error) {
const error = {}
Object.getOwnPropertyNames(value).forEach(key => { error[key] = value[key] })
return error
}
return value
}
}
function getAdditionalInfo (info: any) {
const toOmit = [ 'label', 'timestamp', 'level', 'message', 'sql', 'tags' ]
2022-08-17 13:25:58 +00:00
return omit(info, toOmit)
2022-07-05 13:43:21 +00:00
}