first commit

This commit is contained in:
2026-06-09 14:50:53 +08:00
commit 6aebc60bfd
55 changed files with 3126 additions and 0 deletions

View File

@@ -0,0 +1,81 @@
import { analyzeWechatMessages } from '../../analysis/wechatAnalyzer.js'
import { getWechatRuntimeConfig } from '../../config/env.js'
import { runOpenCli } from '../../adapters/opencli.js'
function stripMention(content, botName) {
return content.replace(botName, '').trim()
}
function parseTarget(tokens) {
const type = tokens[1]
const value = tokens.slice(2).join(' ').trim()
if (['群', '群聊', 'room', 'group'].includes(type)) {
return { room: value }
}
if (['好友', 'friend', 'contact'].includes(type)) {
return { friend: value }
}
return {}
}
export async function handleWechatCommand(content, context = {}) {
const config = getWechatRuntimeConfig()
const normalized = stripMention(content, config.botName)
if (!normalized.startsWith(config.commandPrefix)) {
return { handled: false }
}
const commandLine = normalized.slice(config.commandPrefix.length).trim()
const tokens = commandLine.split(/\s+/).filter(Boolean)
const command = tokens[0]
if (['分析', 'analyze', '统计', 'stats'].includes(command)) {
const statsOnly = ['统计', 'stats'].includes(command)
const target = parseTarget(tokens)
const result = await analyzeWechatMessages({
...target,
serviceType: context.serviceType,
dataDir: config.dataDir,
statsOnly,
})
if (statsOnly || !result.analysis) {
return {
handled: true,
reply: [
`${result.target}`,
`消息数:${result.stats.totalMessages}`,
`文本消息:${result.stats.textMessages}`,
`平均长度:${result.stats.averageTextLength}`,
`高频发言:${result.stats.topSpeakers.map((item) => `${item.name}(${item.count})`).join('') || '无'}`,
].join('\n'),
}
}
return {
handled: true,
reply: result.analysis,
}
}
if (command === 'opencli') {
if (!config.enableRemoteOpenCli) {
return {
handled: true,
reply: '远程 OpenCLI 执行未开启。需要在 .env 中显式设置 ENABLE_REMOTE_OPENCLI=true。',
}
}
await runOpenCli(tokens.slice(1))
return {
handled: true,
reply: 'OpenCLI 命令已执行,结果请看本机控制台。',
}
}
return { handled: false }
}