2021-06-25 11:39:27 -04:00
|
|
|
import { program } from 'commander'
|
2019-04-10 09:26:33 -04:00
|
|
|
import { createReadStream, readdir } from 'fs-extra'
|
2017-11-16 11:29:05 -05:00
|
|
|
import { join } from 'path'
|
|
|
|
import { createInterface } from 'readline'
|
2022-01-03 11:13:11 -05:00
|
|
|
import { format as sqlFormat } from 'sql-formatter'
|
|
|
|
import { inspect } from 'util'
|
2017-11-16 11:29:05 -05:00
|
|
|
import * as winston from 'winston'
|
2021-07-26 09:04:37 -04:00
|
|
|
import { labelFormatter, mtimeSortFilesDesc } from '../server/helpers/logger'
|
2019-04-11 08:26:41 -04:00
|
|
|
import { CONFIG } from '../server/initializers/config'
|
2017-11-16 11:29:05 -05:00
|
|
|
|
2018-06-19 04:45:33 -04:00
|
|
|
program
|
|
|
|
.option('-l, --level [level]', 'Level log (debug/info/warn/error)')
|
2020-12-10 09:43:01 -05:00
|
|
|
.option('-f, --files [file...]', 'Files to parse. If not provided, the script will parse the latest log file from config)')
|
2021-03-05 07:26:02 -05:00
|
|
|
.option('-t, --tags [tags...]', 'Display only lines with these tags')
|
|
|
|
.option('-nt, --not-tags [tags...]', 'Donrt display lines containing these tags')
|
2018-06-19 04:45:33 -04:00
|
|
|
.parse(process.argv)
|
|
|
|
|
2021-02-03 03:33:05 -05:00
|
|
|
const options = program.opts()
|
|
|
|
|
2018-01-25 09:05:18 -05:00
|
|
|
const excludedKeys = {
|
|
|
|
level: true,
|
|
|
|
message: true,
|
|
|
|
splat: true,
|
|
|
|
timestamp: true,
|
2021-03-05 07:26:02 -05:00
|
|
|
tags: true,
|
2021-02-01 09:03:32 -05:00
|
|
|
label: true,
|
|
|
|
sql: true
|
2018-01-25 09:05:18 -05:00
|
|
|
}
|
|
|
|
function keysExcluder (key, value) {
|
|
|
|
return excludedKeys[key] === true ? undefined : value
|
|
|
|
}
|
|
|
|
|
|
|
|
const loggerFormat = winston.format.printf((info) => {
|
|
|
|
let additionalInfos = JSON.stringify(info, keysExcluder, 2)
|
|
|
|
if (additionalInfos === '{}') additionalInfos = ''
|
|
|
|
else additionalInfos = ' ' + additionalInfos
|
|
|
|
|
2021-02-01 09:03:32 -05:00
|
|
|
if (info.sql) {
|
|
|
|
if (CONFIG.LOG.PRETTIFY_SQL) {
|
|
|
|
additionalInfos += '\n' + sqlFormat(info.sql, {
|
|
|
|
language: 'sql',
|
2022-06-21 05:16:38 -04:00
|
|
|
tabWidth: 2
|
2021-02-01 09:03:32 -05:00
|
|
|
})
|
|
|
|
} else {
|
|
|
|
additionalInfos += ' - ' + info.sql
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-08 12:16:15 -05:00
|
|
|
return `[${info.label}] ${toTimeFormat(info.timestamp)} ${info.level}: ${info.message}${additionalInfos}`
|
2018-01-25 09:05:18 -05:00
|
|
|
})
|
|
|
|
|
2018-06-26 11:52:14 -04:00
|
|
|
const logger = winston.createLogger({
|
2017-11-16 11:29:05 -05:00
|
|
|
transports: [
|
|
|
|
new winston.transports.Console({
|
2021-02-03 03:33:05 -05:00
|
|
|
level: options.level || 'debug',
|
2018-01-19 07:58:13 -05:00
|
|
|
stderrLevels: [],
|
|
|
|
format: winston.format.combine(
|
|
|
|
winston.format.splat(),
|
2020-04-09 05:00:30 -04:00
|
|
|
labelFormatter(),
|
2018-01-19 07:58:13 -05:00
|
|
|
winston.format.colorize(),
|
|
|
|
loggerFormat
|
|
|
|
)
|
2017-11-16 11:29:05 -05:00
|
|
|
})
|
|
|
|
],
|
|
|
|
exitOnError: true
|
|
|
|
})
|
|
|
|
|
|
|
|
const logLevels = {
|
2018-01-19 07:58:13 -05:00
|
|
|
error: logger.error.bind(logger),
|
|
|
|
warn: logger.warn.bind(logger),
|
|
|
|
info: logger.info.bind(logger),
|
|
|
|
debug: logger.debug.bind(logger)
|
2017-11-16 11:29:05 -05:00
|
|
|
}
|
|
|
|
|
2019-04-10 09:26:33 -04:00
|
|
|
run()
|
|
|
|
.then(() => process.exit(0))
|
|
|
|
.catch(err => console.error(err))
|
2018-06-26 11:52:14 -04:00
|
|
|
|
2019-04-10 09:26:33 -04:00
|
|
|
function run () {
|
2021-02-03 03:33:05 -05:00
|
|
|
return new Promise<void>(async res => {
|
2020-12-10 09:43:01 -05:00
|
|
|
const files = await getFiles()
|
2017-11-16 11:29:05 -05:00
|
|
|
|
2020-12-10 09:43:01 -05:00
|
|
|
for (const file of files) {
|
2021-06-16 09:14:41 -04:00
|
|
|
if (file === 'peertube-audit.log') continue
|
|
|
|
|
2020-12-10 09:43:01 -05:00
|
|
|
console.log('Opening %s.', file)
|
2017-11-16 11:29:05 -05:00
|
|
|
|
2020-12-10 09:43:01 -05:00
|
|
|
const stream = createReadStream(file)
|
2017-11-17 05:35:10 -05:00
|
|
|
|
2020-12-10 09:43:01 -05:00
|
|
|
const rl = createInterface({
|
|
|
|
input: stream
|
|
|
|
})
|
2018-03-08 12:16:15 -05:00
|
|
|
|
2020-12-10 09:43:01 -05:00
|
|
|
rl.on('line', line => {
|
2020-12-22 04:15:06 -05:00
|
|
|
try {
|
|
|
|
const log = JSON.parse(line)
|
2021-03-05 07:26:02 -05:00
|
|
|
if (options.tags && !containsTags(log.tags, options.tags)) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options.notTags && containsTags(log.tags, options.notTags)) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-12-22 04:15:06 -05:00
|
|
|
// Don't know why but loggerFormat does not remove splat key
|
|
|
|
Object.assign(log, { splat: undefined })
|
|
|
|
|
|
|
|
logLevels[log.level](log)
|
|
|
|
} catch (err) {
|
2021-01-26 03:54:32 -05:00
|
|
|
console.error('Cannot parse line.', inspect(line))
|
2020-12-22 04:15:06 -05:00
|
|
|
throw err
|
|
|
|
}
|
2020-12-10 09:43:01 -05:00
|
|
|
})
|
2018-03-08 12:16:15 -05:00
|
|
|
|
2020-12-10 09:43:01 -05:00
|
|
|
stream.once('close', () => res())
|
|
|
|
}
|
2019-04-10 09:26:33 -04:00
|
|
|
})
|
2018-03-08 12:16:15 -05:00
|
|
|
}
|
2018-07-16 08:38:11 -04:00
|
|
|
|
|
|
|
// Thanks: https://stackoverflow.com/a/37014317
|
2019-04-10 09:26:33 -04:00
|
|
|
async function getNewestFile (files: string[], basePath: string) {
|
|
|
|
const sorted = await mtimeSortFilesDesc(files, basePath)
|
2018-07-16 08:38:11 -04:00
|
|
|
|
2020-07-30 08:54:31 -04:00
|
|
|
return (sorted.length > 0) ? sorted[0].file : ''
|
2019-04-10 09:26:33 -04:00
|
|
|
}
|
|
|
|
|
2020-12-10 09:43:01 -05:00
|
|
|
async function getFiles () {
|
2021-02-03 03:33:05 -05:00
|
|
|
if (options.files) return options.files
|
2020-12-10 09:43:01 -05:00
|
|
|
|
|
|
|
const logFiles = await readdir(CONFIG.STORAGE.LOG_DIR)
|
|
|
|
|
|
|
|
const filename = await getNewestFile(logFiles, CONFIG.STORAGE.LOG_DIR)
|
|
|
|
return [ join(CONFIG.STORAGE.LOG_DIR, filename) ]
|
|
|
|
}
|
|
|
|
|
2019-04-10 09:26:33 -04:00
|
|
|
function toTimeFormat (time: string) {
|
|
|
|
const timestamp = Date.parse(time)
|
2018-07-16 08:38:11 -04:00
|
|
|
|
2019-04-10 09:26:33 -04:00
|
|
|
if (isNaN(timestamp) === true) return 'Unknown date'
|
2018-07-16 08:38:11 -04:00
|
|
|
|
2021-06-29 09:22:12 -04:00
|
|
|
const d = new Date(timestamp)
|
|
|
|
return d.toLocaleString() + `.${d.getMilliseconds()}`
|
2018-07-30 04:59:31 -04:00
|
|
|
}
|
2021-03-05 07:26:02 -05:00
|
|
|
|
|
|
|
function containsTags (loggerTags: string[], optionsTags: string[]) {
|
|
|
|
if (!loggerTags) return false
|
|
|
|
|
|
|
|
for (const lt of loggerTags) {
|
|
|
|
for (const ot of optionsTags) {
|
|
|
|
if (lt === ot) return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|