100 lines
2.9 KiB
JavaScript
100 lines
2.9 KiB
JavaScript
import fs from 'fs'
|
||
import inquirer from 'inquirer'
|
||
import cfg from './config.js'
|
||
import common from '../common/common.js'
|
||
import chalk from 'chalk'
|
||
|
||
/**
|
||
* 创建qq配置文件 `config/bot/qq.yaml`
|
||
* Git Bash 运行npm命令会无法选择列表
|
||
*/
|
||
export default async function createQQ () {
|
||
if (cfg.qq && !process.argv.includes('login')) {
|
||
return
|
||
}
|
||
console.log(`欢迎使用${chalk.green('Miao-Yunzai v' + cfg.package.version)}\n请按提示输入完成QQ配置`)
|
||
let propmtList = [
|
||
{
|
||
type: 'Input',
|
||
message: '请输入机器人QQ号(建议用小号):',
|
||
name: 'QQ',
|
||
validate (value) {
|
||
if (/^[1-9][0-9]{4,14}$/.test(value)) return true
|
||
return '请输入正确的QQ号'
|
||
}
|
||
},
|
||
{
|
||
type: process.platform == 'win32' ? 'Input' : 'password',
|
||
message: '请输入登录密码(为空则扫码登录):',
|
||
name: 'pwd'
|
||
},
|
||
{
|
||
type: 'list',
|
||
message: '请选择登录端口:',
|
||
name: 'platform',
|
||
default: '6',
|
||
choices: ['Tim', 'iPad', '安卓手机', '安卓手表', 'MacOS', 'aPad'],
|
||
filter: (val) => {
|
||
switch (val) {
|
||
case 'Tim':return 6
|
||
case 'iPad':return 5
|
||
case 'MacOS':return 4
|
||
case '安卓手机':return 1
|
||
case '安卓手表':return 3
|
||
case 'aPad':return 2
|
||
default:return 6
|
||
}
|
||
}
|
||
}
|
||
// ,{
|
||
// type: 'Input',
|
||
// message: '代理服务器地址,无需代理服务器请直接按下Enter:',
|
||
// name: 'proxyAddress',
|
||
// default: 'http://0.0.0.0:0'
|
||
// }
|
||
]
|
||
|
||
if (!process.argv.includes('login')) {
|
||
propmtList.push({
|
||
type: 'Input',
|
||
message: '请输入主人QQ号:',
|
||
name: 'masterQQ'
|
||
})
|
||
}
|
||
propmtList.push({
|
||
type: 'input',
|
||
message: '请输入签名API地址(可留空):',
|
||
name: 'signAPI'
|
||
})
|
||
const ret = await inquirer.prompt(propmtList)
|
||
|
||
let file = './config/config/'
|
||
let fileDef = './config/default_config/'
|
||
|
||
let qq = fs.readFileSync(`${fileDef}qq.yaml`, 'utf8')
|
||
|
||
qq = qq.replace(/qq:/g, 'qq: ' + ret.QQ)
|
||
qq = qq.replace(/pwd:/g, `pwd: '${ret.pwd}'`)
|
||
qq = qq.replace(/platform: [1-6]/g, 'platform: ' + Number(ret.platform))
|
||
fs.writeFileSync(`${file}qq.yaml`, qq, 'utf8')
|
||
|
||
let bot = fs.readFileSync(`${fileDef}bot.yaml`, 'utf8')
|
||
// bot = bot.replace(/proxyAddress:/g, `proxyAddress: ${ret.proxyAddress}`)
|
||
|
||
if (ret.masterQQ) {
|
||
let other = fs.readFileSync(`${fileDef}other.yaml`, 'utf8')
|
||
other = other.replace(/masterQQ:/g, `masterQQ:\n - ${ret.masterQQ}`)
|
||
fs.writeFileSync(`${file}other.yaml`, other, 'utf8')
|
||
}
|
||
|
||
if (ret.signAPI) {
|
||
bot = bot.replace(/sign_api_addr:/g, `sign_api_addr: ${ret.signAPI}`)
|
||
}
|
||
|
||
fs.writeFileSync(`${file}bot.yaml`, bot, 'utf8')
|
||
|
||
console.log(`\nQQ配置完成,正在登录\n后续修改账号可以运行命令: ${chalk.green('node app login')}\n`)
|
||
|
||
await common.sleep(2000)
|
||
}
|