mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
const wraptile = require('wraptile/legacy');
|
|
const chalk = require('chalk');
|
|
|
|
const config = require('../config');
|
|
const datetime = require('../../common/datetime');
|
|
|
|
const log = (name, msg) => config('log') && console.log(`${datetime()} -> ${name}: ${msg}`);
|
|
const makeColor = (a, color) => chalk.rgb.apply(chalk, color || stringToRGB(a))(a);
|
|
const getMessage = (e) => e.message || e;
|
|
const getDescription = (e) => `${e.type}: ${e.description}`;
|
|
|
|
module.exports = log;
|
|
module.exports.logWraped = wraptile(log);
|
|
module.exports.stringToRGB = stringToRGB;
|
|
module.exports.makeColor = makeColor;
|
|
module.exports.getMessage = getMessage;
|
|
module.exports.getDescription = getDescription;
|
|
|
|
module.exports.importStr = 'import';
|
|
module.exports.exportStr = 'export';
|
|
module.exports.connectedStr = chalk.green('connected');
|
|
module.exports.disconnectedStr = chalk.red('disconnected');
|
|
module.exports.tokenRejectedStr = chalk.red('token rejected');
|
|
module.exports.authTryStr = chalk.yellow('try to auth');
|
|
|
|
function stringToRGB(a) {
|
|
return [
|
|
a.charCodeAt(0),
|
|
a.length,
|
|
crc(a),
|
|
];
|
|
}
|
|
|
|
const add = (a, b) => {
|
|
return a + b.charCodeAt(0);
|
|
};
|
|
|
|
function crc(a) {
|
|
return a
|
|
.split('')
|
|
.reduce(add, 0);
|
|
}
|
|
|