mirror of
https://github.com/hicccc77/WeFlow.git
synced 2026-04-22 15:09:04 +00:00
feat(insight): add whitelist/blacklist mode and typed batch selection
This commit is contained in:
@@ -85,6 +85,8 @@ interface ConfigSchema {
|
|||||||
aiInsightSilenceDays: number
|
aiInsightSilenceDays: number
|
||||||
aiInsightAllowContext: boolean
|
aiInsightAllowContext: boolean
|
||||||
aiInsightAllowSocialContext: boolean
|
aiInsightAllowSocialContext: boolean
|
||||||
|
aiInsightFilterMode: 'whitelist' | 'blacklist'
|
||||||
|
aiInsightFilterList: string[]
|
||||||
aiInsightWhitelistEnabled: boolean
|
aiInsightWhitelistEnabled: boolean
|
||||||
aiInsightWhitelist: string[]
|
aiInsightWhitelist: string[]
|
||||||
/** 活跃分析冷却时间(分钟),0 表示无冷却 */
|
/** 活跃分析冷却时间(分钟),0 表示无冷却 */
|
||||||
@@ -202,6 +204,8 @@ export class ConfigService {
|
|||||||
aiInsightSilenceDays: 3,
|
aiInsightSilenceDays: 3,
|
||||||
aiInsightAllowContext: false,
|
aiInsightAllowContext: false,
|
||||||
aiInsightAllowSocialContext: false,
|
aiInsightAllowSocialContext: false,
|
||||||
|
aiInsightFilterMode: 'whitelist',
|
||||||
|
aiInsightFilterList: [],
|
||||||
aiInsightWhitelistEnabled: false,
|
aiInsightWhitelistEnabled: false,
|
||||||
aiInsightWhitelist: [],
|
aiInsightWhitelist: [],
|
||||||
aiInsightCooldownMinutes: 120,
|
aiInsightCooldownMinutes: 120,
|
||||||
|
|||||||
@@ -50,6 +50,8 @@ const INSIGHT_CONFIG_KEYS = new Set([
|
|||||||
'aiModelApiKey',
|
'aiModelApiKey',
|
||||||
'aiModelApiModel',
|
'aiModelApiModel',
|
||||||
'aiModelApiMaxTokens',
|
'aiModelApiMaxTokens',
|
||||||
|
'aiInsightFilterMode',
|
||||||
|
'aiInsightFilterList',
|
||||||
'aiInsightAllowSocialContext',
|
'aiInsightAllowSocialContext',
|
||||||
'aiInsightSocialContextCount',
|
'aiInsightSocialContextCount',
|
||||||
'aiInsightWeiboCookie',
|
'aiInsightWeiboCookie',
|
||||||
@@ -73,6 +75,8 @@ interface SharedAiModelConfig {
|
|||||||
maxTokens: number
|
maxTokens: number
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type InsightFilterMode = 'whitelist' | 'blacklist'
|
||||||
|
|
||||||
// ─── 日志 ─────────────────────────────────────────────────────────────────────
|
// ─── 日志 ─────────────────────────────────────────────────────────────────────
|
||||||
|
|
||||||
type InsightLogLevel = 'INFO' | 'WARN' | 'ERROR'
|
type InsightLogLevel = 'INFO' | 'WARN' | 'ERROR'
|
||||||
@@ -196,6 +200,11 @@ function normalizeApiMaxTokens(value: unknown): number {
|
|||||||
return Math.min(API_MAX_TOKENS_MAX, Math.max(API_MAX_TOKENS_MIN, Math.floor(numeric)))
|
return Math.min(API_MAX_TOKENS_MAX, Math.max(API_MAX_TOKENS_MIN, Math.floor(numeric)))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function normalizeSessionIdList(value: unknown): string[] {
|
||||||
|
if (!Array.isArray(value)) return []
|
||||||
|
return Array.from(new Set(value.map((item) => String(item || '').trim()).filter(Boolean)))
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 调用 OpenAI 兼容 API(非流式),返回模型第一条消息内容。
|
* 调用 OpenAI 兼容 API(非流式),返回模型第一条消息内容。
|
||||||
* 使用 Node 原生 https/http 模块,无需任何第三方 SDK。
|
* 使用 Node 原生 https/http 模块,无需任何第三方 SDK。
|
||||||
@@ -495,7 +504,7 @@ class InsightService {
|
|||||||
return id && !id.endsWith('@chatroom') && !id.toLowerCase().includes('placeholder') && this.isSessionAllowed(id)
|
return id && !id.endsWith('@chatroom') && !id.toLowerCase().includes('placeholder') && this.isSessionAllowed(id)
|
||||||
})
|
})
|
||||||
if (!session) {
|
if (!session) {
|
||||||
return { success: false, message: '未找到任何私聊会话(若已启用白名单,请检查是否有勾选的私聊)' }
|
return { success: false, message: '未找到任何可触发的私聊会话(请检查黑白名单模式与选择列表)' }
|
||||||
}
|
}
|
||||||
const sessionId = session.username?.trim() || ''
|
const sessionId = session.username?.trim() || ''
|
||||||
const displayName = session.displayName || sessionId
|
const displayName = session.displayName || sessionId
|
||||||
@@ -747,14 +756,23 @@ ${topMentionText}
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 判断某个会话是否允许触发见解。
|
* 判断某个会话是否允许触发见解。
|
||||||
* 若白名单未启用,则所有私聊会话均允许;
|
* white/black 模式二选一:
|
||||||
* 若白名单已启用,则只有在白名单中的会话才允许。
|
* - whitelist:仅名单内允许
|
||||||
|
* - blacklist:名单内屏蔽,其他允许
|
||||||
*/
|
*/
|
||||||
|
private getInsightFilterConfig(): { mode: InsightFilterMode; list: string[] } {
|
||||||
|
const modeRaw = String(this.config.get('aiInsightFilterMode') || '').trim().toLowerCase()
|
||||||
|
const mode: InsightFilterMode = modeRaw === 'blacklist' ? 'blacklist' : 'whitelist'
|
||||||
|
const list = normalizeSessionIdList(this.config.get('aiInsightFilterList'))
|
||||||
|
return { mode, list }
|
||||||
|
}
|
||||||
|
|
||||||
private isSessionAllowed(sessionId: string): boolean {
|
private isSessionAllowed(sessionId: string): boolean {
|
||||||
const whitelistEnabled = this.config.get('aiInsightWhitelistEnabled') as boolean
|
const normalizedSessionId = String(sessionId || '').trim()
|
||||||
if (!whitelistEnabled) return true
|
if (!normalizedSessionId) return false
|
||||||
const whitelist = (this.config.get('aiInsightWhitelist') as string[]) || []
|
const { mode, list } = this.getInsightFilterConfig()
|
||||||
return whitelist.includes(sessionId)
|
if (mode === 'whitelist') return list.includes(normalizedSessionId)
|
||||||
|
return !list.includes(normalizedSessionId)
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -966,8 +984,8 @@ ${topMentionText}
|
|||||||
* 1. 会话有真正的新消息(lastTimestamp 比上次见到的更新)
|
* 1. 会话有真正的新消息(lastTimestamp 比上次见到的更新)
|
||||||
* 2. 该会话距上次活跃分析已超过冷却期
|
* 2. 该会话距上次活跃分析已超过冷却期
|
||||||
*
|
*
|
||||||
* 白名单启用时:直接使用白名单里的 sessionId,完全跳过 getSessions()。
|
* whitelist 模式:直接使用名单里的 sessionId,完全跳过 getSessions()。
|
||||||
* 白名单未启用时:从缓存拉取全量会话后过滤私聊。
|
* blacklist 模式:从缓存拉取会话后过滤名单。
|
||||||
*/
|
*/
|
||||||
private async analyzeRecentActivity(): Promise<void> {
|
private async analyzeRecentActivity(): Promise<void> {
|
||||||
if (!this.isEnabled()) return
|
if (!this.isEnabled()) return
|
||||||
@@ -978,12 +996,11 @@ ${topMentionText}
|
|||||||
const now = Date.now()
|
const now = Date.now()
|
||||||
const cooldownMinutes = (this.config.get('aiInsightCooldownMinutes') as number) ?? 120
|
const cooldownMinutes = (this.config.get('aiInsightCooldownMinutes') as number) ?? 120
|
||||||
const cooldownMs = cooldownMinutes * 60 * 1000
|
const cooldownMs = cooldownMinutes * 60 * 1000
|
||||||
const whitelistEnabled = this.config.get('aiInsightWhitelistEnabled') as boolean
|
const { mode: filterMode, list: filterList } = this.getInsightFilterConfig()
|
||||||
const whitelist = (this.config.get('aiInsightWhitelist') as string[]) || []
|
|
||||||
|
|
||||||
// 白名单启用且有勾选项时,直接用白名单 sessionId,无需查数据库全量会话列表。
|
// whitelist 模式且有勾选项时,直接用名单 sessionId,无需查数据库全量会话列表。
|
||||||
// 通过拉取该会话最新 1 条消息时间戳判断是否真正有新消息,开销极低。
|
// 通过拉取该会话最新 1 条消息时间戳判断是否真正有新消息,开销极低。
|
||||||
if (whitelistEnabled && whitelist.length > 0) {
|
if (filterMode === 'whitelist' && filterList.length > 0) {
|
||||||
// 确保数据库已连接(首次时连接,之后复用)
|
// 确保数据库已连接(首次时连接,之后复用)
|
||||||
if (!this.dbConnected) {
|
if (!this.dbConnected) {
|
||||||
const connectResult = await chatService.connect()
|
const connectResult = await chatService.connect()
|
||||||
@@ -991,8 +1008,8 @@ ${topMentionText}
|
|||||||
this.dbConnected = true
|
this.dbConnected = true
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const sessionId of whitelist) {
|
for (const sessionId of filterList) {
|
||||||
if (!sessionId || sessionId.endsWith('@chatroom')) continue
|
if (!sessionId || sessionId.toLowerCase().includes('placeholder')) continue
|
||||||
|
|
||||||
// 冷却期检查(先过滤,减少不必要的 DB 查询)
|
// 冷却期检查(先过滤,减少不必要的 DB 查询)
|
||||||
if (cooldownMs > 0) {
|
if (cooldownMs > 0) {
|
||||||
@@ -1029,16 +1046,22 @@ ${topMentionText}
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// 白名单未启用:需要拉取全量会话列表,从中过滤私聊
|
if (filterMode === 'whitelist' && filterList.length === 0) {
|
||||||
|
insightLog('INFO', '白名单模式且名单为空,跳过活跃分析')
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// blacklist 模式:拉取会话缓存后按过滤规则筛选
|
||||||
const sessions = await this.getSessionsCached()
|
const sessions = await this.getSessionsCached()
|
||||||
if (sessions.length === 0) return
|
if (sessions.length === 0) return
|
||||||
|
|
||||||
const privateSessions = sessions.filter((s) => {
|
const candidateSessions = sessions.filter((s) => {
|
||||||
const id = s.username?.trim() || ''
|
const id = s.username?.trim() || ''
|
||||||
return id && !id.endsWith('@chatroom') && !id.toLowerCase().includes('placeholder')
|
if (!id || id.toLowerCase().includes('placeholder')) return false
|
||||||
|
return this.isSessionAllowed(id)
|
||||||
})
|
})
|
||||||
|
|
||||||
for (const session of privateSessions.slice(0, 10)) {
|
for (const session of candidateSessions.slice(0, 10)) {
|
||||||
const sessionId = session.username?.trim() || ''
|
const sessionId = session.username?.trim() || ''
|
||||||
if (!sessionId) continue
|
if (!sessionId) continue
|
||||||
|
|
||||||
|
|||||||
@@ -75,6 +75,7 @@ interface WxidOption {
|
|||||||
type SessionFilterType = configService.MessagePushSessionType
|
type SessionFilterType = configService.MessagePushSessionType
|
||||||
type SessionFilterTypeValue = 'all' | SessionFilterType
|
type SessionFilterTypeValue = 'all' | SessionFilterType
|
||||||
type SessionFilterMode = 'all' | 'whitelist' | 'blacklist'
|
type SessionFilterMode = 'all' | 'whitelist' | 'blacklist'
|
||||||
|
type InsightSessionFilterTypeValue = 'all' | 'private' | 'group' | 'official'
|
||||||
|
|
||||||
interface SessionFilterOption {
|
interface SessionFilterOption {
|
||||||
username: string
|
username: string
|
||||||
@@ -91,6 +92,13 @@ const sessionFilterTypeOptions: Array<{ value: SessionFilterTypeValue; label: st
|
|||||||
{ value: 'other', label: '其他/非好友' }
|
{ value: 'other', label: '其他/非好友' }
|
||||||
]
|
]
|
||||||
|
|
||||||
|
const insightFilterTypeOptions: Array<{ value: InsightSessionFilterTypeValue; label: string }> = [
|
||||||
|
{ value: 'all', label: '全部' },
|
||||||
|
{ value: 'private', label: '私聊' },
|
||||||
|
{ value: 'group', label: '群聊' },
|
||||||
|
{ value: 'official', label: '订阅号/服务号' }
|
||||||
|
]
|
||||||
|
|
||||||
interface SettingsPageProps {
|
interface SettingsPageProps {
|
||||||
onClose?: () => void
|
onClose?: () => void
|
||||||
}
|
}
|
||||||
@@ -194,6 +202,7 @@ function SettingsPage({ onClose }: SettingsPageProps = {}) {
|
|||||||
const [filterModeDropdownOpen, setFilterModeDropdownOpen] = useState(false)
|
const [filterModeDropdownOpen, setFilterModeDropdownOpen] = useState(false)
|
||||||
const [positionDropdownOpen, setPositionDropdownOpen] = useState(false)
|
const [positionDropdownOpen, setPositionDropdownOpen] = useState(false)
|
||||||
const [closeBehaviorDropdownOpen, setCloseBehaviorDropdownOpen] = useState(false)
|
const [closeBehaviorDropdownOpen, setCloseBehaviorDropdownOpen] = useState(false)
|
||||||
|
const [insightFilterModeDropdownOpen, setInsightFilterModeDropdownOpen] = useState(false)
|
||||||
|
|
||||||
const [wordCloudExcludeWords, setWordCloudExcludeWords] = useState<string[]>([])
|
const [wordCloudExcludeWords, setWordCloudExcludeWords] = useState<string[]>([])
|
||||||
const [excludeWordsInput, setExcludeWordsInput] = useState('')
|
const [excludeWordsInput, setExcludeWordsInput] = useState('')
|
||||||
@@ -275,8 +284,9 @@ function SettingsPage({ onClose }: SettingsPageProps = {}) {
|
|||||||
const [showInsightApiKey, setShowInsightApiKey] = useState(false)
|
const [showInsightApiKey, setShowInsightApiKey] = useState(false)
|
||||||
const [isTriggeringInsightTest, setIsTriggeringInsightTest] = useState(false)
|
const [isTriggeringInsightTest, setIsTriggeringInsightTest] = useState(false)
|
||||||
const [insightTriggerResult, setInsightTriggerResult] = useState<{ success: boolean; message: string } | null>(null)
|
const [insightTriggerResult, setInsightTriggerResult] = useState<{ success: boolean; message: string } | null>(null)
|
||||||
const [aiInsightWhitelistEnabled, setAiInsightWhitelistEnabled] = useState(false)
|
const [aiInsightFilterMode, setAiInsightFilterMode] = useState<configService.AiInsightFilterMode>('whitelist')
|
||||||
const [aiInsightWhitelist, setAiInsightWhitelist] = useState<Set<string>>(new Set())
|
const [aiInsightFilterList, setAiInsightFilterList] = useState<Set<string>>(new Set())
|
||||||
|
const [insightFilterType, setInsightFilterType] = useState<InsightSessionFilterTypeValue>('all')
|
||||||
const [insightWhitelistSearch, setInsightWhitelistSearch] = useState('')
|
const [insightWhitelistSearch, setInsightWhitelistSearch] = useState('')
|
||||||
const [aiInsightCooldownMinutes, setAiInsightCooldownMinutes] = useState(120)
|
const [aiInsightCooldownMinutes, setAiInsightCooldownMinutes] = useState(120)
|
||||||
const [aiInsightScanIntervalHours, setAiInsightScanIntervalHours] = useState(4)
|
const [aiInsightScanIntervalHours, setAiInsightScanIntervalHours] = useState(4)
|
||||||
@@ -397,15 +407,16 @@ function SettingsPage({ onClose }: SettingsPageProps = {}) {
|
|||||||
setPositionDropdownOpen(false)
|
setPositionDropdownOpen(false)
|
||||||
setCloseBehaviorDropdownOpen(false)
|
setCloseBehaviorDropdownOpen(false)
|
||||||
setMessagePushFilterDropdownOpen(false)
|
setMessagePushFilterDropdownOpen(false)
|
||||||
|
setInsightFilterModeDropdownOpen(false)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (filterModeDropdownOpen || positionDropdownOpen || closeBehaviorDropdownOpen || messagePushFilterDropdownOpen) {
|
if (filterModeDropdownOpen || positionDropdownOpen || closeBehaviorDropdownOpen || messagePushFilterDropdownOpen || insightFilterModeDropdownOpen) {
|
||||||
document.addEventListener('click', handleClickOutside)
|
document.addEventListener('click', handleClickOutside)
|
||||||
}
|
}
|
||||||
return () => {
|
return () => {
|
||||||
document.removeEventListener('click', handleClickOutside)
|
document.removeEventListener('click', handleClickOutside)
|
||||||
}
|
}
|
||||||
}, [closeBehaviorDropdownOpen, filterModeDropdownOpen, messagePushFilterDropdownOpen, positionDropdownOpen])
|
}, [closeBehaviorDropdownOpen, filterModeDropdownOpen, insightFilterModeDropdownOpen, messagePushFilterDropdownOpen, positionDropdownOpen])
|
||||||
|
|
||||||
|
|
||||||
const loadConfig = async () => {
|
const loadConfig = async () => {
|
||||||
@@ -531,8 +542,8 @@ function SettingsPage({ onClose }: SettingsPageProps = {}) {
|
|||||||
const savedAiModelApiMaxTokens = await configService.getAiModelApiMaxTokens()
|
const savedAiModelApiMaxTokens = await configService.getAiModelApiMaxTokens()
|
||||||
const savedAiInsightSilenceDays = await configService.getAiInsightSilenceDays()
|
const savedAiInsightSilenceDays = await configService.getAiInsightSilenceDays()
|
||||||
const savedAiInsightAllowContext = await configService.getAiInsightAllowContext()
|
const savedAiInsightAllowContext = await configService.getAiInsightAllowContext()
|
||||||
const savedAiInsightWhitelistEnabled = await configService.getAiInsightWhitelistEnabled()
|
const savedAiInsightFilterMode = await configService.getAiInsightFilterMode()
|
||||||
const savedAiInsightWhitelist = await configService.getAiInsightWhitelist()
|
const savedAiInsightFilterList = await configService.getAiInsightFilterList()
|
||||||
const savedAiInsightCooldownMinutes = await configService.getAiInsightCooldownMinutes()
|
const savedAiInsightCooldownMinutes = await configService.getAiInsightCooldownMinutes()
|
||||||
const savedAiInsightScanIntervalHours = await configService.getAiInsightScanIntervalHours()
|
const savedAiInsightScanIntervalHours = await configService.getAiInsightScanIntervalHours()
|
||||||
const savedAiInsightContextCount = await configService.getAiInsightContextCount()
|
const savedAiInsightContextCount = await configService.getAiInsightContextCount()
|
||||||
@@ -555,8 +566,8 @@ function SettingsPage({ onClose }: SettingsPageProps = {}) {
|
|||||||
setAiModelApiMaxTokens(savedAiModelApiMaxTokens)
|
setAiModelApiMaxTokens(savedAiModelApiMaxTokens)
|
||||||
setAiInsightSilenceDays(savedAiInsightSilenceDays)
|
setAiInsightSilenceDays(savedAiInsightSilenceDays)
|
||||||
setAiInsightAllowContext(savedAiInsightAllowContext)
|
setAiInsightAllowContext(savedAiInsightAllowContext)
|
||||||
setAiInsightWhitelistEnabled(savedAiInsightWhitelistEnabled)
|
setAiInsightFilterMode(savedAiInsightFilterMode)
|
||||||
setAiInsightWhitelist(new Set(savedAiInsightWhitelist))
|
setAiInsightFilterList(new Set(savedAiInsightFilterList))
|
||||||
setAiInsightCooldownMinutes(savedAiInsightCooldownMinutes)
|
setAiInsightCooldownMinutes(savedAiInsightCooldownMinutes)
|
||||||
setAiInsightScanIntervalHours(savedAiInsightScanIntervalHours)
|
setAiInsightScanIntervalHours(savedAiInsightScanIntervalHours)
|
||||||
setAiInsightContextCount(savedAiInsightContextCount)
|
setAiInsightContextCount(savedAiInsightContextCount)
|
||||||
@@ -3390,68 +3401,69 @@ function SettingsPage({ onClose }: SettingsPageProps = {}) {
|
|||||||
|
|
||||||
<div className="divider" />
|
<div className="divider" />
|
||||||
|
|
||||||
{/* 对话白名单 */}
|
{/* 对话过滤名单 */}
|
||||||
{(() => {
|
{(() => {
|
||||||
const sortedSessions = [...chatSessions].sort((a, b) => (b.sortTimestamp || 0) - (a.sortTimestamp || 0))
|
const selectableSessions = sessionFilterOptions.filter((session) =>
|
||||||
|
session.type === 'private' || session.type === 'group' || session.type === 'official'
|
||||||
|
)
|
||||||
const keyword = insightWhitelistSearch.trim().toLowerCase()
|
const keyword = insightWhitelistSearch.trim().toLowerCase()
|
||||||
const filteredSessions = sortedSessions.filter((s) => {
|
const filteredSessions = selectableSessions.filter((session) => {
|
||||||
const id = s.username?.trim() || ''
|
if (insightFilterType !== 'all' && session.type !== insightFilterType) return false
|
||||||
if (!id || id.endsWith('@chatroom') || id.toLowerCase().includes('placeholder')) return false
|
const id = session.username?.trim() || ''
|
||||||
|
if (!id || id.toLowerCase().includes('placeholder')) return false
|
||||||
if (!keyword) return true
|
if (!keyword) return true
|
||||||
return (
|
return (
|
||||||
String(s.displayName || '').toLowerCase().includes(keyword) ||
|
String(session.displayName || '').toLowerCase().includes(keyword) ||
|
||||||
id.toLowerCase().includes(keyword)
|
id.toLowerCase().includes(keyword)
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
const filteredIds = filteredSessions.map((s) => s.username)
|
const filteredIds = filteredSessions.map((session) => session.username)
|
||||||
const selectedCount = aiInsightWhitelist.size
|
const selectedCount = aiInsightFilterList.size
|
||||||
const selectedInFilteredCount = filteredIds.filter((id) => aiInsightWhitelist.has(id)).length
|
const selectedInFilteredCount = filteredIds.filter((id) => aiInsightFilterList.has(id)).length
|
||||||
const allFilteredSelected = filteredIds.length > 0 && selectedInFilteredCount === filteredIds.length
|
const allFilteredSelected = filteredIds.length > 0 && selectedInFilteredCount === filteredIds.length
|
||||||
|
|
||||||
const toggleSession = (id: string) => {
|
const saveFilterList = async (next: Set<string>) => {
|
||||||
setAiInsightWhitelist((prev) => {
|
await configService.setAiInsightFilterList(Array.from(next))
|
||||||
const next = new Set(prev)
|
|
||||||
if (next.has(id)) next.delete(id)
|
|
||||||
else next.add(id)
|
|
||||||
return next
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const saveWhitelist = async (next: Set<string>) => {
|
const saveFilterMode = async (mode: configService.AiInsightFilterMode) => {
|
||||||
await configService.setAiInsightWhitelist(Array.from(next))
|
setAiInsightFilterMode(mode)
|
||||||
|
setInsightFilterModeDropdownOpen(false)
|
||||||
|
await configService.setAiInsightFilterMode(mode)
|
||||||
|
showMessage(mode === 'whitelist' ? '已切换为白名单模式' : '已切换为黑名单模式', true)
|
||||||
}
|
}
|
||||||
|
|
||||||
const selectAllFiltered = () => {
|
const selectAllFiltered = () => {
|
||||||
setAiInsightWhitelist((prev) => {
|
setAiInsightFilterList((prev) => {
|
||||||
const next = new Set(prev)
|
const next = new Set(prev)
|
||||||
for (const id of filteredIds) next.add(id)
|
for (const id of filteredIds) next.add(id)
|
||||||
void saveWhitelist(next)
|
void saveFilterList(next)
|
||||||
return next
|
return next
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
const clearSelection = () => {
|
const clearSelection = () => {
|
||||||
const next = new Set<string>()
|
const next = new Set<string>()
|
||||||
setAiInsightWhitelist(next)
|
setAiInsightFilterList(next)
|
||||||
void saveWhitelist(next)
|
void saveFilterList(next)
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="anti-revoke-tab insight-social-tab">
|
<div className="anti-revoke-tab insight-social-tab">
|
||||||
<div className="anti-revoke-hero">
|
<div className="anti-revoke-hero">
|
||||||
<div className="anti-revoke-hero-main">
|
<div className="anti-revoke-hero-main">
|
||||||
<h3>对话白名单</h3>
|
<h3>对话黑白名单</h3>
|
||||||
<p>
|
<p>
|
||||||
开启后,AI 见解仅对勾选的私聊对话生效,未勾选的对话将被完全忽略。关闭时对所有私聊均生效。中间可填写微博 UID。
|
白名单模式下仅对已选会话触发见解;黑名单模式下会跳过已选会话。默认白名单且不选择任何会话。支持私聊、群聊、订阅号/服务号分类筛选后批量选择。
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="anti-revoke-metrics">
|
<div className="anti-revoke-metrics">
|
||||||
<div className="anti-revoke-metric is-total">
|
<div className="anti-revoke-metric is-total">
|
||||||
<span className="label">私聊总数</span>
|
<span className="label">可选会话总数</span>
|
||||||
<span className="value">{filteredIds.length + (keyword ? 0 : 0)}</span>
|
<span className="value">{selectableSessions.length}</span>
|
||||||
</div>
|
</div>
|
||||||
<div className="anti-revoke-metric is-installed">
|
<div className="anti-revoke-metric is-installed">
|
||||||
<span className="label">已选中</span>
|
<span className="label">已加入名单</span>
|
||||||
<span className="value">{selectedCount}</span>
|
<span className="value">{selectedCount}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -3459,29 +3471,57 @@ function SettingsPage({ onClose }: SettingsPageProps = {}) {
|
|||||||
|
|
||||||
<div className="log-toggle-line" style={{ marginBottom: 12 }}>
|
<div className="log-toggle-line" style={{ marginBottom: 12 }}>
|
||||||
<span className="log-status" style={{ fontWeight: 600 }}>
|
<span className="log-status" style={{ fontWeight: 600 }}>
|
||||||
{aiInsightWhitelistEnabled ? '白名单已启用(仅对勾选对话生效)' : '白名单未启用(对所有私聊生效)'}
|
{aiInsightFilterMode === 'whitelist'
|
||||||
|
? '白名单模式(仅对名单内会话生效)'
|
||||||
|
: '黑名单模式(名单内会话将被忽略)'}
|
||||||
</span>
|
</span>
|
||||||
<label className="switch">
|
<div className="custom-select" style={{ minWidth: 210 }}>
|
||||||
<input
|
<div
|
||||||
type="checkbox"
|
className={`custom-select-trigger ${insightFilterModeDropdownOpen ? 'open' : ''}`}
|
||||||
checked={aiInsightWhitelistEnabled}
|
onClick={() => setInsightFilterModeDropdownOpen(!insightFilterModeDropdownOpen)}
|
||||||
onChange={async (e) => {
|
>
|
||||||
const val = e.target.checked
|
<span className="custom-select-value">
|
||||||
setAiInsightWhitelistEnabled(val)
|
{aiInsightFilterMode === 'whitelist' ? '白名单模式' : '黑名单模式'}
|
||||||
await configService.setAiInsightWhitelistEnabled(val)
|
</span>
|
||||||
}}
|
<ChevronDown size={14} className={`custom-select-arrow ${insightFilterModeDropdownOpen ? 'rotate' : ''}`} />
|
||||||
/>
|
</div>
|
||||||
<span className="switch-slider" />
|
<div className={`custom-select-dropdown ${insightFilterModeDropdownOpen ? 'open' : ''}`}>
|
||||||
</label>
|
{[
|
||||||
|
{ value: 'whitelist', label: '白名单模式' },
|
||||||
|
{ value: 'blacklist', label: '黑名单模式' }
|
||||||
|
].map(option => (
|
||||||
|
<div
|
||||||
|
key={option.value}
|
||||||
|
className={`custom-select-option ${aiInsightFilterMode === option.value ? 'selected' : ''}`}
|
||||||
|
onClick={() => { void saveFilterMode(option.value as configService.AiInsightFilterMode) }}
|
||||||
|
>
|
||||||
|
{option.label}
|
||||||
|
{aiInsightFilterMode === option.value && <Check size={14} />}
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="anti-revoke-control-card">
|
<div className="anti-revoke-control-card">
|
||||||
|
<div className="push-filter-type-tabs" style={{ marginBottom: 10 }}>
|
||||||
|
{insightFilterTypeOptions.map(option => (
|
||||||
|
<button
|
||||||
|
key={option.value}
|
||||||
|
type="button"
|
||||||
|
className={`push-filter-type-tab ${insightFilterType === option.value ? 'active' : ''}`}
|
||||||
|
onClick={() => setInsightFilterType(option.value)}
|
||||||
|
>
|
||||||
|
{option.label}
|
||||||
|
</button>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
<div className="anti-revoke-toolbar">
|
<div className="anti-revoke-toolbar">
|
||||||
<div className="filter-search-box anti-revoke-search">
|
<div className="filter-search-box anti-revoke-search">
|
||||||
<Search size={14} />
|
<Search size={14} />
|
||||||
<input
|
<input
|
||||||
type="text"
|
type="text"
|
||||||
placeholder="搜索私聊对话..."
|
placeholder="搜索对话..."
|
||||||
value={insightWhitelistSearch}
|
value={insightWhitelistSearch}
|
||||||
onChange={(e) => setInsightWhitelistSearch(e.target.value)}
|
onChange={(e) => setInsightWhitelistSearch(e.target.value)}
|
||||||
/>
|
/>
|
||||||
@@ -3517,7 +3557,7 @@ function SettingsPage({ onClose }: SettingsPageProps = {}) {
|
|||||||
<div className="anti-revoke-list">
|
<div className="anti-revoke-list">
|
||||||
{filteredSessions.length === 0 ? (
|
{filteredSessions.length === 0 ? (
|
||||||
<div className="anti-revoke-empty">
|
<div className="anti-revoke-empty">
|
||||||
{insightWhitelistSearch ? '没有匹配的对话' : '暂无私聊对话'}
|
{insightWhitelistSearch || insightFilterType !== 'all' ? '没有匹配的对话' : '暂无可选对话'}
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
<>
|
<>
|
||||||
@@ -3527,7 +3567,7 @@ function SettingsPage({ onClose }: SettingsPageProps = {}) {
|
|||||||
<span>状态</span>
|
<span>状态</span>
|
||||||
</div>
|
</div>
|
||||||
{filteredSessions.map((session) => {
|
{filteredSessions.map((session) => {
|
||||||
const isSelected = aiInsightWhitelist.has(session.username)
|
const isSelected = aiInsightFilterList.has(session.username)
|
||||||
const weiboBinding = aiInsightWeiboBindings[session.username]
|
const weiboBinding = aiInsightWeiboBindings[session.username]
|
||||||
const weiboDraftValue = getWeiboBindingDraftValue(session.username)
|
const weiboDraftValue = getWeiboBindingDraftValue(session.username)
|
||||||
const isBindingLoading = weiboBindingLoadingSessionId === session.username
|
const isBindingLoading = weiboBindingLoadingSessionId === session.username
|
||||||
@@ -3543,11 +3583,11 @@ function SettingsPage({ onClose }: SettingsPageProps = {}) {
|
|||||||
type="checkbox"
|
type="checkbox"
|
||||||
checked={isSelected}
|
checked={isSelected}
|
||||||
onChange={async () => {
|
onChange={async () => {
|
||||||
setAiInsightWhitelist((prev) => {
|
setAiInsightFilterList((prev) => {
|
||||||
const next = new Set(prev)
|
const next = new Set(prev)
|
||||||
if (next.has(session.username)) next.delete(session.username)
|
if (next.has(session.username)) next.delete(session.username)
|
||||||
else next.add(session.username)
|
else next.add(session.username)
|
||||||
void configService.setAiInsightWhitelist(Array.from(next))
|
void configService.setAiInsightFilterList(Array.from(next))
|
||||||
return next
|
return next
|
||||||
})
|
})
|
||||||
}}
|
}}
|
||||||
@@ -3563,9 +3603,12 @@ function SettingsPage({ onClose }: SettingsPageProps = {}) {
|
|||||||
/>
|
/>
|
||||||
<div className="anti-revoke-row-text">
|
<div className="anti-revoke-row-text">
|
||||||
<span className="name">{session.displayName || session.username}</span>
|
<span className="name">{session.displayName || session.username}</span>
|
||||||
|
<span className="desc">{getSessionFilterTypeLabel(session.type)}</span>
|
||||||
</div>
|
</div>
|
||||||
</label>
|
</label>
|
||||||
<div className="insight-social-binding-cell">
|
<div className="insight-social-binding-cell">
|
||||||
|
{session.type === 'private' ? (
|
||||||
|
<>
|
||||||
<div className="insight-social-binding-input-wrap">
|
<div className="insight-social-binding-input-wrap">
|
||||||
<span className="binding-platform-chip">微博</span>
|
<span className="binding-platform-chip">微博</span>
|
||||||
<input
|
<input
|
||||||
@@ -3606,11 +3649,19 @@ function SettingsPage({ onClose }: SettingsPageProps = {}) {
|
|||||||
<span className="binding-feedback muted">仅支持手动填写数字 UID</span>
|
<span className="binding-feedback muted">仅支持手动填写数字 UID</span>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
</>
|
||||||
|
) : (
|
||||||
|
<div className="insight-social-binding-feedback">
|
||||||
|
<span className="binding-feedback muted">仅私聊支持微博绑定</span>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
<div className="anti-revoke-row-status">
|
<div className="anti-revoke-row-status">
|
||||||
<span className={`status-badge ${isSelected ? 'installed' : 'not-installed'}`}>
|
<span className={`status-badge ${isSelected ? 'installed' : 'not-installed'}`}>
|
||||||
<i className="status-dot" aria-hidden="true" />
|
<i className="status-dot" aria-hidden="true" />
|
||||||
{isSelected ? '已加入' : '未加入'}
|
{isSelected
|
||||||
|
? (aiInsightFilterMode === 'whitelist' ? '已允许' : '已屏蔽')
|
||||||
|
: (aiInsightFilterMode === 'whitelist' ? '未允许' : '允许')}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -3631,7 +3682,7 @@ function SettingsPage({ onClose }: SettingsPageProps = {}) {
|
|||||||
<div className="api-docs">
|
<div className="api-docs">
|
||||||
<div className="api-item">
|
<div className="api-item">
|
||||||
<p className="api-desc" style={{ lineHeight: 1.7 }}>
|
<p className="api-desc" style={{ lineHeight: 1.7 }}>
|
||||||
<strong>触发方式一:活跃会话分析</strong> — 每当微信数据库变化(即你收到新消息)时,经过 500ms 防抖后,对最近活跃的私聊会话进行分析。<br />
|
<strong>触发方式一:活跃会话分析</strong> — 每当微信数据库变化(即你收到新消息)时,经过 500ms 防抖后,对符合黑白名单规则的活跃会话进行分析。<br />
|
||||||
<strong>触发方式二:沉默扫描</strong> — 每 4 小时独立扫描一次,对超过阈值天数无消息的联系人发出提醒。<br />
|
<strong>触发方式二:沉默扫描</strong> — 每 4 小时独立扫描一次,对超过阈值天数无消息的联系人发出提醒。<br />
|
||||||
<strong>时间观念</strong> — 每次调用时,AI 会收到今天已向该联系人和全局发出过多少次见解,由 AI 自行决定是否需要克制。<br />
|
<strong>时间观念</strong> — 每次调用时,AI 会收到今天已向该联系人和全局发出过多少次见解,由 AI 自行决定是否需要克制。<br />
|
||||||
<strong>隐私</strong> — 所有分析请求均直接从你的电脑发往你填写的 API 地址,不经过任何 WeFlow 服务器。
|
<strong>隐私</strong> — 所有分析请求均直接从你的电脑发往你填写的 API 地址,不经过任何 WeFlow 服务器。
|
||||||
|
|||||||
@@ -97,6 +97,8 @@ export const CONFIG_KEYS = {
|
|||||||
AI_INSIGHT_SILENCE_DAYS: 'aiInsightSilenceDays',
|
AI_INSIGHT_SILENCE_DAYS: 'aiInsightSilenceDays',
|
||||||
AI_INSIGHT_ALLOW_CONTEXT: 'aiInsightAllowContext',
|
AI_INSIGHT_ALLOW_CONTEXT: 'aiInsightAllowContext',
|
||||||
AI_INSIGHT_ALLOW_SOCIAL_CONTEXT: 'aiInsightAllowSocialContext',
|
AI_INSIGHT_ALLOW_SOCIAL_CONTEXT: 'aiInsightAllowSocialContext',
|
||||||
|
AI_INSIGHT_FILTER_MODE: 'aiInsightFilterMode',
|
||||||
|
AI_INSIGHT_FILTER_LIST: 'aiInsightFilterList',
|
||||||
AI_INSIGHT_WHITELIST_ENABLED: 'aiInsightWhitelistEnabled',
|
AI_INSIGHT_WHITELIST_ENABLED: 'aiInsightWhitelistEnabled',
|
||||||
AI_INSIGHT_WHITELIST: 'aiInsightWhitelist',
|
AI_INSIGHT_WHITELIST: 'aiInsightWhitelist',
|
||||||
AI_INSIGHT_COOLDOWN_MINUTES: 'aiInsightCooldownMinutes',
|
AI_INSIGHT_COOLDOWN_MINUTES: 'aiInsightCooldownMinutes',
|
||||||
@@ -1917,22 +1919,49 @@ export async function setAiInsightAllowSocialContext(allow: boolean): Promise<vo
|
|||||||
await config.set(CONFIG_KEYS.AI_INSIGHT_ALLOW_SOCIAL_CONTEXT, allow)
|
await config.set(CONFIG_KEYS.AI_INSIGHT_ALLOW_SOCIAL_CONTEXT, allow)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export type AiInsightFilterMode = 'whitelist' | 'blacklist'
|
||||||
|
|
||||||
|
const normalizeAiInsightFilterList = (value: unknown): string[] => {
|
||||||
|
if (!Array.isArray(value)) return []
|
||||||
|
return Array.from(new Set(value.map((item) => String(item || '').trim()).filter(Boolean)))
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function getAiInsightFilterMode(): Promise<AiInsightFilterMode> {
|
||||||
|
const value = await config.get(CONFIG_KEYS.AI_INSIGHT_FILTER_MODE)
|
||||||
|
if (value === 'blacklist') return 'blacklist'
|
||||||
|
if (value === 'whitelist') return 'whitelist'
|
||||||
|
return 'whitelist'
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function setAiInsightFilterMode(mode: AiInsightFilterMode): Promise<void> {
|
||||||
|
const normalizedMode: AiInsightFilterMode = mode === 'blacklist' ? 'blacklist' : 'whitelist'
|
||||||
|
await config.set(CONFIG_KEYS.AI_INSIGHT_FILTER_MODE, normalizedMode)
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function getAiInsightFilterList(): Promise<string[]> {
|
||||||
|
const value = await config.get(CONFIG_KEYS.AI_INSIGHT_FILTER_LIST)
|
||||||
|
return normalizeAiInsightFilterList(value)
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function setAiInsightFilterList(list: string[]): Promise<void> {
|
||||||
|
await config.set(CONFIG_KEYS.AI_INSIGHT_FILTER_LIST, normalizeAiInsightFilterList(list))
|
||||||
|
}
|
||||||
|
|
||||||
|
// 兼容旧字段命名:内部已映射到新的黑白名单模式
|
||||||
export async function getAiInsightWhitelistEnabled(): Promise<boolean> {
|
export async function getAiInsightWhitelistEnabled(): Promise<boolean> {
|
||||||
const value = await config.get(CONFIG_KEYS.AI_INSIGHT_WHITELIST_ENABLED)
|
return (await getAiInsightFilterMode()) === 'whitelist'
|
||||||
return value === true
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function setAiInsightWhitelistEnabled(enabled: boolean): Promise<void> {
|
export async function setAiInsightWhitelistEnabled(enabled: boolean): Promise<void> {
|
||||||
await config.set(CONFIG_KEYS.AI_INSIGHT_WHITELIST_ENABLED, enabled)
|
await setAiInsightFilterMode(enabled ? 'whitelist' : 'blacklist')
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function getAiInsightWhitelist(): Promise<string[]> {
|
export async function getAiInsightWhitelist(): Promise<string[]> {
|
||||||
const value = await config.get(CONFIG_KEYS.AI_INSIGHT_WHITELIST)
|
return getAiInsightFilterList()
|
||||||
return Array.isArray(value) ? (value as string[]) : []
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function setAiInsightWhitelist(list: string[]): Promise<void> {
|
export async function setAiInsightWhitelist(list: string[]): Promise<void> {
|
||||||
await config.set(CONFIG_KEYS.AI_INSIGHT_WHITELIST, list)
|
await setAiInsightFilterList(list)
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function getAiInsightCooldownMinutes(): Promise<number> {
|
export async function getAiInsightCooldownMinutes(): Promise<number> {
|
||||||
|
|||||||
Reference in New Issue
Block a user