2019-03-09 03:31:29 +00:00
|
|
|
'use strict';
|
|
|
|
const { createLogger, format, transports } = require('winston');
|
|
|
|
const { combine, timestamp, label, printf } = format;
|
|
|
|
const path = require('path');
|
|
|
|
const fs = require('fs-extra');
|
|
|
|
const os = require('os');
|
|
|
|
const logTime = 'MM/DD/YY-HH:mm:ss';
|
|
|
|
let transport;
|
2019-03-18 20:50:40 +00:00
|
|
|
/**
|
|
|
|
* Determine the location of the log file based on the operating system
|
|
|
|
* and return as an absolute string from os.homedir()
|
|
|
|
*
|
|
|
|
* @returns {string} Path to log file
|
|
|
|
**/
|
2019-03-09 03:31:29 +00:00
|
|
|
async function logFile() {
|
2019-03-18 20:50:40 +00:00
|
|
|
const homeDir = os.homedir();
|
|
|
|
const linuxDir = `/.config/mcopy-cli/`;
|
|
|
|
const macDir = `/Library/Logs/mcopy-cli/`;
|
|
|
|
const winDir = `/AppData/Roaming/mcopy-cli/`;
|
|
|
|
let logPath = path.join(homeDir, linuxDir);
|
2019-03-09 03:31:29 +00:00
|
|
|
let exists;
|
|
|
|
if (process.platform === 'darwin') {
|
2019-03-18 20:50:40 +00:00
|
|
|
logPath = path.join(homeDir, macDir);
|
2019-03-09 03:31:29 +00:00
|
|
|
}
|
|
|
|
else if (process.platform === 'win32') {
|
2019-03-18 20:50:40 +00:00
|
|
|
logPath = path.join(homeDir, winDir);
|
2019-03-09 03:31:29 +00:00
|
|
|
}
|
|
|
|
exists = await fs.exists(logPath);
|
|
|
|
if (!exists) {
|
|
|
|
await fs.mkdir(logPath);
|
|
|
|
}
|
|
|
|
return path.join(logPath, 'mcopy-cli.log');
|
|
|
|
}
|
2019-03-18 20:50:40 +00:00
|
|
|
/**
|
|
|
|
* Create and return the logger transport based on settings determined in
|
|
|
|
* arguments object
|
|
|
|
*
|
|
|
|
* @param {object} arg Arguments from process
|
|
|
|
*
|
|
|
|
* @returns {object} Logger transport
|
|
|
|
**/
|
2019-03-09 03:31:29 +00:00
|
|
|
module.exports = async function (arg) {
|
|
|
|
if (arg.quiet) {
|
|
|
|
transport = {
|
|
|
|
info: function () { },
|
|
|
|
warn: function () { },
|
|
|
|
error: function () { }
|
|
|
|
};
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
transport = createLogger({
|
|
|
|
transports: [
|
|
|
|
new (transports.Console)({
|
|
|
|
format: combine(format.colorize(), format.simple())
|
|
|
|
}),
|
|
|
|
new (transports.File)({
|
|
|
|
filename: await logFile()
|
|
|
|
})
|
|
|
|
]
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return transport;
|
|
|
|
};
|
|
|
|
//# sourceMappingURL=index.js.map
|