mirror of
https://github.com/MCSManager/MCSManager.git
synced 2024-11-27 06:59:54 +08:00
83 lines
2.3 KiB
JavaScript
83 lines
2.3 KiB
JavaScript
//工具箱
|
|
|
|
const os = require("os");
|
|
const childProcess = require('child_process');
|
|
|
|
module.exports.startProcess = (command, parList, ProcessConfigs, callback) => {
|
|
let process =
|
|
childProcess.spawn(command, parList, ProcessConfigs);
|
|
process.on('exit', (code) => {
|
|
callback('exit', code);
|
|
});
|
|
}
|
|
|
|
module.exports.getMineTime = () => {
|
|
var date = new Date();
|
|
return date.getHours() + ':' + date.getMinutes() + ':' + date.getSeconds();
|
|
}
|
|
|
|
module.exports.between = (value, MIN, MAX) => {
|
|
if (typeof value === 'number') {
|
|
return value >= MIN && value <= MAX;
|
|
}
|
|
if (typeof value === 'string' || value instanceof Array) {
|
|
return value.length >= MIN && value.length <= MAX;
|
|
}
|
|
}
|
|
|
|
const crypto = require('crypto');
|
|
module.exports.md5 = () => {
|
|
return crypto.createHash('md5').update(text).digest('hex');
|
|
}
|
|
|
|
module.exports.randomString = (len) => {
|
|
len = len || 64;
|
|
var $chars = 'ABCDEFGHIJKLNMOPQRSTUVWXYZabcdefghijklnmopqrstuvwxyz1234567890_';
|
|
var maxPos = $chars.length;
|
|
var pwd = '';
|
|
for (i = 0; i < len; i++) {
|
|
pwd += $chars.charAt(Math.floor(Math.random() * maxPos));
|
|
}
|
|
return pwd;
|
|
}
|
|
|
|
const fs = require("fs");
|
|
module.exports.autoLoadModule = (proPath, minePath, callback) => {
|
|
let routeList = fs.readdirSync('./' + proPath);
|
|
for (let key in routeList) {
|
|
let name = routeList[key].replace('.js', '');
|
|
try {
|
|
callback('./' + minePath + name, proPath);
|
|
} catch (err) {
|
|
MCSERVER.error("autoLoadModule load 过程出错", err);
|
|
throw err;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
module.exports.mCopyFileSync = (oldpath, newpath) => {
|
|
let resetData = fs.readFileSync(oldpath, {
|
|
encoding: 'UTF-8'
|
|
});
|
|
fs.writeFileSync(newpath, resetData, {
|
|
encoding: 'UTF-8'
|
|
});
|
|
return true;
|
|
}
|
|
|
|
module.exports.getSystemCodeing = () => {
|
|
let auto_console_coding;
|
|
if (os.platform() == "win32")
|
|
auto_console_coding = 'GBK';
|
|
else
|
|
auto_console_coding = 'UTF-8';
|
|
return auto_console_coding;
|
|
}
|
|
|
|
|
|
module.exports.getFullTime = () => {
|
|
var date = new Date();
|
|
return date.getFullYear() + '/' + date.getMonth() + '/' + date.getDay() + ' ' +
|
|
date.getHours() + ':' + date.getMinutes() + ':' + date.getSeconds();
|
|
} |