mirror of
https://github.com/ikechan8370/chatgpt-plugin.git
synced 2025-12-17 05:47:11 +00:00
fix: #613
This commit is contained in:
parent
46d88c2669
commit
1c6c10b118
3 changed files with 75 additions and 68 deletions
|
|
@ -12,6 +12,7 @@ import { translate, translateLangSupports } from '../utils/translate.js'
|
||||||
import AzureTTS from '../utils/tts/microsoft-azure.js'
|
import AzureTTS from '../utils/tts/microsoft-azure.js'
|
||||||
import VoiceVoxTTS from '../utils/tts/voicevox.js'
|
import VoiceVoxTTS from '../utils/tts/voicevox.js'
|
||||||
import { URL } from 'node:url'
|
import { URL } from 'node:url'
|
||||||
|
import { getBots } from '../utils/bot.js'
|
||||||
|
|
||||||
let useSilk = false
|
let useSilk = false
|
||||||
try {
|
try {
|
||||||
|
|
@ -350,7 +351,7 @@ ${translateLangLabels}
|
||||||
let groupId = e.msg.replace(/^#chatgpt打招呼/, '')
|
let groupId = e.msg.replace(/^#chatgpt打招呼/, '')
|
||||||
logger.info(groupId)
|
logger.info(groupId)
|
||||||
groupId = parseInt(groupId)
|
groupId = parseInt(groupId)
|
||||||
if (groupId && !e.bot.getGroupList().get(groupId)) {
|
if (groupId && !e.bot.gl.get(groupId)) {
|
||||||
await e.reply('机器人不在这个群里!')
|
await e.reply('机器人不在这个群里!')
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
@ -379,74 +380,77 @@ ${translateLangLabels}
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
let groupId = parseInt(element)
|
let groupId = parseInt(element)
|
||||||
if (this.e.bot.getGroupList().get(groupId)) {
|
let bots = this.e ? [this.e.bot] : getBots()
|
||||||
// 打招呼概率
|
for (let bot of bots) {
|
||||||
if (Math.floor(Math.random() * 100) < Config.helloProbability) {
|
if (bot.gl?.get(groupId)) {
|
||||||
let message = await generateHello()
|
// 打招呼概率
|
||||||
logger.info(`打招呼给群聊${groupId}:` + message)
|
if (Math.floor(Math.random() * 100) < Config.helloProbability) {
|
||||||
if (Config.defaultUseTTS) {
|
let message = await generateHello()
|
||||||
let audio
|
logger.info(`打招呼给群聊${groupId}:` + message)
|
||||||
const [defaultVitsTTSRole, defaultAzureTTSRole, defaultVoxTTSRole] = [Config.defaultTTSRole, Config.azureTTSSpeaker, Config.voicevoxTTSSpeaker]
|
if (Config.defaultUseTTS) {
|
||||||
let ttsSupportKinds = []
|
let audio
|
||||||
if (Config.azureTTSKey) ttsSupportKinds.push(1)
|
const [defaultVitsTTSRole, defaultAzureTTSRole, defaultVoxTTSRole] = [Config.defaultTTSRole, Config.azureTTSSpeaker, Config.voicevoxTTSSpeaker]
|
||||||
if (Config.ttsSpace) ttsSupportKinds.push(2)
|
let ttsSupportKinds = []
|
||||||
if (Config.voicevoxSpace) ttsSupportKinds.push(3)
|
if (Config.azureTTSKey) ttsSupportKinds.push(1)
|
||||||
if (!ttsSupportKinds.length) {
|
if (Config.ttsSpace) ttsSupportKinds.push(2)
|
||||||
logger.warn('没有配置任何语音服务!')
|
if (Config.voicevoxSpace) ttsSupportKinds.push(3)
|
||||||
return false
|
if (!ttsSupportKinds.length) {
|
||||||
}
|
logger.warn('没有配置任何语音服务!')
|
||||||
const randomIndex = Math.floor(Math.random() * ttsSupportKinds.length)
|
return false
|
||||||
switch (ttsSupportKinds[randomIndex]) {
|
|
||||||
case 1 : {
|
|
||||||
const isEn = AzureTTS.supportConfigurations.find(config => config.code === defaultAzureTTSRole)?.language.includes('en')
|
|
||||||
if (isEn) {
|
|
||||||
message = (await translate(message, '英')).replace('\n', '')
|
|
||||||
}
|
|
||||||
audio = await AzureTTS.generateAudio(message, {
|
|
||||||
defaultAzureTTSRole
|
|
||||||
})
|
|
||||||
break
|
|
||||||
}
|
}
|
||||||
case 2 : {
|
const randomIndex = Math.floor(Math.random() * ttsSupportKinds.length)
|
||||||
if (Config.autoJapanese) {
|
switch (ttsSupportKinds[randomIndex]) {
|
||||||
|
case 1 : {
|
||||||
|
const isEn = AzureTTS.supportConfigurations.find(config => config.code === defaultAzureTTSRole)?.language.includes('en')
|
||||||
|
if (isEn) {
|
||||||
|
message = (await translate(message, '英')).replace('\n', '')
|
||||||
|
}
|
||||||
|
audio = await AzureTTS.generateAudio(message, {
|
||||||
|
defaultAzureTTSRole
|
||||||
|
})
|
||||||
|
break
|
||||||
|
}
|
||||||
|
case 2 : {
|
||||||
|
if (Config.autoJapanese) {
|
||||||
|
try {
|
||||||
|
message = await translate(message, '日')
|
||||||
|
} catch (err) {
|
||||||
|
logger.error(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
try {
|
try {
|
||||||
message = await translate(message, '日')
|
audio = await generateVitsAudio(message, defaultVitsTTSRole, '中日混合(中文用[ZH][ZH]包裹起来,日文用[JA][JA]包裹起来)')
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
logger.error(err)
|
logger.error(err)
|
||||||
}
|
}
|
||||||
|
break
|
||||||
}
|
}
|
||||||
try {
|
case 3 : {
|
||||||
audio = await generateVitsAudio(message, defaultVitsTTSRole, '中日混合(中文用[ZH][ZH]包裹起来,日文用[JA][JA]包裹起来)')
|
message = (await translate(message, '日')).replace('\n', '')
|
||||||
} catch (err) {
|
try {
|
||||||
logger.error(err)
|
audio = await VoiceVoxTTS.generateAudio(message, {
|
||||||
|
speaker: defaultVoxTTSRole
|
||||||
|
})
|
||||||
|
} catch (err) {
|
||||||
|
logger.error(err)
|
||||||
|
}
|
||||||
|
break
|
||||||
}
|
}
|
||||||
break
|
|
||||||
}
|
}
|
||||||
case 3 : {
|
if (useSilk) {
|
||||||
message = (await translate(message, '日')).replace('\n', '')
|
await this.e.bot.sendGroupMsg(groupId, await uploadRecord(audio))
|
||||||
try {
|
} else {
|
||||||
audio = await VoiceVoxTTS.generateAudio(message, {
|
await this.e.bot.sendGroupMsg(groupId, segment.record(audio))
|
||||||
speaker: defaultVoxTTSRole
|
|
||||||
})
|
|
||||||
} catch (err) {
|
|
||||||
logger.error(err)
|
|
||||||
}
|
|
||||||
break
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
if (useSilk) {
|
|
||||||
await this.e.bot.sendGroupMsg(groupId, await uploadRecord(audio))
|
|
||||||
} else {
|
} else {
|
||||||
await this.e.bot.sendGroupMsg(groupId, segment.record(audio))
|
await this.e.bot.sendGroupMsg(groupId, message)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
await this.e.bot.sendGroupMsg(groupId, message)
|
logger.info(`时机未到,这次就不打招呼给群聊${groupId}了`)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
logger.info(`时机未到,这次就不打招呼给群聊${groupId}了`)
|
logger.warn('机器人不在要发送的群组里,忽略群。同时建议检查配置文件修改要打招呼的群号。' + groupId)
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
logger.warn('机器人不在要发送的群组里,忽略群。同时建议检查配置文件修改要打招呼的群号。' + groupId)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,20 +1,8 @@
|
||||||
import { UserInfo, AddUser } from './user_data.js'
|
import { UserInfo, AddUser } from './user_data.js'
|
||||||
import { randomString, getUserData, getMasterQQ, getUin } from '../../utils/common.js'
|
import { randomString, getUserData, getMasterQQ, getUin } from '../../utils/common.js'
|
||||||
|
import { getBots } from '../../utils/bot.js';
|
||||||
import fs from 'fs'
|
import fs from 'fs'
|
||||||
|
import path from 'path';
|
||||||
function getBots () {
|
|
||||||
if (Bot.uin === 88888) {
|
|
||||||
// 找适配器
|
|
||||||
let adapters = Bot.adapter
|
|
||||||
return adapters?.map(uin => Bot[uin])
|
|
||||||
} else if (Bot.adapter && Bot.adapter.length > 0) {
|
|
||||||
let bots = [Bot]
|
|
||||||
Bot.adapter.forEach(uin => {
|
|
||||||
bots.push(Bot[uin])
|
|
||||||
})
|
|
||||||
return bots
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async function User (fastify, options) {
|
async function User (fastify, options) {
|
||||||
// 登录
|
// 登录
|
||||||
|
|
|
||||||
15
utils/bot.js
Normal file
15
utils/bot.js
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
export function getBots () {
|
||||||
|
if (Bot.uin === 88888) {
|
||||||
|
// 找适配器
|
||||||
|
let adapters = Bot.adapter
|
||||||
|
return adapters?.map(uin => Bot[uin])
|
||||||
|
} else if (Bot.adapter && Bot.adapter.length > 0) {
|
||||||
|
let bots = [Bot]
|
||||||
|
Bot.adapter.forEach(uin => {
|
||||||
|
bots.push(Bot[uin])
|
||||||
|
})
|
||||||
|
return bots
|
||||||
|
} else {
|
||||||
|
return [Bot]
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue