X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=scripts%2Fparse-log.ts;h=86aaa7994be9904fc51b3337441a2381c412ca96;hb=f7509cbec875ec4ee3201cce08839f2a02676c1c;hp=4e4f3df63c5d3d96aa064165b80f07a5584165a8;hpb=85b4d9c52eb8a6b3b54152cca5c6edde481c863c;p=github%2FChocobozzz%2FPeerTube.git diff --git a/scripts/parse-log.ts b/scripts/parse-log.ts index 4e4f3df63..86aaa7994 100755 --- a/scripts/parse-log.ts +++ b/scripts/parse-log.ts @@ -1,5 +1,5 @@ import * as program from 'commander' -import { createReadStream, readdirSync } from 'fs' +import { createReadStream, readdirSync, statSync } from 'fs-extra' import { join } from 'path' import { createInterface } from 'readline' import * as winston from 'winston' @@ -53,7 +53,7 @@ const logLevels = { } const logFiles = readdirSync(CONFIG.STORAGE.LOG_DIR) -const lastLogFile = logFiles[logFiles.length - 1] +const lastLogFile = getNewestFile(logFiles, CONFIG.STORAGE.LOG_DIR) const path = join(CONFIG.STORAGE.LOG_DIR, lastLogFile) console.log('Opening %s.', path) @@ -77,3 +77,17 @@ function toTimeFormat (time: string) { return new Date(timestamp).toISOString() } + +// Thanks: https://stackoverflow.com/a/37014317 +function getNewestFile (files: string[], basePath: string) { + const out = [] + + files.forEach(file => { + const stats = statSync(basePath + '/' + file) + if (stats.isFile()) out.push({ file, mtime: stats.mtime.getTime() }) + }) + + out.sort((a, b) => b.mtime - a.mtime) + + return (out.length > 0) ? out[ 0 ].file : '' +}