mirror of
https://github.com/LLOneBot/LLOneBot.git
synced 2024-11-22 01:56:33 +00:00
Compare commits
54 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
0876e4645f | ||
![]() |
a2f9128623 | ||
![]() |
e313b2b3e6 | ||
![]() |
a7d86f8fe0 | ||
![]() |
496d56f297 | ||
![]() |
ed2f554d4e | ||
![]() |
36d990e328 | ||
![]() |
0ceef4d4c0 | ||
![]() |
35bf4f001b | ||
![]() |
544682fe41 | ||
![]() |
3da49fbfba | ||
![]() |
d5875c9e5b | ||
![]() |
7895644156 | ||
![]() |
f092626ede | ||
![]() |
a58fb31f8e | ||
![]() |
fe85e277f1 | ||
![]() |
5217638b46 | ||
![]() |
f68b707e1c | ||
![]() |
c24ce6ec65 | ||
![]() |
f9270c38cf | ||
![]() |
fd478cdaed | ||
![]() |
517b233496 | ||
![]() |
1045c94a91 | ||
![]() |
032ac85c04 | ||
![]() |
1e35ffd7e6 | ||
![]() |
e5ab6134cd | ||
![]() |
a95ae44614 | ||
![]() |
3dc9940ac9 | ||
![]() |
277e418cf3 | ||
![]() |
24f09d485e | ||
![]() |
3394823719 | ||
![]() |
afa06f0760 | ||
![]() |
4f9e465fb2 | ||
![]() |
f400d43b8a | ||
![]() |
fb2f1a8917 | ||
![]() |
c849b9bea2 | ||
![]() |
1c6364d98f | ||
![]() |
8a268c3968 | ||
![]() |
806798bd48 | ||
![]() |
0c456e2160 | ||
![]() |
08e7e471d6 | ||
![]() |
13299c4631 | ||
![]() |
390e20c2ef | ||
![]() |
d8433e22d2 | ||
![]() |
ac07c98ae1 | ||
![]() |
6a19d6f234 | ||
![]() |
ab0b8ae663 | ||
![]() |
96aa5e264a | ||
![]() |
15b85f735d | ||
![]() |
4dd6d12168 | ||
![]() |
44febed486 | ||
![]() |
6c66dab3dc | ||
![]() |
0f7939fe5e | ||
![]() |
73a2b4e35f |
@@ -4,7 +4,7 @@
|
|||||||
"name": "LLOneBot",
|
"name": "LLOneBot",
|
||||||
"slug": "LLOneBot",
|
"slug": "LLOneBot",
|
||||||
"description": "实现 OneBot 11 协议,用于 QQ 机器人开发",
|
"description": "实现 OneBot 11 协议,用于 QQ 机器人开发",
|
||||||
"version": "3.33.0",
|
"version": "3.34.0",
|
||||||
"icon": "./icon.webp",
|
"icon": "./icon.webp",
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
|
@@ -18,7 +18,6 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@minatojs/driver-sqlite": "^4.6.0",
|
"@minatojs/driver-sqlite": "^4.6.0",
|
||||||
"compressing": "^1.10.1",
|
|
||||||
"cordis": "^3.18.1",
|
"cordis": "^3.18.1",
|
||||||
"cors": "^2.8.5",
|
"cors": "^2.8.5",
|
||||||
"cosmokit": "^1.6.2",
|
"cosmokit": "^1.6.2",
|
||||||
@@ -33,7 +32,7 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/cors": "^2.8.17",
|
"@types/cors": "^2.8.17",
|
||||||
"@types/express": "^4.17.21",
|
"@types/express": "^5.0.0",
|
||||||
"@types/fluent-ffmpeg": "^2.1.26",
|
"@types/fluent-ffmpeg": "^2.1.26",
|
||||||
"@types/node": "^20.14.15",
|
"@types/node": "^20.14.15",
|
||||||
"@types/ws": "^8.5.12",
|
"@types/ws": "^8.5.12",
|
||||||
@@ -41,8 +40,8 @@
|
|||||||
"electron-vite": "^2.3.0",
|
"electron-vite": "^2.3.0",
|
||||||
"protobufjs-cli": "^1.1.3",
|
"protobufjs-cli": "^1.1.3",
|
||||||
"typescript": "^5.6.2",
|
"typescript": "^5.6.2",
|
||||||
"vite": "^5.4.6",
|
"vite": "^5.4.8",
|
||||||
"vite-plugin-cp": "^4.0.8"
|
"vite-plugin-cp": "^4.0.8"
|
||||||
},
|
},
|
||||||
"packageManager": "yarn@4.4.1"
|
"packageManager": "yarn@4.5.0"
|
||||||
}
|
}
|
||||||
|
@@ -6,14 +6,6 @@ import { randomUUID, createHash } from 'node:crypto'
|
|||||||
import { fileURLToPath } from 'node:url'
|
import { fileURLToPath } from 'node:url'
|
||||||
import { fileTypeFromFile } from 'file-type'
|
import { fileTypeFromFile } from 'file-type'
|
||||||
|
|
||||||
export function isGIF(path: string) {
|
|
||||||
const buffer = Buffer.alloc(4)
|
|
||||||
const fd = fs.openSync(path, 'r')
|
|
||||||
fs.readSync(fd, buffer, 0, 4, 0)
|
|
||||||
fs.closeSync(fd)
|
|
||||||
return buffer.toString() === 'GIF8'
|
|
||||||
}
|
|
||||||
|
|
||||||
// 定义一个异步函数来检查文件是否存在
|
// 定义一个异步函数来检查文件是否存在
|
||||||
export function checkFileReceived(path: string, timeout: number = 3000): Promise<void> {
|
export function checkFileReceived(path: string, timeout: number = 3000): Promise<void> {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
@@ -198,26 +190,3 @@ export async function uri2local(uri: string, filename?: string, needExt?: boolea
|
|||||||
|
|
||||||
return { success: false, errMsg: '未知文件类型', fileName: '', path: '', isLocal: false }
|
return { success: false, errMsg: '未知文件类型', fileName: '', path: '', isLocal: false }
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function copyFolder(sourcePath: string, destPath: string) {
|
|
||||||
try {
|
|
||||||
const entries = await fsPromise.readdir(sourcePath, { withFileTypes: true })
|
|
||||||
await fsPromise.mkdir(destPath, { recursive: true })
|
|
||||||
for (const entry of entries) {
|
|
||||||
const srcPath = path.join(sourcePath, entry.name)
|
|
||||||
const dstPath = path.join(destPath, entry.name)
|
|
||||||
if (entry.isDirectory()) {
|
|
||||||
await copyFolder(srcPath, dstPath)
|
|
||||||
} else {
|
|
||||||
try {
|
|
||||||
await fsPromise.copyFile(srcPath, dstPath)
|
|
||||||
} catch (error) {
|
|
||||||
console.error(`无法复制文件 '${srcPath}' 到 '${dstPath}': ${error}`)
|
|
||||||
// 这里可以决定是否要继续复制其他文件
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
console.error('复制文件夹时出错:', error)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@@ -2,24 +2,7 @@ import fs from 'fs'
|
|||||||
import path from 'node:path'
|
import path from 'node:path'
|
||||||
import { getConfigUtil } from '../config'
|
import { getConfigUtil } from '../config'
|
||||||
import { LOG_DIR } from '../globalVars'
|
import { LOG_DIR } from '../globalVars'
|
||||||
import { Dict } from 'cosmokit'
|
import { inspect } from 'node:util'
|
||||||
|
|
||||||
function truncateString(obj: Dict | null, maxLength = 500) {
|
|
||||||
if (obj !== null && typeof obj === 'object') {
|
|
||||||
Object.keys(obj).forEach((key) => {
|
|
||||||
if (typeof obj[key] === 'string') {
|
|
||||||
// 如果是字符串且超过指定长度,则截断
|
|
||||||
if (obj[key].length > maxLength) {
|
|
||||||
obj[key] = obj[key].substring(0, maxLength) + '...'
|
|
||||||
}
|
|
||||||
} else if (typeof obj[key] === 'object') {
|
|
||||||
// 如果是对象或数组,则递归调用
|
|
||||||
truncateString(obj[key], maxLength)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
return obj
|
|
||||||
}
|
|
||||||
|
|
||||||
export const logFileName = `llonebot-${new Date().toLocaleString('zh-CN')}.log`.replace(/\//g, '-').replace(/:/g, '-')
|
export const logFileName = `llonebot-${new Date().toLocaleString('zh-CN')}.log`.replace(/\//g, '-').replace(/:/g, '-')
|
||||||
|
|
||||||
@@ -29,9 +12,8 @@ export function log(...msg: unknown[]) {
|
|||||||
}
|
}
|
||||||
let logMsg = ''
|
let logMsg = ''
|
||||||
for (const msgItem of msg) {
|
for (const msgItem of msg) {
|
||||||
// 判断是否是对象
|
|
||||||
if (typeof msgItem === 'object') {
|
if (typeof msgItem === 'object') {
|
||||||
logMsg += JSON.stringify(truncateString(msgItem)) + ' '
|
logMsg += inspect(msgItem, { depth: 10, compact: true, breakLength: Infinity }) + ' '
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
logMsg += msgItem + ' '
|
logMsg += msgItem + ' '
|
||||||
|
@@ -1,162 +0,0 @@
|
|||||||
import fsPromise from 'node:fs/promises'
|
|
||||||
import fs from 'node:fs'
|
|
||||||
import path from 'node:path'
|
|
||||||
import Database, { Tables } from 'minato'
|
|
||||||
import SQLite from '@minatojs/driver-sqlite'
|
|
||||||
import { Peer } from '@/ntqqapi/types'
|
|
||||||
import { createHash } from 'node:crypto'
|
|
||||||
import { LimitedHashTable } from './table'
|
|
||||||
import { DATA_DIR } from '../globalVars'
|
|
||||||
import { FileCacheV2 } from '../types'
|
|
||||||
|
|
||||||
interface SQLiteTables extends Tables {
|
|
||||||
message: {
|
|
||||||
shortId: number
|
|
||||||
msgId: string
|
|
||||||
chatType: number
|
|
||||||
peerUid: string
|
|
||||||
}
|
|
||||||
file_v2: FileCacheV2
|
|
||||||
}
|
|
||||||
|
|
||||||
interface MsgIdAndPeerByShortId {
|
|
||||||
MsgId: string
|
|
||||||
Peer: Peer
|
|
||||||
}
|
|
||||||
|
|
||||||
// forked from https://github.com/NapNeko/NapCatQQ/blob/6f6b258f22d7563f15d84e7172c4d4cbb547f47e/src/common/utils/MessageUnique.ts#L84
|
|
||||||
class MessageUniqueWrapper {
|
|
||||||
private msgDataMap: LimitedHashTable<string, number>
|
|
||||||
private msgIdMap: LimitedHashTable<string, number>
|
|
||||||
private db: Database<SQLiteTables> | undefined
|
|
||||||
|
|
||||||
constructor(maxMap: number = 1000) {
|
|
||||||
this.msgIdMap = new LimitedHashTable<string, number>(maxMap)
|
|
||||||
this.msgDataMap = new LimitedHashTable<string, number>(maxMap)
|
|
||||||
}
|
|
||||||
|
|
||||||
async init(uin: string) {
|
|
||||||
const dbDir = path.join(DATA_DIR, 'database')
|
|
||||||
if (!fs.existsSync(dbDir)) {
|
|
||||||
await fsPromise.mkdir(dbDir)
|
|
||||||
}
|
|
||||||
const database = new Database<SQLiteTables>()
|
|
||||||
await database.connect(SQLite, {
|
|
||||||
path: path.join(dbDir, `${uin}.db`)
|
|
||||||
})
|
|
||||||
database.extend('message', {
|
|
||||||
shortId: 'integer(10)',
|
|
||||||
chatType: 'unsigned',
|
|
||||||
msgId: 'string(24)',
|
|
||||||
peerUid: 'string(24)'
|
|
||||||
}, {
|
|
||||||
primary: 'shortId'
|
|
||||||
})
|
|
||||||
database.extend('file_v2', {
|
|
||||||
fileName: 'string',
|
|
||||||
fileSize: 'string',
|
|
||||||
fileUuid: 'string(128)',
|
|
||||||
msgId: 'string(24)',
|
|
||||||
msgTime: 'unsigned(10)',
|
|
||||||
peerUid: 'string(24)',
|
|
||||||
chatType: 'unsigned',
|
|
||||||
elementId: 'string(24)',
|
|
||||||
elementType: 'unsigned',
|
|
||||||
}, {
|
|
||||||
primary: 'fileUuid',
|
|
||||||
indexes: ['fileName']
|
|
||||||
})
|
|
||||||
this.db = database
|
|
||||||
}
|
|
||||||
|
|
||||||
async getRecentMsgIds(Peer: Peer, size: number): Promise<string[]> {
|
|
||||||
const heads = this.msgIdMap.getHeads(size)
|
|
||||||
if (!heads) {
|
|
||||||
return []
|
|
||||||
}
|
|
||||||
const data: (MsgIdAndPeerByShortId | undefined)[] = []
|
|
||||||
for (const t of heads) {
|
|
||||||
data.push(await MessageUnique.getMsgIdAndPeerByShortId(t.value))
|
|
||||||
}
|
|
||||||
const ret = data.filter((t) => t?.Peer.chatType === Peer.chatType && t?.Peer.peerUid === Peer.peerUid)
|
|
||||||
return ret.map((t) => t?.MsgId).filter((t) => t !== undefined)
|
|
||||||
}
|
|
||||||
|
|
||||||
createMsg(peer: Peer, msgId: string): number {
|
|
||||||
const key = `${msgId}|${peer.chatType}|${peer.peerUid}`
|
|
||||||
const hash = createHash('md5').update(key).digest()
|
|
||||||
//设置第一个bit为0 保证shortId为正数
|
|
||||||
hash[0] &= 0x7f
|
|
||||||
const shortId = hash.readInt32BE(0)
|
|
||||||
//减少性能损耗
|
|
||||||
// const isExist = this.msgIdMap.getKey(shortId)
|
|
||||||
// if (isExist && isExist === msgId) {
|
|
||||||
// return shortId
|
|
||||||
// }
|
|
||||||
this.msgIdMap.set(msgId, shortId)
|
|
||||||
this.msgDataMap.set(key, shortId)
|
|
||||||
this.db?.upsert('message', [{
|
|
||||||
msgId,
|
|
||||||
shortId,
|
|
||||||
chatType: peer.chatType,
|
|
||||||
peerUid: peer.peerUid
|
|
||||||
}], 'shortId').then()
|
|
||||||
return shortId
|
|
||||||
}
|
|
||||||
|
|
||||||
async getMsgIdAndPeerByShortId(shortId: number): Promise<MsgIdAndPeerByShortId | undefined> {
|
|
||||||
const data = this.msgDataMap.getKey(shortId)
|
|
||||||
if (data) {
|
|
||||||
const [msgId, chatTypeStr, peerUid] = data.split('|')
|
|
||||||
const peer: Peer = {
|
|
||||||
chatType: parseInt(chatTypeStr),
|
|
||||||
peerUid,
|
|
||||||
guildId: '',
|
|
||||||
}
|
|
||||||
return { MsgId: msgId, Peer: peer }
|
|
||||||
}
|
|
||||||
const items = await this.db?.get('message', { shortId })
|
|
||||||
if (items?.length) {
|
|
||||||
const { msgId, chatType, peerUid } = items[0]
|
|
||||||
return {
|
|
||||||
MsgId: msgId,
|
|
||||||
Peer: {
|
|
||||||
chatType,
|
|
||||||
peerUid,
|
|
||||||
guildId: '',
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
getShortIdByMsgId(msgId: string): number | undefined {
|
|
||||||
return this.msgIdMap.getValue(msgId)
|
|
||||||
}
|
|
||||||
|
|
||||||
async getPeerByMsgId(msgId: string) {
|
|
||||||
const shortId = this.msgIdMap.getValue(msgId)
|
|
||||||
if (!shortId) return undefined
|
|
||||||
return await this.getMsgIdAndPeerByShortId(shortId)
|
|
||||||
}
|
|
||||||
|
|
||||||
resize(maxSize: number): void {
|
|
||||||
this.msgIdMap.resize(maxSize)
|
|
||||||
this.msgDataMap.resize(maxSize)
|
|
||||||
}
|
|
||||||
|
|
||||||
addFileCache(data: FileCacheV2) {
|
|
||||||
return this.db?.upsert('file_v2', [data], 'fileUuid')
|
|
||||||
}
|
|
||||||
|
|
||||||
getFileCacheByName(fileName: string) {
|
|
||||||
return this.db?.get('file_v2', { fileName }, {
|
|
||||||
sort: { msgTime: 'desc' }
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
getFileCacheById(fileUuid: string) {
|
|
||||||
return this.db?.get('file_v2', { fileUuid })
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export const MessageUnique: MessageUniqueWrapper = new MessageUniqueWrapper()
|
|
@@ -12,8 +12,9 @@ export function calcQQLevel(level: QQLevel) {
|
|||||||
|
|
||||||
/** QQ Build Version */
|
/** QQ Build Version */
|
||||||
export function getBuildVersion(): number {
|
export function getBuildVersion(): number {
|
||||||
const version: string = globalThis.LiteLoader.versions.qqnt
|
//const version: string = globalThis.LiteLoader.versions.qqnt
|
||||||
return +version.split('-')[1]
|
//return +version.split('-')[1]
|
||||||
|
return +globalThis.LiteLoader.package.qqnt.buildVersion
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 在保证老对象已有的属性不变化的情况下将新对象的属性复制到老对象 */
|
/** 在保证老对象已有的属性不变化的情况下将新对象的属性复制到老对象 */
|
||||||
@@ -37,3 +38,10 @@ export function mergeNewProperties(newObj: Dict, oldObj: Dict) {
|
|||||||
export function filterNullable<T>(array: T[]) {
|
export function filterNullable<T>(array: T[]) {
|
||||||
return array.filter(e => !isNullable(e)) as NonNullable<T>[]
|
return array.filter(e => !isNullable(e)) as NonNullable<T>[]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function parseBool(value: string) {
|
||||||
|
if (['', 'true', '1'].includes(value)) {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
@@ -1,9 +1,8 @@
|
|||||||
import path from 'node:path'
|
import path from 'node:path'
|
||||||
import compressing from 'compressing'
|
|
||||||
import { writeFile } from 'node:fs/promises'
|
import { writeFile } from 'node:fs/promises'
|
||||||
import { version } from '../../version'
|
import { version } from '../../version'
|
||||||
import { copyFolder, log, fetchFile } from '.'
|
import { log, fetchFile } from '.'
|
||||||
import { PLUGIN_DIR, TEMP_DIR } from '../globalVars'
|
import { TEMP_DIR } from '../globalVars'
|
||||||
|
|
||||||
const downloadMirrorHosts = ['https://ghp.ci/']
|
const downloadMirrorHosts = ['https://ghp.ci/']
|
||||||
const releasesMirrorHosts = ['https://kkgithub.com']
|
const releasesMirrorHosts = ['https://kkgithub.com']
|
||||||
@@ -27,49 +26,21 @@ export async function checkNewVersion() {
|
|||||||
return { result: false, version: version }
|
return { result: false, version: version }
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function upgradeLLOneBot() {
|
export async function upgradeLLOneBot(): Promise<boolean> {
|
||||||
const latestVersion = await getRemoteVersion()
|
const latestVersion = await getRemoteVersion()
|
||||||
if (latestVersion && latestVersion != '') {
|
if (latestVersion && latestVersion != '') {
|
||||||
const downloadUrl = `https://github.com/LLOneBot/LLOneBot/releases/download/v${latestVersion}/LLOneBot.zip`
|
const downloadUrl = `https://github.com/LLOneBot/LLOneBot/releases/download/v${latestVersion}/LLOneBot.zip`
|
||||||
const filePath = path.join(TEMP_DIR, './update-' + latestVersion + '.zip')
|
const filePath = path.join(TEMP_DIR, './update-' + latestVersion + '.zip')
|
||||||
let downloadSuccess = false
|
|
||||||
// 多镜像下载
|
// 多镜像下载
|
||||||
for (const mirrorGithub of downloadMirrorHosts) {
|
for (const mirrorGithub of downloadMirrorHosts) {
|
||||||
try {
|
try {
|
||||||
const res = await fetchFile(mirrorGithub + downloadUrl)
|
const res = await fetchFile(mirrorGithub + downloadUrl)
|
||||||
await writeFile(filePath, res.data)
|
await writeFile(filePath, res.data)
|
||||||
downloadSuccess = true
|
return globalThis.LiteLoader.api.plugin.install(filePath)
|
||||||
break
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
log('llonebot upgrade error', e)
|
log('llonebot upgrade error', e)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!downloadSuccess) {
|
|
||||||
log('llonebot upgrade error', 'download failed')
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
const temp_ver_dir = path.join(TEMP_DIR, 'LLOneBot' + latestVersion)
|
|
||||||
const uncompressedPromise = async function () {
|
|
||||||
return new Promise<boolean>(resolve => {
|
|
||||||
compressing.zip
|
|
||||||
.uncompress(filePath, temp_ver_dir)
|
|
||||||
.then(() => {
|
|
||||||
resolve(true)
|
|
||||||
})
|
|
||||||
.catch(reason => {
|
|
||||||
log('llonebot upgrade failed, ', reason)
|
|
||||||
if (reason?.errno == -4082) {
|
|
||||||
resolve(true)
|
|
||||||
}
|
|
||||||
resolve(false)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
|
||||||
const uncompressedResult = await uncompressedPromise()
|
|
||||||
// 复制文件
|
|
||||||
await copyFolder(temp_ver_dir, PLUGIN_DIR)
|
|
||||||
|
|
||||||
return uncompressedResult
|
|
||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
@@ -1,5 +1,4 @@
|
|||||||
import path from 'node:path'
|
import path from 'node:path'
|
||||||
import fs from 'node:fs'
|
|
||||||
import Log from './log'
|
import Log from './log'
|
||||||
import Core from '../ntqqapi/core'
|
import Core from '../ntqqapi/core'
|
||||||
import OneBot11Adapter from '../onebot11/adapter'
|
import OneBot11Adapter from '../onebot11/adapter'
|
||||||
@@ -34,6 +33,11 @@ import {
|
|||||||
NTQQWebApi,
|
NTQQWebApi,
|
||||||
NTQQWindowApi
|
NTQQWindowApi
|
||||||
} from '../ntqqapi/api'
|
} from '../ntqqapi/api'
|
||||||
|
import { mkdir } from 'node:fs/promises'
|
||||||
|
import { existsSync, mkdirSync } from 'node:fs'
|
||||||
|
import Database from 'minato'
|
||||||
|
import SQLiteDriver from '@minatojs/driver-sqlite'
|
||||||
|
import Store from './store'
|
||||||
|
|
||||||
declare module 'cordis' {
|
declare module 'cordis' {
|
||||||
interface Events {
|
interface Events {
|
||||||
@@ -45,12 +49,12 @@ let mainWindow: BrowserWindow | null = null
|
|||||||
|
|
||||||
// 加载插件时触发
|
// 加载插件时触发
|
||||||
function onLoad() {
|
function onLoad() {
|
||||||
if (!fs.existsSync(DATA_DIR)) {
|
if (!existsSync(DATA_DIR)) {
|
||||||
fs.mkdirSync(DATA_DIR, { recursive: true })
|
mkdirSync(DATA_DIR, { recursive: true })
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!fs.existsSync(LOG_DIR)) {
|
if (!existsSync(LOG_DIR)) {
|
||||||
fs.mkdirSync(LOG_DIR)
|
mkdirSync(LOG_DIR)
|
||||||
}
|
}
|
||||||
|
|
||||||
ipcMain.handle(CHANNEL_CHECK_VERSION, async () => {
|
ipcMain.handle(CHANNEL_CHECK_VERSION, async () => {
|
||||||
@@ -151,8 +155,12 @@ function onLoad() {
|
|||||||
log('LLOneBot 开关设置为关闭,不启动LLOneBot')
|
log('LLOneBot 开关设置为关闭,不启动LLOneBot')
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if (!fs.existsSync(TEMP_DIR)) {
|
if (!existsSync(TEMP_DIR)) {
|
||||||
fs.mkdirSync(TEMP_DIR)
|
await mkdir(TEMP_DIR)
|
||||||
|
}
|
||||||
|
const dbDir = path.join(DATA_DIR, 'database')
|
||||||
|
if (!existsSync(dbDir)) {
|
||||||
|
await mkdir(dbDir)
|
||||||
}
|
}
|
||||||
const ctx = new Context()
|
const ctx = new Context()
|
||||||
ctx.plugin(Log, {
|
ctx.plugin(Log, {
|
||||||
@@ -179,6 +187,13 @@ function onLoad() {
|
|||||||
enableLocalFile2Url: config.enableLocalFile2Url!,
|
enableLocalFile2Url: config.enableLocalFile2Url!,
|
||||||
ffmpeg: config.ffmpeg,
|
ffmpeg: config.ffmpeg,
|
||||||
})
|
})
|
||||||
|
ctx.plugin(Database)
|
||||||
|
ctx.plugin(SQLiteDriver, {
|
||||||
|
path: path.join(dbDir, `${selfInfo.uin}.db`)
|
||||||
|
})
|
||||||
|
ctx.plugin(Store, {
|
||||||
|
msgCacheExpire: config.msgCacheExpire! * 1000
|
||||||
|
})
|
||||||
ctx.start()
|
ctx.start()
|
||||||
ipcMain.on(CHANNEL_SET_CONFIG_CONFIRMED, (event, config: LLOBConfig) => {
|
ipcMain.on(CHANNEL_SET_CONFIG_CONFIRMED, (event, config: LLOBConfig) => {
|
||||||
ctx.parallel('llonebot/config-updated', config)
|
ctx.parallel('llonebot/config-updated', config)
|
||||||
|
153
src/main/store.ts
Normal file
153
src/main/store.ts
Normal file
@@ -0,0 +1,153 @@
|
|||||||
|
import { Peer, RawMessage } from '@/ntqqapi/types'
|
||||||
|
import { createHash } from 'node:crypto'
|
||||||
|
import { LimitedHashTable } from '@/common/utils/table'
|
||||||
|
import { FileCacheV2 } from '@/common/types'
|
||||||
|
import { Context, Service } from 'cordis'
|
||||||
|
|
||||||
|
declare module 'cordis' {
|
||||||
|
interface Context {
|
||||||
|
store: Store
|
||||||
|
}
|
||||||
|
interface Tables {
|
||||||
|
message: {
|
||||||
|
shortId: number
|
||||||
|
msgId: string
|
||||||
|
chatType: number
|
||||||
|
peerUid: string
|
||||||
|
}
|
||||||
|
file_v2: FileCacheV2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
interface MsgInfo {
|
||||||
|
msgId: string
|
||||||
|
peer: Peer
|
||||||
|
}
|
||||||
|
|
||||||
|
class Store extends Service {
|
||||||
|
static inject = ['database', 'model']
|
||||||
|
private cache: LimitedHashTable<string, number>
|
||||||
|
private messages: Map<string, RawMessage>
|
||||||
|
|
||||||
|
constructor(protected ctx: Context, public config: Store.Config) {
|
||||||
|
super(ctx, 'store', true)
|
||||||
|
this.cache = new LimitedHashTable(1000)
|
||||||
|
this.messages = new Map()
|
||||||
|
this.initDatabase()
|
||||||
|
}
|
||||||
|
|
||||||
|
private async initDatabase() {
|
||||||
|
this.ctx.model.extend('message', {
|
||||||
|
shortId: 'integer(10)',
|
||||||
|
chatType: 'unsigned',
|
||||||
|
msgId: 'string(24)',
|
||||||
|
peerUid: 'string(24)'
|
||||||
|
}, {
|
||||||
|
primary: 'shortId'
|
||||||
|
})
|
||||||
|
this.ctx.model.extend('file_v2', {
|
||||||
|
fileName: 'string',
|
||||||
|
fileSize: 'string',
|
||||||
|
fileUuid: 'string(128)',
|
||||||
|
msgId: 'string(24)',
|
||||||
|
msgTime: 'unsigned(10)',
|
||||||
|
peerUid: 'string(24)',
|
||||||
|
chatType: 'unsigned',
|
||||||
|
elementId: 'string(24)',
|
||||||
|
elementType: 'unsigned',
|
||||||
|
}, {
|
||||||
|
primary: 'fileUuid',
|
||||||
|
indexes: ['fileName']
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
createMsgShortId(peer: Peer, msgId: string): number {
|
||||||
|
const cacheKey = `${msgId}|${peer.chatType}|${peer.peerUid}`
|
||||||
|
const hash = createHash('md5').update(cacheKey).digest()
|
||||||
|
hash[0] &= 0x7f //设置第一个bit为0 保证shortId为正数
|
||||||
|
const shortId = hash.readInt32BE()
|
||||||
|
this.cache.set(cacheKey, shortId)
|
||||||
|
this.ctx.database.upsert('message', [{
|
||||||
|
msgId,
|
||||||
|
shortId,
|
||||||
|
chatType: peer.chatType,
|
||||||
|
peerUid: peer.peerUid
|
||||||
|
}], 'shortId').then()
|
||||||
|
return shortId
|
||||||
|
}
|
||||||
|
|
||||||
|
async getMsgInfoByShortId(shortId: number): Promise<MsgInfo | undefined> {
|
||||||
|
const data = this.cache.getKey(shortId)
|
||||||
|
if (data) {
|
||||||
|
const [msgId, chatTypeStr, peerUid] = data.split('|')
|
||||||
|
return {
|
||||||
|
msgId,
|
||||||
|
peer: {
|
||||||
|
chatType: +chatTypeStr,
|
||||||
|
peerUid,
|
||||||
|
guildId: ''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
const items = await this.ctx.database.get('message', { shortId })
|
||||||
|
if (items?.length) {
|
||||||
|
const { msgId, chatType, peerUid } = items[0]
|
||||||
|
return {
|
||||||
|
msgId,
|
||||||
|
peer: {
|
||||||
|
chatType,
|
||||||
|
peerUid,
|
||||||
|
guildId: ''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async getShortIdByMsgId(msgId: string): Promise<number | undefined> {
|
||||||
|
return (await this.ctx.database.get('message', { msgId }))[0]?.shortId
|
||||||
|
}
|
||||||
|
|
||||||
|
getShortIdByMsgInfo(peer: Peer, msgId: string) {
|
||||||
|
const cacheKey = `${msgId}|${peer.chatType}|${peer.peerUid}`
|
||||||
|
return this.cache.getValue(cacheKey)
|
||||||
|
}
|
||||||
|
|
||||||
|
addFileCache(data: FileCacheV2) {
|
||||||
|
return this.ctx.database.upsert('file_v2', [data], 'fileUuid')
|
||||||
|
}
|
||||||
|
|
||||||
|
getFileCacheByName(fileName: string) {
|
||||||
|
return this.ctx.database.get('file_v2', { fileName }, {
|
||||||
|
sort: { msgTime: 'desc' }
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
getFileCacheById(fileUuid: string) {
|
||||||
|
return this.ctx.database.get('file_v2', { fileUuid })
|
||||||
|
}
|
||||||
|
|
||||||
|
async addMsgCache(msg: RawMessage) {
|
||||||
|
const expire = this.config.msgCacheExpire
|
||||||
|
if (expire === 0) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
const id = msg.msgId
|
||||||
|
this.messages.set(id, msg)
|
||||||
|
setTimeout(() => {
|
||||||
|
this.messages.delete(id)
|
||||||
|
}, expire)
|
||||||
|
}
|
||||||
|
|
||||||
|
getMsgCache(msgId: string) {
|
||||||
|
return this.messages.get(msgId)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
namespace Store {
|
||||||
|
export interface Config {
|
||||||
|
/** 单位为毫秒 */
|
||||||
|
msgCacheExpire: number
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Store
|
@@ -16,14 +16,12 @@ import path from 'node:path'
|
|||||||
import { existsSync } from 'node:fs'
|
import { existsSync } from 'node:fs'
|
||||||
import { ReceiveCmdS } from '../hook'
|
import { ReceiveCmdS } from '../hook'
|
||||||
import { RkeyManager } from '@/ntqqapi/helper/rkey'
|
import { RkeyManager } from '@/ntqqapi/helper/rkey'
|
||||||
import { getSession } from '@/ntqqapi/wrapper'
|
|
||||||
import { OnRichMediaDownloadCompleteParams, Peer } from '@/ntqqapi/types/msg'
|
import { OnRichMediaDownloadCompleteParams, Peer } from '@/ntqqapi/types/msg'
|
||||||
import { calculateFileMD5 } from '@/common/utils/file'
|
import { calculateFileMD5 } from '@/common/utils/file'
|
||||||
import { fileTypeFromFile } from 'file-type'
|
import { fileTypeFromFile } from 'file-type'
|
||||||
import { copyFile, stat, unlink } from 'node:fs/promises'
|
import { copyFile, stat, unlink } from 'node:fs/promises'
|
||||||
import { Time } from 'cosmokit'
|
import { Time } from 'cosmokit'
|
||||||
import { Service, Context } from 'cordis'
|
import { Service, Context } from 'cordis'
|
||||||
import { TEMP_DIR } from '@/common/globalVars'
|
|
||||||
|
|
||||||
declare module 'cordis' {
|
declare module 'cordis' {
|
||||||
interface Context {
|
interface Context {
|
||||||
@@ -40,53 +38,37 @@ export class NTQQFileApi extends Service {
|
|||||||
this.rkeyManager = new RkeyManager(ctx, 'https://llob.linyuchen.net/rkey')
|
this.rkeyManager = new RkeyManager(ctx, 'https://llob.linyuchen.net/rkey')
|
||||||
}
|
}
|
||||||
|
|
||||||
async getVideoUrl(peer: Peer, msgId: string, elementId: string) {
|
async getVideoUrl(peer: Peer, msgId: string, elementId: string): Promise<string | undefined> {
|
||||||
const session = getSession()
|
const data = await invoke('nodeIKernelRichMediaService/getVideoPlayUrlV2', [{
|
||||||
if (session) {
|
peer,
|
||||||
return (await session.getRichMediaService().getVideoPlayUrlV2(
|
msgId,
|
||||||
peer,
|
elemId: elementId,
|
||||||
msgId,
|
videoCodecFormat: 0,
|
||||||
elementId,
|
params: {
|
||||||
0,
|
downSourceType: 1,
|
||||||
{ downSourceType: 1, triggerType: 1 }
|
triggerType: 1
|
||||||
)).urlResult.domainUrl[0]?.url
|
|
||||||
} else {
|
|
||||||
const data = await invoke('nodeIKernelRichMediaService/getVideoPlayUrlV2', [{
|
|
||||||
peer,
|
|
||||||
msgId,
|
|
||||||
elemId: elementId,
|
|
||||||
videoCodecFormat: 0,
|
|
||||||
exParams: {
|
|
||||||
downSourceType: 1,
|
|
||||||
triggerType: 1
|
|
||||||
},
|
|
||||||
}, null])
|
|
||||||
if (data.result !== 0) {
|
|
||||||
this.ctx.logger.warn('getVideoUrl', data)
|
|
||||||
}
|
}
|
||||||
return data.urlResult.domainUrl[0]?.url
|
}])
|
||||||
|
if (data.result !== 0) {
|
||||||
|
this.ctx.logger.warn('getVideoUrl', data)
|
||||||
}
|
}
|
||||||
|
return data.urlResult.domainUrl[0]?.url
|
||||||
}
|
}
|
||||||
|
|
||||||
async getFileType(filePath: string) {
|
async getFileType(filePath: string) {
|
||||||
return fileTypeFromFile(filePath)
|
return fileTypeFromFile(filePath)
|
||||||
}
|
}
|
||||||
|
|
||||||
// 上传文件到QQ的文件夹
|
/** 上传文件到 QQ 的文件夹 */
|
||||||
async uploadFile(filePath: string, elementType: ElementType = ElementType.PIC, elementSubType = 0) {
|
async uploadFile(filePath: string, elementType = ElementType.Pic, elementSubType = 0) {
|
||||||
const fileMd5 = await calculateFileMD5(filePath)
|
const fileMd5 = await calculateFileMD5(filePath)
|
||||||
let ext = (await this.getFileType(filePath))?.ext || ''
|
let fileName = path.basename(filePath)
|
||||||
if (ext) {
|
if (!fileName.includes('.')) {
|
||||||
ext = '.' + ext
|
const ext = (await this.getFileType(filePath))?.ext
|
||||||
|
fileName += ext ? '.' + ext : ''
|
||||||
}
|
}
|
||||||
let fileName = `${path.basename(filePath)}`
|
const mediaPath = await invoke(NTMethod.MEDIA_FILE_PATH, [{
|
||||||
if (fileName.indexOf('.') === -1) {
|
path_info: {
|
||||||
fileName += ext
|
|
||||||
}
|
|
||||||
const session = getSession()
|
|
||||||
let mediaPath: string
|
|
||||||
if (session) {
|
|
||||||
mediaPath = session?.getMsgService().getRichMediaFilePathForGuild({
|
|
||||||
md5HexStr: fileMd5,
|
md5HexStr: fileMd5,
|
||||||
fileName: fileName,
|
fileName: fileName,
|
||||||
elementType: elementType,
|
elementType: elementType,
|
||||||
@@ -94,22 +76,9 @@ export class NTQQFileApi extends Service {
|
|||||||
thumbSize: 0,
|
thumbSize: 0,
|
||||||
needCreate: true,
|
needCreate: true,
|
||||||
downloadType: 1,
|
downloadType: 1,
|
||||||
file_uuid: ''
|
file_uuid: '',
|
||||||
})
|
},
|
||||||
} else {
|
}])
|
||||||
mediaPath = await invoke(NTMethod.MEDIA_FILE_PATH, [{
|
|
||||||
path_info: {
|
|
||||||
md5HexStr: fileMd5,
|
|
||||||
fileName: fileName,
|
|
||||||
elementType: elementType,
|
|
||||||
elementSubType,
|
|
||||||
thumbSize: 0,
|
|
||||||
needCreate: true,
|
|
||||||
downloadType: 1,
|
|
||||||
file_uuid: '',
|
|
||||||
},
|
|
||||||
}])
|
|
||||||
}
|
|
||||||
await copyFile(filePath, mediaPath)
|
await copyFile(filePath, mediaPath)
|
||||||
const fileSize = (await stat(filePath)).size
|
const fileSize = (await stat(filePath)).size
|
||||||
return {
|
return {
|
||||||
@@ -117,7 +86,6 @@ export class NTQQFileApi extends Service {
|
|||||||
fileName,
|
fileName,
|
||||||
path: mediaPath,
|
path: mediaPath,
|
||||||
fileSize,
|
fileSize,
|
||||||
ext
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -126,8 +94,8 @@ export class NTQQFileApi extends Service {
|
|||||||
chatType: ChatType,
|
chatType: ChatType,
|
||||||
peerUid: string,
|
peerUid: string,
|
||||||
elementId: string,
|
elementId: string,
|
||||||
thumbPath: string,
|
thumbPath = '',
|
||||||
sourcePath: string,
|
sourcePath = '',
|
||||||
timeout = 1000 * 60 * 2,
|
timeout = 1000 * 60 * 2,
|
||||||
force = false
|
force = false
|
||||||
) {
|
) {
|
||||||
@@ -166,17 +134,15 @@ export class NTQQFileApi extends Service {
|
|||||||
timeout
|
timeout
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
let filePath = data.notifyInfo.filePath
|
return data.notifyInfo.filePath
|
||||||
if (filePath.startsWith('\\')) {
|
|
||||||
const downloadPath = TEMP_DIR
|
|
||||||
filePath = path.join(downloadPath, filePath)
|
|
||||||
// 下载路径是下载文件夹的相对路径
|
|
||||||
}
|
|
||||||
return filePath
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async getImageSize(filePath: string) {
|
async getImageSize(filePath: string) {
|
||||||
return await invoke<{ width: number; height: number }>(
|
return await invoke<{
|
||||||
|
width: number
|
||||||
|
height: number
|
||||||
|
type: string
|
||||||
|
}>(
|
||||||
NTMethod.IMAGE_SIZE,
|
NTMethod.IMAGE_SIZE,
|
||||||
[filePath],
|
[filePath],
|
||||||
{
|
{
|
||||||
@@ -196,8 +162,8 @@ export class NTQQFileApi extends Service {
|
|||||||
if (url) {
|
if (url) {
|
||||||
const parsedUrl = new URL(IMAGE_HTTP_HOST + url) //临时解析拼接
|
const parsedUrl = new URL(IMAGE_HTTP_HOST + url) //临时解析拼接
|
||||||
const imageAppid = parsedUrl.searchParams.get('appid')
|
const imageAppid = parsedUrl.searchParams.get('appid')
|
||||||
const isNewPic = imageAppid && ['1406', '1407'].includes(imageAppid)
|
const isNTPic = imageAppid && ['1406', '1407'].includes(imageAppid)
|
||||||
if (isNewPic) {
|
if (isNTPic) {
|
||||||
let rkey = parsedUrl.searchParams.get('rkey')
|
let rkey = parsedUrl.searchParams.get('rkey')
|
||||||
if (rkey) {
|
if (rkey) {
|
||||||
return IMAGE_HTTP_HOST_NT + url
|
return IMAGE_HTTP_HOST_NT + url
|
||||||
@@ -216,6 +182,27 @@ export class NTQQFileApi extends Service {
|
|||||||
this.ctx.logger.error('图片url获取失败', element)
|
this.ctx.logger.error('图片url获取失败', element)
|
||||||
return ''
|
return ''
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async downloadFileForModelId(peer: Peer, fileModelId: string, timeout = 2 * Time.minute) {
|
||||||
|
const data = await invoke<{ notifyInfo: OnRichMediaDownloadCompleteParams }>(
|
||||||
|
'nodeIKernelRichMediaService/downloadFileForModelId',
|
||||||
|
[
|
||||||
|
{
|
||||||
|
peer,
|
||||||
|
fileModelIdList: [fileModelId],
|
||||||
|
save_path: ''
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
],
|
||||||
|
{
|
||||||
|
cbCmd: ReceiveCmdS.MEDIA_DOWNLOAD_COMPLETE,
|
||||||
|
cmdCB: payload => payload.notifyInfo.fileModelId === fileModelId,
|
||||||
|
timeout,
|
||||||
|
afterFirstCmd: false
|
||||||
|
}
|
||||||
|
)
|
||||||
|
return data.notifyInfo.filePath
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export class NTQQFileCacheApi extends Service {
|
export class NTQQFileCacheApi extends Service {
|
||||||
@@ -237,7 +224,7 @@ export class NTQQFileCacheApi extends Service {
|
|||||||
}
|
}
|
||||||
|
|
||||||
scanCache() {
|
scanCache() {
|
||||||
invoke<GeneralCallResult>(ReceiveCmdS.CACHE_SCAN_FINISH, [], { classNameIsRegister: true })
|
invoke<GeneralCallResult>(ReceiveCmdS.CACHE_SCAN_FINISH, [], { registerEvent: true })
|
||||||
return invoke<CacheScanResult>(NTMethod.CACHE_SCAN, [null, null], { timeout: 300 * Time.second })
|
return invoke<CacheScanResult>(NTMethod.CACHE_SCAN, [null, null], { timeout: 300 * Time.second })
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,9 +1,7 @@
|
|||||||
import { Friend, FriendV2, SimpleInfo, CategoryFriend } from '../types'
|
import { Friend, SimpleInfo, CategoryFriend } from '../types'
|
||||||
import { ReceiveCmdS } from '../hook'
|
import { ReceiveCmdS } from '../hook'
|
||||||
import { invoke, NTMethod, NTClass } from '../ntcall'
|
import { invoke, NTMethod, NTClass } from '../ntcall'
|
||||||
import { getSession } from '@/ntqqapi/wrapper'
|
import { getSession } from '@/ntqqapi/wrapper'
|
||||||
import { BuddyListReqType } from '../services'
|
|
||||||
import { Dict, pick } from 'cosmokit'
|
|
||||||
import { Service, Context } from 'cordis'
|
import { Service, Context } from 'cordis'
|
||||||
|
|
||||||
declare module 'cordis' {
|
declare module 'cordis' {
|
||||||
@@ -61,127 +59,65 @@ export class NTQQFriendApi extends Service {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async getBuddyV2(refresh = false): Promise<FriendV2[]> {
|
async getBuddyV2(refresh = false): Promise<SimpleInfo[]> {
|
||||||
const session = getSession()
|
const data = await invoke<{
|
||||||
if (session) {
|
buddyCategory: CategoryFriend[]
|
||||||
const uids: string[] = []
|
userSimpleInfos: Record<string, SimpleInfo>
|
||||||
const buddyService = session.getBuddyService()
|
}>(
|
||||||
const buddyListV2 = await buddyService.getBuddyListV2('0', BuddyListReqType.KNOMAL)
|
'getBuddyList',
|
||||||
uids.push(...buddyListV2.data.flatMap(item => item.buddyUids))
|
[refresh],
|
||||||
const data = await session.getProfileService().getCoreAndBaseInfo('nodeStore', uids)
|
{
|
||||||
return Array.from(data.values())
|
className: NTClass.NODE_STORE_API,
|
||||||
} else {
|
cbCmd: ReceiveCmdS.FRIENDS,
|
||||||
const data = await invoke<{
|
afterFirstCmd: false,
|
||||||
buddyCategory: CategoryFriend[]
|
}
|
||||||
userSimpleInfos: Record<string, SimpleInfo>
|
)
|
||||||
}>(
|
const uids = data.buddyCategory.flatMap(item => item.buddyUids)
|
||||||
'getBuddyList',
|
return Object.values(data.userSimpleInfos).filter(v => uids.includes(v.uid!))
|
||||||
[refresh],
|
|
||||||
{
|
|
||||||
className: NTClass.NODE_STORE_API,
|
|
||||||
cbCmd: ReceiveCmdS.FRIENDS,
|
|
||||||
afterFirstCmd: false,
|
|
||||||
}
|
|
||||||
)
|
|
||||||
const uids = data.buddyCategory.flatMap(item => item.buddyUids)
|
|
||||||
return Object.values(data.userSimpleInfos).filter(v => uids.includes(v.uid!))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** uid => uin */
|
/** uid => uin */
|
||||||
async getBuddyIdMap(refresh = false): Promise<Map<string, string>> {
|
async getBuddyIdMap(refresh = false): Promise<Map<string, string>> {
|
||||||
const retMap: Map<string, string> = new Map()
|
const retMap: Map<string, string> = new Map()
|
||||||
const session = getSession()
|
const data = await invoke<{
|
||||||
if (session) {
|
buddyCategory: CategoryFriend[]
|
||||||
const uids: string[] = []
|
userSimpleInfos: Record<string, SimpleInfo>
|
||||||
const buddyService = session.getBuddyService()
|
}>(
|
||||||
const buddyListV2 = await buddyService.getBuddyListV2('0', BuddyListReqType.KNOMAL)
|
'getBuddyList',
|
||||||
uids.push(...buddyListV2.data.flatMap(item => item.buddyUids))
|
[refresh],
|
||||||
const data = await session.getProfileService().getCoreAndBaseInfo('nodeStore', uids)
|
{
|
||||||
for (const [, item] of data) {
|
className: NTClass.NODE_STORE_API,
|
||||||
if (retMap.size > 5000) {
|
cbCmd: ReceiveCmdS.FRIENDS,
|
||||||
break
|
afterFirstCmd: false,
|
||||||
}
|
|
||||||
retMap.set(item.uid!, item.uin!)
|
|
||||||
}
|
}
|
||||||
} else {
|
)
|
||||||
const data = await invoke<{
|
for (const item of Object.values(data.userSimpleInfos)) {
|
||||||
buddyCategory: CategoryFriend[]
|
if (retMap.size > 5000) {
|
||||||
userSimpleInfos: Record<string, SimpleInfo>
|
break
|
||||||
}>(
|
|
||||||
'getBuddyList',
|
|
||||||
[refresh],
|
|
||||||
{
|
|
||||||
className: NTClass.NODE_STORE_API,
|
|
||||||
cbCmd: ReceiveCmdS.FRIENDS,
|
|
||||||
afterFirstCmd: false,
|
|
||||||
}
|
|
||||||
)
|
|
||||||
for (const item of Object.values(data.userSimpleInfos)) {
|
|
||||||
if (retMap.size > 5000) {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
retMap.set(item.uid!, item.uin!)
|
|
||||||
}
|
}
|
||||||
|
retMap.set(item.uid!, item.uin!)
|
||||||
}
|
}
|
||||||
return retMap
|
return retMap
|
||||||
}
|
}
|
||||||
|
|
||||||
async getBuddyV2ExWithCate(refresh = false) {
|
async getBuddyV2WithCate(refresh = false) {
|
||||||
const session = getSession()
|
const data = await invoke<{
|
||||||
if (session) {
|
buddyCategory: CategoryFriend[]
|
||||||
const uids: string[] = []
|
userSimpleInfos: Record<string, SimpleInfo>
|
||||||
const categoryMap: Map<string, Dict> = new Map()
|
}>(
|
||||||
const buddyService = session.getBuddyService()
|
'getBuddyList',
|
||||||
const buddyListV2 = (await buddyService.getBuddyListV2('0', BuddyListReqType.KNOMAL)).data
|
[refresh],
|
||||||
uids.push(
|
{
|
||||||
...buddyListV2.flatMap(item => {
|
className: NTClass.NODE_STORE_API,
|
||||||
item.buddyUids.forEach(uid => {
|
cbCmd: ReceiveCmdS.FRIENDS,
|
||||||
categoryMap.set(uid, { categoryId: item.categoryId, categroyName: item.categroyName })
|
afterFirstCmd: false,
|
||||||
})
|
|
||||||
return item.buddyUids
|
|
||||||
}))
|
|
||||||
const data = await session.getProfileService().getCoreAndBaseInfo('nodeStore', uids)
|
|
||||||
return Array.from(data).map(([key, value]) => {
|
|
||||||
const category = categoryMap.get(key)
|
|
||||||
return category ? { ...value, categoryId: category.categoryId, categroyName: category.categroyName } : value
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
const data = await invoke<{
|
|
||||||
buddyCategory: CategoryFriend[]
|
|
||||||
userSimpleInfos: Record<string, SimpleInfo>
|
|
||||||
}>(
|
|
||||||
'getBuddyList',
|
|
||||||
[refresh],
|
|
||||||
{
|
|
||||||
className: NTClass.NODE_STORE_API,
|
|
||||||
cbCmd: ReceiveCmdS.FRIENDS,
|
|
||||||
afterFirstCmd: false,
|
|
||||||
}
|
|
||||||
)
|
|
||||||
const category: Map<number, Pick<CategoryFriend, 'buddyUids' | 'categroyName'>> = new Map()
|
|
||||||
for (const item of data.buddyCategory) {
|
|
||||||
category.set(item.categoryId, pick(item, ['buddyUids', 'categroyName']))
|
|
||||||
}
|
}
|
||||||
return Object.values(data.userSimpleInfos)
|
)
|
||||||
.filter(v => v.baseInfo && category.get(v.baseInfo.categoryId)?.buddyUids.includes(v.uid!))
|
return data
|
||||||
.map(value => {
|
|
||||||
return {
|
|
||||||
...value,
|
|
||||||
categoryId: value.baseInfo.categoryId,
|
|
||||||
categroyName: category.get(value.baseInfo.categoryId)?.categroyName
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async isBuddy(uid: string): Promise<boolean> {
|
async isBuddy(uid: string): Promise<boolean> {
|
||||||
const session = getSession()
|
return await invoke('nodeIKernelBuddyService/isBuddy', [{ uid }])
|
||||||
if (session) {
|
|
||||||
return session.getBuddyService().isBuddy(uid)
|
|
||||||
} else {
|
|
||||||
return await invoke('nodeIKernelBuddyService/isBuddy', [{ uid }, null])
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async getBuddyRecommendContact(uin: string) {
|
async getBuddyRecommendContact(uin: string) {
|
||||||
|
@@ -6,8 +6,10 @@ import {
|
|||||||
GroupNotifies,
|
GroupNotifies,
|
||||||
GroupRequestOperateTypes,
|
GroupRequestOperateTypes,
|
||||||
GetFileListParam,
|
GetFileListParam,
|
||||||
OnGroupFileInfoUpdateParams,
|
PublishGroupBulletinReq,
|
||||||
PublishGroupBulletinReq
|
GroupAllInfo,
|
||||||
|
GroupFileInfo,
|
||||||
|
GroupBulletinListResult
|
||||||
} from '../types'
|
} from '../types'
|
||||||
import { invoke, NTClass, NTMethod } from '../ntcall'
|
import { invoke, NTClass, NTMethod } from '../ntcall'
|
||||||
import { GeneralCallResult } from '../services'
|
import { GeneralCallResult } from '../services'
|
||||||
@@ -65,32 +67,30 @@ export class NTQQGroupApi extends Service {
|
|||||||
return result.result.infos
|
return result.result.infos
|
||||||
}
|
}
|
||||||
|
|
||||||
async getGroupMember(groupCode: string | number, memberUinOrUid: string | number) {
|
async getGroupMember(groupCode: string, memberUinOrUid: string) {
|
||||||
const groupCodeStr = groupCode.toString()
|
if (!this.groupMembers.has(groupCode)) {
|
||||||
const memberUinOrUidStr = memberUinOrUid.toString()
|
|
||||||
if (!this.groupMembers.has(groupCodeStr)) {
|
|
||||||
try {
|
try {
|
||||||
// 更新群成员列表
|
// 更新群成员列表
|
||||||
this.groupMembers.set(groupCodeStr, await this.getGroupMembers(groupCodeStr))
|
this.groupMembers.set(groupCode, await this.getGroupMembers(groupCode))
|
||||||
}
|
}
|
||||||
catch (e) {
|
catch (e) {
|
||||||
return null
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let members = this.groupMembers.get(groupCodeStr)!
|
let members = this.groupMembers.get(groupCode)!
|
||||||
const getMember = () => {
|
const getMember = () => {
|
||||||
let member: GroupMember | undefined = undefined
|
let member: GroupMember | undefined = undefined
|
||||||
if (isNumeric(memberUinOrUidStr)) {
|
if (isNumeric(memberUinOrUid)) {
|
||||||
member = Array.from(members.values()).find(member => member.uin === memberUinOrUidStr)
|
member = Array.from(members.values()).find(member => member.uin === memberUinOrUid)
|
||||||
} else {
|
} else {
|
||||||
member = members.get(memberUinOrUidStr)
|
member = members.get(memberUinOrUid)
|
||||||
}
|
}
|
||||||
return member
|
return member
|
||||||
}
|
}
|
||||||
let member = getMember()
|
let member = getMember()
|
||||||
if (!member) {
|
if (!member) {
|
||||||
this.groupMembers.set(groupCodeStr, await this.getGroupMembers(groupCodeStr))
|
this.groupMembers.set(groupCode, await this.getGroupMembers(groupCode))
|
||||||
members = this.groupMembers.get(groupCodeStr)!
|
members = this.groupMembers.get(groupCode)!
|
||||||
member = getMember()
|
member = getMember()
|
||||||
}
|
}
|
||||||
return member
|
return member
|
||||||
@@ -106,12 +106,11 @@ export class NTQQGroupApi extends Service {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async getSingleScreenNotifies(num: number) {
|
async getSingleScreenNotifies(num: number) {
|
||||||
invoke(ReceiveCmdS.GROUP_NOTIFY, [], { classNameIsRegister: true })
|
invoke(ReceiveCmdS.GROUP_NOTIFY, [], { registerEvent: true })
|
||||||
return (await invoke<GroupNotifies>(
|
return (await invoke<GroupNotifies>(
|
||||||
'nodeIKernelGroupService/getSingleScreenNotifies',
|
'nodeIKernelGroupService/getSingleScreenNotifies',
|
||||||
[{ doubt: false, startSeq: '', number: num }, null],
|
[{ doubt: false, startSeq: '', number: num }, null],
|
||||||
{
|
{
|
||||||
|
|
||||||
cbCmd: ReceiveCmdS.GROUP_NOTIFY,
|
cbCmd: ReceiveCmdS.GROUP_NOTIFY,
|
||||||
afterFirstCmd: false,
|
afterFirstCmd: false,
|
||||||
}
|
}
|
||||||
@@ -159,12 +158,7 @@ export class NTQQGroupApi extends Service {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async kickMember(
|
async kickMember(groupCode: string, kickUids: string[], refuseForever = false, kickReason = '') {
|
||||||
groupCode: string,
|
|
||||||
kickUids: string[],
|
|
||||||
refuseForever = false,
|
|
||||||
kickReason = '',
|
|
||||||
) {
|
|
||||||
const session = getSession()
|
const session = getSession()
|
||||||
if (session) {
|
if (session) {
|
||||||
return session.getGroupService().kickMember(groupCode, kickUids, refuseForever, kickReason)
|
return session.getGroupService().kickMember(groupCode, kickUids, refuseForever, kickReason)
|
||||||
@@ -220,47 +214,51 @@ export class NTQQGroupApi extends Service {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async getGroupRemainAtTimes(groupCode: string) {
|
async getGroupRemainAtTimes(groupCode: string) {
|
||||||
return await invoke<
|
return await invoke(NTMethod.GROUP_AT_ALL_REMAIN_COUNT, [{ groupCode }, null])
|
||||||
GeneralCallResult & {
|
|
||||||
atInfo: {
|
|
||||||
canAtAll: boolean
|
|
||||||
RemainAtAllCountForUin: number
|
|
||||||
RemainAtAllCountForGroup: number
|
|
||||||
atTimesMsg: string
|
|
||||||
canNotAtAllMsg: ''
|
|
||||||
}
|
|
||||||
}
|
|
||||||
>(NTMethod.GROUP_AT_ALL_REMAIN_COUNT, [{ groupCode }, null])
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 27187 TODO */
|
|
||||||
async removeGroupEssence(groupCode: string, msgId: string) {
|
async removeGroupEssence(groupCode: string, msgId: string) {
|
||||||
const session = getSession()
|
const session = getSession()
|
||||||
// 代码没测过
|
if (session) {
|
||||||
// 需要 ob11msgid->msgId + (peer) -> msgSeq + msgRandom
|
const data = await session.getMsgService().getMsgsIncludeSelf({ chatType: 2, guildId: '', peerUid: groupCode }, msgId, 1, false)
|
||||||
const data = await session?.getMsgService().getMsgsIncludeSelf({ chatType: 2, guildId: '', peerUid: groupCode }, msgId, 1, false)
|
return session.getGroupService().removeGroupEssence({
|
||||||
const param = {
|
groupCode: groupCode,
|
||||||
groupCode: groupCode,
|
msgRandom: Number(data?.msgList[0].msgRandom),
|
||||||
msgRandom: Number(data?.msgList[0].msgRandom),
|
msgSeq: Number(data?.msgList[0].msgSeq)
|
||||||
msgSeq: Number(data?.msgList[0].msgSeq)
|
})
|
||||||
|
} else {
|
||||||
|
const ntMsgApi = this.ctx.get('ntMsgApi')!
|
||||||
|
const data = await ntMsgApi.getMsgHistory({ chatType: 2, guildId: '', peerUid: groupCode }, msgId, 1, false)
|
||||||
|
return await invoke('nodeIKernelGroupService/removeGroupEssence', [{
|
||||||
|
req: {
|
||||||
|
groupCode: groupCode,
|
||||||
|
msgRandom: Number(data?.msgList[0].msgRandom),
|
||||||
|
msgSeq: Number(data?.msgList[0].msgSeq)
|
||||||
|
}
|
||||||
|
}, null])
|
||||||
}
|
}
|
||||||
// GetMsgByShoretID(ShoretID) -> MsgService.getMsgs(Peer,MsgId,1,false) -> 组出参数
|
|
||||||
return session?.getGroupService().removeGroupEssence(param)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 27187 TODO */
|
|
||||||
async addGroupEssence(groupCode: string, msgId: string) {
|
async addGroupEssence(groupCode: string, msgId: string) {
|
||||||
const session = getSession()
|
const session = getSession()
|
||||||
// 代码没测过
|
if (session) {
|
||||||
// 需要 ob11msgid->msgId + (peer) -> msgSeq + msgRandom
|
const data = await session.getMsgService().getMsgsIncludeSelf({ chatType: 2, guildId: '', peerUid: groupCode }, msgId, 1, false)
|
||||||
const data = await session?.getMsgService().getMsgsIncludeSelf({ chatType: 2, guildId: '', peerUid: groupCode }, msgId, 1, false)
|
return session.getGroupService().addGroupEssence({
|
||||||
const param = {
|
groupCode: groupCode,
|
||||||
groupCode: groupCode,
|
msgRandom: Number(data?.msgList[0].msgRandom),
|
||||||
msgRandom: Number(data?.msgList[0].msgRandom),
|
msgSeq: Number(data?.msgList[0].msgSeq)
|
||||||
msgSeq: Number(data?.msgList[0].msgSeq)
|
})
|
||||||
|
} else {
|
||||||
|
const ntMsgApi = this.ctx.get('ntMsgApi')!
|
||||||
|
const data = await ntMsgApi.getMsgHistory({ chatType: 2, guildId: '', peerUid: groupCode }, msgId, 1, false)
|
||||||
|
return await invoke('nodeIKernelGroupService/addGroupEssence', [{
|
||||||
|
req: {
|
||||||
|
groupCode: groupCode,
|
||||||
|
msgRandom: Number(data?.msgList[0].msgRandom),
|
||||||
|
msgSeq: Number(data?.msgList[0].msgSeq)
|
||||||
|
}
|
||||||
|
}, null])
|
||||||
}
|
}
|
||||||
// GetMsgByShoretID(ShoretID) -> MsgService.getMsgs(Peer,MsgId,1,false) -> 组出参数
|
|
||||||
return session?.getGroupService().addGroupEssence(param)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async createGroupFileFolder(groupId: string, folderName: string) {
|
async createGroupFileFolder(groupId: string, folderName: string) {
|
||||||
@@ -276,8 +274,8 @@ export class NTQQGroupApi extends Service {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async getGroupFileList(groupId: string, fileListForm: GetFileListParam) {
|
async getGroupFileList(groupId: string, fileListForm: GetFileListParam) {
|
||||||
invoke('nodeIKernelMsgListener/onGroupFileInfoUpdate', [], { classNameIsRegister: true })
|
invoke('nodeIKernelMsgListener/onGroupFileInfoUpdate', [], { registerEvent: true })
|
||||||
const data = await invoke<{ fileInfo: OnGroupFileInfoUpdateParams }>(
|
const data = await invoke<{ fileInfo: GroupFileInfo }>(
|
||||||
'nodeIKernelRichMediaService/getGroupFileList',
|
'nodeIKernelRichMediaService/getGroupFileList',
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
@@ -292,7 +290,7 @@ export class NTQQGroupApi extends Service {
|
|||||||
cmdCB: (payload, result) => payload.fileInfo.reqId === result
|
cmdCB: (payload, result) => payload.fileInfo.reqId === result
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
return data.fileInfo.item
|
return data.fileInfo
|
||||||
}
|
}
|
||||||
|
|
||||||
async publishGroupBulletin(groupCode: string, req: PublishGroupBulletinReq) {
|
async publishGroupBulletin(groupCode: string, req: PublishGroupBulletinReq) {
|
||||||
@@ -311,4 +309,72 @@ export class NTQQGroupApi extends Service {
|
|||||||
const ret = await invoke('nodeIKernelGroupService/getGroupRecommendContactArkJson', [{ groupCode }, null])
|
const ret = await invoke('nodeIKernelGroupService/getGroupRecommendContactArkJson', [{ groupCode }, null])
|
||||||
return ret.arkJson
|
return ret.arkJson
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async queryCachedEssenceMsg(groupCode: string, msgSeq = '0', msgRandom = '0') {
|
||||||
|
return await invoke('nodeIKernelGroupService/queryCachedEssenceMsg', [{
|
||||||
|
key: {
|
||||||
|
groupCode,
|
||||||
|
msgSeq: +msgSeq,
|
||||||
|
msgRandom: +msgRandom
|
||||||
|
}
|
||||||
|
}, null])
|
||||||
|
}
|
||||||
|
|
||||||
|
async getGroupHonorList(groupCode: string) {
|
||||||
|
// 还缺点东西
|
||||||
|
return await invoke('nodeIKernelGroupService/getGroupHonorList', [{
|
||||||
|
req: {
|
||||||
|
groupCode: [+groupCode]
|
||||||
|
}
|
||||||
|
}, null])
|
||||||
|
}
|
||||||
|
|
||||||
|
async getGroupAllInfo(groupCode: string, timeout = 1000) {
|
||||||
|
invoke('nodeIKernelGroupListener/onGroupAllInfoChange', [], { registerEvent: true })
|
||||||
|
return await invoke<{ groupAll: GroupAllInfo }>(
|
||||||
|
'nodeIKernelGroupService/getGroupAllInfo',
|
||||||
|
[
|
||||||
|
{
|
||||||
|
groupCode,
|
||||||
|
source: 4
|
||||||
|
},
|
||||||
|
null
|
||||||
|
],
|
||||||
|
{
|
||||||
|
cbCmd: 'nodeIKernelGroupListener/onGroupAllInfoChange',
|
||||||
|
afterFirstCmd: false,
|
||||||
|
cmdCB: payload => payload.groupAll.groupCode === groupCode,
|
||||||
|
timeout
|
||||||
|
}
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
async getGroupBulletinList(groupCode: string) {
|
||||||
|
invoke('nodeIKernelGroupListener/onGetGroupBulletinListResult', [], { registerEvent: true })
|
||||||
|
const ntUserApi = this.ctx.get('ntUserApi')!
|
||||||
|
const psKey = (await ntUserApi.getPSkey(['qun.qq.com'])).domainPskeyMap.get('qun.qq.com')!
|
||||||
|
return await invoke<{
|
||||||
|
groupCode: string
|
||||||
|
context: string
|
||||||
|
result: GroupBulletinListResult
|
||||||
|
}>(
|
||||||
|
'nodeIKernelGroupService/getGroupBulletinList',
|
||||||
|
[{
|
||||||
|
groupCode,
|
||||||
|
psKey,
|
||||||
|
context: '',
|
||||||
|
req: {
|
||||||
|
startIndex: -1,
|
||||||
|
num: 20,
|
||||||
|
needInstructionsForJoinGroup: 1,
|
||||||
|
needPublisherInfo: 1
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
{
|
||||||
|
cbCmd: 'nodeIKernelGroupListener/onGetGroupBulletinListResult',
|
||||||
|
cmdCB: payload => payload.groupCode === groupCode,
|
||||||
|
afterFirstCmd: false
|
||||||
|
}
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
import { invoke, NTMethod } from '../ntcall'
|
import { invoke, NTMethod } from '../ntcall'
|
||||||
import { GeneralCallResult } from '../services'
|
import { GeneralCallResult } from '../services'
|
||||||
import { RawMessage, SendMessageElement, Peer, ChatType2 } from '../types'
|
import { RawMessage, SendMessageElement, Peer, ChatType } from '../types'
|
||||||
import { getSession } from '@/ntqqapi/wrapper'
|
import { getSession } from '@/ntqqapi/wrapper'
|
||||||
import { Service, Context } from 'cordis'
|
import { Service, Context } from 'cordis'
|
||||||
import { selfInfo } from '@/common/globalVars'
|
import { selfInfo } from '@/common/globalVars'
|
||||||
@@ -11,16 +11,6 @@ declare module 'cordis' {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function generateMsgId() {
|
|
||||||
const timestamp = Math.floor(Date.now() / 1000)
|
|
||||||
const random = Math.floor(Math.random() * Math.pow(2, 32))
|
|
||||||
const buffer = Buffer.alloc(8)
|
|
||||||
buffer.writeUInt32BE(timestamp, 0)
|
|
||||||
buffer.writeUInt32BE(random, 4)
|
|
||||||
const msgId = BigInt('0x' + buffer.toString('hex')).toString()
|
|
||||||
return msgId
|
|
||||||
}
|
|
||||||
|
|
||||||
export class NTQQMsgApi extends Service {
|
export class NTQQMsgApi extends Service {
|
||||||
static inject = ['ntUserApi']
|
static inject = ['ntUserApi']
|
||||||
|
|
||||||
@@ -28,7 +18,7 @@ export class NTQQMsgApi extends Service {
|
|||||||
super(ctx, 'ntMsgApi', true)
|
super(ctx, 'ntMsgApi', true)
|
||||||
}
|
}
|
||||||
|
|
||||||
async getTempChatInfo(chatType: ChatType2, peerUid: string) {
|
async getTempChatInfo(chatType: ChatType, peerUid: string) {
|
||||||
const session = getSession()
|
const session = getSession()
|
||||||
if (session) {
|
if (session) {
|
||||||
return session.getMsgService().getTempChatInfo(chatType, peerUid)
|
return session.getMsgService().getTempChatInfo(chatType, peerUid)
|
||||||
@@ -37,17 +27,12 @@ export class NTQQMsgApi extends Service {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async setEmojiLike(peer: Peer, msgSeq: string, emojiId: string, setEmoji: boolean = true) {
|
async setEmojiLike(peer: Peer, msgSeq: string, emojiId: string, setEmoji: boolean) {
|
||||||
// nt_qq//global//nt_data//Emoji//emoji-resource//sysface_res/apng/ 下可以看到所有QQ表情预览
|
// nt_qq//global//nt_data//Emoji//emoji-resource//sysface_res/apng/ 下可以看到所有QQ表情预览
|
||||||
// nt_qq\global\nt_data\Emoji\emoji-resource\face_config.json 里面有所有表情的id, 自带表情id是QSid, 标准emoji表情id是QCid
|
// nt_qq\global\nt_data\Emoji\emoji-resource\face_config.json 里面有所有表情的id, 自带表情id是QSid, 标准emoji表情id是QCid
|
||||||
// 其实以官方文档为准是最好的,https://bot.q.qq.com/wiki/develop/api-v2/openapi/emoji/model.html#EmojiType
|
// 其实以官方文档为准是最好的,https://bot.q.qq.com/wiki/develop/api-v2/openapi/emoji/model.html#EmojiType
|
||||||
const session = getSession()
|
|
||||||
const emojiType = emojiId.length > 3 ? '2' : '1'
|
const emojiType = emojiId.length > 3 ? '2' : '1'
|
||||||
if (session) {
|
return await invoke(NTMethod.EMOJI_LIKE, [{ peer, msgSeq, emojiId, emojiType, setEmoji }])
|
||||||
return session.getMsgService().setMsgEmojiLikes(peer, msgSeq, emojiId, emojiType, setEmoji)
|
|
||||||
} else {
|
|
||||||
return await invoke(NTMethod.EMOJI_LIKE, [{ peer, msgSeq, emojiId, emojiType, setEmoji }, null])
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async getMultiMsg(peer: Peer, rootMsgId: string, parentMsgId: string) {
|
async getMultiMsg(peer: Peer, rootMsgId: string, parentMsgId: string) {
|
||||||
@@ -60,7 +45,7 @@ export class NTQQMsgApi extends Service {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async activateChat(peer: Peer) {
|
async activateChat(peer: Peer) {
|
||||||
return await invoke<GeneralCallResult>(NTMethod.ACTIVE_CHAT_PREVIEW, [{ peer, cnt: 20 }, null])
|
return await invoke<GeneralCallResult>(NTMethod.ACTIVE_CHAT_PREVIEW, [{ peer, cnt: 1 }, null])
|
||||||
}
|
}
|
||||||
|
|
||||||
async activateChatAndGetHistory(peer: Peer) {
|
async activateChatAndGetHistory(peer: Peer) {
|
||||||
@@ -68,59 +53,41 @@ export class NTQQMsgApi extends Service {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async getAioFirstViewLatestMsgs(peer: Peer, cnt: number) {
|
async getAioFirstViewLatestMsgs(peer: Peer, cnt: number) {
|
||||||
return await invoke('nodeIKernelMsgService/getAioFirstViewLatestMsgs', [{ peer, cnt }, null])
|
return await invoke('nodeIKernelMsgService/getAioFirstViewLatestMsgs', [{ peer, cnt }])
|
||||||
}
|
}
|
||||||
|
|
||||||
async getMsgsByMsgId(peer: Peer | undefined, msgIds: string[] | undefined) {
|
async getMsgsByMsgId(peer: Peer, msgIds: string[]) {
|
||||||
if (!peer) throw new Error('peer is not allowed')
|
if (!peer) throw new Error('peer is not allowed')
|
||||||
if (!msgIds) throw new Error('msgIds is not allowed')
|
if (!msgIds) throw new Error('msgIds is not allowed')
|
||||||
const session = getSession()
|
return await invoke('nodeIKernelMsgService/getMsgsByMsgId', [{ peer, msgIds }])
|
||||||
if (session) {
|
|
||||||
return session.getMsgService().getMsgsByMsgId(peer, msgIds)
|
|
||||||
} else {
|
|
||||||
return await invoke('nodeIKernelMsgService/getMsgsByMsgId', [{ peer, msgIds }, null])
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async getMsgHistory(peer: Peer, msgId: string, cnt: number, isReverseOrder: boolean = false) {
|
async getMsgHistory(peer: Peer, msgId: string, cnt: number, isReverseOrder: boolean = false) {
|
||||||
const session = getSession()
|
|
||||||
// 消息时间从旧到新
|
// 消息时间从旧到新
|
||||||
if (session) {
|
return await invoke(NTMethod.HISTORY_MSG, [{ peer, msgId, cnt, queryOrder: isReverseOrder }])
|
||||||
return session.getMsgService().getMsgsIncludeSelf(peer, msgId, cnt, isReverseOrder)
|
|
||||||
} else {
|
|
||||||
return await invoke(NTMethod.HISTORY_MSG, [{ peer, msgId, cnt, queryOrder: isReverseOrder }, null])
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async recallMsg(peer: Peer, msgIds: string[]) {
|
async recallMsg(peer: Peer, msgIds: string[]) {
|
||||||
const session = getSession()
|
return await invoke(NTMethod.RECALL_MSG, [{ peer, msgIds }])
|
||||||
if (session) {
|
|
||||||
return session.getMsgService().recallMsg(peer, msgIds)
|
|
||||||
} else {
|
|
||||||
return await invoke(NTMethod.RECALL_MSG, [{ peer, msgIds }, null])
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async sendMsg(peer: Peer, msgElements: SendMessageElement[], timeout = 10000) {
|
async sendMsg(peer: Peer, msgElements: SendMessageElement[], timeout = 10000) {
|
||||||
const msgId = generateMsgId()
|
const uniqueId = await this.generateMsgUniqueId(peer.chatType)
|
||||||
peer.guildId = msgId
|
peer.guildId = uniqueId
|
||||||
const data = await invoke<{ msgList: RawMessage[] }>(
|
const data = await invoke<{ msgList: RawMessage[] }>(
|
||||||
'nodeIKernelMsgService/sendMsg',
|
'nodeIKernelMsgService/sendMsg',
|
||||||
[
|
[{
|
||||||
{
|
msgId: '0',
|
||||||
msgId: '0',
|
peer,
|
||||||
peer,
|
msgElements,
|
||||||
msgElements,
|
msgAttributeInfos: new Map()
|
||||||
msgAttributeInfos: new Map()
|
}],
|
||||||
},
|
|
||||||
null
|
|
||||||
],
|
|
||||||
{
|
{
|
||||||
cbCmd: 'nodeIKernelMsgListener/onMsgInfoListUpdate',
|
cbCmd: 'nodeIKernelMsgListener/onMsgInfoListUpdate',
|
||||||
afterFirstCmd: false,
|
afterFirstCmd: false,
|
||||||
cmdCB: payload => {
|
cmdCB: payload => {
|
||||||
for (const msgRecord of payload.msgList) {
|
for (const msgRecord of payload.msgList) {
|
||||||
if (msgRecord.guildId === msgId && msgRecord.sendStatus === 2) {
|
if (msgRecord.guildId === uniqueId && msgRecord.sendStatus === 2) {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -129,22 +96,35 @@ export class NTQQMsgApi extends Service {
|
|||||||
timeout
|
timeout
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
return data.msgList.find(msgRecord => msgRecord.guildId === msgId)
|
return data.msgList.find(msgRecord => msgRecord.guildId === uniqueId)
|
||||||
}
|
}
|
||||||
|
|
||||||
async forwardMsg(srcPeer: Peer, destPeer: Peer, msgIds: string[]) {
|
async forwardMsg(srcPeer: Peer, destPeer: Peer, msgIds: string[]) {
|
||||||
const session = getSession()
|
const uniqueId = await this.generateMsgUniqueId(destPeer.chatType)
|
||||||
if (session) {
|
destPeer.guildId = uniqueId
|
||||||
return session.getMsgService().forwardMsg(msgIds, srcPeer, [destPeer], [])
|
const data = await invoke<{ msgList: RawMessage[] }>(
|
||||||
} else {
|
'nodeIKernelMsgService/forwardMsg',
|
||||||
return await invoke(NTMethod.FORWARD_MSG, [{
|
[{
|
||||||
msgIds,
|
msgIds,
|
||||||
srcContact: srcPeer,
|
srcContact: srcPeer,
|
||||||
dstContacts: [destPeer],
|
dstContacts: [destPeer],
|
||||||
commentElements: [],
|
commentElements: [],
|
||||||
msgAttributeInfos: new Map(),
|
msgAttributeInfos: new Map(),
|
||||||
}, null])
|
}],
|
||||||
}
|
{
|
||||||
|
cbCmd: 'nodeIKernelMsgListener/onMsgInfoListUpdate',
|
||||||
|
afterFirstCmd: false,
|
||||||
|
cmdCB: payload => {
|
||||||
|
for (const msgRecord of payload.msgList) {
|
||||||
|
if (msgRecord.guildId === uniqueId && msgRecord.sendStatus === 2) {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
return data.msgList.filter(msgRecord => msgRecord.guildId === uniqueId)
|
||||||
}
|
}
|
||||||
|
|
||||||
async multiForwardMsg(srcPeer: Peer, destPeer: Peer, msgIds: string[]): Promise<RawMessage> {
|
async multiForwardMsg(srcPeer: Peer, destPeer: Peer, msgIds: string[]): Promise<RawMessage> {
|
||||||
@@ -155,27 +135,24 @@ export class NTQQMsgApi extends Service {
|
|||||||
const selfUid = selfInfo.uid
|
const selfUid = selfInfo.uid
|
||||||
const data = await invoke<{ msgList: RawMessage[] }>(
|
const data = await invoke<{ msgList: RawMessage[] }>(
|
||||||
'nodeIKernelMsgService/multiForwardMsgWithComment',
|
'nodeIKernelMsgService/multiForwardMsgWithComment',
|
||||||
[
|
[{
|
||||||
{
|
msgInfos,
|
||||||
msgInfos,
|
srcContact: srcPeer,
|
||||||
srcContact: srcPeer,
|
dstContact: destPeer,
|
||||||
dstContact: destPeer,
|
commentElements: [],
|
||||||
commentElements: [],
|
msgAttributeInfos: new Map(),
|
||||||
msgAttributeInfos: new Map(),
|
}],
|
||||||
},
|
|
||||||
null,
|
|
||||||
],
|
|
||||||
{
|
{
|
||||||
cbCmd: 'nodeIKernelMsgListener/onMsgInfoListUpdate',
|
cbCmd: 'nodeIKernelMsgListener/onMsgInfoListUpdate',
|
||||||
afterFirstCmd: false,
|
afterFirstCmd: false,
|
||||||
cmdCB: payload => {
|
cmdCB: payload => {
|
||||||
for (const msgRecord of payload.msgList) {
|
for (const msgRecord of payload.msgList) {
|
||||||
if (msgRecord.peerUid == destPeer.peerUid && msgRecord.senderUid == selfUid) {
|
if (msgRecord.peerUid === destPeer.peerUid && msgRecord.senderUid === selfUid) {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
},
|
}
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
for (const msg of data.msgList) {
|
for (const msg of data.msgList) {
|
||||||
@@ -184,10 +161,10 @@ export class NTQQMsgApi extends Service {
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
const forwardData = JSON.parse(arkElement.arkElement!.bytesData)
|
const forwardData = JSON.parse(arkElement.arkElement!.bytesData)
|
||||||
if (forwardData.app != 'com.tencent.multimsg') {
|
if (forwardData.app !== 'com.tencent.multimsg') {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if (msg.peerUid == destPeer.peerUid && msg.senderUid == selfUid) {
|
if (msg.peerUid === destPeer.peerUid && msg.senderUid === selfUid) {
|
||||||
return msg
|
return msg
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -235,7 +212,7 @@ export class NTQQMsgApi extends Service {
|
|||||||
}, null])
|
}, null])
|
||||||
}
|
}
|
||||||
|
|
||||||
async queryMsgsWithFilterExBySeq(peer: Peer, msgSeq: string, filterMsgTime: string, filterSendersUid: string[]) {
|
async queryMsgsWithFilterExBySeq(peer: Peer, msgSeq: string, filterMsgTime: string, filterSendersUid: string[] = []) {
|
||||||
return await invoke('nodeIKernelMsgService/queryMsgsWithFilterEx', [{
|
return await invoke('nodeIKernelMsgService/queryMsgsWithFilterEx', [{
|
||||||
msgId: '0',
|
msgId: '0',
|
||||||
msgTime: '0',
|
msgTime: '0',
|
||||||
@@ -250,7 +227,7 @@ export class NTQQMsgApi extends Service {
|
|||||||
isIncludeCurrent: true,
|
isIncludeCurrent: true,
|
||||||
pageLimit: 1,
|
pageLimit: 1,
|
||||||
}
|
}
|
||||||
}, null])
|
}])
|
||||||
}
|
}
|
||||||
|
|
||||||
async setMsgRead(peer: Peer) {
|
async setMsgRead(peer: Peer) {
|
||||||
@@ -264,7 +241,7 @@ export class NTQQMsgApi extends Service {
|
|||||||
emojiId,
|
emojiId,
|
||||||
emojiType,
|
emojiType,
|
||||||
cnt: count
|
cnt: count
|
||||||
}, null])
|
}])
|
||||||
}
|
}
|
||||||
|
|
||||||
async fetchFavEmojiList(count: number) {
|
async fetchFavEmojiList(count: number) {
|
||||||
@@ -275,4 +252,43 @@ export class NTQQMsgApi extends Service {
|
|||||||
forceRefresh: true
|
forceRefresh: true
|
||||||
}, null])
|
}, null])
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async generateMsgUniqueId(chatType: number) {
|
||||||
|
const time = await this.getServerTime()
|
||||||
|
const uniqueId = await invoke('nodeIKernelMsgService/generateMsgUniqueId', [{ chatType, time }])
|
||||||
|
if (typeof uniqueId === 'string') {
|
||||||
|
return uniqueId
|
||||||
|
} else {
|
||||||
|
const random = Math.trunc(Math.random() * 100)
|
||||||
|
return `${Date.now()}${random}`
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async queryMsgsById(chatType: ChatType, msgId: string) {
|
||||||
|
const msgTime = this.getMsgTimeFromId(msgId)
|
||||||
|
return await invoke('nodeIKernelMsgService/queryMsgsWithFilterEx', [{
|
||||||
|
msgId,
|
||||||
|
msgTime: '0',
|
||||||
|
msgSeq: '0',
|
||||||
|
params: {
|
||||||
|
chatInfo: {
|
||||||
|
peerUid: '',
|
||||||
|
chatType
|
||||||
|
},
|
||||||
|
filterMsgToTime: msgTime,
|
||||||
|
filterMsgFromTime: msgTime,
|
||||||
|
isIncludeCurrent: true,
|
||||||
|
pageLimit: 1,
|
||||||
|
}
|
||||||
|
}])
|
||||||
|
}
|
||||||
|
|
||||||
|
getMsgTimeFromId(msgId: string) {
|
||||||
|
// 小概率相差1毫秒
|
||||||
|
return String(BigInt(msgId) >> 32n)
|
||||||
|
}
|
||||||
|
|
||||||
|
async getServerTime() {
|
||||||
|
return await invoke('nodeIKernelMSFService/getServerTime', [null])
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,10 +1,9 @@
|
|||||||
|
import { User, UserDetailInfoByUin, UserDetailInfoByUinV2, UserDetailInfo, UserDetailSource, ProfileBizType, SimpleInfo } from '../types'
|
||||||
import { invoke } from '../ntcall'
|
import { invoke } from '../ntcall'
|
||||||
import { User, UserDetailInfoByUin, UserDetailInfoByUinV2, UserDetailInfoListenerArg } from '../types'
|
|
||||||
import { getBuildVersion } from '@/common/utils'
|
import { getBuildVersion } from '@/common/utils'
|
||||||
import { getSession } from '@/ntqqapi/wrapper'
|
import { getSession } from '@/ntqqapi/wrapper'
|
||||||
import { RequestUtil } from '@/common/utils/request'
|
import { RequestUtil } from '@/common/utils/request'
|
||||||
import { UserDetailSource, ProfileBizType } from '../services'
|
import { isNullable, Time } from 'cosmokit'
|
||||||
import { Time } from 'cosmokit'
|
|
||||||
import { Service, Context } from 'cordis'
|
import { Service, Context } from 'cordis'
|
||||||
import { selfInfo } from '@/common/globalVars'
|
import { selfInfo } from '@/common/globalVars'
|
||||||
|
|
||||||
@@ -35,17 +34,14 @@ export class NTQQUserApi extends Service {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async fetchUserDetailInfo(uid: string) {
|
async fetchUserDetailInfo(uid: string) {
|
||||||
const result = await invoke<{ info: UserDetailInfoListenerArg }>(
|
const result = await invoke<{ info: UserDetailInfo }>(
|
||||||
'nodeIKernelProfileService/fetchUserDetailInfo',
|
'nodeIKernelProfileService/fetchUserDetailInfo',
|
||||||
[
|
[{
|
||||||
{
|
callFrom: 'BuddyProfileStore',
|
||||||
callFrom: 'BuddyProfileStore',
|
uid: [uid],
|
||||||
uid: [uid],
|
source: UserDetailSource.KSERVER,
|
||||||
source: UserDetailSource.KSERVER,
|
bizList: [ProfileBizType.KALL]
|
||||||
bizList: [ProfileBizType.KALL]
|
}],
|
||||||
},
|
|
||||||
null
|
|
||||||
],
|
|
||||||
{
|
{
|
||||||
cbCmd: 'nodeIKernelProfileListener/onUserDetailInfoChanged',
|
cbCmd: 'nodeIKernelProfileListener/onUserDetailInfoChanged',
|
||||||
afterFirstCmd: false,
|
afterFirstCmd: false,
|
||||||
@@ -71,13 +67,10 @@ export class NTQQUserApi extends Service {
|
|||||||
}
|
}
|
||||||
const result = await invoke<{ info: User }>(
|
const result = await invoke<{ info: User }>(
|
||||||
'nodeIKernelProfileService/getUserDetailInfoWithBizInfo',
|
'nodeIKernelProfileService/getUserDetailInfoWithBizInfo',
|
||||||
[
|
[{
|
||||||
{
|
uid,
|
||||||
uid,
|
bizList: [0]
|
||||||
bizList: [0]
|
}],
|
||||||
},
|
|
||||||
null,
|
|
||||||
],
|
|
||||||
{
|
{
|
||||||
cbCmd: 'nodeIKernelProfileListener/onProfileDetailInfoChanged',
|
cbCmd: 'nodeIKernelProfileListener/onProfileDetailInfoChanged',
|
||||||
afterFirstCmd: false,
|
afterFirstCmd: false,
|
||||||
@@ -102,18 +95,6 @@ export class NTQQUserApi extends Service {
|
|||||||
return await invoke('nodeIKernelTipOffService/getPskey', [{ domains, isForNewPCQQ: true }, null])
|
return await invoke('nodeIKernelTipOffService/getPskey', [{ domains, isForNewPCQQ: true }, null])
|
||||||
}
|
}
|
||||||
|
|
||||||
genBkn(sKey: string) {
|
|
||||||
sKey = sKey || ''
|
|
||||||
let hash = 5381
|
|
||||||
|
|
||||||
for (let i = 0; i < sKey.length; i++) {
|
|
||||||
const code = sKey.charCodeAt(i)
|
|
||||||
hash = hash + (hash << 5) + code
|
|
||||||
}
|
|
||||||
|
|
||||||
return (hash & 0x7fffffff).toString()
|
|
||||||
}
|
|
||||||
|
|
||||||
async like(uid: string, count = 1) {
|
async like(uid: string, count = 1) {
|
||||||
const session = getSession()
|
const session = getSession()
|
||||||
if (session) {
|
if (session) {
|
||||||
@@ -142,9 +123,7 @@ export class NTQQUserApi extends Service {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async getUidByUinV1(uin: string) {
|
async getUidByUinV1(uin: string) {
|
||||||
const session = getSession()
|
let uid = (await invoke('nodeIKernelUixConvertService/getUid', [{ uins: [uin] }])).uidInfo.get(uin)
|
||||||
// 通用转换开始尝试
|
|
||||||
let uid = (await session?.getUixConvertService().getUid([uin]))?.uidInfo.get(uin)
|
|
||||||
if (!uid) {
|
if (!uid) {
|
||||||
for (const membersList of this.ctx.ntGroupApi.groupMembers.values()) { //从群友列表转
|
for (const membersList of this.ctx.ntGroupApi.groupMembers.values()) { //从群友列表转
|
||||||
for (const member of membersList.values()) {
|
for (const member of membersList.values()) {
|
||||||
@@ -169,30 +148,24 @@ export class NTQQUserApi extends Service {
|
|||||||
return uid
|
return uid
|
||||||
}
|
}
|
||||||
|
|
||||||
async getUidByUinV2(uin: string) {
|
async getUidByUinV2(uin: string, groupCode?: string) {
|
||||||
const session = getSession()
|
let uid = (await invoke('nodeIKernelGroupService/getUidByUins', [{ uin: [uin] }])).uids.get(uin)
|
||||||
if (session) {
|
if (uid) return uid
|
||||||
let uid = (await session.getGroupService().getUidByUins([uin])).uids.get(uin)
|
uid = (await invoke('nodeIKernelProfileService/getUidByUin', [{ callFrom: 'FriendsServiceImpl', uin: [uin] }])).get(uin)
|
||||||
if (uid) return uid
|
if (uid) return uid
|
||||||
uid = (await session.getProfileService().getUidByUin('FriendsServiceImpl', [uin])).get(uin)
|
uid = (await invoke('nodeIKernelUixConvertService/getUid', [{ uins: [uin] }])).uidInfo.get(uin)
|
||||||
if (uid) return uid
|
if (uid) return uid
|
||||||
uid = (await session.getUixConvertService().getUid([uin])).uidInfo.get(uin)
|
const unveifyUid = (await this.getUserDetailInfoByUinV2(uin)).detail.uid
|
||||||
if (uid) return uid
|
if (!unveifyUid.includes('*')) return unveifyUid
|
||||||
} else {
|
if (groupCode) {
|
||||||
let uid = (await invoke('nodeIKernelGroupService/getUidByUins', [{ uin: [uin] }])).uids.get(uin)
|
const member = await this.ctx.ntGroupApi.getGroupMember(groupCode, uin)
|
||||||
if (uid) return uid
|
return member?.uid
|
||||||
uid = (await invoke('nodeIKernelProfileService/getUidByUin', [{ callFrom: 'FriendsServiceImpl', uin: [uin] }])).get(uin)
|
|
||||||
if (uid) return uid
|
|
||||||
uid = (await invoke('nodeIKernelUixConvertService/getUid', [{ uins: [uin] }])).uidInfo.get(uin)
|
|
||||||
if (uid) return uid
|
|
||||||
}
|
}
|
||||||
const unveifyUid = (await this.getUserDetailInfoByUinV2(uin)).detail.uid //从QQ Native 特殊转换
|
|
||||||
if (unveifyUid.indexOf('*') == -1) return unveifyUid
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async getUidByUin(uin: string) {
|
async getUidByUin(uin: string, groupCode?: string) {
|
||||||
if (getBuildVersion() >= 26702) {
|
if (getBuildVersion() >= 26702) {
|
||||||
return this.getUidByUinV2(uin)
|
return this.getUidByUinV2(uin, groupCode)
|
||||||
}
|
}
|
||||||
return this.getUidByUinV1(uin)
|
return this.getUidByUinV1(uin)
|
||||||
}
|
}
|
||||||
@@ -200,20 +173,14 @@ export class NTQQUserApi extends Service {
|
|||||||
async getUserDetailInfoByUinV2(uin: string) {
|
async getUserDetailInfoByUinV2(uin: string) {
|
||||||
return await invoke<UserDetailInfoByUinV2>(
|
return await invoke<UserDetailInfoByUinV2>(
|
||||||
'nodeIKernelProfileService/getUserDetailInfoByUin',
|
'nodeIKernelProfileService/getUserDetailInfoByUin',
|
||||||
[
|
[{ uin }]
|
||||||
{ uin },
|
|
||||||
null,
|
|
||||||
],
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
async getUserDetailInfoByUin(uin: string) {
|
async getUserDetailInfoByUin(uin: string) {
|
||||||
return await invoke<UserDetailInfoByUin>(
|
return await invoke<UserDetailInfoByUin>(
|
||||||
'nodeIKernelProfileService/getUserDetailInfoByUin',
|
'nodeIKernelProfileService/getUserDetailInfoByUin',
|
||||||
[
|
[{ uin }]
|
||||||
{ uin },
|
|
||||||
null,
|
|
||||||
],
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -221,31 +188,21 @@ export class NTQQUserApi extends Service {
|
|||||||
const ret = await invoke('nodeIKernelUixConvertService/getUin', [{ uids: [uid] }])
|
const ret = await invoke('nodeIKernelUixConvertService/getUin', [{ uids: [uid] }])
|
||||||
let uin = ret.uinInfo.get(uid)
|
let uin = ret.uinInfo.get(uid)
|
||||||
if (!uin) {
|
if (!uin) {
|
||||||
uin = (await this.getUserDetailInfo(uid)).uin //从QQ Native 转换
|
uin = (await this.getUserDetailInfo(uid)).uin
|
||||||
}
|
}
|
||||||
return uin
|
return uin
|
||||||
}
|
}
|
||||||
|
|
||||||
async getUinByUidV2(uid: string) {
|
async getUinByUidV2(uid: string) {
|
||||||
const session = getSession()
|
let uin = (await invoke('nodeIKernelGroupService/getUinByUids', [{ uid: [uid] }])).uins.get(uid)
|
||||||
if (session) {
|
|
||||||
let uin = (await session.getGroupService().getUinByUids([uid])).uins.get(uid)
|
|
||||||
if (uin) return uin
|
|
||||||
uin = (await session.getProfileService().getUinByUid('FriendsServiceImpl', [uid])).get(uid)
|
|
||||||
if (uin) return uin
|
|
||||||
uin = (await session.getUixConvertService().getUin([uid])).uinInfo.get(uid)
|
|
||||||
if (uin) return uin
|
|
||||||
} else {
|
|
||||||
let uin = (await invoke('nodeIKernelGroupService/getUinByUids', [{ uid: [uid] }])).uins.get(uid)
|
|
||||||
if (uin) return uin
|
|
||||||
uin = (await invoke('nodeIKernelProfileService/getUinByUid', [{ callFrom: 'FriendsServiceImpl', uid: [uid] }])).get(uid)
|
|
||||||
if (uin) return uin
|
|
||||||
uin = (await invoke('nodeIKernelUixConvertService/getUin', [{ uids: [uid] }])).uinInfo.get(uid)
|
|
||||||
if (uin) return uin
|
|
||||||
}
|
|
||||||
let uin = (await this.ctx.ntFriendApi.getBuddyIdMap(true)).get(uid)
|
|
||||||
if (uin) return uin
|
if (uin) return uin
|
||||||
uin = (await this.getUserDetailInfo(uid)).uin //从QQ Native 转换
|
uin = (await invoke('nodeIKernelProfileService/getUinByUid', [{ callFrom: 'FriendsServiceImpl', uid: [uid] }])).get(uid)
|
||||||
|
if (uin) return uin
|
||||||
|
uin = (await invoke('nodeIKernelUixConvertService/getUin', [{ uids: [uid] }])).uinInfo.get(uid)
|
||||||
|
if (uin) return uin
|
||||||
|
uin = (await this.ctx.ntFriendApi.getBuddyIdMap(true)).get(uid)
|
||||||
|
if (uin) return uin
|
||||||
|
uin = (await this.getUserDetailInfo(uid)).uin
|
||||||
return uin
|
return uin
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -261,17 +218,14 @@ export class NTQQUserApi extends Service {
|
|||||||
if (session) {
|
if (session) {
|
||||||
return await session.getTicketService().forceFetchClientKey('')
|
return await session.getTicketService().forceFetchClientKey('')
|
||||||
} else {
|
} else {
|
||||||
return await invoke('nodeIKernelTicketService/forceFetchClientKey', [{ domain: '' }, null])
|
return await invoke('nodeIKernelTicketService/forceFetchClientKey', [{ url: '' }, null])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async getSelfNick(refresh = false) {
|
async getSelfNick(refresh = true) {
|
||||||
if ((refresh || !selfInfo.nick) && selfInfo.uid) {
|
if ((refresh || !selfInfo.nick) && selfInfo.uid) {
|
||||||
const userInfo = await this.getUserDetailInfo(selfInfo.uid)
|
const { profiles } = await this.getUserSimpleInfo(selfInfo.uid)
|
||||||
if (userInfo) {
|
selfInfo.nick = profiles[selfInfo.uid].coreInfo.nick
|
||||||
Object.assign(selfInfo, { nick: userInfo.nick })
|
|
||||||
return userInfo.nick
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return selfInfo.nick
|
return selfInfo.nick
|
||||||
}
|
}
|
||||||
@@ -300,4 +254,44 @@ export class NTQQUserApi extends Service {
|
|||||||
}
|
}
|
||||||
}, null])
|
}, null])
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async getUserSimpleInfo(uid: string, force = true) {
|
||||||
|
return await invoke<{ profiles: Record<string, SimpleInfo> }>(
|
||||||
|
'nodeIKernelProfileService/getUserSimpleInfo',
|
||||||
|
[{
|
||||||
|
uids: [uid],
|
||||||
|
force
|
||||||
|
}],
|
||||||
|
{
|
||||||
|
cbCmd: 'onProfileSimpleChanged',
|
||||||
|
afterFirstCmd: false,
|
||||||
|
cmdCB: payload => !isNullable(payload.profiles[uid]),
|
||||||
|
}
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
async getCoreAndBaseInfo(uids: string[]) {
|
||||||
|
return await invoke(
|
||||||
|
'nodeIKernelProfileService/getCoreAndBaseInfo',
|
||||||
|
[{
|
||||||
|
uids,
|
||||||
|
callFrom: 'nodeStore'
|
||||||
|
}]
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
async getRobotUinRange() {
|
||||||
|
const data = await invoke(
|
||||||
|
'nodeIKernelRobotService/getRobotUinRange',
|
||||||
|
[{
|
||||||
|
req: {
|
||||||
|
justFetchMsgConfig: '1',
|
||||||
|
type: 1,
|
||||||
|
version: 0,
|
||||||
|
aioKeywordVersion: 0
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
)
|
||||||
|
return data.response.robotUinRanges
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@@ -17,88 +17,6 @@ export enum WebHonorType {
|
|||||||
EMOTION = 'emotion'
|
EMOTION = 'emotion'
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface WebApiGroupMember {
|
|
||||||
uin: number
|
|
||||||
role: number
|
|
||||||
g: number
|
|
||||||
join_time: number
|
|
||||||
last_speak_time: number
|
|
||||||
lv: {
|
|
||||||
point: number
|
|
||||||
level: number
|
|
||||||
}
|
|
||||||
card: string
|
|
||||||
tags: string
|
|
||||||
flag: number
|
|
||||||
nick: string
|
|
||||||
qage: number
|
|
||||||
rm: number
|
|
||||||
}
|
|
||||||
|
|
||||||
interface WebApiGroupMemberRet {
|
|
||||||
ec: number
|
|
||||||
errcode: number
|
|
||||||
em: string
|
|
||||||
cache: number
|
|
||||||
adm_num: number
|
|
||||||
levelname: unknown
|
|
||||||
mems: WebApiGroupMember[]
|
|
||||||
count: number
|
|
||||||
svr_time: number
|
|
||||||
max_count: number
|
|
||||||
search_count: number
|
|
||||||
extmode: number
|
|
||||||
}
|
|
||||||
|
|
||||||
interface GroupEssenceMsg {
|
|
||||||
group_code: string
|
|
||||||
msg_seq: number
|
|
||||||
msg_random: number
|
|
||||||
sender_uin: string
|
|
||||||
sender_nick: string
|
|
||||||
sender_time: number
|
|
||||||
add_digest_uin: string
|
|
||||||
add_digest_nick: string
|
|
||||||
add_digest_time: number
|
|
||||||
msg_content: unknown[]
|
|
||||||
can_be_removed: true
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface GroupEssenceMsgRet {
|
|
||||||
retcode: number
|
|
||||||
retmsg: string
|
|
||||||
data: {
|
|
||||||
msg_list: GroupEssenceMsg[]
|
|
||||||
is_end: boolean
|
|
||||||
group_role: number
|
|
||||||
config_page_url: string
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
interface SetGroupNoticeParams {
|
|
||||||
groupCode: string
|
|
||||||
content: string
|
|
||||||
pinned: number
|
|
||||||
type: number
|
|
||||||
isShowEditCard: number
|
|
||||||
tipWindowType: number
|
|
||||||
confirmRequired: number
|
|
||||||
picId: string
|
|
||||||
imgWidth?: number
|
|
||||||
imgHeight?: number
|
|
||||||
}
|
|
||||||
|
|
||||||
interface SetGroupNoticeRet {
|
|
||||||
ec: number
|
|
||||||
em: string
|
|
||||||
id: number
|
|
||||||
ltsm: number
|
|
||||||
new_fid: string
|
|
||||||
read_only: number
|
|
||||||
role: number
|
|
||||||
srv_code: number
|
|
||||||
}
|
|
||||||
|
|
||||||
export class NTQQWebApi extends Service {
|
export class NTQQWebApi extends Service {
|
||||||
static inject = ['ntUserApi']
|
static inject = ['ntUserApi']
|
||||||
|
|
||||||
@@ -106,47 +24,6 @@ export class NTQQWebApi extends Service {
|
|||||||
super(ctx, 'ntWebApi', true)
|
super(ctx, 'ntWebApi', true)
|
||||||
}
|
}
|
||||||
|
|
||||||
async getGroupMembers(groupCode: string): Promise<WebApiGroupMember[]> {
|
|
||||||
const memberData: Array<WebApiGroupMember> = new Array<WebApiGroupMember>()
|
|
||||||
const cookieObject = await this.ctx.ntUserApi.getCookies('qun.qq.com')
|
|
||||||
const cookieStr = this.cookieToString(cookieObject)
|
|
||||||
const retList: Promise<WebApiGroupMemberRet>[] = []
|
|
||||||
const params = new URLSearchParams({
|
|
||||||
st: '0',
|
|
||||||
end: '40',
|
|
||||||
sort: '1',
|
|
||||||
gc: groupCode,
|
|
||||||
bkn: this.genBkn(cookieObject.skey)
|
|
||||||
})
|
|
||||||
const fastRet = await RequestUtil.HttpGetJson<WebApiGroupMemberRet>(`https://qun.qq.com/cgi-bin/qun_mgr/search_group_members?${params}`, 'POST', '', { 'Cookie': cookieStr })
|
|
||||||
if (!fastRet?.count || fastRet?.errcode !== 0 || !fastRet?.mems) {
|
|
||||||
return []
|
|
||||||
} else {
|
|
||||||
for (const member of fastRet.mems) {
|
|
||||||
memberData.push(member)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
const pageNum = Math.ceil(fastRet.count / 40)
|
|
||||||
//遍历批量请求
|
|
||||||
for (let i = 2; i <= pageNum; i++) {
|
|
||||||
params.set('st', String((i - 1) * 40))
|
|
||||||
params.set('end', String(i * 40))
|
|
||||||
const ret = RequestUtil.HttpGetJson<WebApiGroupMemberRet>(`https://qun.qq.com/cgi-bin/qun_mgr/search_group_members?${params}`, 'POST', '', { 'Cookie': cookieStr })
|
|
||||||
retList.push(ret)
|
|
||||||
}
|
|
||||||
//批量等待
|
|
||||||
for (let i = 1; i <= pageNum; i++) {
|
|
||||||
const ret = await (retList[i])
|
|
||||||
if (!ret?.count || ret?.errcode !== 0 || !ret?.mems) {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
for (const member of ret.mems) {
|
|
||||||
memberData.push(member)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return memberData
|
|
||||||
}
|
|
||||||
|
|
||||||
genBkn(sKey: string) {
|
genBkn(sKey: string) {
|
||||||
sKey = sKey || ''
|
sKey = sKey || ''
|
||||||
let hash = 5381
|
let hash = 5381
|
||||||
@@ -157,10 +34,9 @@ export class NTQQWebApi extends Service {
|
|||||||
return (hash & 0x7FFFFFFF).toString()
|
return (hash & 0x7FFFFFFF).toString()
|
||||||
}
|
}
|
||||||
|
|
||||||
//实现未缓存 考虑2h缓存
|
async getGroupHonorInfo(groupCode: string, getType: string) {
|
||||||
async getGroupHonorInfo(groupCode: string, getType: WebHonorType) {
|
const getDataInternal = async (groupCode: string, type: number) => {
|
||||||
const getDataInternal = async (Internal_groupCode: string, Internal_type: number) => {
|
const url = 'https://qun.qq.com/interactive/honorlist?gc=' + groupCode + '&type=' + type
|
||||||
const url = 'https://qun.qq.com/interactive/honorlist?gc=' + Internal_groupCode + '&type=' + Internal_type.toString()
|
|
||||||
let resJson
|
let resJson
|
||||||
try {
|
try {
|
||||||
const res = await RequestUtil.HttpGetText(url, 'GET', '', { 'Cookie': cookieStr })
|
const res = await RequestUtil.HttpGetText(url, 'GET', '', { 'Cookie': cookieStr })
|
||||||
@@ -168,7 +44,7 @@ export class NTQQWebApi extends Service {
|
|||||||
if (match) {
|
if (match) {
|
||||||
resJson = JSON.parse(match[1].trim())
|
resJson = JSON.parse(match[1].trim())
|
||||||
}
|
}
|
||||||
if (Internal_type === 1) {
|
if (type === 1) {
|
||||||
return resJson?.talkativeList
|
return resJson?.talkativeList
|
||||||
} else {
|
} else {
|
||||||
return resJson?.actorList
|
return resJson?.actorList
|
||||||
@@ -274,34 +150,6 @@ export class NTQQWebApi extends Service {
|
|||||||
return honorInfo
|
return honorInfo
|
||||||
}
|
}
|
||||||
|
|
||||||
async setGroupNotice(params: SetGroupNoticeParams): Promise<SetGroupNoticeRet> {
|
|
||||||
const cookieObject = await this.ctx.ntUserApi.getCookies('qun.qq.com')
|
|
||||||
const settings = JSON.stringify({
|
|
||||||
is_show_edit_card: params.isShowEditCard,
|
|
||||||
tip_window_type: params.tipWindowType,
|
|
||||||
confirm_required: params.confirmRequired
|
|
||||||
})
|
|
||||||
|
|
||||||
return await RequestUtil.HttpGetJson<SetGroupNoticeRet>(
|
|
||||||
`https://web.qun.qq.com/cgi-bin/announce/add_qun_notice?${new URLSearchParams({
|
|
||||||
bkn: this.genBkn(cookieObject.skey),
|
|
||||||
qid: params.groupCode,
|
|
||||||
text: params.content,
|
|
||||||
pinned: params.pinned.toString(),
|
|
||||||
type: params.type.toString(),
|
|
||||||
settings: settings,
|
|
||||||
...(params.picId !== '' && {
|
|
||||||
pic: params.picId,
|
|
||||||
imgWidth: params.imgWidth?.toString(),
|
|
||||||
imgHeight: params.imgHeight?.toString(),
|
|
||||||
})
|
|
||||||
})}`,
|
|
||||||
'POST',
|
|
||||||
'',
|
|
||||||
{ 'Cookie': this.cookieToString(cookieObject) }
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
private cookieToString(cookieObject: Dict) {
|
private cookieToString(cookieObject: Dict) {
|
||||||
return Object.entries(cookieObject).map(([key, value]) => `${key}=${value}`).join('; ')
|
return Object.entries(cookieObject).map(([key, value]) => `${key}=${value}`).join('; ')
|
||||||
}
|
}
|
||||||
|
@@ -1,9 +1,7 @@
|
|||||||
import fs from 'node:fs'
|
import { unlink } from 'node:fs/promises'
|
||||||
import { Service, Context } from 'cordis'
|
import { Service, Context } from 'cordis'
|
||||||
import { registerCallHook, registerReceiveHook, ReceiveCmdS } from './hook'
|
import { registerCallHook, registerReceiveHook, ReceiveCmdS } from './hook'
|
||||||
import { MessageUnique } from '../common/utils/messageUnique'
|
|
||||||
import { Config as LLOBConfig } from '../common/types'
|
import { Config as LLOBConfig } from '../common/types'
|
||||||
import { llonebotError } from '../common/globalVars'
|
|
||||||
import { isNumeric } from '../common/utils/misc'
|
import { isNumeric } from '../common/utils/misc'
|
||||||
import { NTMethod } from './ntcall'
|
import { NTMethod } from './ntcall'
|
||||||
import {
|
import {
|
||||||
@@ -14,8 +12,8 @@ import {
|
|||||||
GroupMember,
|
GroupMember,
|
||||||
CategoryFriend,
|
CategoryFriend,
|
||||||
SimpleInfo,
|
SimpleInfo,
|
||||||
User,
|
ChatType,
|
||||||
ChatType
|
BuddyReqType
|
||||||
} from './types'
|
} from './types'
|
||||||
import { selfInfo } from '../common/globalVars'
|
import { selfInfo } from '../common/globalVars'
|
||||||
import { version } from '../version'
|
import { version } from '../version'
|
||||||
@@ -26,26 +24,26 @@ declare module 'cordis' {
|
|||||||
app: Core
|
app: Core
|
||||||
}
|
}
|
||||||
interface Events {
|
interface Events {
|
||||||
'nt/message-created': (input: RawMessage[]) => void
|
'nt/message-created': (input: RawMessage) => void
|
||||||
'nt/message-deleted': (input: RawMessage) => void
|
'nt/message-deleted': (input: RawMessage) => void
|
||||||
'nt/message-sent': (input: RawMessage) => void
|
'nt/message-sent': (input: RawMessage) => void
|
||||||
'nt/group-notify': (input: GroupNotify[]) => void
|
'nt/group-notify': (input: GroupNotify) => void
|
||||||
'nt/friend-request': (input: FriendRequest[]) => void
|
'nt/friend-request': (input: FriendRequest) => void
|
||||||
'nt/group-member-info-updated': (input: { groupCode: string, members: GroupMember[] }) => void
|
'nt/group-member-info-updated': (input: { groupCode: string, members: GroupMember[] }) => void
|
||||||
'nt/system-message-created': (input: Uint8Array) => void
|
'nt/system-message-created': (input: Uint8Array) => void
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class Core extends Service {
|
class Core extends Service {
|
||||||
static inject = ['ntMsgApi', 'ntFriendApi', 'ntGroupApi']
|
static inject = ['ntMsgApi', 'ntFriendApi', 'ntGroupApi', 'store']
|
||||||
|
public startTime = 0
|
||||||
|
|
||||||
constructor(protected ctx: Context, public config: Core.Config) {
|
constructor(protected ctx: Context, public config: Core.Config) {
|
||||||
super(ctx, 'app', true)
|
super(ctx, 'app', true)
|
||||||
}
|
}
|
||||||
|
|
||||||
public start() {
|
public start() {
|
||||||
llonebotError.otherError = ''
|
this.startTime = Date.now()
|
||||||
MessageUnique.init(selfInfo.uin)
|
|
||||||
this.registerListener()
|
this.registerListener()
|
||||||
this.ctx.logger.info(`LLOneBot/${version}`)
|
this.ctx.logger.info(`LLOneBot/${version}`)
|
||||||
this.ctx.on('llonebot/config-updated', input => {
|
this.ctx.on('llonebot/config-updated', input => {
|
||||||
@@ -55,29 +53,24 @@ class Core extends Service {
|
|||||||
|
|
||||||
private registerListener() {
|
private registerListener() {
|
||||||
registerReceiveHook<{
|
registerReceiveHook<{
|
||||||
data: CategoryFriend[]
|
data?: CategoryFriend[]
|
||||||
|
userSimpleInfos?: Map<string, SimpleInfo> //V2
|
||||||
|
buddyCategory?: CategoryFriend[] //V2
|
||||||
}>(ReceiveCmdS.FRIENDS, (payload) => {
|
}>(ReceiveCmdS.FRIENDS, (payload) => {
|
||||||
type V2data = { userSimpleInfos: Map<string, SimpleInfo> }
|
let uids: string[] = []
|
||||||
let friendList: User[] = []
|
if (payload.buddyCategory) {
|
||||||
if ('userSimpleInfos' in payload) {
|
uids = payload.buddyCategory.flatMap(item => item.buddyUids)
|
||||||
friendList = Object.values((payload as unknown as V2data).userSimpleInfos).map((v: SimpleInfo) => {
|
} else if (payload.data) {
|
||||||
return {
|
uids = payload.data.flatMap(item => item.buddyList.map(e => e.uid))
|
||||||
...v.coreInfo,
|
|
||||||
}
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
for (const fData of payload.data) {
|
|
||||||
friendList.push(...fData.buddyList)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
this.ctx.logger.info('好友列表变动', friendList.length)
|
for (const uid of uids) {
|
||||||
for (const friend of friendList) {
|
this.ctx.ntMsgApi.activateChat({ peerUid: uid, chatType: ChatType.C2C })
|
||||||
this.ctx.ntMsgApi.activateChat({ peerUid: friend.uid, chatType: ChatType.friend })
|
|
||||||
}
|
}
|
||||||
|
this.ctx.logger.info('好友列表变动', uids.length)
|
||||||
})
|
})
|
||||||
|
|
||||||
// 自动清理新消息文件
|
// 自动清理新消息文件
|
||||||
registerReceiveHook<{ msgList: Array<RawMessage> }>([ReceiveCmdS.NEW_MSG, ReceiveCmdS.NEW_ACTIVE_MSG], (payload) => {
|
registerReceiveHook<{ msgList: RawMessage[] }>([ReceiveCmdS.NEW_MSG, ReceiveCmdS.NEW_ACTIVE_MSG], (payload) => {
|
||||||
if (!this.config.autoDeleteFile) {
|
if (!this.config.autoDeleteFile) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -96,9 +89,7 @@ class Core extends Service {
|
|||||||
}
|
}
|
||||||
for (const path of pathList) {
|
for (const path of pathList) {
|
||||||
if (path) {
|
if (path) {
|
||||||
fs.unlink(path, () => {
|
unlink(path).then(() => this.ctx.logger.info('删除文件成功', path))
|
||||||
this.ctx.logger.info('删除文件成功', path)
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, this.config.autoDeleteFileSecond! * 1000)
|
}, this.config.autoDeleteFileSecond! * 1000)
|
||||||
@@ -126,12 +117,12 @@ class Core extends Service {
|
|||||||
if (activatedPeerUids.includes(contact.id)) continue
|
if (activatedPeerUids.includes(contact.id)) continue
|
||||||
activatedPeerUids.push(contact.id)
|
activatedPeerUids.push(contact.id)
|
||||||
const peer = { peerUid: contact.id, chatType: contact.chatType }
|
const peer = { peerUid: contact.id, chatType: contact.chatType }
|
||||||
if (contact.chatType === ChatType.temp) {
|
if (contact.chatType === ChatType.TempC2CFromGroup) {
|
||||||
this.ctx.ntMsgApi.activateChatAndGetHistory(peer).then(() => {
|
this.ctx.ntMsgApi.activateChatAndGetHistory(peer).then(() => {
|
||||||
this.ctx.ntMsgApi.getMsgHistory(peer, '', 20).then(({ msgList }) => {
|
this.ctx.ntMsgApi.getMsgHistory(peer, '', 20).then(({ msgList }) => {
|
||||||
const lastTempMsg = msgList.at(-1)
|
const lastTempMsg = msgList.at(-1)
|
||||||
if (Date.now() / 1000 - Number(lastTempMsg?.msgTime) < 5) {
|
if (Date.now() / 1000 - Number(lastTempMsg?.msgTime) < 5) {
|
||||||
this.ctx.parallel('nt/message-created', [lastTempMsg!])
|
this.ctx.parallel('nt/message-created', lastTempMsg!)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
@@ -146,12 +137,12 @@ class Core extends Service {
|
|||||||
registerCallHook(NTMethod.DELETE_ACTIVE_CHAT, async (payload) => {
|
registerCallHook(NTMethod.DELETE_ACTIVE_CHAT, async (payload) => {
|
||||||
const peerUid = payload[0] as string
|
const peerUid = payload[0] as string
|
||||||
this.ctx.logger.info('激活的聊天窗口被删除,准备重新激活', peerUid)
|
this.ctx.logger.info('激活的聊天窗口被删除,准备重新激活', peerUid)
|
||||||
let chatType = ChatType.friend
|
let chatType = ChatType.C2C
|
||||||
if (isNumeric(peerUid)) {
|
if (isNumeric(peerUid)) {
|
||||||
chatType = ChatType.group
|
chatType = ChatType.Group
|
||||||
}
|
}
|
||||||
else if (!(await this.ctx.ntFriendApi.isBuddy(peerUid))) {
|
else if (!(await this.ctx.ntFriendApi.isBuddy(peerUid))) {
|
||||||
chatType = ChatType.temp
|
chatType = ChatType.TempC2CFromGroup
|
||||||
}
|
}
|
||||||
const peer = { peerUid, chatType }
|
const peer = { peerUid, chatType }
|
||||||
await this.ctx.sleep(1000)
|
await this.ctx.sleep(1000)
|
||||||
@@ -171,7 +162,16 @@ class Core extends Service {
|
|||||||
})
|
})
|
||||||
|
|
||||||
registerReceiveHook<{ msgList: RawMessage[] }>([ReceiveCmdS.NEW_MSG, ReceiveCmdS.NEW_ACTIVE_MSG], payload => {
|
registerReceiveHook<{ msgList: RawMessage[] }>([ReceiveCmdS.NEW_MSG, ReceiveCmdS.NEW_ACTIVE_MSG], payload => {
|
||||||
this.ctx.parallel('nt/message-created', payload.msgList)
|
for (const message of payload.msgList) {
|
||||||
|
// 过滤启动之前的消息
|
||||||
|
if (parseInt(message.msgTime) < this.startTime / 1000) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if (message.senderUin && message.senderUin !== '0') {
|
||||||
|
this.ctx.store.addMsgCache(message)
|
||||||
|
}
|
||||||
|
this.ctx.parallel('nt/message-created', message)
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
const sentMsgIds = new Map<string, boolean>()
|
const sentMsgIds = new Map<string, boolean>()
|
||||||
@@ -209,23 +209,31 @@ class Core extends Service {
|
|||||||
} catch (e) {
|
} catch (e) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
const list = notifies.filter(v => {
|
for (const notify of notifies) {
|
||||||
const flag = v.group.groupCode + '|' + v.seq + '|' + v.type
|
const flag = notify.group.groupCode + '|' + notify.seq + '|' + notify.type
|
||||||
if (groupNotifyFlags.includes(flag)) {
|
const notifyTime = parseInt(notify.seq) / 1000
|
||||||
return false
|
if (groupNotifyFlags.includes(flag) || notifyTime < this.startTime) {
|
||||||
|
continue
|
||||||
}
|
}
|
||||||
groupNotifyFlags.push(flag)
|
groupNotifyFlags.push(flag)
|
||||||
return true
|
this.ctx.parallel('nt/group-notify', notify)
|
||||||
})
|
}
|
||||||
this.ctx.parallel('nt/group-notify', list)
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
registerReceiveHook<FriendRequestNotify>(ReceiveCmdS.FRIEND_REQUEST, payload => {
|
registerReceiveHook<FriendRequestNotify>(ReceiveCmdS.FRIEND_REQUEST, payload => {
|
||||||
this.ctx.parallel('nt/friend-request', payload.data.buddyReqs)
|
for (const req of payload.data.buddyReqs) {
|
||||||
|
if (!!req.isInitiator || (req.isDecide && req.reqType !== BuddyReqType.MeInitiatorWaitPeerConfirm)) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if (+req.reqTime < this.startTime / 1000) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
this.ctx.parallel('nt/friend-request', req)
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
invoke('nodeIKernelMsgListener/onRecvSysMsg', [], { classNameIsRegister: true })
|
invoke('nodeIKernelMsgListener/onRecvSysMsg', [], { registerEvent: true })
|
||||||
|
|
||||||
registerReceiveHook<{
|
registerReceiveHook<{
|
||||||
msgBuf: number[]
|
msgBuf: number[]
|
||||||
|
@@ -1,5 +1,6 @@
|
|||||||
import ffmpeg from 'fluent-ffmpeg'
|
import ffmpeg from 'fluent-ffmpeg'
|
||||||
import faceConfig from './helper/face_config.json'
|
import faceConfig from './helper/face_config.json'
|
||||||
|
import pathLib from 'node:path'
|
||||||
import {
|
import {
|
||||||
AtType,
|
AtType,
|
||||||
ElementType,
|
ElementType,
|
||||||
@@ -16,22 +17,20 @@ import {
|
|||||||
SendVideoElement,
|
SendVideoElement,
|
||||||
} from './types'
|
} from './types'
|
||||||
import { stat, writeFile, copyFile, unlink } from 'node:fs/promises'
|
import { stat, writeFile, copyFile, unlink } from 'node:fs/promises'
|
||||||
import { calculateFileMD5, isGIF } from '../common/utils/file'
|
import { calculateFileMD5 } from '../common/utils/file'
|
||||||
import { defaultVideoThumb, getVideoInfo } from '../common/utils/video'
|
import { defaultVideoThumb, getVideoInfo } from '../common/utils/video'
|
||||||
import { encodeSilk } from '../common/utils/audio'
|
import { encodeSilk } from '../common/utils/audio'
|
||||||
import { Context } from 'cordis'
|
import { Context } from 'cordis'
|
||||||
import { isNullable } from 'cosmokit'
|
import { isNullable } from 'cosmokit'
|
||||||
|
|
||||||
//export const mFaceCache = new Map<string, string>() // emojiId -> faceName
|
export namespace SendElement {
|
||||||
|
|
||||||
export namespace SendElementEntities {
|
|
||||||
export function text(content: string): SendTextElement {
|
export function text(content: string): SendTextElement {
|
||||||
return {
|
return {
|
||||||
elementType: ElementType.TEXT,
|
elementType: ElementType.Text,
|
||||||
elementId: '',
|
elementId: '',
|
||||||
textElement: {
|
textElement: {
|
||||||
content,
|
content,
|
||||||
atType: AtType.notAt,
|
atType: AtType.Unknown,
|
||||||
atUid: '',
|
atUid: '',
|
||||||
atTinyId: '',
|
atTinyId: '',
|
||||||
atNtUid: '',
|
atNtUid: '',
|
||||||
@@ -41,7 +40,7 @@ export namespace SendElementEntities {
|
|||||||
|
|
||||||
export function at(atUid: string, atNtUid: string, atType: AtType, display: string): SendTextElement {
|
export function at(atUid: string, atNtUid: string, atType: AtType, display: string): SendTextElement {
|
||||||
return {
|
return {
|
||||||
elementType: ElementType.TEXT,
|
elementType: ElementType.Text,
|
||||||
elementId: '',
|
elementId: '',
|
||||||
textElement: {
|
textElement: {
|
||||||
content: display,
|
content: display,
|
||||||
@@ -55,7 +54,7 @@ export namespace SendElementEntities {
|
|||||||
|
|
||||||
export function reply(msgSeq: string, msgId: string, senderUin: string, senderUinStr: string): SendReplyElement {
|
export function reply(msgSeq: string, msgId: string, senderUin: string, senderUinStr: string): SendReplyElement {
|
||||||
return {
|
return {
|
||||||
elementType: ElementType.REPLY,
|
elementType: ElementType.Reply,
|
||||||
elementId: '',
|
elementId: '',
|
||||||
replyElement: {
|
replyElement: {
|
||||||
replayMsgSeq: msgSeq, // raw.msgSeq
|
replayMsgSeq: msgSeq, // raw.msgSeq
|
||||||
@@ -66,14 +65,10 @@ export namespace SendElementEntities {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function pic(ctx: Context, picPath: string, summary: string = '', subType: 0 | 1 = 0): Promise<SendPicElement> {
|
export async function pic(ctx: Context, picPath: string, summary = '', subType: 0 | 1 = 0, isFlashPic?: boolean): Promise<SendPicElement> {
|
||||||
const { md5, fileName, path, fileSize } = await ctx.ntFileApi.uploadFile(picPath, ElementType.PIC, subType)
|
const { md5, fileName, path, fileSize } = await ctx.ntFileApi.uploadFile(picPath, ElementType.Pic, subType)
|
||||||
if (fileSize === 0) {
|
if (fileSize === 0) {
|
||||||
throw '文件异常,大小为0'
|
throw '文件异常,大小为 0'
|
||||||
}
|
|
||||||
const maxMB = 30;
|
|
||||||
if (fileSize > 1024 * 1024 * 30) {
|
|
||||||
throw `图片过大,最大支持${maxMB}MB,当前文件大小${fileSize}B`
|
|
||||||
}
|
}
|
||||||
const imageSize = await ctx.ntFileApi.getImageSize(picPath)
|
const imageSize = await ctx.ntFileApi.getImageSize(picPath)
|
||||||
const picElement = {
|
const picElement = {
|
||||||
@@ -84,16 +79,17 @@ export namespace SendElementEntities {
|
|||||||
fileName: fileName,
|
fileName: fileName,
|
||||||
sourcePath: path,
|
sourcePath: path,
|
||||||
original: true,
|
original: true,
|
||||||
picType: isGIF(picPath) ? PicType.gif : PicType.jpg,
|
picType: imageSize.type === 'gif' ? PicType.GIF : PicType.JPEG,
|
||||||
picSubType: subType,
|
picSubType: subType,
|
||||||
fileUuid: '',
|
fileUuid: '',
|
||||||
fileSubId: '',
|
fileSubId: '',
|
||||||
thumbFileSize: 0,
|
thumbFileSize: 0,
|
||||||
summary,
|
summary,
|
||||||
|
isFlashPic,
|
||||||
}
|
}
|
||||||
ctx.logger.info('图片信息', picElement)
|
ctx.logger.info('图片信息', picElement)
|
||||||
return {
|
return {
|
||||||
elementType: ElementType.PIC,
|
elementType: ElementType.Pic,
|
||||||
elementId: '',
|
elementId: '',
|
||||||
picElement,
|
picElement,
|
||||||
}
|
}
|
||||||
@@ -106,7 +102,7 @@ export namespace SendElementEntities {
|
|||||||
throw new Error('文件异常,大小为 0')
|
throw new Error('文件异常,大小为 0')
|
||||||
}
|
}
|
||||||
const element: SendFileElement = {
|
const element: SendFileElement = {
|
||||||
elementType: ElementType.FILE,
|
elementType: ElementType.File,
|
||||||
elementId: '',
|
elementId: '',
|
||||||
fileElement: {
|
fileElement: {
|
||||||
fileName,
|
fileName,
|
||||||
@@ -125,7 +121,7 @@ export namespace SendElementEntities {
|
|||||||
throw `文件${filePath}异常,不存在`
|
throw `文件${filePath}异常,不存在`
|
||||||
}
|
}
|
||||||
ctx.logger.info('复制视频到QQ目录', filePath)
|
ctx.logger.info('复制视频到QQ目录', filePath)
|
||||||
const { fileName: _fileName, path, fileSize, md5 } = await ctx.ntFileApi.uploadFile(filePath, ElementType.VIDEO)
|
const { fileName: _fileName, path, fileSize, md5 } = await ctx.ntFileApi.uploadFile(filePath, ElementType.Video)
|
||||||
|
|
||||||
ctx.logger.info('复制视频到QQ目录完成', path)
|
ctx.logger.info('复制视频到QQ目录完成', path)
|
||||||
if (fileSize === 0) {
|
if (fileSize === 0) {
|
||||||
@@ -135,7 +131,6 @@ export namespace SendElementEntities {
|
|||||||
if (fileSize > 1024 * 1024 * maxMB) {
|
if (fileSize > 1024 * 1024 * maxMB) {
|
||||||
throw `视频过大,最大支持${maxMB}MB,当前文件大小${fileSize}B`
|
throw `视频过大,最大支持${maxMB}MB,当前文件大小${fileSize}B`
|
||||||
}
|
}
|
||||||
const pathLib = require('path')
|
|
||||||
let thumbDir = path.replace(`${pathLib.sep}Ori${pathLib.sep}`, `${pathLib.sep}Thumb${pathLib.sep}`)
|
let thumbDir = path.replace(`${pathLib.sep}Ori${pathLib.sep}`, `${pathLib.sep}Thumb${pathLib.sep}`)
|
||||||
thumbDir = pathLib.dirname(thumbDir)
|
thumbDir = pathLib.dirname(thumbDir)
|
||||||
// log("thumb 目录", thumb)
|
// log("thumb 目录", thumb)
|
||||||
@@ -203,7 +198,7 @@ export namespace SendElementEntities {
|
|||||||
thumbPath.set(0, _thumbPath)
|
thumbPath.set(0, _thumbPath)
|
||||||
const thumbMd5 = await calculateFileMD5(_thumbPath)
|
const thumbMd5 = await calculateFileMD5(_thumbPath)
|
||||||
const element: SendVideoElement = {
|
const element: SendVideoElement = {
|
||||||
elementType: ElementType.VIDEO,
|
elementType: ElementType.Video,
|
||||||
elementId: '',
|
elementId: '',
|
||||||
videoElement: {
|
videoElement: {
|
||||||
fileName: fileName || _fileName,
|
fileName: fileName || _fileName,
|
||||||
@@ -215,17 +210,7 @@ export namespace SendElementEntities {
|
|||||||
thumbSize,
|
thumbSize,
|
||||||
thumbWidth: videoInfo.width,
|
thumbWidth: videoInfo.width,
|
||||||
thumbHeight: videoInfo.height,
|
thumbHeight: videoInfo.height,
|
||||||
fileSize: '' + fileSize,
|
fileSize: String(fileSize),
|
||||||
// fileUuid: "",
|
|
||||||
// transferStatus: 0,
|
|
||||||
// progress: 0,
|
|
||||||
// invalidState: 0,
|
|
||||||
// fileSubId: "",
|
|
||||||
// fileBizId: null,
|
|
||||||
// originVideoMd5: "",
|
|
||||||
// fileFormat: 2,
|
|
||||||
// import_rich_media_context: null,
|
|
||||||
// sourceVideoCodecFormat: 2
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
ctx.logger.info('videoElement', element)
|
ctx.logger.info('videoElement', element)
|
||||||
@@ -238,7 +223,7 @@ export namespace SendElementEntities {
|
|||||||
throw '语音转换失败, 请检查语音文件是否正常'
|
throw '语音转换失败, 请检查语音文件是否正常'
|
||||||
}
|
}
|
||||||
// log("生成语音", silkPath, duration);
|
// log("生成语音", silkPath, duration);
|
||||||
const { md5, fileName, path, fileSize } = await ctx.ntFileApi.uploadFile(silkPath, ElementType.PTT)
|
const { md5, fileName, path, fileSize } = await ctx.ntFileApi.uploadFile(silkPath, ElementType.Ptt)
|
||||||
if (fileSize === 0) {
|
if (fileSize === 0) {
|
||||||
throw '文件异常,大小为0'
|
throw '文件异常,大小为0'
|
||||||
}
|
}
|
||||||
@@ -246,14 +231,13 @@ export namespace SendElementEntities {
|
|||||||
unlink(silkPath)
|
unlink(silkPath)
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
elementType: ElementType.PTT,
|
elementType: ElementType.Ptt,
|
||||||
elementId: '',
|
elementId: '',
|
||||||
pttElement: {
|
pttElement: {
|
||||||
fileName: fileName,
|
fileName: fileName,
|
||||||
filePath: path,
|
filePath: path,
|
||||||
md5HexStr: md5,
|
md5HexStr: md5,
|
||||||
fileSize: fileSize,
|
fileSize: String(fileSize),
|
||||||
// duration: Math.max(1, Math.round(fileSize / 1024 / 3)), // 一秒钟大概是3kb大小, 小于1秒的按1秒算
|
|
||||||
duration: duration,
|
duration: duration,
|
||||||
formatType: 1,
|
formatType: 1,
|
||||||
voiceType: 1,
|
voiceType: 1,
|
||||||
@@ -282,7 +266,7 @@ export namespace SendElementEntities {
|
|||||||
faceType = 3;
|
faceType = 3;
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
elementType: ElementType.FACE,
|
elementType: ElementType.Face,
|
||||||
elementId: '',
|
elementId: '',
|
||||||
faceElement: {
|
faceElement: {
|
||||||
faceIndex: faceId,
|
faceIndex: faceId,
|
||||||
@@ -298,7 +282,8 @@ export namespace SendElementEntities {
|
|||||||
|
|
||||||
export function mface(emojiPackageId: number, emojiId: string, key: string, summary?: string): SendMarketFaceElement {
|
export function mface(emojiPackageId: number, emojiId: string, key: string, summary?: string): SendMarketFaceElement {
|
||||||
return {
|
return {
|
||||||
elementType: ElementType.MFACE,
|
elementType: ElementType.MarketFace,
|
||||||
|
elementId: '',
|
||||||
marketFaceElement: {
|
marketFaceElement: {
|
||||||
imageWidth: 300,
|
imageWidth: 300,
|
||||||
imageHeight: 300,
|
imageHeight: 300,
|
||||||
@@ -315,10 +300,10 @@ export namespace SendElementEntities {
|
|||||||
// 随机1到6
|
// 随机1到6
|
||||||
if (isNullable(resultId)) resultId = Math.floor(Math.random() * 6) + 1
|
if (isNullable(resultId)) resultId = Math.floor(Math.random() * 6) + 1
|
||||||
return {
|
return {
|
||||||
elementType: ElementType.FACE,
|
elementType: ElementType.Face,
|
||||||
elementId: '',
|
elementId: '',
|
||||||
faceElement: {
|
faceElement: {
|
||||||
faceIndex: FaceIndex.dice,
|
faceIndex: FaceIndex.Dice,
|
||||||
faceType: 3,
|
faceType: 3,
|
||||||
faceText: '[骰子]',
|
faceText: '[骰子]',
|
||||||
packId: '1',
|
packId: '1',
|
||||||
@@ -337,7 +322,7 @@ export namespace SendElementEntities {
|
|||||||
// 实际测试并不能控制结果
|
// 实际测试并不能控制结果
|
||||||
if (isNullable(resultId)) resultId = Math.floor(Math.random() * 3) + 1
|
if (isNullable(resultId)) resultId = Math.floor(Math.random() * 3) + 1
|
||||||
return {
|
return {
|
||||||
elementType: ElementType.FACE,
|
elementType: ElementType.Face,
|
||||||
elementId: '',
|
elementId: '',
|
||||||
faceElement: {
|
faceElement: {
|
||||||
faceIndex: FaceIndex.RPS,
|
faceIndex: FaceIndex.RPS,
|
||||||
@@ -356,7 +341,7 @@ export namespace SendElementEntities {
|
|||||||
|
|
||||||
export function ark(data: string): SendArkElement {
|
export function ark(data: string): SendArkElement {
|
||||||
return {
|
return {
|
||||||
elementType: ElementType.ARK,
|
elementType: ElementType.Ark,
|
||||||
elementId: '',
|
elementId: '',
|
||||||
arkElement: {
|
arkElement: {
|
||||||
bytesData: data,
|
bytesData: data,
|
||||||
@@ -365,4 +350,16 @@ export namespace SendElementEntities {
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function shake(): SendFaceElement {
|
||||||
|
return {
|
||||||
|
elementType: ElementType.Face,
|
||||||
|
elementId: '',
|
||||||
|
faceElement: {
|
||||||
|
faceIndex: 1,
|
||||||
|
faceType: 5,
|
||||||
|
pokeType: 1,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@@ -31,30 +31,18 @@ export class RkeyManager {
|
|||||||
|
|
||||||
isExpired(): boolean {
|
isExpired(): boolean {
|
||||||
const now = new Date().getTime() / 1000
|
const now = new Date().getTime() / 1000
|
||||||
// console.log(`now: ${now}, expired_time: ${this.rkeyData.expired_time}`)
|
|
||||||
return now > this.rkeyData.expired_time
|
return now > this.rkeyData.expired_time
|
||||||
}
|
}
|
||||||
|
|
||||||
async refreshRkey() {
|
async refreshRkey() {
|
||||||
//刷新rkey
|
|
||||||
this.rkeyData = await this.fetchServerRkey()
|
this.rkeyData = await this.fetchServerRkey()
|
||||||
}
|
}
|
||||||
|
|
||||||
async fetchServerRkey() {
|
async fetchServerRkey(): Promise<ServerRkeyData> {
|
||||||
return new Promise<ServerRkeyData>((resolve, reject) => {
|
const response = await fetch(this.serverUrl)
|
||||||
fetch(this.serverUrl)
|
if (!response.ok) {
|
||||||
.then(response => {
|
throw new Error(response.statusText)
|
||||||
if (!response.ok) {
|
}
|
||||||
return reject(response.statusText) // 请求失败,返回错误信息
|
return response.json()
|
||||||
}
|
|
||||||
return response.json() // 解析 JSON 格式的响应体
|
|
||||||
})
|
|
||||||
.then(data => {
|
|
||||||
resolve(data)
|
|
||||||
})
|
|
||||||
.catch(error => {
|
|
||||||
reject(error)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -26,7 +26,6 @@ export enum ReceiveCmdS {
|
|||||||
SELF_STATUS = 'nodeIKernelProfileListener/onSelfStatusChanged',
|
SELF_STATUS = 'nodeIKernelProfileListener/onSelfStatusChanged',
|
||||||
CACHE_SCAN_FINISH = 'nodeIKernelStorageCleanListener/onFinishScan',
|
CACHE_SCAN_FINISH = 'nodeIKernelStorageCleanListener/onFinishScan',
|
||||||
MEDIA_UPLOAD_COMPLETE = 'nodeIKernelMsgListener/onRichMediaUploadComplete',
|
MEDIA_UPLOAD_COMPLETE = 'nodeIKernelMsgListener/onRichMediaUploadComplete',
|
||||||
SKEY_UPDATE = 'onSkeyUpdate',
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type NTReturnData = [
|
type NTReturnData = [
|
||||||
@@ -96,7 +95,7 @@ export function hookNTQQApiCall(window: BrowserWindow, onlyLog: boolean) {
|
|||||||
const isLogger = args[3]?.[0]?.eventName?.startsWith('ns-LoggerApi')
|
const isLogger = args[3]?.[0]?.eventName?.startsWith('ns-LoggerApi')
|
||||||
if (!isLogger) {
|
if (!isLogger) {
|
||||||
try {
|
try {
|
||||||
logHook && log('call NTQQ api', thisArg, args)
|
logHook && log('call NTQQ api', args)
|
||||||
} catch (e) { }
|
} catch (e) { }
|
||||||
if (!onlyLog) {
|
if (!onlyLog) {
|
||||||
try {
|
try {
|
||||||
|
@@ -14,7 +14,7 @@ import {
|
|||||||
NodeIKernelRichMediaService,
|
NodeIKernelRichMediaService,
|
||||||
NodeIKernelTicketService,
|
NodeIKernelTicketService,
|
||||||
NodeIKernelTipOffService,
|
NodeIKernelTipOffService,
|
||||||
NodeIKernelSearchService,
|
NodeIKernelRobotService
|
||||||
} from './services'
|
} from './services'
|
||||||
|
|
||||||
export enum NTClass {
|
export enum NTClass {
|
||||||
@@ -40,7 +40,6 @@ export enum NTMethod {
|
|||||||
MEDIA_FILE_PATH = 'nodeIKernelMsgService/getRichMediaFilePathForGuild',
|
MEDIA_FILE_PATH = 'nodeIKernelMsgService/getRichMediaFilePathForGuild',
|
||||||
RECALL_MSG = 'nodeIKernelMsgService/recallMsg',
|
RECALL_MSG = 'nodeIKernelMsgService/recallMsg',
|
||||||
EMOJI_LIKE = 'nodeIKernelMsgService/setMsgEmojiLikes',
|
EMOJI_LIKE = 'nodeIKernelMsgService/setMsgEmojiLikes',
|
||||||
FORWARD_MSG = 'nodeIKernelMsgService/forwardMsgWithComment',
|
|
||||||
|
|
||||||
SELF_INFO = 'fetchAuthData',
|
SELF_INFO = 'fetchAuthData',
|
||||||
FILE_TYPE = 'getFileType',
|
FILE_TYPE = 'getFileType',
|
||||||
@@ -94,13 +93,13 @@ interface NTService {
|
|||||||
nodeIKernelRichMediaService: NodeIKernelRichMediaService
|
nodeIKernelRichMediaService: NodeIKernelRichMediaService
|
||||||
nodeIKernelTicketService: NodeIKernelTicketService
|
nodeIKernelTicketService: NodeIKernelTicketService
|
||||||
nodeIKernelTipOffService: NodeIKernelTipOffService
|
nodeIKernelTipOffService: NodeIKernelTipOffService
|
||||||
nodeIKernelSearchService: NodeIKernelSearchService
|
nodeIKernelRobotService: NodeIKernelRobotService
|
||||||
}
|
}
|
||||||
|
|
||||||
interface InvokeOptions<ReturnType> {
|
interface InvokeOptions<ReturnType> {
|
||||||
className?: NTClass
|
className?: NTClass
|
||||||
channel?: NTChannel
|
channel?: NTChannel
|
||||||
classNameIsRegister?: boolean
|
registerEvent?: boolean
|
||||||
cbCmd?: string | string[]
|
cbCmd?: string | string[]
|
||||||
cmdCB?: (payload: ReturnType, result: unknown) => boolean
|
cmdCB?: (payload: ReturnType, result: unknown) => boolean
|
||||||
afterFirstCmd?: boolean // 是否在methodName调用完之后再去hook cbCmd
|
afterFirstCmd?: boolean // 是否在methodName调用完之后再去hook cbCmd
|
||||||
@@ -117,7 +116,7 @@ export function invoke<
|
|||||||
const timeout = options.timeout ?? 5000
|
const timeout = options.timeout ?? 5000
|
||||||
const afterFirstCmd = options.afterFirstCmd ?? true
|
const afterFirstCmd = options.afterFirstCmd ?? true
|
||||||
let eventName = className + '-' + channel[channel.length - 1]
|
let eventName = className + '-' + channel[channel.length - 1]
|
||||||
if (options.classNameIsRegister) {
|
if (options.registerEvent) {
|
||||||
eventName += '-register'
|
eventName += '-register'
|
||||||
}
|
}
|
||||||
return new Promise<R>((resolve, reject) => {
|
return new Promise<R>((resolve, reject) => {
|
||||||
@@ -161,9 +160,9 @@ export function invoke<
|
|||||||
afterFirstCmd && secondCallback()
|
afterFirstCmd && secondCallback()
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
log('ntqq api call failed,', method, res)
|
log('ntqq api call failed,', method, args, res)
|
||||||
clearTimeout(timeoutId)
|
clearTimeout(timeoutId)
|
||||||
reject(`ntqq api call failed, ${method}, ${res.errMsg}`)
|
reject(`ntqq api call failed, ${method}, ${res?.errMsg}`)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,125 +1,27 @@
|
|||||||
|
import { BuddyListReqType } from '@/ntqqapi/types'
|
||||||
import { GeneralCallResult } from './common'
|
import { GeneralCallResult } from './common'
|
||||||
|
|
||||||
export enum BuddyListReqType {
|
|
||||||
KNOMAL,
|
|
||||||
KLETTER
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface NodeIKernelBuddyService {
|
export interface NodeIKernelBuddyService {
|
||||||
// 26702 以上
|
|
||||||
getBuddyListV2(callFrom: string, reqType: BuddyListReqType): Promise<GeneralCallResult & {
|
getBuddyListV2(callFrom: string, reqType: BuddyListReqType): Promise<GeneralCallResult & {
|
||||||
data: Array<{
|
data: {
|
||||||
categoryId: number,
|
categoryId: number
|
||||||
categorySortId: number,
|
categorySortId: number
|
||||||
categroyName: string,
|
categroyName: string
|
||||||
categroyMbCount: number,
|
categroyMbCount: number
|
||||||
onlineCount: number,
|
onlineCount: number
|
||||||
buddyUids: Array<string>
|
buddyUids: string[]
|
||||||
}>
|
}[]
|
||||||
}>
|
}>
|
||||||
|
|
||||||
//26702 以上
|
|
||||||
getBuddyListFromCache(callFrom: string): Promise<Array<
|
|
||||||
{
|
|
||||||
categoryId: number,//9999应该跳过 那是兜底数据吧
|
|
||||||
categorySortId: number,//排序方式
|
|
||||||
categroyName: string,//分类名
|
|
||||||
categroyMbCount: number,//不懂
|
|
||||||
onlineCount: number,//在线数目
|
|
||||||
buddyUids: Array<string>//Uids
|
|
||||||
}>>
|
|
||||||
|
|
||||||
addKernelBuddyListener(listener: unknown): number
|
|
||||||
|
|
||||||
getAllBuddyCount(): number
|
|
||||||
|
|
||||||
removeKernelBuddyListener(listener: unknown): void
|
|
||||||
|
|
||||||
getBuddyList(nocache: boolean): Promise<GeneralCallResult>
|
|
||||||
|
|
||||||
getBuddyNick(uid: number): string
|
|
||||||
|
|
||||||
getBuddyRemark(uid: number): string
|
|
||||||
|
|
||||||
setBuddyRemark(uid: number, remark: string): void
|
setBuddyRemark(uid: number, remark: string): void
|
||||||
|
|
||||||
getAvatarUrl(uid: number): string
|
|
||||||
|
|
||||||
isBuddy(uid: string): boolean
|
isBuddy(uid: string): boolean
|
||||||
|
|
||||||
getCategoryNameWithUid(uid: number): string
|
|
||||||
|
|
||||||
getTargetBuddySetting(uid: number): unknown
|
|
||||||
|
|
||||||
getTargetBuddySettingByType(uid: number, type: number): unknown
|
|
||||||
|
|
||||||
getBuddyReqUnreadCnt(): number
|
|
||||||
|
|
||||||
getBuddyReq(): unknown
|
|
||||||
|
|
||||||
delBuddyReq(uid: number): void
|
|
||||||
|
|
||||||
clearBuddyReqUnreadCnt(): void
|
|
||||||
|
|
||||||
reqToAddFriends(uid: number, msg: string): void
|
|
||||||
|
|
||||||
setSpacePermission(uid: number, permission: number): void
|
|
||||||
|
|
||||||
approvalFriendRequest(arg: {
|
approvalFriendRequest(arg: {
|
||||||
friendUid: string
|
friendUid: string
|
||||||
reqTime: string
|
reqTime: string
|
||||||
accept: boolean
|
accept: boolean
|
||||||
}): Promise<void>
|
}): Promise<void>
|
||||||
|
|
||||||
delBuddy(uid: number): void
|
|
||||||
|
|
||||||
delBatchBuddy(uids: number[]): void
|
|
||||||
|
|
||||||
getSmartInfos(uid: number): unknown
|
|
||||||
|
|
||||||
setBuddyCategory(uid: number, category: number): void
|
|
||||||
|
|
||||||
setBatchBuddyCategory(uids: number[], category: number): void
|
|
||||||
|
|
||||||
addCategory(category: string): void
|
|
||||||
|
|
||||||
delCategory(category: string): void
|
|
||||||
|
|
||||||
renameCategory(oldCategory: string, newCategory: string): void
|
|
||||||
|
|
||||||
resortCategory(categorys: string[]): void
|
|
||||||
|
|
||||||
pullCategory(uid: number, category: string): void
|
|
||||||
|
|
||||||
setTop(uid: number, isTop: boolean): void
|
|
||||||
|
|
||||||
SetSpecialCare(uid: number, isSpecialCare: boolean): void
|
|
||||||
|
|
||||||
setMsgNotify(uid: number, isNotify: boolean): void
|
|
||||||
|
|
||||||
hasBuddyList(): boolean
|
|
||||||
|
|
||||||
setBlock(uid: number, isBlock: boolean): void
|
|
||||||
|
|
||||||
isBlocked(uid: number): boolean
|
|
||||||
|
|
||||||
modifyAddMeSetting(setting: unknown): void
|
|
||||||
|
|
||||||
getAddMeSetting(): unknown
|
|
||||||
|
|
||||||
getDoubtBuddyReq(): unknown
|
|
||||||
|
|
||||||
getDoubtBuddyUnreadNum(): number
|
|
||||||
|
|
||||||
approvalDoubtBuddyReq(uid: number, isAgree: boolean): void
|
|
||||||
|
|
||||||
delDoubtBuddyReq(uid: number): void
|
|
||||||
|
|
||||||
delAllDoubtBuddyReq(): void
|
|
||||||
|
|
||||||
reportDoubtBuddyReqUnread(): void
|
|
||||||
|
|
||||||
getBuddyRecommendContactArkJson(uid: string, phoneNumber: string): Promise<GeneralCallResult & { arkMsg: string }>
|
getBuddyRecommendContactArkJson(uid: string, phoneNumber: string): Promise<GeneralCallResult & { arkMsg: string }>
|
||||||
|
|
||||||
isNull(): boolean
|
|
||||||
}
|
}
|
||||||
|
@@ -1,111 +1,58 @@
|
|||||||
import {
|
import {
|
||||||
GroupExtParam,
|
|
||||||
GroupMember,
|
GroupMember,
|
||||||
GroupMemberRole,
|
GroupMemberRole,
|
||||||
GroupNotifyType,
|
GroupNotifyType,
|
||||||
GroupRequestOperateTypes,
|
GroupRequestOperateTypes,
|
||||||
} from '@/ntqqapi/types'
|
} from '@/ntqqapi/types'
|
||||||
import { GeneralCallResult } from './common'
|
import { GeneralCallResult } from './common'
|
||||||
import { Dict } from 'cosmokit'
|
|
||||||
|
|
||||||
export interface NodeIKernelGroupService {
|
export interface NodeIKernelGroupService {
|
||||||
getMemberCommonInfo(Req: {
|
getGroupHonorList(req: { groupCode: number[] }): Promise<{
|
||||||
groupCode: string,
|
errCode: number
|
||||||
startUin: string,
|
errMsg: string
|
||||||
identifyFlag: string,
|
groupMemberHonorList: {
|
||||||
uinList: string[],
|
honorList: {
|
||||||
memberCommonFilter: {
|
groupCode: string
|
||||||
memberUin: number,
|
id: number[]
|
||||||
uinFlag: number,
|
isGray: number
|
||||||
uinFlagExt: number,
|
}[]
|
||||||
uinMobileFlag: number,
|
cacheTs: number
|
||||||
shutUpTime: number,
|
honorInfos: unknown[]
|
||||||
privilege: number,
|
joinTime: number
|
||||||
},
|
}
|
||||||
memberNum: number,
|
}>
|
||||||
filterMethod: string,
|
|
||||||
onlineFlag: string,
|
|
||||||
realSpecialTitleFlag: number
|
|
||||||
}): Promise<unknown>
|
|
||||||
|
|
||||||
//26702
|
|
||||||
getGroupMemberLevelInfo(groupCode: string): Promise<unknown>
|
|
||||||
|
|
||||||
//26702
|
|
||||||
getGroupHonorList(groupCodes: Array<string>): unknown
|
|
||||||
|
|
||||||
getUinByUids(uins: string[]): Promise<{
|
getUinByUids(uins: string[]): Promise<{
|
||||||
errCode: number,
|
errCode: number
|
||||||
errMsg: string,
|
errMsg: string
|
||||||
uins: Map<string, string>
|
uins: Map<string, string>
|
||||||
}>
|
}>
|
||||||
|
|
||||||
getUidByUins(uins: string[]): Promise<{
|
getUidByUins(uins: string[]): Promise<{
|
||||||
errCode: number,
|
errCode: number
|
||||||
errMsg: string,
|
errMsg: string
|
||||||
uids: Map<string, string>
|
uids: Map<string, string>
|
||||||
}>
|
}>
|
||||||
|
|
||||||
//26702(其实更早 但是我不知道)
|
queryCachedEssenceMsg(req: { groupCode: string, msgRandom: number, msgSeq: number }): Promise<{
|
||||||
checkGroupMemberCache(arrayList: Array<string>): Promise<unknown>
|
items: {
|
||||||
|
groupCode: string
|
||||||
//26702(其实更早 但是我不知道)
|
msgSeq: number
|
||||||
getGroupLatestEssenceList(groupCode: string): Promise<unknown>
|
msgRandom: number
|
||||||
|
msgSenderUin: string
|
||||||
//26702(其实更早 但是我不知道)
|
msgSenderNick: string
|
||||||
shareDigest(Req: {
|
opType: number
|
||||||
appId: string,
|
opUin: string
|
||||||
appType: number,
|
opNick: string
|
||||||
msgStyle: number,
|
opTime: number
|
||||||
recvUin: string,
|
grayTipSeq: string
|
||||||
sendType: number,
|
}[]
|
||||||
clientInfo: {
|
|
||||||
platform: number
|
|
||||||
},
|
|
||||||
richMsg: {
|
|
||||||
usingArk: boolean,
|
|
||||||
title: string,
|
|
||||||
summary: string,
|
|
||||||
url: string,
|
|
||||||
pictureUrl: string,
|
|
||||||
brief: string
|
|
||||||
}
|
|
||||||
}): Promise<unknown>
|
|
||||||
|
|
||||||
//26702(其实更早 但是我不知道)
|
|
||||||
isEssenceMsg(Req: { groupCode: string, msgRandom: number, msgSeq: number }): Promise<unknown>
|
|
||||||
|
|
||||||
//26702(其实更早 但是我不知道)
|
|
||||||
queryCachedEssenceMsg(Req: { groupCode: string, msgRandom: number, msgSeq: number }): Promise<unknown>
|
|
||||||
|
|
||||||
//26702(其实更早 但是我不知道)
|
|
||||||
fetchGroupEssenceList(Req: { groupCode: string, pageStart: number, pageLimit: number }, Arg: unknown): Promise<unknown>
|
|
||||||
|
|
||||||
//26702
|
|
||||||
getAllMemberList(groupCode: string, forceFetch: boolean): Promise<{
|
|
||||||
errCode: number,
|
|
||||||
errMsg: string,
|
|
||||||
result: {
|
|
||||||
ids: Array<{
|
|
||||||
uid: string,
|
|
||||||
index: number//0
|
|
||||||
}>,
|
|
||||||
infos: Dict,
|
|
||||||
finish: true,
|
|
||||||
hasRobot: false
|
|
||||||
}
|
|
||||||
}>
|
}>
|
||||||
|
|
||||||
setHeader(uid: string, path: string): unknown
|
setHeader(uid: string, path: string): unknown
|
||||||
|
|
||||||
addKernelGroupListener(listener: unknown): number
|
|
||||||
|
|
||||||
removeKernelGroupListener(listenerId: unknown): void
|
|
||||||
|
|
||||||
createMemberListScene(groupCode: string, scene: string): string
|
createMemberListScene(groupCode: string, scene: string): string
|
||||||
|
|
||||||
destroyMemberListScene(sceneId: string): void
|
|
||||||
|
|
||||||
getNextMemberList(sceneId: string, a: undefined, num: number): Promise<{
|
getNextMemberList(sceneId: string, a: undefined, num: number): Promise<{
|
||||||
errCode: number
|
errCode: number
|
||||||
errMsg: string
|
errMsg: string
|
||||||
@@ -120,97 +67,33 @@ export interface NodeIKernelGroupService {
|
|||||||
}
|
}
|
||||||
}>
|
}>
|
||||||
|
|
||||||
getPrevMemberList(): unknown
|
|
||||||
|
|
||||||
monitorMemberList(): unknown
|
|
||||||
|
|
||||||
searchMember(sceneId: string, keywords: string[]): unknown
|
|
||||||
|
|
||||||
getMemberInfo(group_id: string, uids: string[], forceFetch: boolean): Promise<GeneralCallResult>
|
|
||||||
//getMemberInfo [ '56729xxxx', [ 'u_4Nj08cwW5Hxxxxx' ], true ]
|
|
||||||
|
|
||||||
kickMember(groupCode: string, memberUids: string[], refuseForever: boolean, kickReason: string): Promise<void>
|
kickMember(groupCode: string, memberUids: string[], refuseForever: boolean, kickReason: string): Promise<void>
|
||||||
|
|
||||||
modifyMemberRole(groupCode: string, uid: string, role: GroupMemberRole): void
|
modifyMemberRole(groupCode: string, uid: string, role: GroupMemberRole): void
|
||||||
|
|
||||||
modifyMemberCardName(groupCode: string, uid: string, cardName: string): void
|
modifyMemberCardName(groupCode: string, uid: string, cardName: string): void
|
||||||
|
|
||||||
getTransferableMemberInfo(groupCode: string): unknown//获取整个群的
|
|
||||||
|
|
||||||
transferGroup(uid: string): void
|
|
||||||
|
|
||||||
getGroupList(force: boolean): Promise<GeneralCallResult>
|
|
||||||
|
|
||||||
getGroupExtList(force: boolean): Promise<GeneralCallResult>
|
|
||||||
|
|
||||||
getGroupDetailInfo(groupCode: string): unknown
|
|
||||||
|
|
||||||
getMemberExtInfo(param: GroupExtParam): Promise<unknown>//req
|
|
||||||
|
|
||||||
getGroupAllInfo(): unknown
|
|
||||||
|
|
||||||
getDiscussExistInfo(): unknown
|
|
||||||
|
|
||||||
getGroupConfMember(): unknown
|
|
||||||
|
|
||||||
getGroupMsgMask(): unknown
|
|
||||||
|
|
||||||
getGroupPortrait(): void
|
|
||||||
|
|
||||||
modifyGroupName(groupCode: string, groupName: string, arg: false): void
|
modifyGroupName(groupCode: string, groupName: string, arg: false): void
|
||||||
|
|
||||||
modifyGroupRemark(groupCode: string, remark: string): void
|
|
||||||
|
|
||||||
modifyGroupDetailInfo(groupCode: string, arg: unknown): void
|
|
||||||
|
|
||||||
setGroupMsgMask(groupCode: string, arg: unknown): void
|
|
||||||
|
|
||||||
changeGroupShieldSettingTemp(groupCode: string, arg: unknown): void
|
|
||||||
|
|
||||||
inviteToGroup(arg: unknown): void
|
|
||||||
|
|
||||||
inviteMembersToGroup(args: unknown[]): void
|
|
||||||
|
|
||||||
inviteMembersToGroupWithMsg(args: unknown): void
|
|
||||||
|
|
||||||
createGroup(arg: unknown): void
|
|
||||||
|
|
||||||
createGroupWithMembers(arg: unknown): void
|
|
||||||
|
|
||||||
quitGroup(groupCode: string): void
|
quitGroup(groupCode: string): void
|
||||||
|
|
||||||
destroyGroup(groupCode: string): void
|
getSingleScreenNotifies(force: boolean, startSeq: string, num: number): Promise<GeneralCallResult>
|
||||||
//获取单屏群通知列表
|
|
||||||
getSingleScreenNotifies(force: boolean, start_seq: string, num: number): Promise<GeneralCallResult>
|
|
||||||
|
|
||||||
clearGroupNotifies(groupCode: string): void
|
|
||||||
|
|
||||||
getGroupNotifiesUnreadCount(unknown: boolean): Promise<GeneralCallResult>
|
|
||||||
|
|
||||||
clearGroupNotifiesUnreadCount(groupCode: string): void
|
|
||||||
|
|
||||||
operateSysNotify(
|
operateSysNotify(
|
||||||
doubt: boolean,
|
doubt: boolean,
|
||||||
operateMsg: {
|
operateMsg: {
|
||||||
operateType: GroupRequestOperateTypes, // 2 拒绝
|
operateType: GroupRequestOperateTypes // 2 拒绝
|
||||||
targetMsg: {
|
targetMsg: {
|
||||||
seq: string, // 通知序列号
|
seq: string // 通知序列号
|
||||||
type: GroupNotifyType,
|
type: GroupNotifyType
|
||||||
groupCode: string,
|
groupCode: string
|
||||||
postscript: string
|
postscript: string
|
||||||
}
|
}
|
||||||
}): Promise<void>
|
}
|
||||||
|
): Promise<void>
|
||||||
setTop(groupCode: string, isTop: boolean): void
|
|
||||||
|
|
||||||
getGroupBulletin(groupCode: string): unknown
|
|
||||||
|
|
||||||
deleteGroupBulletin(groupCode: string, seq: string): void
|
|
||||||
|
|
||||||
publishGroupBulletin(groupCode: string, pskey: string, data: unknown): Promise<GeneralCallResult>
|
publishGroupBulletin(groupCode: string, pskey: string, data: unknown): Promise<GeneralCallResult>
|
||||||
|
|
||||||
publishInstructionForNewcomers(groupCode: string, arg: unknown): void
|
|
||||||
|
|
||||||
uploadGroupBulletinPic(groupCode: string, pskey: string, imagePath: string): Promise<{
|
uploadGroupBulletinPic(groupCode: string, pskey: string, imagePath: string): Promise<{
|
||||||
errCode: number
|
errCode: number
|
||||||
errMsg: string
|
errMsg: string
|
||||||
@@ -221,45 +104,23 @@ export interface NodeIKernelGroupService {
|
|||||||
}
|
}
|
||||||
}>
|
}>
|
||||||
|
|
||||||
downloadGroupBulletinRichMedia(groupCode: string): unknown
|
getGroupRemainAtTimes(groupCode: string): Promise<GeneralCallResult & {
|
||||||
|
atInfo: {
|
||||||
getGroupBulletinList(groupCode: string): unknown
|
canAtAll: boolean
|
||||||
|
RemainAtAllCountForUin: number
|
||||||
getGroupStatisticInfo(groupCode: string): unknown
|
RemainAtAllCountForGroup: number
|
||||||
|
atTimesMsg: string
|
||||||
getGroupRemainAtTimes(groupCode: string): number
|
canNotAtAllMsg: ''
|
||||||
|
}
|
||||||
getJoinGroupNoVerifyFlag(groupCode: string): unknown
|
}>
|
||||||
|
|
||||||
getGroupArkInviteState(groupCode: string): unknown
|
|
||||||
|
|
||||||
reqToJoinGroup(groupCode: string, arg: unknown): void
|
|
||||||
|
|
||||||
setGroupShutUp(groupCode: string, shutUp: boolean): void
|
setGroupShutUp(groupCode: string, shutUp: boolean): void
|
||||||
|
|
||||||
getGroupShutUpMemberList(groupCode: string): unknown[]
|
|
||||||
|
|
||||||
setMemberShutUp(groupCode: string, memberTimes: { uid: string, timeStamp: number }[]): Promise<void>
|
setMemberShutUp(groupCode: string, memberTimes: { uid: string, timeStamp: number }[]): Promise<void>
|
||||||
|
|
||||||
getGroupRecommendContactArkJson(groupCode: string): Promise<GeneralCallResult & { arkJson: string }>
|
getGroupRecommendContactArkJson(groupCode: string): Promise<GeneralCallResult & { arkJson: string }>
|
||||||
|
|
||||||
getJoinGroupLink(groupCode: string): unknown
|
addGroupEssence(param: { groupCode: string, msgRandom: number, msgSeq: number }): Promise<unknown>
|
||||||
|
|
||||||
modifyGroupExtInfo(groupCode: string, arg: unknown): void
|
removeGroupEssence(param: { groupCode: string, msgRandom: number, msgSeq: number }): Promise<unknown>
|
||||||
|
|
||||||
//需要提前判断是否存在 高版本新增
|
|
||||||
addGroupEssence(param: {
|
|
||||||
groupCode: string
|
|
||||||
msgRandom: number,
|
|
||||||
msgSeq: number
|
|
||||||
}): Promise<unknown>
|
|
||||||
|
|
||||||
//需要提前判断是否存在 高版本新增
|
|
||||||
removeGroupEssence(param: {
|
|
||||||
groupCode: string
|
|
||||||
msgRandom: number,
|
|
||||||
msgSeq: number
|
|
||||||
}): Promise<unknown>
|
|
||||||
|
|
||||||
isNull(): boolean
|
|
||||||
}
|
}
|
||||||
|
@@ -1,475 +1,79 @@
|
|||||||
import { ElementType, MessageElement, Peer, RawMessage, SendMessageElement } from '@/ntqqapi/types'
|
import { ElementType, MessageElement, Peer, RawMessage, QueryMsgsParams, TmpChatInfoApi } from '@/ntqqapi/types'
|
||||||
import { GeneralCallResult } from './common'
|
import { GeneralCallResult } from './common'
|
||||||
import { Dict } from 'cosmokit'
|
|
||||||
|
|
||||||
export interface QueryMsgsParams {
|
|
||||||
chatInfo: Peer,
|
|
||||||
filterMsgType: [],
|
|
||||||
filterSendersUid: string[],
|
|
||||||
filterMsgFromTime: string,
|
|
||||||
filterMsgToTime: string,
|
|
||||||
pageLimit: number,
|
|
||||||
isReverseOrder: boolean,
|
|
||||||
isIncludeCurrent: boolean
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface TmpChatInfoApi {
|
|
||||||
errMsg: string
|
|
||||||
result: number
|
|
||||||
tmpChatInfo?: TmpChatInfo
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface TmpChatInfo {
|
|
||||||
chatType: number
|
|
||||||
fromNick: string
|
|
||||||
groupCode: string
|
|
||||||
peerUid: string
|
|
||||||
sessionType: number
|
|
||||||
sig: string
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface NodeIKernelMsgService {
|
export interface NodeIKernelMsgService {
|
||||||
generateMsgUniqueId(chatType: number, time: string): string
|
generateMsgUniqueId(chatType: number, time: string): string
|
||||||
|
|
||||||
addKernelMsgListener(nodeIKernelMsgListener: unknown): number
|
sendMsg(msgId: string, peer: Peer, msgElements: MessageElement[], map: Map<unknown, unknown>): Promise<GeneralCallResult>
|
||||||
|
|
||||||
sendMsg(msgId: string, peer: Peer, msgElements: SendMessageElement[], map: Map<unknown, unknown>): Promise<GeneralCallResult>
|
|
||||||
|
|
||||||
recallMsg(peer: Peer, msgIds: string[]): Promise<GeneralCallResult>
|
recallMsg(peer: Peer, msgIds: string[]): Promise<GeneralCallResult>
|
||||||
|
|
||||||
addKernelMsgImportToolListener(arg: Dict): unknown
|
|
||||||
|
|
||||||
removeKernelMsgListener(args: unknown): unknown
|
|
||||||
|
|
||||||
addKernelTempChatSigListener(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
removeKernelTempChatSigListener(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setAutoReplyTextList(AutoReplyText: Array<unknown>, i2: number): unknown
|
|
||||||
|
|
||||||
getAutoReplyTextList(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getOnLineDev(): void
|
|
||||||
|
|
||||||
kickOffLine(DevInfo: Dict): unknown
|
|
||||||
|
|
||||||
setStatus(args: { status: number, extStatus: number, batteryStatus: number }): Promise<GeneralCallResult>
|
setStatus(args: { status: number, extStatus: number, batteryStatus: number }): Promise<GeneralCallResult>
|
||||||
|
|
||||||
fetchStatusMgrInfo(): unknown
|
forwardMsg(msgIds: string[], srcContact: Peer, dstContacts: Peer[], commentElements: MessageElement[]): Promise<GeneralCallResult & {
|
||||||
|
detailErr: Map<unknown, unknown>
|
||||||
fetchStatusUnitedConfigInfo(): unknown
|
}>
|
||||||
|
|
||||||
getOnlineStatusSmallIconBasePath(): unknown
|
|
||||||
|
|
||||||
getOnlineStatusSmallIconFileNameByUrl(Url: string): unknown
|
|
||||||
|
|
||||||
downloadOnlineStatusSmallIconByUrl(arg0: number, arg1: string): unknown
|
|
||||||
|
|
||||||
getOnlineStatusBigIconBasePath(): unknown
|
|
||||||
|
|
||||||
downloadOnlineStatusBigIconByUrl(arg0: number, arg1: string): unknown
|
|
||||||
|
|
||||||
getOnlineStatusCommonPath(arg: string): unknown
|
|
||||||
|
|
||||||
getOnlineStatusCommonFileNameByUrl(Url: string): unknown
|
|
||||||
|
|
||||||
downloadOnlineStatusCommonByUrl(arg0: string, arg1: string): unknown
|
|
||||||
|
|
||||||
// this.tokenType = i2
|
|
||||||
// this.apnsToken = bArr
|
|
||||||
// this.voipToken = bArr2
|
|
||||||
// this.profileId = str
|
|
||||||
|
|
||||||
setToken(arg: Dict): unknown
|
|
||||||
|
|
||||||
switchForeGround(): unknown
|
|
||||||
|
|
||||||
switchBackGround(arg: Dict): unknown
|
|
||||||
|
|
||||||
//hex
|
|
||||||
setTokenForMqq(token: string): unknown
|
|
||||||
|
|
||||||
switchForeGroundForMqq(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
switchBackGroundForMqq(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getMsgSetting(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setMsgSetting(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
addSendMsg(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
cancelSendMsg(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
switchToOfflineSendMsg(peer: Peer, MsgId: string): unknown
|
|
||||||
|
|
||||||
reqToOfflineSendMsg(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
refuseReceiveOnlineFileMsg(peer: Peer, MsgId: string): unknown
|
|
||||||
|
|
||||||
resendMsg(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
reeditRecallMsg(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
//调用请检查除开commentElements其余参数不能为null
|
|
||||||
forwardMsg(msgIds: string[], srcContact: Peer, dstContacts: Peer[], commentElements: MessageElement[]): Promise<GeneralCallResult>
|
|
||||||
|
|
||||||
forwardMsgWithComment(...args: unknown[]): Promise<GeneralCallResult>
|
forwardMsgWithComment(...args: unknown[]): Promise<GeneralCallResult>
|
||||||
|
|
||||||
forwardSubMsgWithComment(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
forwardRichMsgInVist(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
forwardFile(...args: unknown[]): unknown
|
|
||||||
//Array<Msg>, Peer from, Peer to
|
|
||||||
multiForwardMsg(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
multiForwardMsgWithComment(...args: unknown[]): unknown
|
multiForwardMsgWithComment(...args: unknown[]): unknown
|
||||||
|
|
||||||
deleteRecallMsg(...args: unknown[]): unknown
|
getAioFirstViewLatestMsgs(peer: Peer, num: number): Promise<GeneralCallResult & { msgList: RawMessage[] }>
|
||||||
|
|
||||||
deleteRecallMsgForLocal(...args: unknown[]): unknown
|
getMsgsIncludeSelf(peer: Peer, msgId: string, count: number, queryOrder: boolean): Promise<GeneralCallResult & { msgList: RawMessage[] }>
|
||||||
|
|
||||||
addLocalGrayTipMsg(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
addLocalJsonGrayTipMsg(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
addLocalJsonGrayTipMsgExt(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
IsLocalJsonTipValid(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
addLocalAVRecordMsg(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
addLocalTofuRecordMsg(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
addLocalRecordMsg(Peer: Peer, msgId: string, ele: MessageElement, attr: Array<unknown> | number, front: boolean): Promise<unknown>
|
|
||||||
|
|
||||||
deleteMsg(Peer: Peer, msgIds: Array<string>): Promise<unknown>
|
|
||||||
|
|
||||||
updateElementExtBufForUI(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
updateMsgRecordExtPbBufForUI(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
startMsgSync(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
startGuildMsgSync(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
isGuildChannelSync(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getMsgUniqueId(UniqueId: string): string
|
|
||||||
|
|
||||||
isMsgMatched(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getOnlineFileMsgs(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getAllOnlineFileMsgs(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getLatestDbMsgs(peer: Peer, cnt: number): Promise<unknown>
|
|
||||||
|
|
||||||
getLastMessageList(peer: Peer[]): Promise<unknown>
|
|
||||||
|
|
||||||
getAioFirstViewLatestMsgs(peer: Peer, num: number): Promise<GeneralCallResult & {
|
|
||||||
msgList: RawMessage[]
|
|
||||||
}>
|
|
||||||
|
|
||||||
getMsgs(peer: Peer, msgId: string, count: unknown, queryOrder: boolean): Promise<unknown>
|
|
||||||
|
|
||||||
getMsgsIncludeSelf(peer: Peer, msgId: string, count: number, queryOrder: boolean): Promise<GeneralCallResult & {
|
|
||||||
msgList: RawMessage[]
|
|
||||||
}>
|
|
||||||
|
|
||||||
// this.$peer = contact
|
|
||||||
// this.$msgTime = j2
|
|
||||||
// this.$clientSeq = j3
|
|
||||||
// this.$cnt = i2
|
|
||||||
|
|
||||||
getMsgsWithMsgTimeAndClientSeqForC2C(...args: unknown[]): Promise<GeneralCallResult & { msgList: RawMessage[] }>
|
|
||||||
|
|
||||||
getMsgsWithStatus(params: {
|
|
||||||
peer: Peer
|
|
||||||
msgId: string
|
|
||||||
msgTime: unknown
|
|
||||||
cnt: unknown
|
|
||||||
queryOrder: boolean
|
|
||||||
isIncludeSelf: boolean
|
|
||||||
appid: unknown
|
|
||||||
}): Promise<GeneralCallResult & { msgList: RawMessage[] }>
|
|
||||||
|
|
||||||
getMsgsBySeqRange(peer: Peer, startSeq: string, endSeq: string): Promise<GeneralCallResult & { msgList: RawMessage[] }>
|
|
||||||
|
|
||||||
getMsgsBySeqAndCount(peer: Peer, seq: string, count: number, desc: boolean, unknownArg: boolean): Promise<GeneralCallResult & { msgList: RawMessage[] }>
|
getMsgsBySeqAndCount(peer: Peer, seq: string, count: number, desc: boolean, unknownArg: boolean): Promise<GeneralCallResult & { msgList: RawMessage[] }>
|
||||||
|
|
||||||
getMsgsByMsgId(peer: Peer, ids: string[]): Promise<GeneralCallResult & { msgList: RawMessage[] }>
|
getMsgsByMsgId(peer: Peer, ids: string[]): Promise<GeneralCallResult & { msgList: RawMessage[] }>
|
||||||
|
|
||||||
getRecallMsgsByMsgId(peer: Peer, MsgId: string[]): Promise<unknown>
|
|
||||||
|
|
||||||
getMsgsBySeqList(peer: Peer, seqList: string[]): Promise<GeneralCallResult & { msgList: RawMessage[] }>
|
getMsgsBySeqList(peer: Peer, seqList: string[]): Promise<GeneralCallResult & { msgList: RawMessage[] }>
|
||||||
|
|
||||||
getSingleMsg(Peer: Peer, msgSeq: string): Promise<GeneralCallResult & { msgList: RawMessage[] }>
|
getSingleMsg(peer: Peer, msgSeq: string): Promise<GeneralCallResult & { msgList: RawMessage[] }>
|
||||||
|
|
||||||
getSourceOfReplyMsg(peer: Peer, MsgId: string, SourceSeq: string): unknown
|
|
||||||
|
|
||||||
getSourceOfReplyMsgV2(peer: Peer, RootMsgId: string, ReplyMsgId: string): unknown
|
|
||||||
|
|
||||||
getMsgByClientSeqAndTime(peer: Peer, clientSeq: string, time: string): unknown
|
|
||||||
|
|
||||||
getSourceOfReplyMsgByClientSeqAndTime(peer: Peer, clientSeq: string, time: string): unknown
|
|
||||||
|
|
||||||
getMsgsByTypeFilter(peer: Peer, msgId: string, cnt: unknown, queryOrder: boolean, typeFilter: { type: number, subtype: Array<number> }): unknown
|
|
||||||
|
|
||||||
getMsgsByTypeFilters(peer: Peer, msgId: string, cnt: unknown, queryOrder: boolean, typeFilters: Array<{ type: number, subtype: Array<number> }>): unknown
|
|
||||||
|
|
||||||
getMsgWithAbstractByFilterParam(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
queryMsgsWithFilter(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
// this.chatType = i2
|
|
||||||
// this.peerUid = str
|
|
||||||
// this.chatInfo = new ChatInfo()
|
|
||||||
// this.filterMsgType = new ArrayList<>()
|
|
||||||
// this.filterSendersUid = new ArrayList<>()
|
|
||||||
// this.chatInfo = chatInfo
|
|
||||||
// this.filterMsgType = arrayList
|
|
||||||
// this.filterSendersUid = arrayList2
|
|
||||||
// this.filterMsgFromTime = j2
|
|
||||||
// this.filterMsgToTime = j3
|
|
||||||
// this.pageLimit = i2
|
|
||||||
// this.isReverseOrder = z
|
|
||||||
// this.isIncludeCurrent = z2
|
|
||||||
//queryMsgsWithFilterEx(0L, 0L, 0L, new QueryMsgsParams(new ChatInfo(2, str), new ArrayList(), new ArrayList(), 0L, 0L, 250, false, true))
|
|
||||||
queryMsgsWithFilterEx(msgId: string, msgTime: string, megSeq: string, param: QueryMsgsParams): Promise<GeneralCallResult & {
|
queryMsgsWithFilterEx(msgId: string, msgTime: string, megSeq: string, param: QueryMsgsParams): Promise<GeneralCallResult & {
|
||||||
msgList: RawMessage[]
|
msgList: RawMessage[]
|
||||||
}>
|
}>
|
||||||
//queryMsgsWithFilterEx(this.$msgId, this.$msgTime, this.$msgSeq, this.$param)
|
|
||||||
queryFileMsgsDesktop(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setMsgRichInfoFlag(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
queryPicOrVideoMsgs(msgId: string, msgTime: string, megSeq: string, param: QueryMsgsParams): Promise<unknown>
|
|
||||||
|
|
||||||
queryPicOrVideoMsgsDesktop(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
queryEmoticonMsgs(msgId: string, msgTime: string, msgSeq: string, Params: QueryMsgsParams): Promise<unknown>
|
|
||||||
|
|
||||||
queryTroopEmoticonMsgs(msgId: string, msgTime: string, msgSeq: string, Params: QueryMsgsParams): Promise<unknown>
|
|
||||||
|
|
||||||
queryMsgsAndAbstractsWithFilter(msgId: string, msgTime: string, megSeq: string, param: QueryMsgsParams): unknown
|
|
||||||
|
|
||||||
setFocusOnGuild(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setFocusSession(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
enableFilterUnreadInfoNotify(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
enableFilterMsgAbstractNotify(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
onScenesChangeForSilenceMode(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getContactUnreadCnt(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getUnreadCntInfo(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getGuildUnreadCntInfo(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getGuildUnreadCntTabInfo(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getAllGuildUnreadCntInfo(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getAllJoinGuildCnt(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getAllDirectSessionUnreadCntInfo(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getCategoryUnreadCntInfo(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getGuildFeedsUnreadCntInfo(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setUnVisibleChannelCntInfo(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setUnVisibleChannelTypeCntInfo(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setVisibleGuildCntInfo(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setMsgRead(peer: Peer): Promise<GeneralCallResult>
|
setMsgRead(peer: Peer): Promise<GeneralCallResult>
|
||||||
|
|
||||||
setAllC2CAndGroupMsgRead(): Promise<unknown>
|
|
||||||
|
|
||||||
setGuildMsgRead(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setAllGuildMsgRead(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setMsgReadAndReport(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setSpecificMsgReadAndReport(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setLocalMsgRead(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setGroupGuildMsgRead(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getGuildGroupTransData(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setGroupGuildBubbleRead(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getGuildGroupBubble(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
fetchGroupGuildUnread(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setGroupGuildFlag(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setGuildUDCFlag(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setGuildTabUserFlag(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setBuildMode(flag: number/*0 1 3*/): unknown
|
|
||||||
|
|
||||||
setConfigurationServiceData(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setMarkUnreadFlag(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getChannelEventFlow(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getMsgEventFlow(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getRichMediaFilePathForMobileQQSend(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getRichMediaFilePathForGuild(arg: {
|
getRichMediaFilePathForGuild(arg: {
|
||||||
md5HexStr: string,
|
md5HexStr: string
|
||||||
fileName: string,
|
fileName: string
|
||||||
elementType: ElementType,
|
elementType: ElementType
|
||||||
elementSubType: number,
|
elementSubType: number
|
||||||
thumbSize: 0,
|
thumbSize: 0
|
||||||
needCreate: true,
|
needCreate: true
|
||||||
downloadType: 1,
|
downloadType: 1
|
||||||
file_uuid: ''
|
file_uuid: ''
|
||||||
}): string
|
}): string
|
||||||
|
|
||||||
assembleMobileQQRichMediaFilePath(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getFileThumbSavePathForSend(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getFileThumbSavePath(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
//猜测居多
|
|
||||||
translatePtt2Text(MsgId: string, Peer: Dict, MsgElement: Dict): unknown
|
|
||||||
|
|
||||||
setPttPlayedState(...args: unknown[]): unknown
|
|
||||||
// NodeIQQNTWrapperSession fetchFavEmojiList [
|
|
||||||
// "",
|
|
||||||
// 48,
|
|
||||||
// true,
|
|
||||||
// true
|
|
||||||
// ]
|
|
||||||
fetchFavEmojiList(str: string, num: number, uk1: boolean, uk2: boolean): Promise<GeneralCallResult & {
|
fetchFavEmojiList(str: string, num: number, uk1: boolean, uk2: boolean): Promise<GeneralCallResult & {
|
||||||
emojiInfoList: Array<{
|
emojiInfoList: {
|
||||||
uin: string,
|
uin: string
|
||||||
emoId: number,
|
emoId: number
|
||||||
emoPath: string,
|
emoPath: string
|
||||||
isExist: boolean,
|
isExist: boolean
|
||||||
resId: string,
|
resId: string
|
||||||
url: string,
|
url: string
|
||||||
md5: string,
|
md5: string
|
||||||
emoOriginalPath: string,
|
emoOriginalPath: string
|
||||||
thumbPath: string,
|
thumbPath: string
|
||||||
RomaingType: string,
|
RomaingType: string
|
||||||
isAPNG: false,
|
isAPNG: false
|
||||||
isMarkFace: false,
|
isMarkFace: false
|
||||||
eId: string,
|
eId: string
|
||||||
epId: string,
|
epId: string
|
||||||
ocrWord: string,
|
ocrWord: string
|
||||||
modifyWord: string,
|
modifyWord: string
|
||||||
exposeNum: number,
|
exposeNum: number
|
||||||
clickNum: number,
|
clickNum: number
|
||||||
desc: string
|
desc: string
|
||||||
}>
|
}[]
|
||||||
}>
|
}>
|
||||||
|
|
||||||
addFavEmoji(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
fetchMarketEmoticonList(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
fetchMarketEmoticonShowImage(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
fetchMarketEmoticonAioImage(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
fetchMarketEmotionJsonFile(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getMarketEmoticonPath(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getMarketEmoticonPathBySync(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
fetchMarketEmoticonFaceImages(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
fetchMarketEmoticonAuthDetail(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getFavMarketEmoticonInfo(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
addRecentUsedFace(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getRecentUsedFaceList(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getMarketEmoticonEncryptKeys(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
downloadEmojiPic(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
deleteFavEmoji(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
modifyFavEmojiDesc(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
queryFavEmojiByDesc(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getHotPicInfoListSearchString(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getHotPicSearchResult(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getHotPicHotWords(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getHotPicJumpInfo(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getEmojiResourcePath(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
JoinDragonGroupEmoji(JoinDragonGroupEmojiReq: unknown): unknown
|
|
||||||
|
|
||||||
getMsgAbstracts(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getMsgAbstract(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getMsgAbstractList(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getMsgAbstractListBySeqRange(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
refreshMsgAbstracts(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
refreshMsgAbstractsByGuildIds(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getRichMediaElement(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
cancelGetRichMediaElement(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
refuseGetRichMediaElement(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
switchToOfflineGetRichMediaElement(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
downloadRichMedia(...args: unknown[]): unknown
|
downloadRichMedia(...args: unknown[]): unknown
|
||||||
|
|
||||||
getFirstUnreadMsgSeq(args: {
|
setMsgEmojiLikes(...args: unknown[]): Promise<GeneralCallResult>
|
||||||
peerUid: string
|
|
||||||
guildId: string
|
|
||||||
}): unknown
|
|
||||||
|
|
||||||
getFirstUnreadCommonMsg(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getFirstUnreadAtmeMsg(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getFirstUnreadAtallMsg(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getNavigateInfo(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getChannelFreqLimitInfo(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getRecentUseEmojiList(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getRecentEmojiList(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setMsgEmojiLikes(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getMsgEmojiLikesList(peer: Peer, msgSeq: string, emojiId: string, emojiType: string, cookie: string, bForward: boolean, number: number): Promise<{
|
getMsgEmojiLikesList(peer: Peer, msgSeq: string, emojiId: string, emojiType: string, cookie: string, bForward: boolean, number: number): Promise<{
|
||||||
result: number
|
result: number
|
||||||
@@ -484,235 +88,7 @@ export interface NodeIKernelMsgService {
|
|||||||
isFirstPage: boolean
|
isFirstPage: boolean
|
||||||
}>
|
}>
|
||||||
|
|
||||||
setMsgEmojiLikesForRole(...args: unknown[]): unknown
|
getMultiMsg(...args: unknown[]): Promise<GeneralCallResult & { msgList: RawMessage[] }>
|
||||||
|
|
||||||
clickInlineKeyboardButton(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setCurOnScreenMsg(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setCurOnScreenMsgForMsgEvent(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getMiscData(key: string): unknown
|
|
||||||
|
|
||||||
setMiscData(key: string, value: string): unknown
|
|
||||||
|
|
||||||
getBookmarkData(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setBookmarkData(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
sendShowInputStatusReq(ChatType: number, EventType: number, toUid: string): Promise<unknown>
|
|
||||||
|
|
||||||
queryCalendar(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
queryFirstMsgSeq(peer: Peer, ...args: unknown[]): unknown
|
|
||||||
|
|
||||||
queryRoamCalendar(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
queryFirstRoamMsg(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
fetchLongMsg(peer: Peer, msgId: string): unknown
|
|
||||||
|
|
||||||
fetchLongMsgWithCb(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setIsStopKernelFetchLongMsg(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
insertGameResultAsMsgToDb(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getMultiMsg(...args: unknown[]): Promise<GeneralCallResult & {
|
|
||||||
msgList: RawMessage[]
|
|
||||||
}>
|
|
||||||
|
|
||||||
setDraft(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getDraft(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
deleteDraft(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getRecentHiddenSesionList(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setRecentHiddenSession(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
delRecentHiddenSession(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getCurHiddenSession(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setCurHiddenSession(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setReplyDraft(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getReplyDraft(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
deleteReplyDraft(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getFirstUnreadAtMsg(peer: Peer): unknown
|
|
||||||
|
|
||||||
clearMsgRecords(...args: unknown[]): unknown//设置已读后调用我觉得比较好 清理记录 现在别了
|
|
||||||
|
|
||||||
IsExistOldDb(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
canImportOldDbMsg(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setPowerStatus(z: boolean): unknown
|
|
||||||
|
|
||||||
canProcessDataMigration(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
importOldDbMsg(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
stopImportOldDbMsgAndroid(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
isMqqDataImportFinished(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getMqqDataImportTableNames(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getCurChatImportStatusByUin(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getDataImportUserLevel(): unknown
|
|
||||||
|
|
||||||
getMsgQRCode(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getGuestMsgAbstracts(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getGuestMsgByRange(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getGuestMsgAbstractByRange(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
registerSysMsgNotification(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
unregisterSysMsgNotification(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
enterOrExitAio(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
// this.peerUid = ""
|
|
||||||
// this.peerNickname = ""
|
|
||||||
// this.fromGroupCode = ""
|
|
||||||
// this.sig = new byte[0]
|
|
||||||
// this.selfUid = ""
|
|
||||||
// this.selfPhone = ""
|
|
||||||
// this.chatType = i2
|
|
||||||
// this.peerUid = str
|
|
||||||
// this.peerNickname = str2
|
|
||||||
// this.fromGroupCode = str3
|
|
||||||
// this.sig = bArr
|
|
||||||
// this.selfUid = str4
|
|
||||||
// this.selfPhone = str5
|
|
||||||
// this.gameSession = tempChatGameSession
|
|
||||||
prepareTempChat(args: unknown): unknown//主动临时消息 不做
|
|
||||||
|
|
||||||
sendSsoCmdReqByContend(cmd: string, param: string): Promise<unknown>
|
|
||||||
|
|
||||||
getTempChatInfo(ChatType: number, Uid: string): Promise<TmpChatInfoApi>
|
|
||||||
|
|
||||||
setContactLocalTop(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
switchAnonymousChat(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
renameAnonyChatNick(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getAnonymousInfo(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
updateAnonymousInfo(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
sendSummonMsg(peer: Peer, MsgElement: unknown, MsgAttributeInfo: unknown): Promise<unknown>//频道的东西
|
|
||||||
|
|
||||||
outputGuildUnreadInfo(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
checkMsgWithUrl(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
checkTabListStatus(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getABatchOfContactMsgBoxInfo(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
insertMsgToMsgBox(peer: Peer, msgId: string, arg: 2006): unknown
|
|
||||||
|
|
||||||
isHitEmojiKeyword(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getKeyWordRelatedEmoji(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
recordEmoji(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
fetchGetHitEmotionsByWord(args: Dict): Promise<unknown>//表情推荐?
|
|
||||||
|
|
||||||
deleteAllRoamMsgs(...args: unknown[]): unknown//漫游消息?
|
|
||||||
|
|
||||||
packRedBag(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
grabRedBag(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
pullDetail(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
selectPasswordRedBag(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
pullRedBagPasswordList(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
requestTianshuAdv(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
tianshuReport(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
tianshuMultiReport(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
GetMsgSubType(a0: number, a1: number): unknown
|
|
||||||
|
|
||||||
setIKernelPublicAccountAdapter(...args: unknown[]): unknown
|
|
||||||
//tempChatGameSession有关
|
|
||||||
createUidFromTinyId(fromTinyId: string, toTinyId: string): unknown
|
|
||||||
|
|
||||||
dataMigrationGetDataAvaiableContactList(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
dataMigrationGetMsgList(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
dataMigrationStopOperation(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
dataMigrationImportMsgPbRecord(DataMigrationMsgInfo: Array<{
|
|
||||||
extensionData: string //"Hex"
|
|
||||||
extraData: string //""
|
|
||||||
chatType: number
|
|
||||||
chatUin: string
|
|
||||||
msgType: number
|
|
||||||
msgTime: string
|
|
||||||
msgSeq: string
|
|
||||||
msgRandom: string
|
|
||||||
}>, DataMigrationResourceInfo: {
|
|
||||||
extraData: string
|
|
||||||
filePath: string
|
|
||||||
fileSize: string
|
|
||||||
msgRandom: string
|
|
||||||
msgSeq: string
|
|
||||||
msgSubType: number
|
|
||||||
msgType: number
|
|
||||||
}): unknown
|
|
||||||
|
|
||||||
dataMigrationGetResourceLocalDestinyPath(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
dataMigrationSetIOSPathPrefix(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getServiceAssistantSwitch(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setServiceAssistantSwitch(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setSubscribeFolderUsingSmallRedPoint(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
clearGuildNoticeRedPoint(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
clearFeedNoticeRedPoint(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
clearFeedSquareRead(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
IsC2CStyleChatType(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
IsTempChatType(uin: number): unknown//猜的
|
|
||||||
|
|
||||||
getGuildInteractiveNotification(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getGuildNotificationAbstract(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
setFocusOnBase(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
queryArkInfo(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
queryUserSecQuality(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getGuildMsgAbFlag(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getGroupMsgStorageTime(): unknown//这是嘛啊
|
|
||||||
|
|
||||||
|
getTempChatInfo(chatType: number, uid: string): Promise<TmpChatInfoApi>
|
||||||
}
|
}
|
||||||
|
@@ -3,10 +3,6 @@ import { GeneralCallResult } from './common'
|
|||||||
import { Dict } from 'cosmokit'
|
import { Dict } from 'cosmokit'
|
||||||
|
|
||||||
export interface NodeIKernelProfileLikeService {
|
export interface NodeIKernelProfileLikeService {
|
||||||
addKernelProfileLikeListener(listener: NodeIKernelProfileLikeService): void
|
|
||||||
|
|
||||||
removeKernelProfileLikeListener(listener: unknown): void
|
|
||||||
|
|
||||||
setBuddyProfileLike(...args: unknown[]): { result: number, errMsg: string, succCounts: number }
|
setBuddyProfileLike(...args: unknown[]): { result: number, errMsg: string, succCounts: number }
|
||||||
|
|
||||||
getBuddyProfileLike(req: BuddyProfileLikeReq): Promise<GeneralCallResult & {
|
getBuddyProfileLike(req: BuddyProfileLikeReq): Promise<GeneralCallResult & {
|
||||||
@@ -26,8 +22,4 @@ export interface NodeIKernelProfileLikeService {
|
|||||||
start: number
|
start: number
|
||||||
}
|
}
|
||||||
}>
|
}>
|
||||||
|
}
|
||||||
getProfileLikeScidResourceInfo(...args: unknown[]): void
|
|
||||||
|
|
||||||
isNull(): boolean
|
|
||||||
}
|
|
||||||
|
@@ -1,106 +1,18 @@
|
|||||||
import { AnyCnameRecord } from 'node:dns'
|
|
||||||
import { SimpleInfo } from '../types'
|
import { SimpleInfo } from '../types'
|
||||||
import { GeneralCallResult } from './common'
|
import { GeneralCallResult } from './common'
|
||||||
|
|
||||||
export enum UserDetailSource {
|
|
||||||
KDB,
|
|
||||||
KSERVER
|
|
||||||
}
|
|
||||||
|
|
||||||
export enum ProfileBizType {
|
|
||||||
KALL,
|
|
||||||
KBASEEXTEND,
|
|
||||||
KVAS,
|
|
||||||
KQZONE,
|
|
||||||
KOTHER
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface NodeIKernelProfileService {
|
export interface NodeIKernelProfileService {
|
||||||
getUidByUin(callfrom: string, uin: Array<string>): Promise<Map<string, string>>//uin->uid
|
getUidByUin(callfrom: string, uin: Array<string>): Promise<Map<string, string>>
|
||||||
|
|
||||||
getUinByUid(callfrom: string, uid: Array<string>): Promise<Map<string, string>>
|
getUinByUid(callfrom: string, uid: Array<string>): Promise<Map<string, string>>
|
||||||
|
|
||||||
// {
|
|
||||||
// coreInfo: CoreInfo,
|
|
||||||
// baseInfo: BaseInfo,
|
|
||||||
// status: null,
|
|
||||||
// vasInfo: null,
|
|
||||||
// relationFlags: null,
|
|
||||||
// otherFlags: null,
|
|
||||||
// intimate: null
|
|
||||||
// }
|
|
||||||
getCoreAndBaseInfo(callfrom: string, uids: string[]): Promise<Map<string, SimpleInfo>>
|
getCoreAndBaseInfo(callfrom: string, uids: string[]): Promise<Map<string, SimpleInfo>>
|
||||||
|
|
||||||
fetchUserDetailInfo(trace: string, uids: string[], arg2: number, arg3: number[]): Promise<unknown>
|
fetchUserDetailInfo(trace: string, uids: string[], arg2: number, arg3: number[]): Promise<unknown>
|
||||||
|
|
||||||
addKernelProfileListener(listener: unknown): number
|
|
||||||
|
|
||||||
removeKernelProfileListener(listenerId: number): void
|
|
||||||
|
|
||||||
prepareRegionConfig(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getLocalStrangerRemark(): Promise<AnyCnameRecord>
|
|
||||||
|
|
||||||
enumCountryOptions(): Array<string>
|
|
||||||
|
|
||||||
enumProvinceOptions(Country: string): Array<string>
|
|
||||||
|
|
||||||
enumCityOptions(Country: string, Province: string): unknown
|
|
||||||
|
|
||||||
enumAreaOptions(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
//SimpleInfo
|
|
||||||
// this.uid = ""
|
|
||||||
// this.uid = str
|
|
||||||
// this.uin = j2
|
|
||||||
// this.isBuddy = z
|
|
||||||
// this.coreInfo = coreInfo
|
|
||||||
// this.baseInfo = baseInfo
|
|
||||||
// this.status = statusInfo
|
|
||||||
// this.vasInfo = vasInfo
|
|
||||||
// this.relationFlags = relationFlag
|
|
||||||
// this.otherFlags = otherFlag
|
|
||||||
// this.intimate = intimate
|
|
||||||
|
|
||||||
modifySelfProfile(...args: unknown[]): Promise<unknown>
|
|
||||||
|
|
||||||
modifyDesktopMiniProfile(param: unknown): Promise<GeneralCallResult>
|
|
||||||
|
|
||||||
setNickName(NickName: string): Promise<unknown>
|
|
||||||
|
|
||||||
setLongNick(longNick: string): Promise<unknown>
|
|
||||||
|
|
||||||
setBirthday(...args: unknown[]): Promise<unknown>
|
|
||||||
|
|
||||||
setGander(...args: unknown[]): Promise<unknown>
|
|
||||||
|
|
||||||
setHeader(arg: string): Promise<GeneralCallResult>
|
setHeader(arg: string): Promise<GeneralCallResult>
|
||||||
|
|
||||||
setRecommendImgFlag(...args: unknown[]): Promise<unknown>
|
getUserDetailInfoWithBizInfo(uid: string, biz: unknown[]): Promise<GeneralCallResult>
|
||||||
|
|
||||||
getUserSimpleInfo(force: boolean, uids: string[],): Promise<unknown>
|
|
||||||
|
|
||||||
getUserDetailInfo(uid: string): Promise<unknown>
|
|
||||||
|
|
||||||
getUserDetailInfoWithBizInfo(uid: string, Biz: unknown[]): Promise<GeneralCallResult>
|
|
||||||
|
|
||||||
getUserDetailInfoByUin(uin: string): Promise<unknown>
|
getUserDetailInfoByUin(uin: string): Promise<unknown>
|
||||||
|
}
|
||||||
getZplanAvatarInfos(args: string[]): Promise<unknown>
|
|
||||||
|
|
||||||
getStatus(uid: string): Promise<unknown>
|
|
||||||
|
|
||||||
startStatusPolling(isForceReset: boolean): Promise<unknown>
|
|
||||||
|
|
||||||
getSelfStatus(): Promise<unknown>
|
|
||||||
|
|
||||||
setdisableEmojiShortCuts(...args: unknown[]): unknown
|
|
||||||
|
|
||||||
getProfileQzonePicInfo(uid: string, type: number, force: boolean): Promise<unknown>
|
|
||||||
|
|
||||||
//profileService.getCoreInfo("UserRemarkServiceImpl::getStrangerRemarkByUid", arrayList)
|
|
||||||
getCoreInfo(name: string, arg: unknown[]): unknown
|
|
||||||
|
|
||||||
//m429253e12.getOtherFlag("FriendListInfoCache_getKernelDataAndPutCache", new ArrayList<>())
|
|
||||||
isNull(): boolean
|
|
||||||
}
|
|
||||||
|
@@ -1,191 +1,23 @@
|
|||||||
import { GetFileListParam, MessageElement, Peer } from '../types'
|
import { GetFileListParam, Peer } from '../types'
|
||||||
import { GeneralCallResult } from './common'
|
import { GeneralCallResult } from './common'
|
||||||
|
|
||||||
export enum UrlFileDownloadType {
|
|
||||||
KUNKNOWN,
|
|
||||||
KURLFILEDOWNLOADPRIVILEGEICON,
|
|
||||||
KURLFILEDOWNLOADPHOTOWALL,
|
|
||||||
KURLFILEDOWNLOADQZONE,
|
|
||||||
KURLFILEDOWNLOADCOMMON,
|
|
||||||
KURLFILEDOWNLOADINSTALLAPP
|
|
||||||
}
|
|
||||||
|
|
||||||
export enum RMBizTypeEnum {
|
|
||||||
KUNKNOWN,
|
|
||||||
KC2CFILE,
|
|
||||||
KGROUPFILE,
|
|
||||||
KC2CPIC,
|
|
||||||
KGROUPPIC,
|
|
||||||
KDISCPIC,
|
|
||||||
KC2CVIDEO,
|
|
||||||
KGROUPVIDEO,
|
|
||||||
KC2CPTT,
|
|
||||||
KGROUPPTT,
|
|
||||||
KFEEDCOMMENTPIC,
|
|
||||||
KGUILDFILE,
|
|
||||||
KGUILDPIC,
|
|
||||||
KGUILDPTT,
|
|
||||||
KGUILDVIDEO
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface CommonFileInfo {
|
|
||||||
bizType: number
|
|
||||||
chatType: number
|
|
||||||
elemId: string
|
|
||||||
favId: string
|
|
||||||
fileModelId: string
|
|
||||||
fileName: string
|
|
||||||
fileSize: string
|
|
||||||
md5: string
|
|
||||||
md510m: string
|
|
||||||
msgId: string
|
|
||||||
msgTime: string
|
|
||||||
parent: string
|
|
||||||
peerUid: string
|
|
||||||
picThumbPath: Array<string>
|
|
||||||
sha: string
|
|
||||||
sha3: string
|
|
||||||
subId: string
|
|
||||||
uuid: string
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface NodeIKernelRichMediaService {
|
export interface NodeIKernelRichMediaService {
|
||||||
//getVideoPlayUrl(peer, msgId, elemId, videoCodecFormat, VideoRequestWay.KHAND, cb)
|
|
||||||
// public enum VideoCodecFormatType {
|
|
||||||
// KCODECFORMATH264,
|
|
||||||
// KCODECFORMATH265,
|
|
||||||
// KCODECFORMATH266,
|
|
||||||
// KCODECFORMATAV1
|
|
||||||
// }
|
|
||||||
// public enum VideoRequestWay {
|
|
||||||
// KUNKNOW,
|
|
||||||
// KHAND,
|
|
||||||
// KAUTO
|
|
||||||
// }
|
|
||||||
getVideoPlayUrl(peer: Peer, msgId: string, elemId: string, videoCodecFormat: number, VideoRequestWay: number): Promise<unknown>
|
|
||||||
|
|
||||||
//exParams (RMReqExParams)
|
|
||||||
// this.downSourceType = i2
|
|
||||||
// this.triggerType = i3
|
|
||||||
//peer, msgId, elemId, videoCodecFormat, exParams
|
|
||||||
// 1 0 频道在用
|
|
||||||
// 1 1
|
|
||||||
// 0 2
|
|
||||||
|
|
||||||
// public static final int KCOMMONREDENVELOPEMSGTYPEINMSGBOX = 1007
|
|
||||||
// public static final int KDOWNSOURCETYPEAIOINNER = 1
|
|
||||||
// public static final int KDOWNSOURCETYPEBIGSCREEN = 2
|
|
||||||
// public static final int KDOWNSOURCETYPEHISTORY = 3
|
|
||||||
// public static final int KDOWNSOURCETYPEUNKNOWN = 0
|
|
||||||
|
|
||||||
// public static final int KTRIGGERTYPEAUTO = 1
|
|
||||||
// public static final int KTRIGGERTYPEMANUAL = 0
|
|
||||||
|
|
||||||
getVideoPlayUrlV2(peer: Peer, msgId: string, elemId: string, videoCodecFormat: number, exParams: { downSourceType: number, triggerType: number }): Promise<GeneralCallResult & {
|
getVideoPlayUrlV2(peer: Peer, msgId: string, elemId: string, videoCodecFormat: number, exParams: { downSourceType: number, triggerType: number }): Promise<GeneralCallResult & {
|
||||||
urlResult: {
|
urlResult: {
|
||||||
v4IpUrl: [],
|
v4IpUrl: []
|
||||||
v6IpUrl: [],
|
v6IpUrl: []
|
||||||
domainUrl: Array<{
|
domainUrl: {
|
||||||
url: string,
|
url: string
|
||||||
isHttps: boolean,
|
isHttps: boolean
|
||||||
httpsDomain: string
|
httpsDomain: string
|
||||||
}>,
|
}[]
|
||||||
videoCodecFormat: number
|
videoCodecFormat: number
|
||||||
}
|
}
|
||||||
}>
|
}>
|
||||||
|
|
||||||
getRichMediaFileDir(elementType: number, downType: number, isTemp: boolean): unknown
|
deleteGroupFolder(groupCode: string, folderId: string): Promise<GeneralCallResult & { groupFileCommonResult: { retCode: number, retMsg: string, clientWording: string } }>
|
||||||
|
|
||||||
// this.senderUid = ""
|
createGroupFolder(groupCode: string, folderName: string): Promise<GeneralCallResult & { resultWithGroupItem: { result: unknown, groupItem: unknown[] } }>
|
||||||
// this.peerUid = ""
|
|
||||||
// this.guildId = ""
|
|
||||||
// this.elem = new MsgElement()
|
|
||||||
// this.downloadType = i2
|
|
||||||
// this.thumbSize = i3
|
|
||||||
// this.msgId = j2
|
|
||||||
// this.msgRandom = j3
|
|
||||||
// this.msgSeq = j4
|
|
||||||
// this.msgTime = j5
|
|
||||||
// this.chatType = i4
|
|
||||||
// this.senderUid = str
|
|
||||||
// this.peerUid = str2
|
|
||||||
// this.guildId = str3
|
|
||||||
// this.elem = msgElement
|
|
||||||
// this.useHttps = num
|
|
||||||
|
|
||||||
getVideoPlayUrlInVisit(arg: {
|
|
||||||
downloadType: number,
|
|
||||||
thumbSize: number,
|
|
||||||
msgId: string,
|
|
||||||
msgRandom: string,
|
|
||||||
msgSeq: string,
|
|
||||||
msgTime: string,
|
|
||||||
chatType: number,
|
|
||||||
senderUid: string,
|
|
||||||
peerUid: string,
|
|
||||||
guildId: string,
|
|
||||||
ele: MessageElement,
|
|
||||||
useHttps: boolean
|
|
||||||
}): Promise<unknown>
|
|
||||||
|
|
||||||
//arg双端number
|
|
||||||
isFileExpired(arg: number): unknown
|
|
||||||
|
|
||||||
deleteGroupFolder(GroupCode: string, FolderId: string): Promise<GeneralCallResult & { groupFileCommonResult: { retCode: number, retMsg: string, clientWording: string } }>
|
|
||||||
|
|
||||||
//参数与getVideoPlayUrlInVisit一样
|
|
||||||
downloadRichMediaInVisit(arg: {
|
|
||||||
downloadType: number,
|
|
||||||
thumbSize: number,
|
|
||||||
msgId: string,
|
|
||||||
msgRandom: string,
|
|
||||||
msgSeq: string,
|
|
||||||
msgTime: string,
|
|
||||||
chatType: number,
|
|
||||||
senderUid: string,
|
|
||||||
peerUid: string,
|
|
||||||
guildId: string,
|
|
||||||
ele: MessageElement,
|
|
||||||
useHttps: boolean
|
|
||||||
}): unknown
|
|
||||||
//arg3为“”
|
|
||||||
downloadFileForModelId(peer: Peer, ModelId: string[], arg3: string): unknown
|
|
||||||
//第三个参数 Array<Type>
|
|
||||||
// this.fileId = ""
|
|
||||||
// this.fileName = ""
|
|
||||||
// this.fileId = str
|
|
||||||
// this.fileName = str2
|
|
||||||
// this.fileSize = j2
|
|
||||||
// this.fileModelId = j3
|
|
||||||
|
|
||||||
downloadFileForFileUuid(peer: Peer, uuid: string, arg3: {
|
|
||||||
fileId: string,
|
|
||||||
fileName: string,
|
|
||||||
fileSize: string,
|
|
||||||
fileModelId: string
|
|
||||||
}[]): Promise<unknown>
|
|
||||||
|
|
||||||
downloadFileByUrlList(fileDownloadTyp: UrlFileDownloadType, urlList: Array<string>): unknown
|
|
||||||
|
|
||||||
downloadFileForFileInfo(fileInfo: CommonFileInfo[], savePath: string): unknown
|
|
||||||
|
|
||||||
createGroupFolder(GroupCode: string, FolderName: string): Promise<GeneralCallResult & { resultWithGroupItem: { result: unknown, groupItem: Array<unknown> } }>
|
|
||||||
|
|
||||||
downloadFile(commonFile: CommonFileInfo, arg2: unknown, arg3: unknown, savePath: string): unknown
|
|
||||||
|
|
||||||
downloadGroupFolder(arg1: unknown, arg2: unknown, arg3: unknown): unknown
|
|
||||||
|
|
||||||
renameGroupFolder(arg1: unknown, arg2: unknown, arg3: unknown): unknown
|
|
||||||
|
|
||||||
deleteTransferInfo(arg1: unknown, arg2: unknown): unknown
|
|
||||||
|
|
||||||
cancelTransferTask(arg1: unknown, arg2: unknown, arg3: unknown): unknown
|
|
||||||
|
|
||||||
cancelUrlDownload(arg: unknown): unknown
|
|
||||||
|
|
||||||
updateOnlineVideoElemStatus(arg: unknown): unknown
|
|
||||||
|
|
||||||
getGroupSpace(arg: unknown): unknown
|
|
||||||
|
|
||||||
getGroupFileList(groupCode: string, params: GetFileListParam): Promise<GeneralCallResult & {
|
getGroupFileList(groupCode: string, params: GetFileListParam): Promise<GeneralCallResult & {
|
||||||
groupSpaceResult: {
|
groupSpaceResult: {
|
||||||
@@ -198,69 +30,14 @@ export interface NodeIKernelRichMediaService {
|
|||||||
}
|
}
|
||||||
}>
|
}>
|
||||||
|
|
||||||
getGroupFileInfo(arg1: unknown, arg2: unknown): unknown
|
|
||||||
|
|
||||||
getGroupTransferList(arg1: unknown, arg2: unknown): unknown
|
|
||||||
|
|
||||||
renameGroupFile(arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown): unknown
|
|
||||||
|
|
||||||
moveGroupFile(arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown): unknown
|
moveGroupFile(arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown): unknown
|
||||||
|
|
||||||
transGroupFile(arg1: unknown, arg2: unknown): unknown
|
deleteGroupFile(groupCode: string, params: Array<number>, files: Array<string>): Promise<GeneralCallResult & {
|
||||||
|
|
||||||
searchGroupFile(
|
|
||||||
keywords: Array<string>,
|
|
||||||
param: {
|
|
||||||
groupIds: Array<string>,
|
|
||||||
fileType: number,
|
|
||||||
context: string,
|
|
||||||
count: number,
|
|
||||||
sortType: number,
|
|
||||||
groupNames: Array<string>
|
|
||||||
}): Promise<unknown>
|
|
||||||
searchGroupFileByWord(arg1: unknown, arg2: unknown, arg3: unknown, arg4: unknown, arg5: unknown): unknown
|
|
||||||
|
|
||||||
deleteGroupFile(GroupCode: string, params: Array<number>, Files: Array<string>): Promise<GeneralCallResult & {
|
|
||||||
transGroupFileResult: {
|
transGroupFileResult: {
|
||||||
result: unknown
|
result: unknown
|
||||||
successFileIdList: Array<unknown>
|
successFileIdList: Array<unknown>
|
||||||
failFileIdList: Array<unknown>
|
failFileIdList: Array<unknown>
|
||||||
}
|
}
|
||||||
}>
|
}>
|
||||||
|
}
|
||||||
|
|
||||||
translateEnWordToZn(words: string[]): Promise<GeneralCallResult & { words: string[] }>
|
|
||||||
|
|
||||||
getScreenOCR(path: string): Promise<unknown>
|
|
||||||
|
|
||||||
batchGetGroupFileCount(Gids: Array<string>): Promise<GeneralCallResult & { groupCodes: Array<string>, groupFileCounts: Array<number> }>
|
|
||||||
|
|
||||||
queryPicDownloadSize(arg: unknown): unknown
|
|
||||||
|
|
||||||
searchGroupFile(arg1: unknown, arg2: unknown): unknown
|
|
||||||
|
|
||||||
searchMoreGroupFile(arg: unknown): unknown
|
|
||||||
|
|
||||||
cancelSearcheGroupFile(arg1: unknown, arg2: unknown, arg3: unknown): unknown
|
|
||||||
|
|
||||||
onlyDownloadFile(peer: Peer, arg2: unknown, arg3: Array<{
|
|
||||||
fileId: string,
|
|
||||||
fileName: string,
|
|
||||||
fileSize: string,
|
|
||||||
fileModelId: string
|
|
||||||
}
|
|
||||||
>): unknown
|
|
||||||
|
|
||||||
onlyUploadFile(arg1: unknown, arg2: unknown): unknown
|
|
||||||
|
|
||||||
isExtraLargePic(arg1: unknown, arg2: unknown, arg3: unknown): unknown
|
|
||||||
|
|
||||||
uploadRMFileWithoutMsg(arg: {
|
|
||||||
bizType: RMBizTypeEnum,
|
|
||||||
filePath: string,
|
|
||||||
peerUid: string,
|
|
||||||
transferId: string
|
|
||||||
useNTV2: string
|
|
||||||
}): Promise<unknown>
|
|
||||||
|
|
||||||
isNull(): boolean
|
|
||||||
}
|
|
13
src/ntqqapi/services/NodeIKernelRobotService.ts
Normal file
13
src/ntqqapi/services/NodeIKernelRobotService.ts
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
import { GeneralCallResult } from './common'
|
||||||
|
|
||||||
|
export interface NodeIKernelRobotService {
|
||||||
|
getRobotUinRange(req: unknown): Promise<GeneralCallResult & {
|
||||||
|
response: {
|
||||||
|
version: number
|
||||||
|
robotUinRanges: {
|
||||||
|
minUin: string
|
||||||
|
maxUin: string
|
||||||
|
}[]
|
||||||
|
}
|
||||||
|
}>
|
||||||
|
}
|
@@ -1,128 +0,0 @@
|
|||||||
import { ChatType } from '../types'
|
|
||||||
|
|
||||||
export interface NodeIKernelSearchService {
|
|
||||||
addKernelSearchListener(...args: unknown[]): unknown// needs 1 arguments
|
|
||||||
|
|
||||||
removeKernelSearchListener(...args: unknown[]): unknown// needs 1 arguments
|
|
||||||
|
|
||||||
searchStranger(...args: unknown[]): unknown// needs 3 arguments
|
|
||||||
|
|
||||||
searchGroup(...args: unknown[]): unknown// needs 1 arguments
|
|
||||||
|
|
||||||
searchLocalInfo(keywords: string, unknown: number/*4*/): unknown
|
|
||||||
|
|
||||||
cancelSearchLocalInfo(...args: unknown[]): unknown// needs 3 arguments
|
|
||||||
|
|
||||||
searchBuddyChatInfo(...args: unknown[]): unknown// needs 2 arguments
|
|
||||||
|
|
||||||
searchMoreBuddyChatInfo(...args: unknown[]): unknown// needs 1 arguments
|
|
||||||
|
|
||||||
cancelSearchBuddyChatInfo(...args: unknown[]): unknown// needs 3 arguments
|
|
||||||
|
|
||||||
searchContact(...args: unknown[]): unknown// needs 2 arguments
|
|
||||||
|
|
||||||
searchMoreContact(...args: unknown[]): unknown// needs 1 arguments
|
|
||||||
|
|
||||||
cancelSearchContact(...args: unknown[]): unknown// needs 3 arguments
|
|
||||||
|
|
||||||
searchGroupChatInfo(...args: unknown[]): unknown// needs 3 arguments
|
|
||||||
|
|
||||||
resetSearchGroupChatInfoSortType(...args: unknown[]): unknown// needs 3 arguments
|
|
||||||
|
|
||||||
resetSearchGroupChatInfoFilterMembers(...args: unknown[]): unknown// needs 3 arguments
|
|
||||||
|
|
||||||
searchMoreGroupChatInfo(...args: unknown[]): unknown// needs 1 arguments
|
|
||||||
|
|
||||||
cancelSearchGroupChatInfo(...args: unknown[]): unknown// needs 3 arguments
|
|
||||||
|
|
||||||
searchChatsWithKeywords(...args: unknown[]): unknown// needs 3 arguments
|
|
||||||
|
|
||||||
searchMoreChatsWithKeywords(...args: unknown[]): unknown// needs 1 arguments
|
|
||||||
|
|
||||||
cancelSearchChatsWithKeywords(...args: unknown[]): unknown// needs 3 arguments
|
|
||||||
|
|
||||||
searchChatMsgs(...args: unknown[]): unknown// needs 2 arguments
|
|
||||||
|
|
||||||
searchMoreChatMsgs(...args: unknown[]): unknown// needs 1 arguments
|
|
||||||
|
|
||||||
cancelSearchChatMsgs(...args: unknown[]): unknown// needs 3 arguments
|
|
||||||
|
|
||||||
searchMsgWithKeywords(...args: unknown[]): unknown// needs 2 arguments
|
|
||||||
|
|
||||||
searchMoreMsgWithKeywords(...args: unknown[]): unknown// needs 1 arguments
|
|
||||||
|
|
||||||
cancelSearchMsgWithKeywords(...args: unknown[]): unknown// needs 3 arguments
|
|
||||||
|
|
||||||
searchFileWithKeywords(keywords: string[], source: number): Promise<string>// needs 2 arguments
|
|
||||||
|
|
||||||
searchMoreFileWithKeywords(...args: unknown[]): unknown// needs 1 arguments
|
|
||||||
|
|
||||||
cancelSearchFileWithKeywords(...args: unknown[]): unknown// needs 3 arguments
|
|
||||||
|
|
||||||
searchAtMeChats(...args: unknown[]): unknown// needs 3 arguments
|
|
||||||
|
|
||||||
searchMoreAtMeChats(...args: unknown[]): unknown// needs 1 arguments
|
|
||||||
|
|
||||||
cancelSearchAtMeChats(...args: unknown[]): unknown// needs 3 arguments
|
|
||||||
|
|
||||||
searchChatAtMeMsgs(...args: unknown[]): unknown// needs 1 arguments
|
|
||||||
|
|
||||||
searchMoreChatAtMeMsgs(...args: unknown[]): unknown// needs 1 arguments
|
|
||||||
|
|
||||||
cancelSearchChatAtMeMsgs(...args: unknown[]): unknown// needs 3 arguments
|
|
||||||
|
|
||||||
addSearchHistory(param: {
|
|
||||||
type: number,//4
|
|
||||||
contactList: [],
|
|
||||||
id: number,//-1
|
|
||||||
groupInfos: [],
|
|
||||||
msgs: [],
|
|
||||||
fileInfos: [
|
|
||||||
{
|
|
||||||
chatType: ChatType,
|
|
||||||
buddyChatInfo: Array<{ category_name: string, peerUid: string, peerUin: string, remark: string }>,
|
|
||||||
discussChatInfo: [],
|
|
||||||
groupChatInfo: Array<
|
|
||||||
{
|
|
||||||
groupCode: string,
|
|
||||||
isConf: boolean,
|
|
||||||
hasModifyConfGroupFace: boolean,
|
|
||||||
hasModifyConfGroupName: boolean,
|
|
||||||
groupName: string,
|
|
||||||
remark: string
|
|
||||||
}>,
|
|
||||||
dataLineChatInfo: [],
|
|
||||||
tmpChatInfo: [],
|
|
||||||
msgId: string,
|
|
||||||
msgSeq: string,
|
|
||||||
msgTime: string,
|
|
||||||
senderUid: string,
|
|
||||||
senderNick: string,
|
|
||||||
senderRemark: string,
|
|
||||||
senderCard: string,
|
|
||||||
elemId: string,
|
|
||||||
elemType: string,//3
|
|
||||||
fileSize: string,
|
|
||||||
filePath: string,
|
|
||||||
fileName: string,
|
|
||||||
hits: Array<
|
|
||||||
{
|
|
||||||
start: 12,
|
|
||||||
end: 14
|
|
||||||
}
|
|
||||||
>
|
|
||||||
}
|
|
||||||
]
|
|
||||||
|
|
||||||
}): Promise<{
|
|
||||||
result: number,
|
|
||||||
errMsg: string,
|
|
||||||
id?: number
|
|
||||||
}>
|
|
||||||
|
|
||||||
removeSearchHistory(...args: unknown[]): unknown// needs 1 arguments
|
|
||||||
|
|
||||||
searchCache(...args: unknown[]): unknown// needs 3 arguments
|
|
||||||
|
|
||||||
clearSearchCache(...args: unknown[]): unknown// needs 1 arguments
|
|
||||||
}
|
|
@@ -1,11 +1,10 @@
|
|||||||
import { forceFetchClientKeyRetType } from './common'
|
import { GeneralCallResult } from './common'
|
||||||
|
|
||||||
export interface NodeIKernelTicketService {
|
export interface NodeIKernelTicketService {
|
||||||
addKernelTicketListener(listener: unknown): void
|
forceFetchClientKey(arg: string): Promise<GeneralCallResult & {
|
||||||
|
url: string
|
||||||
removeKernelTicketListener(listenerId: unknown): void
|
keyIndex: string
|
||||||
|
clientKey: string
|
||||||
forceFetchClientKey(arg: string): Promise<forceFetchClientKeyRetType>
|
expireTime: string
|
||||||
|
}>
|
||||||
isNull(): boolean
|
}
|
||||||
}
|
|
||||||
|
@@ -1,19 +1,5 @@
|
|||||||
import { GeneralCallResult } from './common'
|
import { GeneralCallResult } from './common'
|
||||||
|
|
||||||
export interface NodeIKernelTipOffService {
|
export interface NodeIKernelTipOffService {
|
||||||
addKernelTipOffListener(listener: unknown): void
|
getPskey(domainList: string[], nocache: boolean): Promise<GeneralCallResult & { domainPskeyMap: Map<string, string> }>
|
||||||
|
}
|
||||||
removeKernelTipOffListener(listenerId: unknown): void
|
|
||||||
|
|
||||||
tipOffSendJsData(args: unknown[]): Promise<unknown> //2
|
|
||||||
|
|
||||||
getPskey(domainList: string[], nocache: boolean): Promise<GeneralCallResult & { domainPskeyMap: Map<string, string> }> //2
|
|
||||||
|
|
||||||
tipOffSendJsData(args: unknown[]): Promise<unknown> //2
|
|
||||||
|
|
||||||
tipOffMsgs(args: unknown[]): Promise<unknown> //1
|
|
||||||
|
|
||||||
encodeUinAesInfo(args: unknown[]): Promise<unknown> //2
|
|
||||||
|
|
||||||
isNull(): boolean
|
|
||||||
}
|
|
||||||
|
@@ -1,16 +1,8 @@
|
|||||||
export enum GeneralCallResultStatus {
|
export enum GeneralCallResultStatus {
|
||||||
OK = 0
|
OK = 0
|
||||||
// ERROR = 1
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface GeneralCallResult {
|
export interface GeneralCallResult {
|
||||||
result: GeneralCallResultStatus
|
result: GeneralCallResultStatus
|
||||||
errMsg: string
|
errMsg: string
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface forceFetchClientKeyRetType extends GeneralCallResult {
|
|
||||||
url: string
|
|
||||||
keyIndex: string
|
|
||||||
clientKey: string
|
|
||||||
expireTime: string
|
|
||||||
}
|
|
@@ -9,4 +9,4 @@ export * from './NodeIKernelUixConvertService'
|
|||||||
export * from './NodeIKernelRichMediaService'
|
export * from './NodeIKernelRichMediaService'
|
||||||
export * from './NodeIKernelTicketService'
|
export * from './NodeIKernelTicketService'
|
||||||
export * from './NodeIKernelTipOffService'
|
export * from './NodeIKernelTipOffService'
|
||||||
export * from './NodeIKernelSearchService'
|
export * from './NodeIKernelRobotService'
|
||||||
|
@@ -22,9 +22,9 @@ export interface Group {
|
|||||||
hasModifyConfGroupName: boolean
|
hasModifyConfGroupName: boolean
|
||||||
remarkName: string
|
remarkName: string
|
||||||
hasMemo: boolean
|
hasMemo: boolean
|
||||||
groupShutupExpireTime: string //"0",
|
groupShutupExpireTime: string
|
||||||
personShutupExpireTime: string //"0",
|
personShutupExpireTime: string
|
||||||
discussToGroupUin: string //"0",
|
discussToGroupUin: string
|
||||||
discussToGroupMaxMsgSeq: number
|
discussToGroupMaxMsgSeq: number
|
||||||
discussToGroupTime: number
|
discussToGroupTime: number
|
||||||
groupFlagExt: number //1073938496,
|
groupFlagExt: number //1073938496,
|
||||||
@@ -32,8 +32,8 @@ export interface Group {
|
|||||||
groupCreditLevel: number //0,
|
groupCreditLevel: number //0,
|
||||||
groupFlagExt3: number //0,
|
groupFlagExt3: number //0,
|
||||||
groupOwnerId: {
|
groupOwnerId: {
|
||||||
memberUin: string //"0",
|
memberUin: string
|
||||||
memberUid: string //"u_fbf8N7aeuZEnUiJAbQ9R8Q"
|
memberUid: string
|
||||||
}
|
}
|
||||||
members: GroupMember[] // 原始数据是没有这个的,为了方便自己加了这个字段
|
members: GroupMember[] // 原始数据是没有这个的,为了方便自己加了这个字段
|
||||||
createTime: string
|
createTime: string
|
||||||
@@ -78,3 +78,97 @@ export interface PublishGroupBulletinReq {
|
|||||||
pinned: number
|
pinned: number
|
||||||
confirmRequired: number
|
confirmRequired: number
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface GroupAllInfo {
|
||||||
|
groupCode: string
|
||||||
|
ownerUid: string
|
||||||
|
groupFlag: number
|
||||||
|
groupFlagExt: number
|
||||||
|
maxMemberNum: number
|
||||||
|
memberNum: number
|
||||||
|
groupOption: number
|
||||||
|
classExt: number
|
||||||
|
groupName: string
|
||||||
|
fingerMemo: string
|
||||||
|
groupQuestion: string
|
||||||
|
certType: number
|
||||||
|
shutUpAllTimestamp: number
|
||||||
|
shutUpMeTimestamp: number //解除禁言时间
|
||||||
|
groupTypeFlag: number
|
||||||
|
privilegeFlag: number
|
||||||
|
groupSecLevel: number
|
||||||
|
groupFlagExt3: number
|
||||||
|
isConfGroup: number
|
||||||
|
isModifyConfGroupFace: number
|
||||||
|
isModifyConfGroupName: number
|
||||||
|
noFigerOpenFlag: number
|
||||||
|
noCodeFingerOpenFlag: number
|
||||||
|
groupFlagExt4: number
|
||||||
|
groupMemo: string
|
||||||
|
cmdUinMsgSeq: number
|
||||||
|
cmdUinJoinTime: number
|
||||||
|
cmdUinUinFlag: number
|
||||||
|
cmdUinMsgMask: number
|
||||||
|
groupSecLevelInfo: number
|
||||||
|
cmdUinPrivilege: number
|
||||||
|
cmdUinFlagEx2: number
|
||||||
|
appealDeadline: number
|
||||||
|
remarkName: number
|
||||||
|
isTop: boolean
|
||||||
|
richFingerMemo: string
|
||||||
|
groupAnswer: string
|
||||||
|
joinGroupAuth: string
|
||||||
|
isAllowModifyConfGroupName: number
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface GroupBulletinListResult {
|
||||||
|
groupCode: string
|
||||||
|
srvCode: number
|
||||||
|
readOnly: number
|
||||||
|
role: number
|
||||||
|
inst: unknown[]
|
||||||
|
feeds: {
|
||||||
|
uin: string
|
||||||
|
feedId: string
|
||||||
|
publishTime: string
|
||||||
|
msg: {
|
||||||
|
text: string
|
||||||
|
textFace: string
|
||||||
|
pics: {
|
||||||
|
id: string
|
||||||
|
width: number
|
||||||
|
height: number
|
||||||
|
}[]
|
||||||
|
title: string
|
||||||
|
}
|
||||||
|
type: number
|
||||||
|
fn: number
|
||||||
|
cn: number
|
||||||
|
vn: number
|
||||||
|
settings: {
|
||||||
|
isShowEditCard: number
|
||||||
|
remindTs: number
|
||||||
|
tipWindowType: number
|
||||||
|
confirmRequired: number
|
||||||
|
}
|
||||||
|
pinned: number
|
||||||
|
readNum: number
|
||||||
|
is_read: number
|
||||||
|
is_all_confirm: number
|
||||||
|
}[]
|
||||||
|
groupInfo: {
|
||||||
|
groupCode: string
|
||||||
|
classId: number
|
||||||
|
}
|
||||||
|
gln: number
|
||||||
|
tst: number
|
||||||
|
publisherInfos: {
|
||||||
|
uin: string
|
||||||
|
nick: string
|
||||||
|
avatar: string
|
||||||
|
}[]
|
||||||
|
server_time: string
|
||||||
|
svrt: string
|
||||||
|
nextIndex: number
|
||||||
|
jointime: string
|
||||||
|
}
|
||||||
|
@@ -1,125 +1,108 @@
|
|||||||
import { GroupMemberRole } from './group'
|
import { GroupMemberRole } from './group'
|
||||||
|
import { GeneralCallResult } from '../services'
|
||||||
export interface GetFileListParam {
|
|
||||||
sortType: number
|
|
||||||
fileCount: number
|
|
||||||
startIndex: number
|
|
||||||
sortOrder: number
|
|
||||||
showOnlinedocFolder: number
|
|
||||||
folderId?: string
|
|
||||||
}
|
|
||||||
|
|
||||||
export enum ElementType {
|
export enum ElementType {
|
||||||
UNKNOWN = 0,
|
Text = 1,
|
||||||
TEXT = 1,
|
Pic = 2,
|
||||||
PIC = 2,
|
File = 3,
|
||||||
FILE = 3,
|
Ptt = 4,
|
||||||
PTT = 4,
|
Video = 5,
|
||||||
VIDEO = 5,
|
Face = 6,
|
||||||
FACE = 6,
|
Reply = 7,
|
||||||
REPLY = 7,
|
GrayTip = 8,
|
||||||
WALLET = 9,
|
Ark = 10,
|
||||||
GreyTip = 8, //Poke别叫戳一搓了 官方名字拍一拍 戳一戳是另一个名字
|
MarketFace = 11,
|
||||||
ARK = 10,
|
LiveGift = 12,
|
||||||
MFACE = 11,
|
StructLongMsg = 13,
|
||||||
LIVEGIFT = 12,
|
Markdown = 14,
|
||||||
STRUCTLONGMSG = 13,
|
Giphy = 15,
|
||||||
MARKDOWN = 14,
|
MultiForward = 16,
|
||||||
GIPHY = 15,
|
InlineKeyboard = 17,
|
||||||
MULTIFORWARD = 16,
|
Calendar = 19,
|
||||||
INLINEKEYBOARD = 17,
|
YoloGameResult = 20,
|
||||||
INTEXTGIFT = 18,
|
AvRecord = 21,
|
||||||
CALENDAR = 19,
|
TofuRecord = 23,
|
||||||
YOLOGAMERESULT = 20,
|
FaceBubble = 27,
|
||||||
AVRECORD = 21,
|
ShareLocation = 28,
|
||||||
FEED = 22,
|
TaskTopMsg = 29,
|
||||||
TOFURECORD = 23,
|
RecommendedMsg = 43,
|
||||||
ACEBUBBLE = 24,
|
ActionBar = 44
|
||||||
ACTIVITY = 25,
|
|
||||||
TOFU = 26,
|
|
||||||
FACEBUBBLE = 27,
|
|
||||||
SHARELOCATION = 28,
|
|
||||||
TASKTOPMSG = 29,
|
|
||||||
RECOMMENDEDMSG = 43,
|
|
||||||
ACTIONBAR = 44
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface SendTextElement {
|
export interface SendTextElement {
|
||||||
elementType: ElementType.TEXT
|
elementType: ElementType.Text
|
||||||
elementId: ''
|
elementId: ''
|
||||||
textElement: TextElement
|
textElement: TextElement
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface SendPttElement {
|
export interface SendPttElement {
|
||||||
elementType: ElementType.PTT
|
elementType: ElementType.Ptt
|
||||||
elementId: ''
|
elementId: ''
|
||||||
pttElement: {
|
pttElement: Partial<PttElement>
|
||||||
fileName: string
|
|
||||||
filePath: string
|
|
||||||
md5HexStr: string
|
|
||||||
fileSize: number
|
|
||||||
duration: number // 单位是秒
|
|
||||||
formatType: number
|
|
||||||
voiceType: number
|
|
||||||
voiceChangeType: number
|
|
||||||
canConvert2Text: boolean
|
|
||||||
waveAmplitudes: number[]
|
|
||||||
fileSubId: ''
|
|
||||||
playState: number
|
|
||||||
autoConvertText: number
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export enum PicType {
|
|
||||||
gif = 2000,
|
|
||||||
jpg = 1000,
|
|
||||||
}
|
|
||||||
|
|
||||||
export enum PicSubType {
|
|
||||||
normal = 0, // 普通图片,大图
|
|
||||||
face = 1, // 表情包小图
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface SendPicElement {
|
export interface SendPicElement {
|
||||||
elementType: ElementType.PIC
|
elementType: ElementType.Pic
|
||||||
elementId: ''
|
elementId: ''
|
||||||
picElement: {
|
picElement: Partial<PicElement>
|
||||||
md5HexStr: string
|
|
||||||
fileSize: number | string
|
|
||||||
picWidth: number
|
|
||||||
picHeight: number
|
|
||||||
fileName: string
|
|
||||||
sourcePath: string
|
|
||||||
original: boolean
|
|
||||||
picType: PicType
|
|
||||||
picSubType: PicSubType
|
|
||||||
fileUuid: string
|
|
||||||
fileSubId: string
|
|
||||||
thumbFileSize: number
|
|
||||||
summary: string
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface SendReplyElement {
|
export interface SendReplyElement {
|
||||||
elementType: ElementType.REPLY
|
elementType: ElementType.Reply
|
||||||
elementId: ''
|
elementId: ''
|
||||||
replyElement: Partial<ReplyElement>
|
replyElement: Partial<ReplyElement>
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface SendFaceElement {
|
export interface SendFaceElement {
|
||||||
elementType: ElementType.FACE
|
elementType: ElementType.Face
|
||||||
elementId: ''
|
elementId: ''
|
||||||
faceElement: FaceElement
|
faceElement: FaceElement
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface SendMarketFaceElement {
|
export interface SendMarketFaceElement {
|
||||||
elementType: ElementType.MFACE
|
elementType: ElementType.MarketFace
|
||||||
|
elementId: ''
|
||||||
marketFaceElement: MarketFaceElement
|
marketFaceElement: MarketFaceElement
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface SendFileElement {
|
||||||
|
elementType: ElementType.File
|
||||||
|
elementId: ''
|
||||||
|
fileElement: FileElement
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface SendVideoElement {
|
||||||
|
elementType: ElementType.Video
|
||||||
|
elementId: ''
|
||||||
|
videoElement: VideoElement
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface SendArkElement {
|
||||||
|
elementType: ElementType.Ark
|
||||||
|
elementId: ''
|
||||||
|
arkElement: ArkElement
|
||||||
|
}
|
||||||
|
|
||||||
|
export type SendMessageElement =
|
||||||
|
| SendTextElement
|
||||||
|
| SendPttElement
|
||||||
|
| SendPicElement
|
||||||
|
| SendReplyElement
|
||||||
|
| SendFaceElement
|
||||||
|
| SendMarketFaceElement
|
||||||
|
| SendFileElement
|
||||||
|
| SendVideoElement
|
||||||
|
| SendArkElement
|
||||||
|
|
||||||
|
export enum AtType {
|
||||||
|
Unknown,
|
||||||
|
All,
|
||||||
|
One,
|
||||||
|
}
|
||||||
|
|
||||||
export interface TextElement {
|
export interface TextElement {
|
||||||
content: string
|
content: string
|
||||||
atType: number
|
atType: AtType
|
||||||
atUid: string
|
atUid: string
|
||||||
atTinyId: string
|
atTinyId: string
|
||||||
atNtUid: string
|
atNtUid: string
|
||||||
@@ -156,91 +139,6 @@ export interface FileElement {
|
|||||||
fileBizId?: number
|
fileBizId?: number
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface SendFileElement {
|
|
||||||
elementType: ElementType.FILE
|
|
||||||
elementId: ''
|
|
||||||
fileElement: FileElement
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface SendVideoElement {
|
|
||||||
elementType: ElementType.VIDEO
|
|
||||||
elementId: ''
|
|
||||||
videoElement: VideoElement
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface SendArkElement {
|
|
||||||
elementType: ElementType.ARK
|
|
||||||
elementId: ''
|
|
||||||
arkElement: ArkElement
|
|
||||||
}
|
|
||||||
|
|
||||||
export type SendMessageElement =
|
|
||||||
| SendTextElement
|
|
||||||
| SendPttElement
|
|
||||||
| SendPicElement
|
|
||||||
| SendReplyElement
|
|
||||||
| SendFaceElement
|
|
||||||
| SendMarketFaceElement
|
|
||||||
| SendFileElement
|
|
||||||
| SendVideoElement
|
|
||||||
| SendArkElement
|
|
||||||
|
|
||||||
export enum AtType {
|
|
||||||
notAt = 0,
|
|
||||||
atAll = 1,
|
|
||||||
atUser = 2,
|
|
||||||
}
|
|
||||||
|
|
||||||
export enum ChatType {
|
|
||||||
friend = 1,
|
|
||||||
group = 2,
|
|
||||||
temp = 100,
|
|
||||||
}
|
|
||||||
|
|
||||||
// 来自Android分析
|
|
||||||
export enum ChatType2 {
|
|
||||||
KCHATTYPEADELIE = 42,
|
|
||||||
KCHATTYPEBUDDYNOTIFY = 5,
|
|
||||||
KCHATTYPEC2C = 1,
|
|
||||||
KCHATTYPECIRCLE = 113,
|
|
||||||
KCHATTYPEDATALINE = 8,
|
|
||||||
KCHATTYPEDATALINEMQQ = 134,
|
|
||||||
KCHATTYPEDISC = 3,
|
|
||||||
KCHATTYPEFAV = 41,
|
|
||||||
KCHATTYPEGAMEMESSAGE = 105,
|
|
||||||
KCHATTYPEGAMEMESSAGEFOLDER = 116,
|
|
||||||
KCHATTYPEGROUP = 2,
|
|
||||||
KCHATTYPEGROUPBLESS = 133,
|
|
||||||
KCHATTYPEGROUPGUILD = 9,
|
|
||||||
KCHATTYPEGROUPHELPER = 7,
|
|
||||||
KCHATTYPEGROUPNOTIFY = 6,
|
|
||||||
KCHATTYPEGUILD = 4,
|
|
||||||
KCHATTYPEGUILDMETA = 16,
|
|
||||||
KCHATTYPEMATCHFRIEND = 104,
|
|
||||||
KCHATTYPEMATCHFRIENDFOLDER = 109,
|
|
||||||
KCHATTYPENEARBY = 106,
|
|
||||||
KCHATTYPENEARBYASSISTANT = 107,
|
|
||||||
KCHATTYPENEARBYFOLDER = 110,
|
|
||||||
KCHATTYPENEARBYHELLOFOLDER = 112,
|
|
||||||
KCHATTYPENEARBYINTERACT = 108,
|
|
||||||
KCHATTYPEQQNOTIFY = 132,
|
|
||||||
KCHATTYPERELATEACCOUNT = 131,
|
|
||||||
KCHATTYPESERVICEASSISTANT = 118,
|
|
||||||
KCHATTYPESERVICEASSISTANTSUB = 201,
|
|
||||||
KCHATTYPESQUAREPUBLIC = 115,
|
|
||||||
KCHATTYPESUBSCRIBEFOLDER = 30,
|
|
||||||
KCHATTYPETEMPADDRESSBOOK = 111,
|
|
||||||
KCHATTYPETEMPBUSSINESSCRM = 102,
|
|
||||||
KCHATTYPETEMPC2CFROMGROUP = 100,
|
|
||||||
KCHATTYPETEMPC2CFROMUNKNOWN = 99,
|
|
||||||
KCHATTYPETEMPFRIENDVERIFY = 101,
|
|
||||||
KCHATTYPETEMPNEARBYPRO = 119,
|
|
||||||
KCHATTYPETEMPPUBLICACCOUNT = 103,
|
|
||||||
KCHATTYPETEMPWPA = 117,
|
|
||||||
KCHATTYPEUNKNOWN = 0,
|
|
||||||
KCHATTYPEWEIYUN = 40,
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface PttElement {
|
export interface PttElement {
|
||||||
canConvert2Text: boolean
|
canConvert2Text: boolean
|
||||||
duration: number // 秒数
|
duration: number // 秒数
|
||||||
@@ -251,7 +149,7 @@ export interface PttElement {
|
|||||||
fileSize: string // "4261"
|
fileSize: string // "4261"
|
||||||
fileSubId: string // "0"
|
fileSubId: string // "0"
|
||||||
fileUuid: string // "90j3z7rmRphDPrdVgP9udFBaYar#oK0TWZIV"
|
fileUuid: string // "90j3z7rmRphDPrdVgP9udFBaYar#oK0TWZIV"
|
||||||
formatType: string // 1
|
formatType: number // 1
|
||||||
invalidState: number // 0
|
invalidState: number // 0
|
||||||
md5HexStr: string // "e4d09c784d5a2abcb2f9980bdc7acfe6"
|
md5HexStr: string // "e4d09c784d5a2abcb2f9980bdc7acfe6"
|
||||||
playState: number // 0
|
playState: number // 0
|
||||||
@@ -262,6 +160,7 @@ export interface PttElement {
|
|||||||
voiceChangeType: number // 0
|
voiceChangeType: number // 0
|
||||||
voiceType: number // 0
|
voiceType: number // 0
|
||||||
waveAmplitudes: number[]
|
waveAmplitudes: number[]
|
||||||
|
autoConvertText: number
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ArkElement {
|
export interface ArkElement {
|
||||||
@@ -273,6 +172,16 @@ export interface ArkElement {
|
|||||||
export const IMAGE_HTTP_HOST = 'https://gchat.qpic.cn'
|
export const IMAGE_HTTP_HOST = 'https://gchat.qpic.cn'
|
||||||
export const IMAGE_HTTP_HOST_NT = 'https://multimedia.nt.qq.com.cn'
|
export const IMAGE_HTTP_HOST_NT = 'https://multimedia.nt.qq.com.cn'
|
||||||
|
|
||||||
|
export enum PicType {
|
||||||
|
GIF = 2000,
|
||||||
|
JPEG = 1000,
|
||||||
|
}
|
||||||
|
|
||||||
|
export enum PicSubType {
|
||||||
|
Normal = 0, // 普通图片,大图
|
||||||
|
Face = 1, // 表情包小图
|
||||||
|
}
|
||||||
|
|
||||||
export interface PicElement {
|
export interface PicElement {
|
||||||
picSubType: PicSubType
|
picSubType: PicSubType
|
||||||
picType: PicType // 有这玩意儿吗
|
picType: PicType // 有这玩意儿吗
|
||||||
@@ -289,22 +198,22 @@ export interface PicElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export enum GrayTipElementSubType {
|
export enum GrayTipElementSubType {
|
||||||
REVOKE = 1,
|
Revoke = 1,
|
||||||
PROCLAMATION = 2,
|
Proclamation = 2,
|
||||||
EMOJIREPLY = 3,
|
EmojiReply = 3,
|
||||||
GROUP = 4,
|
Group = 4,
|
||||||
BUDDY = 5,
|
Buddy = 5,
|
||||||
FEED = 6,
|
Feed = 6,
|
||||||
ESSENCE = 7,
|
Essence = 7,
|
||||||
GROUPNOTIFY = 8,
|
GroupNotify = 8,
|
||||||
BUDDYNOTIFY = 9,
|
BuddyNotify = 9,
|
||||||
FILE = 10,
|
File = 10,
|
||||||
FEEDCHANNELMSG = 11,
|
FeedChannelMsg = 11,
|
||||||
XMLMSG = 12,
|
XmlMsg = 12,
|
||||||
LOCALMSG = 13,
|
LocalMsg = 13,
|
||||||
BLOCK = 14,
|
Block = 14,
|
||||||
AIOOP = 15,
|
AioOp = 15,
|
||||||
WALLET = 16,
|
Wallet = 16,
|
||||||
JSON = 17,
|
JSON = 17,
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -334,7 +243,7 @@ export interface GrayTipElement {
|
|||||||
|
|
||||||
|
|
||||||
export enum FaceIndex {
|
export enum FaceIndex {
|
||||||
dice = 358,
|
Dice = 358,
|
||||||
RPS = 359, // 石头剪刀布
|
RPS = 359, // 石头剪刀布
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -349,6 +258,7 @@ export interface FaceElement {
|
|||||||
resultId?: string
|
resultId?: string
|
||||||
surpriseId?: string
|
surpriseId?: string
|
||||||
randomType?: number
|
randomType?: number
|
||||||
|
pokeType?: number
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface MarketFaceElement {
|
export interface MarketFaceElement {
|
||||||
@@ -407,6 +317,7 @@ export interface InlineKeyboardElementRowButton {
|
|||||||
enter: false
|
enter: false
|
||||||
subscribeDataTemplateIds: []
|
subscribeDataTemplateIds: []
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface InlineKeyboardElement {
|
export interface InlineKeyboardElement {
|
||||||
rows: [
|
rows: [
|
||||||
{
|
{
|
||||||
@@ -423,9 +334,9 @@ export interface TipAioOpGrayTipElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export enum TipGroupElementType {
|
export enum TipGroupElementType {
|
||||||
memberIncrease = 1,
|
MemberIncrease = 1,
|
||||||
kicked = 3, // 被移出群
|
Kicked = 3, // 被移出群
|
||||||
ban = 8,
|
Ban = 8,
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface TipGroupElement {
|
export interface TipGroupElement {
|
||||||
@@ -467,22 +378,32 @@ export interface TipGroupElement {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface StructLongMsgElement {
|
||||||
|
xmlContent: string
|
||||||
|
resId: string
|
||||||
|
}
|
||||||
|
|
||||||
export interface MultiForwardMsgElement {
|
export interface MultiForwardMsgElement {
|
||||||
xmlContent: string // xml格式的消息内容
|
xmlContent: string // xml格式的消息内容
|
||||||
resId: string
|
resId: string
|
||||||
fileName: string
|
fileName: string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export enum ChatType {
|
||||||
|
C2C = 1,
|
||||||
|
Group = 2,
|
||||||
|
TempC2CFromGroup = 100,
|
||||||
|
}
|
||||||
|
|
||||||
export interface RawMessage {
|
export interface RawMessage {
|
||||||
msgId: string
|
msgId: string
|
||||||
msgType: number
|
msgType: number
|
||||||
subMsgType: number
|
subMsgType: number
|
||||||
msgShortId?: number // 自己维护的消息id
|
|
||||||
msgTime: string // 时间戳,秒
|
msgTime: string // 时间戳,秒
|
||||||
msgSeq: string
|
msgSeq: string
|
||||||
msgRandom: string
|
msgRandom: string
|
||||||
senderUid: string
|
senderUid: string
|
||||||
senderUin?: string // 发送者QQ号
|
senderUin: string // 发送者QQ号
|
||||||
peerUid: string // 群号 或者 QQ uid
|
peerUid: string // 群号 或者 QQ uid
|
||||||
peerUin: string // 群号 或者 发送者QQ号
|
peerUin: string // 群号 或者 发送者QQ号
|
||||||
guildId: string
|
guildId: string
|
||||||
@@ -517,12 +438,11 @@ export interface MessageElement {
|
|||||||
fileElement?: FileElement
|
fileElement?: FileElement
|
||||||
liveGiftElement?: unknown
|
liveGiftElement?: unknown
|
||||||
markdownElement?: MarkdownElement
|
markdownElement?: MarkdownElement
|
||||||
structLongMsgElement?: unknown
|
structLongMsgElement?: StructLongMsgElement
|
||||||
multiForwardMsgElement?: MultiForwardMsgElement
|
multiForwardMsgElement?: MultiForwardMsgElement
|
||||||
giphyElement?: unknown
|
giphyElement?: unknown
|
||||||
walletElement?: unknown
|
|
||||||
inlineKeyboardElement?: InlineKeyboardElement
|
inlineKeyboardElement?: InlineKeyboardElement
|
||||||
textGiftElement?: unknown //????
|
textGiftElement?: unknown
|
||||||
calendarElement?: unknown
|
calendarElement?: unknown
|
||||||
yoloGameResultElement?: unknown
|
yoloGameResultElement?: unknown
|
||||||
avRecordElement?: unknown
|
avRecordElement?: unknown
|
||||||
@@ -558,7 +478,7 @@ export interface OnRichMediaDownloadCompleteParams {
|
|||||||
userUsedSpacePerDay: unknown
|
userUsedSpacePerDay: unknown
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface OnGroupFileInfoUpdateParams {
|
export interface GroupFileInfo {
|
||||||
retCode: number
|
retCode: number
|
||||||
retMsg: string
|
retMsg: string
|
||||||
clientWording: string
|
clientWording: string
|
||||||
@@ -608,3 +528,34 @@ export interface OnGroupFileInfoUpdateParams {
|
|||||||
nextIndex: number
|
nextIndex: number
|
||||||
reqId: number
|
reqId: number
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface QueryMsgsParams {
|
||||||
|
chatInfo: Peer
|
||||||
|
filterMsgType: []
|
||||||
|
filterSendersUid: string[]
|
||||||
|
filterMsgFromTime: string
|
||||||
|
filterMsgToTime: string
|
||||||
|
pageLimit: number
|
||||||
|
isReverseOrder: boolean
|
||||||
|
isIncludeCurrent: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface TmpChatInfoApi extends GeneralCallResult {
|
||||||
|
tmpChatInfo?: {
|
||||||
|
chatType: number
|
||||||
|
fromNick: string
|
||||||
|
groupCode: string
|
||||||
|
peerUid: string
|
||||||
|
sessionType: number
|
||||||
|
sig: string
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface GetFileListParam {
|
||||||
|
sortType: number
|
||||||
|
fileCount: number
|
||||||
|
startIndex: number
|
||||||
|
sortOrder: number
|
||||||
|
showOnlinedocFolder: number
|
||||||
|
folderId?: string
|
||||||
|
}
|
||||||
|
@@ -56,20 +56,8 @@ export enum GroupRequestOperateTypes {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export enum BuddyReqType {
|
export enum BuddyReqType {
|
||||||
KMEINITIATOR,
|
MsgInfo = 12,
|
||||||
KPEERINITIATOR,
|
MeInitiatorWaitPeerConfirm = 13,
|
||||||
KMEAGREED,
|
|
||||||
KMEAGREEDANDADDED,
|
|
||||||
KPEERAGREED,
|
|
||||||
KPEERAGREEDANDADDED,
|
|
||||||
KPEERREFUSED,
|
|
||||||
KMEREFUSED,
|
|
||||||
KMEIGNORED,
|
|
||||||
KMEAGREEANYONE,
|
|
||||||
KMESETQUESTION,
|
|
||||||
KMEAGREEANDADDFAILED,
|
|
||||||
KMSGINFO,
|
|
||||||
KMEINITIATORWAITPEERCONFIRM
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface FriendRequest {
|
export interface FriendRequest {
|
||||||
@@ -128,4 +116,4 @@ export interface GroupExtParam {
|
|||||||
memberIcon: number
|
memberIcon: number
|
||||||
memberInfoSeq: number
|
memberInfoSeq: number
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -221,11 +221,6 @@ interface RelationFlags {
|
|||||||
isHidePrivilegeIcon: number
|
isHidePrivilegeIcon: number
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface FriendV2 extends SimpleInfo {
|
|
||||||
categoryId?: number
|
|
||||||
categroyName?: string
|
|
||||||
}
|
|
||||||
|
|
||||||
interface CommonExt {
|
interface CommonExt {
|
||||||
constellation: number
|
constellation: number
|
||||||
shengXiao: number
|
shengXiao: number
|
||||||
@@ -255,7 +250,7 @@ interface PhotoWall {
|
|||||||
picList: Pic[]
|
picList: Pic[]
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface UserDetailInfoListenerArg {
|
export interface UserDetailInfo {
|
||||||
uid: string
|
uid: string
|
||||||
uin: string
|
uin: string
|
||||||
simpleInfo: SimpleInfo
|
simpleInfo: SimpleInfo
|
||||||
@@ -344,3 +339,21 @@ export interface UserDetailInfoByUin {
|
|||||||
vipNameColorId: string
|
vipNameColorId: string
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export enum BuddyListReqType {
|
||||||
|
KNOMAL,
|
||||||
|
KLETTER
|
||||||
|
}
|
||||||
|
|
||||||
|
export enum UserDetailSource {
|
||||||
|
KDB,
|
||||||
|
KSERVER
|
||||||
|
}
|
||||||
|
|
||||||
|
export enum ProfileBizType {
|
||||||
|
KALL,
|
||||||
|
KBASEEXTEND,
|
||||||
|
KVAS,
|
||||||
|
KQZONE,
|
||||||
|
KOTHER
|
||||||
|
}
|
||||||
|
@@ -8,8 +8,7 @@ import {
|
|||||||
NodeIKernelUixConvertService,
|
NodeIKernelUixConvertService,
|
||||||
NodeIKernelRichMediaService,
|
NodeIKernelRichMediaService,
|
||||||
NodeIKernelTicketService,
|
NodeIKernelTicketService,
|
||||||
NodeIKernelTipOffService,
|
NodeIKernelTipOffService
|
||||||
NodeIKernelSearchService
|
|
||||||
} from './services'
|
} from './services'
|
||||||
import { constants } from 'node:os'
|
import { constants } from 'node:os'
|
||||||
import { Dict } from 'cosmokit'
|
import { Dict } from 'cosmokit'
|
||||||
@@ -26,7 +25,6 @@ export interface NodeIQQNTWrapperSession {
|
|||||||
getRichMediaService(): NodeIKernelRichMediaService
|
getRichMediaService(): NodeIKernelRichMediaService
|
||||||
getTicketService(): NodeIKernelTicketService
|
getTicketService(): NodeIKernelTicketService
|
||||||
getTipOffService(): NodeIKernelTipOffService
|
getTipOffService(): NodeIKernelTipOffService
|
||||||
getSearchService(): NodeIKernelSearchService
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface WrapperApi {
|
export interface WrapperApi {
|
||||||
|
@@ -2,7 +2,6 @@ import { BaseAction, Schema } from '../BaseAction'
|
|||||||
import { readFile } from 'node:fs/promises'
|
import { readFile } from 'node:fs/promises'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
import { Peer, ElementType } from '@/ntqqapi/types'
|
import { Peer, ElementType } from '@/ntqqapi/types'
|
||||||
import { MessageUnique } from '@/common/utils/messageUnique'
|
|
||||||
|
|
||||||
export interface GetFilePayload {
|
export interface GetFilePayload {
|
||||||
file: string // 文件名或者fileUuid
|
file: string // 文件名或者fileUuid
|
||||||
@@ -24,9 +23,9 @@ export abstract class GetFileBase extends BaseAction<GetFilePayload, GetFileResp
|
|||||||
protected async _handle(payload: GetFilePayload): Promise<GetFileResponse> {
|
protected async _handle(payload: GetFilePayload): Promise<GetFileResponse> {
|
||||||
const { enableLocalFile2Url } = this.adapter.config
|
const { enableLocalFile2Url } = this.adapter.config
|
||||||
|
|
||||||
let fileCache = await MessageUnique.getFileCacheById(payload.file)
|
let fileCache = await this.ctx.store.getFileCacheById(payload.file)
|
||||||
if (!fileCache?.length) {
|
if (!fileCache?.length) {
|
||||||
fileCache = await MessageUnique.getFileCacheByName(payload.file)
|
fileCache = await this.ctx.store.getFileCacheByName(payload.file)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (fileCache?.length) {
|
if (fileCache?.length) {
|
||||||
@@ -49,7 +48,7 @@ export abstract class GetFileBase extends BaseAction<GetFilePayload, GetFileResp
|
|||||||
peerUid: fileCache[0].peerUid,
|
peerUid: fileCache[0].peerUid,
|
||||||
guildId: ''
|
guildId: ''
|
||||||
}
|
}
|
||||||
if (fileCache[0].elementType === ElementType.PIC) {
|
if (fileCache[0].elementType === ElementType.Pic) {
|
||||||
const msgList = await this.ctx.ntMsgApi.getMsgsByMsgId(peer, [fileCache[0].msgId])
|
const msgList = await this.ctx.ntMsgApi.getMsgsByMsgId(peer, [fileCache[0].msgId])
|
||||||
if (msgList.msgList.length === 0) {
|
if (msgList.msgList.length === 0) {
|
||||||
throw new Error('msg not found')
|
throw new Error('msg not found')
|
||||||
@@ -60,7 +59,7 @@ export abstract class GetFileBase extends BaseAction<GetFilePayload, GetFileResp
|
|||||||
throw new Error('element not found')
|
throw new Error('element not found')
|
||||||
}
|
}
|
||||||
res.url = await this.ctx.ntFileApi.getImageUrl(findEle.picElement!)
|
res.url = await this.ctx.ntFileApi.getImageUrl(findEle.picElement!)
|
||||||
} else if (fileCache[0].elementType === ElementType.VIDEO) {
|
} else if (fileCache[0].elementType === ElementType.Video) {
|
||||||
res.url = await this.ctx.ntFileApi.getVideoUrl(peer, fileCache[0].msgId, fileCache[0].elementId)
|
res.url = await this.ctx.ntFileApi.getVideoUrl(peer, fileCache[0].msgId, fileCache[0].elementId)
|
||||||
}
|
}
|
||||||
if (enableLocalFile2Url && downloadPath && (res.file === res.url || res.url === undefined)) {
|
if (enableLocalFile2Url && downloadPath && (res.file === res.url || res.url === undefined)) {
|
||||||
|
@@ -1,25 +1,24 @@
|
|||||||
import { BaseAction, Schema } from '../BaseAction'
|
import { BaseAction, Schema } from '../BaseAction'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
import { MessageUnique } from '@/common/utils/messageUnique'
|
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
message_id: number | string
|
message_id: number | string
|
||||||
}
|
}
|
||||||
|
|
||||||
export class DelEssenceMsg extends BaseAction<Payload, unknown> {
|
export class DeleteEssenceMsg extends BaseAction<Payload, unknown> {
|
||||||
actionName = ActionName.GoCQHTTP_DelEssenceMsg
|
actionName = ActionName.GoCQHTTP_DelEssenceMsg
|
||||||
payloadSchema = Schema.object({
|
payloadSchema = Schema.object({
|
||||||
message_id: Schema.union([Number, String]).required()
|
message_id: Schema.union([Number, String]).required()
|
||||||
})
|
})
|
||||||
|
|
||||||
protected async _handle(payload: Payload) {
|
protected async _handle(payload: Payload) {
|
||||||
const msg = await MessageUnique.getMsgIdAndPeerByShortId(+payload.message_id)
|
const msg = await this.ctx.store.getMsgInfoByShortId(+payload.message_id)
|
||||||
if (!msg) {
|
if (!msg) {
|
||||||
throw new Error('msg not found')
|
throw new Error('msg not found')
|
||||||
}
|
}
|
||||||
return await this.ctx.ntGroupApi.removeGroupEssence(
|
return await this.ctx.ntGroupApi.removeGroupEssence(
|
||||||
msg.Peer.peerUid,
|
msg.peer.peerUid,
|
||||||
msg.MsgId,
|
msg.msgId,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -2,9 +2,9 @@ import { BaseAction, Schema } from '../BaseAction'
|
|||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
group_id: string | number
|
group_id: number | string
|
||||||
file_id: string
|
file_id: string
|
||||||
busid: number
|
busid: number | string
|
||||||
}
|
}
|
||||||
|
|
||||||
export class DelGroupFile extends BaseAction<Payload, null> {
|
export class DelGroupFile extends BaseAction<Payload, null> {
|
||||||
@@ -12,11 +12,11 @@ export class DelGroupFile extends BaseAction<Payload, null> {
|
|||||||
payloadSchema = Schema.object({
|
payloadSchema = Schema.object({
|
||||||
group_id: Schema.union([Number, String]).required(),
|
group_id: Schema.union([Number, String]).required(),
|
||||||
file_id: Schema.string().required(),
|
file_id: Schema.string().required(),
|
||||||
busid: Schema.number().default(102)
|
busid: Schema.union([Number, String]).default(102)
|
||||||
})
|
})
|
||||||
|
|
||||||
async _handle(payload: Payload) {
|
async _handle(payload: Payload) {
|
||||||
await this.ctx.ntGroupApi.deleteGroupFile(payload.group_id.toString(), [payload.file_id], [payload.busid])
|
await this.ctx.ntGroupApi.deleteGroupFile(payload.group_id.toString(), [payload.file_id], [+payload.busid])
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -2,7 +2,6 @@ import { BaseAction, Schema } from '../BaseAction'
|
|||||||
import { OB11ForwardMessage } from '../../types'
|
import { OB11ForwardMessage } from '../../types'
|
||||||
import { OB11Entities } from '../../entities'
|
import { OB11Entities } from '../../entities'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
import { MessageUnique } from '@/common/utils/messageUnique'
|
|
||||||
import { filterNullable } from '@/common/utils/misc'
|
import { filterNullable } from '@/common/utils/misc'
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
@@ -17,8 +16,8 @@ interface Response {
|
|||||||
export class GetForwardMsg extends BaseAction<Payload, Response> {
|
export class GetForwardMsg extends BaseAction<Payload, Response> {
|
||||||
actionName = ActionName.GoCQHTTP_GetForwardMsg
|
actionName = ActionName.GoCQHTTP_GetForwardMsg
|
||||||
payloadSchema = Schema.object({
|
payloadSchema = Schema.object({
|
||||||
message_id: String,
|
message_id: Schema.string(),
|
||||||
id: String
|
id: Schema.string()
|
||||||
})
|
})
|
||||||
|
|
||||||
protected async _handle(payload: Payload) {
|
protected async _handle(payload: Payload) {
|
||||||
@@ -26,34 +25,32 @@ export class GetForwardMsg extends BaseAction<Payload, Response> {
|
|||||||
if (!msgId) {
|
if (!msgId) {
|
||||||
throw Error('message_id不能为空')
|
throw Error('message_id不能为空')
|
||||||
}
|
}
|
||||||
const rootMsgId = MessageUnique.getShortIdByMsgId(msgId)
|
const rootMsgId = await this.ctx.store.getShortIdByMsgId(msgId)
|
||||||
const rootMsg = await MessageUnique.getMsgIdAndPeerByShortId(rootMsgId || +msgId)
|
const rootMsg = await this.ctx.store.getMsgInfoByShortId(rootMsgId || +msgId)
|
||||||
if (!rootMsg) {
|
if (!rootMsg) {
|
||||||
throw Error('msg not found')
|
throw Error('msg not found')
|
||||||
}
|
}
|
||||||
const data = await this.ctx.ntMsgApi.getMultiMsg(rootMsg.Peer, rootMsg.MsgId, rootMsg.MsgId)
|
const data = await this.ctx.ntMsgApi.getMultiMsg(rootMsg.peer, rootMsg.msgId, rootMsg.msgId)
|
||||||
if (data?.result !== 0) {
|
if (data?.result !== 0) {
|
||||||
throw Error('找不到相关的聊天记录' + data?.errMsg)
|
throw Error('找不到相关的聊天记录' + data?.errMsg)
|
||||||
}
|
}
|
||||||
const msgList = data.msgList
|
const messages: (OB11ForwardMessage | undefined)[] = await Promise.all(
|
||||||
const messages = await Promise.all(
|
data.msgList.map(async (msg) => {
|
||||||
msgList.map(async (msg) => {
|
const res = await OB11Entities.message(this.ctx, msg)
|
||||||
const resMsg = await OB11Entities.message(this.ctx, msg)
|
if (res) {
|
||||||
if (!resMsg) return
|
return {
|
||||||
resMsg.message_id = MessageUnique.createMsg({
|
content: res.message,
|
||||||
chatType: msg.chatType,
|
sender: {
|
||||||
peerUid: msg.peerUid,
|
nickname: res.sender.nickname,
|
||||||
}, msg.msgId)
|
user_id: res.sender.user_id
|
||||||
return resMsg
|
},
|
||||||
|
time: res.time,
|
||||||
|
message_format: res.message_format,
|
||||||
|
message_type: res.message_type
|
||||||
|
}
|
||||||
|
}
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
const forwardMessages = filterNullable(messages)
|
return { messages: filterNullable(messages) }
|
||||||
.map(v => {
|
|
||||||
const msg = v as Partial<OB11ForwardMessage>
|
|
||||||
msg.content = msg.message
|
|
||||||
delete msg.message
|
|
||||||
return msg as OB11ForwardMessage
|
|
||||||
})
|
|
||||||
return { messages: forwardMessages }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
50
src/onebot11/action/go-cqhttp/GetGroupEssence.ts
Normal file
50
src/onebot11/action/go-cqhttp/GetGroupEssence.ts
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
import { BaseAction, Schema } from '../BaseAction'
|
||||||
|
import { ActionName } from '../types'
|
||||||
|
import { ChatType } from '@/ntqqapi/types'
|
||||||
|
|
||||||
|
interface Payload {
|
||||||
|
group_id: number | string
|
||||||
|
}
|
||||||
|
|
||||||
|
interface EssenceMsg {
|
||||||
|
sender_id: number
|
||||||
|
sender_nick: string
|
||||||
|
sender_time: number
|
||||||
|
operator_id: number
|
||||||
|
operator_nick: string
|
||||||
|
operator_time: number
|
||||||
|
message_id: number
|
||||||
|
}
|
||||||
|
|
||||||
|
export class GetEssenceMsgList extends BaseAction<Payload, EssenceMsg[]> {
|
||||||
|
actionName = ActionName.GoCQHTTP_GetEssenceMsgList
|
||||||
|
payloadSchema = Schema.object({
|
||||||
|
group_id: Schema.union([Number, String]).required()
|
||||||
|
})
|
||||||
|
|
||||||
|
protected async _handle(payload: Payload) {
|
||||||
|
const groupCode = payload.group_id.toString()
|
||||||
|
const peer = {
|
||||||
|
guildId: '',
|
||||||
|
chatType: ChatType.Group,
|
||||||
|
peerUid: groupCode
|
||||||
|
}
|
||||||
|
const essence = await this.ctx.ntGroupApi.queryCachedEssenceMsg(groupCode)
|
||||||
|
const data: EssenceMsg[] = []
|
||||||
|
for (const item of essence.items) {
|
||||||
|
const { msgList } = await this.ctx.ntMsgApi.queryMsgsWithFilterExBySeq(peer, String(item.msgSeq), '0')
|
||||||
|
const sourceMsg = msgList.find(e => e.msgRandom === String(item.msgRandom))
|
||||||
|
if (!sourceMsg) continue
|
||||||
|
data.push({
|
||||||
|
sender_id: +item.msgSenderUin,
|
||||||
|
sender_nick: item.msgSenderNick,
|
||||||
|
sender_time: +sourceMsg.msgTime,
|
||||||
|
operator_id: +item.opUin,
|
||||||
|
operator_nick: item.opNick,
|
||||||
|
operator_time: item.opTime,
|
||||||
|
message_id: this.ctx.store.createMsgShortId(peer, sourceMsg.msgId)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
return data
|
||||||
|
}
|
||||||
|
}
|
82
src/onebot11/action/go-cqhttp/GetGroupFileUrl.ts
Normal file
82
src/onebot11/action/go-cqhttp/GetGroupFileUrl.ts
Normal file
@@ -0,0 +1,82 @@
|
|||||||
|
import { BaseAction, Schema } from '../BaseAction'
|
||||||
|
import { ActionName } from '../types'
|
||||||
|
import { pathToFileURL } from 'node:url'
|
||||||
|
import { ChatType } from '@/ntqqapi/types'
|
||||||
|
import { GroupFileInfo } from '@/ntqqapi/types'
|
||||||
|
|
||||||
|
export interface Payload {
|
||||||
|
group_id: number | string
|
||||||
|
file_id: string
|
||||||
|
busid?: number
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Response {
|
||||||
|
url: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export class GetGroupFileUrl extends BaseAction<Payload, Response> {
|
||||||
|
actionName = ActionName.GoCQHTTP_GetGroupFileUrl
|
||||||
|
payloadSchema = Schema.object({
|
||||||
|
group_id: Schema.union([Number, String]).required(),
|
||||||
|
file_id: Schema.string().required()
|
||||||
|
})
|
||||||
|
|
||||||
|
protected async _handle(payload: Payload) {
|
||||||
|
const file = await this.ctx.store.getFileCacheById(payload.file_id)
|
||||||
|
if (file.length > 0) {
|
||||||
|
const { msgId, chatType, peerUid, elementId } = file[0]
|
||||||
|
const path = await this.ctx.ntFileApi.downloadMedia(msgId, chatType, peerUid, elementId)
|
||||||
|
return {
|
||||||
|
url: pathToFileURL(path).href
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
const groupId = payload.group_id.toString()
|
||||||
|
const modelId = await this.search(groupId, payload.file_id)
|
||||||
|
if (modelId) {
|
||||||
|
const peer = {
|
||||||
|
chatType: ChatType.Group,
|
||||||
|
peerUid: groupId,
|
||||||
|
guildId: ''
|
||||||
|
}
|
||||||
|
const path = await this.ctx.ntFileApi.downloadFileForModelId(peer, modelId)
|
||||||
|
return {
|
||||||
|
url: pathToFileURL(path).href
|
||||||
|
}
|
||||||
|
}
|
||||||
|
throw new Error('file not found')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async search(groupId: string, fileId: string, folderId?: string) {
|
||||||
|
let modelId: string | undefined
|
||||||
|
let nextIndex: number | undefined
|
||||||
|
let folders: GroupFileInfo['item'] = []
|
||||||
|
while (nextIndex !== 0) {
|
||||||
|
const res = await this.ctx.ntGroupApi.getGroupFileList(groupId, {
|
||||||
|
sortType: 1,
|
||||||
|
fileCount: 100,
|
||||||
|
startIndex: nextIndex ?? 0,
|
||||||
|
sortOrder: 2,
|
||||||
|
showOnlinedocFolder: 0,
|
||||||
|
folderId
|
||||||
|
})
|
||||||
|
const file = res.item.find(item => item.fileInfo?.fileId === fileId)
|
||||||
|
if (file) {
|
||||||
|
modelId = file.fileInfo?.fileModelId
|
||||||
|
break
|
||||||
|
}
|
||||||
|
folders.push(...res.item.filter(item => item.folderInfo?.totalFileCount))
|
||||||
|
nextIndex = res.nextIndex
|
||||||
|
}
|
||||||
|
if (!modelId) {
|
||||||
|
for (const item of folders) {
|
||||||
|
const res = await this.search(groupId, fileId, item.folderInfo?.folderId)
|
||||||
|
if (res) {
|
||||||
|
modelId = res
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return modelId
|
||||||
|
}
|
||||||
|
}
|
@@ -1,11 +1,11 @@
|
|||||||
import { BaseAction, Schema } from '../BaseAction'
|
import { BaseAction, Schema } from '../BaseAction'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
import { OB11GroupFile, OB11GroupFileFolder } from '@/onebot11/types'
|
import { OB11GroupFile, OB11GroupFileFolder } from '@/onebot11/types'
|
||||||
|
import { GroupFileInfo } from '@/ntqqapi/types'
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
group_id: string | number
|
group_id: number | string
|
||||||
folder_id: string
|
folder_id: string
|
||||||
file_count: string | number
|
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Response {
|
interface Response {
|
||||||
@@ -17,19 +17,27 @@ export class GetGroupFilesByFolder extends BaseAction<Payload, Response> {
|
|||||||
actionName = ActionName.GoCQHTTP_GetGroupFilesByFolder
|
actionName = ActionName.GoCQHTTP_GetGroupFilesByFolder
|
||||||
payloadSchema = Schema.object({
|
payloadSchema = Schema.object({
|
||||||
group_id: Schema.union([Number, String]).required(),
|
group_id: Schema.union([Number, String]).required(),
|
||||||
folder_id: Schema.string().required(),
|
folder_id: Schema.string().required()
|
||||||
file_count: Schema.union([Number, String]).default(50)
|
|
||||||
})
|
})
|
||||||
|
|
||||||
async _handle(payload: Payload) {
|
async _handle(payload: Payload) {
|
||||||
const data = await this.ctx.ntGroupApi.getGroupFileList(payload.group_id.toString(), {
|
const groupId = payload.group_id.toString()
|
||||||
sortType: 1,
|
const data: GroupFileInfo['item'] = []
|
||||||
fileCount: +payload.file_count,
|
|
||||||
startIndex: 0,
|
let nextIndex: number | undefined
|
||||||
sortOrder: 2,
|
while (nextIndex !== 0) {
|
||||||
showOnlinedocFolder: 0,
|
const res = await this.ctx.ntGroupApi.getGroupFileList(groupId, {
|
||||||
folderId: payload.folder_id
|
sortType: 1,
|
||||||
})
|
fileCount: 100,
|
||||||
|
startIndex: nextIndex ?? 0,
|
||||||
|
sortOrder: 2,
|
||||||
|
showOnlinedocFolder: 0,
|
||||||
|
folderId: payload.folder_id
|
||||||
|
})
|
||||||
|
data.push(...res.item)
|
||||||
|
nextIndex = res.nextIndex
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
files: data.filter(item => item.fileInfo)
|
files: data.filter(item => item.fileInfo)
|
||||||
.map(item => {
|
.map(item => {
|
||||||
|
@@ -4,8 +4,7 @@ import { ActionName } from '../types'
|
|||||||
import { ChatType } from '@/ntqqapi/types'
|
import { ChatType } from '@/ntqqapi/types'
|
||||||
import { OB11Entities } from '../../entities'
|
import { OB11Entities } from '../../entities'
|
||||||
import { RawMessage } from '@/ntqqapi/types'
|
import { RawMessage } from '@/ntqqapi/types'
|
||||||
import { MessageUnique } from '@/common/utils/messageUnique'
|
import { filterNullable, parseBool } from '@/common/utils/misc'
|
||||||
import { filterNullable } from '@/common/utils/misc'
|
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
group_id: number | string
|
group_id: number | string
|
||||||
@@ -24,29 +23,23 @@ export class GetGroupMsgHistory extends BaseAction<Payload, Response> {
|
|||||||
group_id: Schema.union([Number, String]).required(),
|
group_id: Schema.union([Number, String]).required(),
|
||||||
message_seq: Schema.union([Number, String]),
|
message_seq: Schema.union([Number, String]),
|
||||||
count: Schema.union([Number, String]).default(20),
|
count: Schema.union([Number, String]).default(20),
|
||||||
reverseOrder: Schema.boolean().default(false),
|
reverseOrder: Schema.union([Boolean, Schema.transform(String, parseBool)]).default(false)
|
||||||
})
|
})
|
||||||
|
|
||||||
protected async _handle(payload: Payload): Promise<Response> {
|
protected async _handle(payload: Payload): Promise<Response> {
|
||||||
const { count, reverseOrder } = payload
|
const { count, reverseOrder } = payload
|
||||||
const peer = { chatType: ChatType.group, peerUid: payload.group_id.toString() }
|
const peer = { chatType: ChatType.Group, peerUid: payload.group_id.toString() }
|
||||||
let msgList: RawMessage[] | undefined
|
let msgList: RawMessage[]
|
||||||
// 包含 message_seq 0
|
if (!payload.message_seq || payload.message_seq === '0') {
|
||||||
if (!payload.message_seq) {
|
|
||||||
msgList = (await this.ctx.ntMsgApi.getAioFirstViewLatestMsgs(peer, +count)).msgList
|
msgList = (await this.ctx.ntMsgApi.getAioFirstViewLatestMsgs(peer, +count)).msgList
|
||||||
} else {
|
} else {
|
||||||
const startMsgId = (await MessageUnique.getMsgIdAndPeerByShortId(+payload.message_seq))?.MsgId
|
const startMsgId = (await this.ctx.store.getMsgInfoByShortId(+payload.message_seq))?.msgId
|
||||||
if (!startMsgId) throw new Error(`消息${payload.message_seq}不存在`)
|
if (!startMsgId) throw new Error(`消息${payload.message_seq}不存在`)
|
||||||
msgList = (await this.ctx.ntMsgApi.getMsgHistory(peer, startMsgId, +count)).msgList
|
msgList = (await this.ctx.ntMsgApi.getMsgHistory(peer, startMsgId, +count)).msgList
|
||||||
}
|
}
|
||||||
if (!msgList?.length) throw new Error('未找到消息')
|
if (!msgList?.length) throw new Error('未找到消息')
|
||||||
if (reverseOrder) msgList.reverse()
|
if (reverseOrder) msgList.reverse()
|
||||||
await Promise.all(
|
const ob11MsgList = await Promise.all(msgList.map(msg => OB11Entities.message(this.ctx, msg)))
|
||||||
msgList.map(async msg => {
|
|
||||||
msg.msgShortId = MessageUnique.createMsg({ chatType: msg.chatType, peerUid: msg.peerUid }, msg.msgId)
|
|
||||||
})
|
|
||||||
)
|
|
||||||
const ob11MsgList = await Promise.all(msgList.map((msg) => OB11Entities.message(this.ctx, msg)))
|
|
||||||
return { messages: filterNullable(ob11MsgList) }
|
return { messages: filterNullable(ob11MsgList) }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
48
src/onebot11/action/go-cqhttp/GetGroupNotice.ts
Normal file
48
src/onebot11/action/go-cqhttp/GetGroupNotice.ts
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
import { BaseAction, Schema } from '../BaseAction'
|
||||||
|
import { ActionName } from '../types'
|
||||||
|
|
||||||
|
interface Payload {
|
||||||
|
group_id: number | string
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Notice {
|
||||||
|
sender_id: number
|
||||||
|
publish_time: number
|
||||||
|
message: {
|
||||||
|
text: string
|
||||||
|
images: {
|
||||||
|
height: string
|
||||||
|
width: string
|
||||||
|
id: string
|
||||||
|
}[]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export class GetGroupNotice extends BaseAction<Payload, Notice[]> {
|
||||||
|
actionName = ActionName.GoCQHTTP_GetGroupNotice
|
||||||
|
payloadSchema = Schema.object({
|
||||||
|
group_id: Schema.union([Number, String]).required()
|
||||||
|
})
|
||||||
|
|
||||||
|
protected async _handle(payload: Payload) {
|
||||||
|
const data = await this.ctx.ntGroupApi.getGroupBulletinList(payload.group_id.toString())
|
||||||
|
const result: Notice[] = []
|
||||||
|
for (const feed of data.result.feeds) {
|
||||||
|
result.push({
|
||||||
|
sender_id: +feed.uin,
|
||||||
|
publish_time: +feed.publishTime,
|
||||||
|
message: {
|
||||||
|
text: feed.msg.text,
|
||||||
|
images: feed.msg.pics.map(image => {
|
||||||
|
return {
|
||||||
|
height: String(image.height),
|
||||||
|
width: String(image.width),
|
||||||
|
id: image.id
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
return result
|
||||||
|
}
|
||||||
|
}
|
@@ -1,10 +1,10 @@
|
|||||||
import { BaseAction, Schema } from '../BaseAction'
|
import { BaseAction, Schema } from '../BaseAction'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
import { OB11GroupFile, OB11GroupFileFolder } from '../../types'
|
import { OB11GroupFile, OB11GroupFileFolder } from '../../types'
|
||||||
|
import { GroupFileInfo } from '@/ntqqapi/types'
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
group_id: string | number
|
group_id: number | string
|
||||||
file_count: string | number
|
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Response {
|
interface Response {
|
||||||
@@ -15,18 +15,26 @@ interface Response {
|
|||||||
export class GetGroupRootFiles extends BaseAction<Payload, Response> {
|
export class GetGroupRootFiles extends BaseAction<Payload, Response> {
|
||||||
actionName = ActionName.GoCQHTTP_GetGroupRootFiles
|
actionName = ActionName.GoCQHTTP_GetGroupRootFiles
|
||||||
payloadSchema = Schema.object({
|
payloadSchema = Schema.object({
|
||||||
group_id: Schema.union([Number, String]).required(),
|
group_id: Schema.union([Number, String]).required()
|
||||||
file_count: Schema.union([Number, String]).default(50),
|
|
||||||
})
|
})
|
||||||
|
|
||||||
async _handle(payload: Payload) {
|
async _handle(payload: Payload) {
|
||||||
const data = await this.ctx.ntGroupApi.getGroupFileList(payload.group_id.toString(), {
|
const groupId = payload.group_id.toString()
|
||||||
sortType: 1,
|
const data: GroupFileInfo['item'] = []
|
||||||
fileCount: +payload.file_count,
|
|
||||||
startIndex: 0,
|
let nextIndex: number | undefined
|
||||||
sortOrder: 2,
|
while (nextIndex !== 0) {
|
||||||
showOnlinedocFolder: 0,
|
const res = await this.ctx.ntGroupApi.getGroupFileList(groupId, {
|
||||||
})
|
sortType: 1,
|
||||||
|
fileCount: 100,
|
||||||
|
startIndex: nextIndex ?? 0,
|
||||||
|
sortOrder: 2,
|
||||||
|
showOnlinedocFolder: 0,
|
||||||
|
})
|
||||||
|
data.push(...res.item)
|
||||||
|
nextIndex = res.nextIndex
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
files: data.filter(item => item.fileInfo)
|
files: data.filter(item => item.fileInfo)
|
||||||
.map(item => {
|
.map(item => {
|
||||||
|
@@ -1,6 +1,5 @@
|
|||||||
import { BaseAction, Schema } from '../BaseAction'
|
import { BaseAction, Schema } from '../BaseAction'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
import { MessageUnique } from '@/common/utils/messageUnique'
|
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
message_id: number | string
|
message_id: number | string
|
||||||
@@ -13,11 +12,11 @@ export class MarkMsgAsRead extends BaseAction<Payload, null> {
|
|||||||
})
|
})
|
||||||
|
|
||||||
protected async _handle(payload: Payload) {
|
protected async _handle(payload: Payload) {
|
||||||
const msg = await MessageUnique.getMsgIdAndPeerByShortId(+payload.message_id)
|
const msg = await this.ctx.store.getMsgInfoByShortId(+payload.message_id)
|
||||||
if (!msg) {
|
if (!msg) {
|
||||||
throw new Error('msg not found')
|
throw new Error('msg not found')
|
||||||
}
|
}
|
||||||
await this.ctx.ntMsgApi.setMsgRead(msg.Peer)
|
await this.ctx.ntMsgApi.setMsgRead(msg.peer)
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -4,14 +4,14 @@ import { ActionName } from '../types'
|
|||||||
import { BaseAction, Schema } from '../BaseAction'
|
import { BaseAction, Schema } from '../BaseAction'
|
||||||
import { Peer } from '@/ntqqapi/types/msg'
|
import { Peer } from '@/ntqqapi/types/msg'
|
||||||
import { ChatType, ElementType, RawMessage, SendMessageElement } from '@/ntqqapi/types'
|
import { ChatType, ElementType, RawMessage, SendMessageElement } from '@/ntqqapi/types'
|
||||||
import { MessageUnique } from '@/common/utils/messageUnique'
|
|
||||||
import { selfInfo } from '@/common/globalVars'
|
import { selfInfo } from '@/common/globalVars'
|
||||||
import { convertMessage2List, createSendElements, sendMsg, createPeer, CreatePeerMode } from '../../helper/createMessage'
|
import { convertMessage2List, createSendElements, sendMsg, createPeer, CreatePeerMode } from '../../helper/createMessage'
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
user_id?: string | number
|
user_id?: string | number
|
||||||
group_id?: string | number
|
group_id?: string | number
|
||||||
messages: OB11MessageNode[]
|
messages?: OB11MessageNode[]
|
||||||
|
message?: OB11MessageNode[]
|
||||||
message_type?: 'group' | 'private'
|
message_type?: 'group' | 'private'
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -21,15 +21,20 @@ interface Response {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export class SendForwardMsg extends BaseAction<Payload, Response> {
|
export class SendForwardMsg extends BaseAction<Payload, Response> {
|
||||||
actionName = ActionName.GoCQHTTP_SendForwardMsg
|
actionName = ActionName.SendForwardMsg
|
||||||
payloadSchema = Schema.object({
|
payloadSchema = Schema.object({
|
||||||
user_id: Schema.union([Number, String]),
|
user_id: Schema.union([Number, String]),
|
||||||
group_id: Schema.union([Number, String]),
|
group_id: Schema.union([Number, String]),
|
||||||
messages: Schema.array(Schema.any()).required(),
|
messages: Schema.array(Schema.any()),
|
||||||
|
message: Schema.array(Schema.any()),
|
||||||
message_type: Schema.union(['group', 'private'])
|
message_type: Schema.union(['group', 'private'])
|
||||||
})
|
})
|
||||||
|
|
||||||
protected async _handle(payload: Payload) {
|
protected async _handle(payload: Payload) {
|
||||||
|
const messages = payload.messages ?? payload.message
|
||||||
|
if (!messages) {
|
||||||
|
throw new Error('未指定消息内容')
|
||||||
|
}
|
||||||
let contextMode = CreatePeerMode.Normal
|
let contextMode = CreatePeerMode.Normal
|
||||||
if (payload.message_type === 'group') {
|
if (payload.message_type === 'group') {
|
||||||
contextMode = CreatePeerMode.Group
|
contextMode = CreatePeerMode.Group
|
||||||
@@ -37,8 +42,9 @@ export class SendForwardMsg extends BaseAction<Payload, Response> {
|
|||||||
contextMode = CreatePeerMode.Private
|
contextMode = CreatePeerMode.Private
|
||||||
}
|
}
|
||||||
const peer = await createPeer(this.ctx, payload, contextMode)
|
const peer = await createPeer(this.ctx, payload, contextMode)
|
||||||
const returnMsg = await this.handleForwardNode(peer, payload.messages)
|
const msg = await this.handleForwardNode(peer, messages)
|
||||||
return { message_id: returnMsg.msgShortId! }
|
const msgShortId = this.ctx.store.createMsgShortId({ chatType: msg.chatType, peerUid: msg.peerUid }, msg.msgId)
|
||||||
|
return { message_id: msgShortId }
|
||||||
}
|
}
|
||||||
|
|
||||||
private async cloneMsg(msg: RawMessage): Promise<RawMessage | undefined> {
|
private async cloneMsg(msg: RawMessage): Promise<RawMessage | undefined> {
|
||||||
@@ -53,11 +59,11 @@ export class SendForwardMsg extends BaseAction<Payload, Response> {
|
|||||||
this.ctx.logger.info('克隆消息', sendElements)
|
this.ctx.logger.info('克隆消息', sendElements)
|
||||||
try {
|
try {
|
||||||
const peer = {
|
const peer = {
|
||||||
chatType: ChatType.friend,
|
chatType: ChatType.C2C,
|
||||||
peerUid: selfInfo.uid
|
peerUid: selfInfo.uid
|
||||||
}
|
}
|
||||||
const nodeMsg = await this.ctx.ntMsgApi.sendMsg(peer, sendElements)
|
const nodeMsg = await this.ctx.ntMsgApi.sendMsg(peer, sendElements)
|
||||||
await this.ctx.sleep(400)
|
await this.ctx.sleep(300)
|
||||||
return nodeMsg
|
return nodeMsg
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
this.ctx.logger.warn(e, '克隆转发消息失败,将忽略本条消息', msg)
|
this.ctx.logger.warn(e, '克隆转发消息失败,将忽略本条消息', msg)
|
||||||
@@ -67,22 +73,22 @@ export class SendForwardMsg extends BaseAction<Payload, Response> {
|
|||||||
// 返回一个合并转发的消息id
|
// 返回一个合并转发的消息id
|
||||||
private async handleForwardNode(destPeer: Peer, messageNodes: OB11MessageNode[]) {
|
private async handleForwardNode(destPeer: Peer, messageNodes: OB11MessageNode[]) {
|
||||||
const selfPeer = {
|
const selfPeer = {
|
||||||
chatType: ChatType.friend,
|
chatType: ChatType.C2C,
|
||||||
peerUid: selfInfo.uid,
|
peerUid: selfInfo.uid,
|
||||||
}
|
}
|
||||||
let nodeMsgIds: string[] = []
|
const nodeMsgIds: { msgId: string, peer: Peer }[] = []
|
||||||
// 先判断一遍是不是id和自定义混用
|
// 先判断一遍是不是id和自定义混用
|
||||||
for (const messageNode of messageNodes) {
|
for (const messageNode of messageNodes) {
|
||||||
// 一个node表示一个人的消息
|
// 一个node表示一个人的消息
|
||||||
const nodeId = messageNode.data.id
|
const nodeId = messageNode.data.id
|
||||||
// 有nodeId表示一个子转发消息卡片
|
// 有nodeId表示一个子转发消息卡片
|
||||||
if (nodeId) {
|
if (nodeId) {
|
||||||
const nodeMsg = await MessageUnique.getMsgIdAndPeerByShortId(+nodeId) || await MessageUnique.getPeerByMsgId(nodeId)
|
const nodeMsg = await this.ctx.store.getMsgInfoByShortId(+nodeId)
|
||||||
if (!nodeMsg) {
|
if (!nodeMsg) {
|
||||||
this.ctx.logger.warn('转发消息失败,未找到消息', nodeId)
|
this.ctx.logger.warn('转发消息失败,未找到消息', nodeId)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
nodeMsgIds.push(nodeMsg.MsgId)
|
nodeMsgIds.push(nodeMsg)
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// 自定义的消息
|
// 自定义的消息
|
||||||
@@ -101,7 +107,7 @@ export class SendForwardMsg extends BaseAction<Payload, Response> {
|
|||||||
sendElementsSplit[splitIndex] = []
|
sendElementsSplit[splitIndex] = []
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ele.elementType === ElementType.FILE || ele.elementType === ElementType.VIDEO) {
|
if (ele.elementType === ElementType.File || ele.elementType === ElementType.Video) {
|
||||||
if (sendElementsSplit[splitIndex].length > 0) {
|
if (sendElementsSplit[splitIndex].length > 0) {
|
||||||
splitIndex++
|
splitIndex++
|
||||||
}
|
}
|
||||||
@@ -111,17 +117,16 @@ export class SendForwardMsg extends BaseAction<Payload, Response> {
|
|||||||
else {
|
else {
|
||||||
sendElementsSplit[splitIndex].push(ele)
|
sendElementsSplit[splitIndex].push(ele)
|
||||||
}
|
}
|
||||||
this.ctx.logger.info(sendElementsSplit)
|
|
||||||
}
|
}
|
||||||
// log("分割后的转发节点", sendElementsSplit)
|
this.ctx.logger.info('分割后的转发节点', sendElementsSplit)
|
||||||
for (const eles of sendElementsSplit) {
|
for (const eles of sendElementsSplit) {
|
||||||
const nodeMsg = await sendMsg(this.ctx, selfPeer, eles, [])
|
const nodeMsg = await sendMsg(this.ctx, selfPeer, eles, [])
|
||||||
if (!nodeMsg) {
|
if (!nodeMsg) {
|
||||||
this.ctx.logger.warn('转发节点生成失败', eles)
|
this.ctx.logger.warn('转发节点生成失败', eles)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
nodeMsgIds.push(nodeMsg.msgId)
|
nodeMsgIds.push({ msgId: nodeMsg.msgId, peer: selfPeer })
|
||||||
await this.ctx.sleep(400)
|
await this.ctx.sleep(300)
|
||||||
}
|
}
|
||||||
deleteAfterSentFiles.map(path => unlink(path))
|
deleteAfterSentFiles.map(path => unlink(path))
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
@@ -132,31 +137,33 @@ export class SendForwardMsg extends BaseAction<Payload, Response> {
|
|||||||
|
|
||||||
// 检查srcPeer是否一致,不一致则需要克隆成自己的消息, 让所有srcPeer都变成自己的,使其保持一致才能够转发
|
// 检查srcPeer是否一致,不一致则需要克隆成自己的消息, 让所有srcPeer都变成自己的,使其保持一致才能够转发
|
||||||
const nodeMsgArray: RawMessage[] = []
|
const nodeMsgArray: RawMessage[] = []
|
||||||
let srcPeer: Peer | null = null
|
let srcPeer: Peer
|
||||||
let needSendSelf = false
|
let needSendSelf = false
|
||||||
for (const msgId of nodeMsgIds) {
|
for (const { msgId, peer } of nodeMsgIds) {
|
||||||
const nodeMsgPeer = await MessageUnique.getPeerByMsgId(msgId)
|
const nodeMsg = (await this.ctx.ntMsgApi.getMsgsByMsgId(peer, [msgId])).msgList[0]
|
||||||
if (nodeMsgPeer) {
|
srcPeer ??= { chatType: nodeMsg.chatType, peerUid: nodeMsg.peerUid }
|
||||||
const nodeMsg = (await this.ctx.ntMsgApi.getMsgsByMsgId(nodeMsgPeer.Peer, [msgId])).msgList[0]
|
if (srcPeer.peerUid !== nodeMsg.peerUid) {
|
||||||
srcPeer = srcPeer ?? { chatType: nodeMsg.chatType, peerUid: nodeMsg.peerUid }
|
needSendSelf = true
|
||||||
if (srcPeer.peerUid !== nodeMsg.peerUid) {
|
|
||||||
needSendSelf = true
|
|
||||||
}
|
|
||||||
nodeMsgArray.push(nodeMsg)
|
|
||||||
}
|
}
|
||||||
|
nodeMsgArray.push(nodeMsg)
|
||||||
}
|
}
|
||||||
nodeMsgIds = nodeMsgArray.map((msg) => msg.msgId)
|
let retMsgIds: string[] = []
|
||||||
if (needSendSelf) {
|
if (needSendSelf) {
|
||||||
for (const msg of nodeMsgArray) {
|
for (const msg of nodeMsgArray) {
|
||||||
if (msg.peerUid === selfPeer.peerUid) continue
|
if (msg.peerUid === selfPeer.peerUid) {
|
||||||
await this.cloneMsg(msg)
|
retMsgIds.push(msg.msgId)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
const clonedMsg = await this.cloneMsg(msg)
|
||||||
|
if (clonedMsg) retMsgIds.push(clonedMsg.msgId)
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
retMsgIds = nodeMsgArray.map(msg => msg.msgId)
|
||||||
}
|
}
|
||||||
if (nodeMsgIds.length === 0) {
|
if (retMsgIds.length === 0) {
|
||||||
throw Error('转发消息失败,节点为空')
|
throw Error('转发消息失败,节点为空')
|
||||||
}
|
}
|
||||||
const returnMsg = await this.ctx.ntMsgApi.multiForwardMsg(srcPeer!, destPeer, nodeMsgIds)
|
const returnMsg = await this.ctx.ntMsgApi.multiForwardMsg(srcPeer!, destPeer, retMsgIds)
|
||||||
returnMsg.msgShortId = MessageUnique.createMsg(destPeer, returnMsg.msgId)
|
|
||||||
return returnMsg
|
return returnMsg
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,25 +1,22 @@
|
|||||||
import { BaseAction } from '../BaseAction'
|
import { BaseAction, Schema } from '../BaseAction'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
import { MessageUnique } from '@/common/utils/messageUnique'
|
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
message_id: number | string
|
message_id: number | string
|
||||||
}
|
}
|
||||||
|
|
||||||
export class SetEssenceMsg extends BaseAction<Payload, unknown> {
|
export class SetEssenceMsg extends BaseAction<Payload, null> {
|
||||||
actionName = ActionName.GoCQHTTP_SetEssenceMsg
|
actionName = ActionName.GoCQHTTP_SetEssenceMsg
|
||||||
|
payloadSchema = Schema.object({
|
||||||
|
message_id: Schema.union([Number, String]).required()
|
||||||
|
})
|
||||||
|
|
||||||
protected async _handle(payload: Payload) {
|
protected async _handle(payload: Payload) {
|
||||||
if (!payload.message_id) {
|
const msg = await this.ctx.store.getMsgInfoByShortId(+payload.message_id)
|
||||||
throw Error('message_id不能为空')
|
|
||||||
}
|
|
||||||
const msg = await MessageUnique.getMsgIdAndPeerByShortId(+payload.message_id)
|
|
||||||
if (!msg) {
|
if (!msg) {
|
||||||
throw new Error('msg not found')
|
throw new Error('msg not found')
|
||||||
}
|
}
|
||||||
return await this.ctx.ntGroupApi.addGroupEssence(
|
await this.ctx.ntGroupApi.addGroupEssence(msg.peer.peerUid, msg.msgId)
|
||||||
msg.Peer.peerUid,
|
return null
|
||||||
msg.MsgId
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,49 +0,0 @@
|
|||||||
import { BaseAction } from '../BaseAction'
|
|
||||||
import { ActionName } from '../types'
|
|
||||||
import { SendElementEntities } from '@/ntqqapi/entities'
|
|
||||||
import { uri2local } from '@/common/utils'
|
|
||||||
import { sendMsg, createPeer, CreatePeerMode } from '../../helper/createMessage'
|
|
||||||
|
|
||||||
interface UploadGroupFilePayload {
|
|
||||||
group_id: number | string
|
|
||||||
file: string
|
|
||||||
name: string
|
|
||||||
folder?: string
|
|
||||||
folder_id?: string
|
|
||||||
}
|
|
||||||
|
|
||||||
export class UploadGroupFile extends BaseAction<UploadGroupFilePayload, null> {
|
|
||||||
actionName = ActionName.GoCQHTTP_UploadGroupFile
|
|
||||||
|
|
||||||
protected async _handle(payload: UploadGroupFilePayload): Promise<null> {
|
|
||||||
const { success, errMsg, path, fileName } = await uri2local(payload.file)
|
|
||||||
if (!success) {
|
|
||||||
throw new Error(errMsg)
|
|
||||||
}
|
|
||||||
const file = await SendElementEntities.file(this.ctx, path, payload.name || fileName, payload.folder ?? payload.folder_id)
|
|
||||||
const peer = await createPeer(this.ctx, payload, CreatePeerMode.Group)
|
|
||||||
await sendMsg(this.ctx, peer, [file], [])
|
|
||||||
return null
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
interface UploadPrivateFilePayload {
|
|
||||||
user_id: number | string
|
|
||||||
file: string
|
|
||||||
name: string
|
|
||||||
}
|
|
||||||
|
|
||||||
export class UploadPrivateFile extends BaseAction<UploadPrivateFilePayload, null> {
|
|
||||||
actionName = ActionName.GoCQHTTP_UploadPrivateFile
|
|
||||||
|
|
||||||
protected async _handle(payload: UploadPrivateFilePayload): Promise<null> {
|
|
||||||
const { success, errMsg, path, fileName } = await uri2local(payload.file)
|
|
||||||
if (!success) {
|
|
||||||
throw new Error(errMsg)
|
|
||||||
}
|
|
||||||
const sendFileEle = await SendElementEntities.file(this.ctx, path, payload.name || fileName)
|
|
||||||
const peer = await createPeer(this.ctx, payload, CreatePeerMode.Private)
|
|
||||||
await sendMsg(this.ctx, peer, [sendFileEle], [])
|
|
||||||
return null
|
|
||||||
}
|
|
||||||
}
|
|
35
src/onebot11/action/go-cqhttp/UploadGroupFile.ts
Normal file
35
src/onebot11/action/go-cqhttp/UploadGroupFile.ts
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
import { BaseAction, Schema } from '../BaseAction'
|
||||||
|
import { ActionName } from '../types'
|
||||||
|
import { SendElement } from '@/ntqqapi/entities'
|
||||||
|
import { uri2local } from '@/common/utils'
|
||||||
|
import { sendMsg, createPeer, CreatePeerMode } from '../../helper/createMessage'
|
||||||
|
|
||||||
|
interface Payload {
|
||||||
|
group_id: number | string
|
||||||
|
file: string
|
||||||
|
name: string
|
||||||
|
folder?: string
|
||||||
|
folder_id?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export class UploadGroupFile extends BaseAction<Payload, null> {
|
||||||
|
actionName = ActionName.GoCQHTTP_UploadGroupFile
|
||||||
|
payloadSchema = Schema.object({
|
||||||
|
group_id: Schema.union([Number, String]).required(),
|
||||||
|
file: Schema.string().required(),
|
||||||
|
name: Schema.string(),
|
||||||
|
folder: Schema.string(),
|
||||||
|
folder_id: Schema.string()
|
||||||
|
})
|
||||||
|
|
||||||
|
protected async _handle(payload: Payload): Promise<null> {
|
||||||
|
const { success, errMsg, path, fileName } = await uri2local(payload.file)
|
||||||
|
if (!success) {
|
||||||
|
throw new Error(errMsg)
|
||||||
|
}
|
||||||
|
const file = await SendElement.file(this.ctx, path, payload.name || fileName, payload.folder ?? payload.folder_id)
|
||||||
|
const peer = await createPeer(this.ctx, payload, CreatePeerMode.Group)
|
||||||
|
await sendMsg(this.ctx, peer, [file], [])
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
}
|
31
src/onebot11/action/go-cqhttp/UploadPrivateFile.ts
Normal file
31
src/onebot11/action/go-cqhttp/UploadPrivateFile.ts
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
import { BaseAction, Schema } from '../BaseAction'
|
||||||
|
import { ActionName } from '../types'
|
||||||
|
import { SendElement } from '@/ntqqapi/entities'
|
||||||
|
import { uri2local } from '@/common/utils'
|
||||||
|
import { sendMsg, createPeer, CreatePeerMode } from '../../helper/createMessage'
|
||||||
|
|
||||||
|
interface UploadPrivateFilePayload {
|
||||||
|
user_id: number | string
|
||||||
|
file: string
|
||||||
|
name: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export class UploadPrivateFile extends BaseAction<UploadPrivateFilePayload, null> {
|
||||||
|
actionName = ActionName.GoCQHTTP_UploadPrivateFile
|
||||||
|
payloadSchema = Schema.object({
|
||||||
|
user_id: Schema.union([Number, String]).required(),
|
||||||
|
file: Schema.string().required(),
|
||||||
|
name: Schema.string()
|
||||||
|
})
|
||||||
|
|
||||||
|
protected async _handle(payload: UploadPrivateFilePayload): Promise<null> {
|
||||||
|
const { success, errMsg, path, fileName } = await uri2local(payload.file)
|
||||||
|
if (!success) {
|
||||||
|
throw new Error(errMsg)
|
||||||
|
}
|
||||||
|
const sendFileEle = await SendElement.file(this.ctx, path, payload.name || fileName)
|
||||||
|
const peer = await createPeer(this.ctx, payload, CreatePeerMode.Private)
|
||||||
|
await sendMsg(this.ctx, peer, [sendFileEle], [])
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
}
|
@@ -1,16 +0,0 @@
|
|||||||
import { GroupEssenceMsgRet } from '@/ntqqapi/api'
|
|
||||||
import { BaseAction } from '../BaseAction'
|
|
||||||
import { ActionName } from '../types'
|
|
||||||
|
|
||||||
interface PayloadType {
|
|
||||||
group_id: number
|
|
||||||
pages?: number
|
|
||||||
}
|
|
||||||
|
|
||||||
export class GetGroupEssence extends BaseAction<PayloadType, GroupEssenceMsgRet | void> {
|
|
||||||
actionName = ActionName.GoCQHTTP_GetEssenceMsg
|
|
||||||
|
|
||||||
protected async _handle() {
|
|
||||||
throw '此 api 暂不支持'
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,22 +1,19 @@
|
|||||||
import { WebHonorType } from '@/ntqqapi/api'
|
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
import { BaseAction } from '../BaseAction'
|
import { BaseAction, Schema } from '../BaseAction'
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
group_id: number
|
group_id: number | string
|
||||||
type?: WebHonorType
|
type: 'talkative' | 'performer' | 'legend' | 'strong_newbie' | 'emotion' | 'all'
|
||||||
}
|
}
|
||||||
|
|
||||||
export class GetGroupHonorInfo extends BaseAction<Payload, unknown> {
|
export class GetGroupHonorInfo extends BaseAction<Payload, unknown> {
|
||||||
actionName = ActionName.GetGroupHonorInfo
|
actionName = ActionName.GetGroupHonorInfo
|
||||||
|
payloadSchema = Schema.object({
|
||||||
|
group_id: Schema.union([Number, String]).required(),
|
||||||
|
type: Schema.union(['talkative', 'performer', 'legend', 'strong_newbie', 'emotion', 'all']).default('all')
|
||||||
|
})
|
||||||
|
|
||||||
protected async _handle(payload: Payload) {
|
protected async _handle(payload: Payload) {
|
||||||
if (!payload.group_id) {
|
|
||||||
throw '缺少参数group_id'
|
|
||||||
}
|
|
||||||
if (!payload.type) {
|
|
||||||
payload.type = WebHonorType.ALL
|
|
||||||
}
|
|
||||||
return await this.ctx.ntWebApi.getGroupHonorInfo(payload.group_id.toString(), payload.type)
|
return await this.ctx.ntWebApi.getGroupHonorInfo(payload.group_id.toString(), payload.type)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
import { OB11Group } from '../../types'
|
import { OB11Group } from '../../types'
|
||||||
import { OB11Entities } from '../../entities'
|
import { OB11Entities } from '../../entities'
|
||||||
import { BaseAction } from '../BaseAction'
|
import { BaseAction, Schema } from '../BaseAction'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
@@ -9,14 +9,17 @@ interface Payload {
|
|||||||
|
|
||||||
class GetGroupInfo extends BaseAction<Payload, OB11Group> {
|
class GetGroupInfo extends BaseAction<Payload, OB11Group> {
|
||||||
actionName = ActionName.GetGroupInfo
|
actionName = ActionName.GetGroupInfo
|
||||||
|
payloadSchema = Schema.object({
|
||||||
|
group_id: Schema.union([Number, String]).required()
|
||||||
|
})
|
||||||
|
|
||||||
protected async _handle(payload: Payload) {
|
protected async _handle(payload: Payload) {
|
||||||
const group = (await this.ctx.ntGroupApi.getGroups()).find(e => e.groupCode == payload.group_id.toString())
|
const groupCode = payload.group_id.toString()
|
||||||
|
const group = (await this.ctx.ntGroupApi.getGroups()).find(e => e.groupCode === groupCode)
|
||||||
if (group) {
|
if (group) {
|
||||||
return OB11Entities.group(group)
|
return OB11Entities.group(group)
|
||||||
} else {
|
|
||||||
throw `群${payload.group_id}不存在`
|
|
||||||
}
|
}
|
||||||
|
throw new Error(`群${payload.group_id}不存在`)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,8 +1,7 @@
|
|||||||
import { BaseAction } from '../BaseAction'
|
import { BaseAction, Schema } from '../BaseAction'
|
||||||
import { OB11GroupMember } from '../../types'
|
import { OB11GroupMember } from '../../types'
|
||||||
import { OB11Entities } from '../../entities'
|
import { OB11Entities } from '../../entities'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
import { selfInfo } from '@/common/globalVars'
|
|
||||||
import { isNullable } from 'cosmokit'
|
import { isNullable } from 'cosmokit'
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
@@ -12,35 +11,26 @@ interface Payload {
|
|||||||
|
|
||||||
class GetGroupMemberInfo extends BaseAction<Payload, OB11GroupMember> {
|
class GetGroupMemberInfo extends BaseAction<Payload, OB11GroupMember> {
|
||||||
actionName = ActionName.GetGroupMemberInfo
|
actionName = ActionName.GetGroupMemberInfo
|
||||||
|
payloadSchema = Schema.object({
|
||||||
|
group_id: Schema.union([Number, String]).required(),
|
||||||
|
user_id: Schema.union([Number, String]).required()
|
||||||
|
})
|
||||||
|
|
||||||
protected async _handle(payload: Payload) {
|
protected async _handle(payload: Payload) {
|
||||||
const member = await this.ctx.ntGroupApi.getGroupMember(payload.group_id.toString(), payload.user_id.toString())
|
const groupCode = payload.group_id.toString()
|
||||||
|
const member = await this.ctx.ntGroupApi.getGroupMember(groupCode, payload.user_id.toString())
|
||||||
if (member) {
|
if (member) {
|
||||||
if (isNullable(member.sex)) {
|
if (isNullable(member.sex)) {
|
||||||
//log('获取群成员详细信息')
|
|
||||||
const info = await this.ctx.ntUserApi.getUserDetailInfo(member.uid)
|
const info = await this.ctx.ntUserApi.getUserDetailInfo(member.uid)
|
||||||
//log('群成员详细信息结果', info)
|
|
||||||
Object.assign(member, info)
|
Object.assign(member, info)
|
||||||
}
|
}
|
||||||
const ret = OB11Entities.groupMember(payload.group_id.toString(), member)
|
const ret = OB11Entities.groupMember(groupCode, member)
|
||||||
const self = await this.ctx.ntGroupApi.getGroupMember(payload.group_id.toString(), selfInfo.uid)
|
|
||||||
if (self?.role === 3 || self?.role === 4) {
|
|
||||||
const webGroupMembers = await this.ctx.ntWebApi.getGroupMembers(payload.group_id.toString())
|
|
||||||
const target = webGroupMembers.find(e => e?.uin && e.uin === ret.user_id)
|
|
||||||
if (target) {
|
|
||||||
ret.join_time = target.join_time
|
|
||||||
ret.last_sent_time = target.last_speak_time
|
|
||||||
ret.qage = target.qage
|
|
||||||
ret.level = target.lv.level.toString()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
const date = Math.round(Date.now() / 1000)
|
const date = Math.round(Date.now() / 1000)
|
||||||
ret.last_sent_time ||= Number(member.lastSpeakTime || date)
|
ret.last_sent_time ??= date
|
||||||
ret.join_time ||= Number(member.joinTime || date)
|
ret.join_time ??= date
|
||||||
return ret
|
return ret
|
||||||
} else {
|
|
||||||
throw `群成员${payload.user_id}不存在`
|
|
||||||
}
|
}
|
||||||
|
throw new Error(`群成员${payload.user_id}不存在`)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,16 +1,18 @@
|
|||||||
import { OB11GroupMember } from '../../types'
|
import { OB11GroupMember } from '../../types'
|
||||||
import { OB11Entities } from '../../entities'
|
import { OB11Entities } from '../../entities'
|
||||||
import { BaseAction } from '../BaseAction'
|
import { BaseAction, Schema } from '../BaseAction'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
import { selfInfo } from '@/common/globalVars'
|
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
group_id: number | string
|
group_id: number | string
|
||||||
no_cache: boolean | string
|
no_cache?: boolean | string
|
||||||
}
|
}
|
||||||
|
|
||||||
class GetGroupMemberList extends BaseAction<Payload, OB11GroupMember[]> {
|
class GetGroupMemberList extends BaseAction<Payload, OB11GroupMember[]> {
|
||||||
actionName = ActionName.GetGroupMemberList
|
actionName = ActionName.GetGroupMemberList
|
||||||
|
payloadSchema = Schema.object({
|
||||||
|
group_id: Schema.union([Number, String]).required()
|
||||||
|
})
|
||||||
|
|
||||||
protected async _handle(payload: Payload) {
|
protected async _handle(payload: Payload) {
|
||||||
const groupCode = payload.group_id.toString()
|
const groupCode = payload.group_id.toString()
|
||||||
@@ -20,43 +22,14 @@ class GetGroupMemberList extends BaseAction<Payload, OB11GroupMember[]> {
|
|||||||
groupMembers = await this.ctx.ntGroupApi.getGroupMembers(groupCode)
|
groupMembers = await this.ctx.ntGroupApi.getGroupMembers(groupCode)
|
||||||
}
|
}
|
||||||
const groupMembersArr = Array.from(groupMembers.values())
|
const groupMembersArr = Array.from(groupMembers.values())
|
||||||
|
|
||||||
const _groupMembers = groupMembersArr.map(item => {
|
|
||||||
return OB11Entities.groupMember(groupCode, item)
|
|
||||||
})
|
|
||||||
|
|
||||||
const MemberMap: Map<number, OB11GroupMember> = new Map<number, OB11GroupMember>()
|
|
||||||
const date = Math.round(Date.now() / 1000)
|
const date = Math.round(Date.now() / 1000)
|
||||||
|
|
||||||
for (let i = 0, len = _groupMembers.length; i < len; i++) {
|
return groupMembersArr.map(item => {
|
||||||
// 保证基础数据有这个 同时避免群管插件过于依赖这个杀了
|
const member = OB11Entities.groupMember(groupCode, item)
|
||||||
_groupMembers[i].join_time ||= date
|
member.join_time ??= date
|
||||||
_groupMembers[i].last_sent_time ||= date
|
member.last_sent_time ??= date
|
||||||
MemberMap.set(_groupMembers[i].user_id, _groupMembers[i])
|
return member
|
||||||
}
|
})
|
||||||
|
|
||||||
const selfRole = groupMembers.get(selfInfo.uid)?.role
|
|
||||||
const isPrivilege = selfRole === 3 || selfRole === 4
|
|
||||||
|
|
||||||
if (isPrivilege) {
|
|
||||||
const webGroupMembers = await this.ctx.ntWebApi.getGroupMembers(groupCode)
|
|
||||||
for (let i = 0, len = webGroupMembers.length; i < len; i++) {
|
|
||||||
if (!webGroupMembers[i]?.uin) {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
const MemberData = MemberMap.get(webGroupMembers[i]?.uin)
|
|
||||||
if (MemberData) {
|
|
||||||
if (MemberData.join_time === date) {
|
|
||||||
MemberData.join_time = webGroupMembers[i]?.join_time
|
|
||||||
MemberData.last_sent_time = webGroupMembers[i]?.last_speak_time
|
|
||||||
}
|
|
||||||
MemberData.qage = webGroupMembers[i]?.qage
|
|
||||||
MemberMap.set(webGroupMembers[i]?.uin, MemberData)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return Array.from(MemberMap.values())
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,22 +1,26 @@
|
|||||||
import { BaseAction } from '../BaseAction'
|
import { BaseAction, Schema } from '../BaseAction'
|
||||||
import { GroupRequestOperateTypes } from '@/ntqqapi/types'
|
import { GroupRequestOperateTypes } from '@/ntqqapi/types'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
|
import { parseBool } from '@/common/utils/misc'
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
flag: string
|
flag: string
|
||||||
approve?: boolean | string
|
approve: boolean
|
||||||
reason?: string
|
reason?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
export default class SetGroupAddRequest extends BaseAction<Payload, null> {
|
export default class SetGroupAddRequest extends BaseAction<Payload, null> {
|
||||||
actionName = ActionName.SetGroupAddRequest
|
actionName = ActionName.SetGroupAddRequest
|
||||||
|
payloadSchema = Schema.object({
|
||||||
|
flag: Schema.string().required(),
|
||||||
|
approve: Schema.union([Boolean, Schema.transform(String, parseBool)]).default(true),
|
||||||
|
reason: Schema.string()
|
||||||
|
})
|
||||||
|
|
||||||
protected async _handle(payload: Payload): Promise<null> {
|
protected async _handle(payload: Payload): Promise<null> {
|
||||||
const flag = payload.flag.toString()
|
|
||||||
const approve = payload.approve?.toString() !== 'false'
|
|
||||||
await this.ctx.ntGroupApi.handleGroupRequest(
|
await this.ctx.ntGroupApi.handleGroupRequest(
|
||||||
flag,
|
payload.flag,
|
||||||
approve ? GroupRequestOperateTypes.approve : GroupRequestOperateTypes.reject,
|
payload.approve ? GroupRequestOperateTypes.approve : GroupRequestOperateTypes.reject,
|
||||||
payload.reason
|
payload.reason
|
||||||
)
|
)
|
||||||
return null
|
return null
|
||||||
|
@@ -1,26 +1,31 @@
|
|||||||
import { BaseAction } from '../BaseAction'
|
import { BaseAction, Schema } from '../BaseAction'
|
||||||
import { GroupMemberRole } from '@/ntqqapi/types'
|
import { GroupMemberRole } from '@/ntqqapi/types'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
|
import { parseBool } from '@/common/utils/misc'
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
group_id: number
|
group_id: number | string
|
||||||
user_id: number
|
user_id: number | string
|
||||||
enable: boolean
|
enable: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
export default class SetGroupAdmin extends BaseAction<Payload, null> {
|
export default class SetGroupAdmin extends BaseAction<Payload, null> {
|
||||||
actionName = ActionName.SetGroupAdmin
|
actionName = ActionName.SetGroupAdmin
|
||||||
|
payloadSchema = Schema.object({
|
||||||
|
group_id: Schema.union([Number, String]).required(),
|
||||||
|
user_id: Schema.union([Number, String]).required(),
|
||||||
|
enable: Schema.union([Boolean, Schema.transform(String, parseBool)]).default(true)
|
||||||
|
})
|
||||||
|
|
||||||
protected async _handle(payload: Payload): Promise<null> {
|
protected async _handle(payload: Payload): Promise<null> {
|
||||||
const member = await this.ctx.ntGroupApi.getGroupMember(payload.group_id, payload.user_id)
|
const groupCode = payload.group_id.toString()
|
||||||
const enable = payload.enable.toString() === 'true'
|
const uin = payload.user_id.toString()
|
||||||
if (!member) {
|
const uid = await this.ctx.ntUserApi.getUidByUin(uin, groupCode)
|
||||||
throw `群成员${payload.user_id}不存在`
|
if (!uid) throw new Error('无法获取用户信息')
|
||||||
}
|
|
||||||
await this.ctx.ntGroupApi.setMemberRole(
|
await this.ctx.ntGroupApi.setMemberRole(
|
||||||
payload.group_id.toString(),
|
groupCode,
|
||||||
member.uid,
|
uid,
|
||||||
enable ? GroupMemberRole.admin : GroupMemberRole.normal,
|
payload.enable ? GroupMemberRole.admin : GroupMemberRole.normal
|
||||||
)
|
)
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
@@ -1,22 +1,27 @@
|
|||||||
import { BaseAction } from '../BaseAction'
|
import { BaseAction, Schema } from '../BaseAction'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
group_id: number
|
group_id: number | string
|
||||||
user_id: number
|
user_id: number | string
|
||||||
duration: number
|
duration: number | string
|
||||||
}
|
}
|
||||||
|
|
||||||
export default class SetGroupBan extends BaseAction<Payload, null> {
|
export default class SetGroupBan extends BaseAction<Payload, null> {
|
||||||
actionName = ActionName.SetGroupBan
|
actionName = ActionName.SetGroupBan
|
||||||
|
payloadSchema = Schema.object({
|
||||||
|
group_id: Schema.union([Number, String]).required(),
|
||||||
|
user_id: Schema.union([Number, String]).required(),
|
||||||
|
duration: Schema.union([Number, String]).default(30 * 60)
|
||||||
|
})
|
||||||
|
|
||||||
protected async _handle(payload: Payload): Promise<null> {
|
protected async _handle(payload: Payload): Promise<null> {
|
||||||
const member = await this.ctx.ntGroupApi.getGroupMember(payload.group_id, payload.user_id)
|
const groupCode = payload.group_id.toString()
|
||||||
if (!member) {
|
const uin = payload.user_id.toString()
|
||||||
throw `群成员${payload.user_id}不存在`
|
const uid = await this.ctx.ntUserApi.getUidByUin(uin, groupCode)
|
||||||
}
|
if (!uid) throw new Error('无法获取用户信息')
|
||||||
await this.ctx.ntGroupApi.banMember(payload.group_id.toString(), [
|
await this.ctx.ntGroupApi.banMember(groupCode, [
|
||||||
{ uid: member.uid, timeStamp: parseInt(payload.duration.toString()) },
|
{ uid, timeStamp: +payload.duration },
|
||||||
])
|
])
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
@@ -1,21 +1,26 @@
|
|||||||
import { BaseAction } from '../BaseAction'
|
import { BaseAction, Schema } from '../BaseAction'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
group_id: number
|
group_id: number | string
|
||||||
user_id: number
|
user_id: number | string
|
||||||
card: string
|
card: string
|
||||||
}
|
}
|
||||||
|
|
||||||
export default class SetGroupCard extends BaseAction<Payload, null> {
|
export default class SetGroupCard extends BaseAction<Payload, null> {
|
||||||
actionName = ActionName.SetGroupCard
|
actionName = ActionName.SetGroupCard
|
||||||
|
payloadSchema = Schema.object({
|
||||||
|
group_id: Schema.union([Number, String]).required(),
|
||||||
|
user_id: Schema.union([Number, String]).required(),
|
||||||
|
card: Schema.string().default('')
|
||||||
|
})
|
||||||
|
|
||||||
protected async _handle(payload: Payload): Promise<null> {
|
protected async _handle(payload: Payload): Promise<null> {
|
||||||
const member = await this.ctx.ntGroupApi.getGroupMember(payload.group_id, payload.user_id)
|
const groupCode = payload.group_id.toString()
|
||||||
if (!member) {
|
const uin = payload.user_id.toString()
|
||||||
throw `群成员${payload.user_id}不存在`
|
const uid = await this.ctx.ntUserApi.getUidByUin(uin, groupCode)
|
||||||
}
|
if (!uid) throw new Error('无法获取用户信息')
|
||||||
await this.ctx.ntGroupApi.setMemberCard(payload.group_id.toString(), member.uid, payload.card || '')
|
await this.ctx.ntGroupApi.setMemberCard(groupCode, uid, payload.card)
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,21 +1,27 @@
|
|||||||
import { BaseAction } from '../BaseAction'
|
import { BaseAction, Schema } from '../BaseAction'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
|
import { parseBool } from '@/common/utils/misc'
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
group_id: number
|
group_id: number | string
|
||||||
user_id: number
|
user_id: number | string
|
||||||
reject_add_request: boolean
|
reject_add_request: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
export default class SetGroupKick extends BaseAction<Payload, null> {
|
export default class SetGroupKick extends BaseAction<Payload, null> {
|
||||||
actionName = ActionName.SetGroupKick
|
actionName = ActionName.SetGroupKick
|
||||||
|
payloadSchema = Schema.object({
|
||||||
|
group_id: Schema.union([Number, String]).required(),
|
||||||
|
user_id: Schema.union([Number, String]).required(),
|
||||||
|
reject_add_request: Schema.union([Boolean, Schema.transform(String, parseBool)]).default(false)
|
||||||
|
})
|
||||||
|
|
||||||
protected async _handle(payload: Payload): Promise<null> {
|
protected async _handle(payload: Payload): Promise<null> {
|
||||||
const member = await this.ctx.ntGroupApi.getGroupMember(payload.group_id, payload.user_id)
|
const groupCode = payload.group_id.toString()
|
||||||
if (!member) {
|
const uin = payload.user_id.toString()
|
||||||
throw `群成员${payload.user_id}不存在`
|
const uid = await this.ctx.ntUserApi.getUidByUin(uin, groupCode)
|
||||||
}
|
if (!uid) throw new Error('无法获取用户信息')
|
||||||
await this.ctx.ntGroupApi.kickMember(payload.group_id.toString(), [member.uid], !!payload.reject_add_request)
|
await this.ctx.ntGroupApi.kickMember(groupCode, [uid], payload.reject_add_request)
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,20 +1,19 @@
|
|||||||
import { BaseAction } from '../BaseAction'
|
import { BaseAction, Schema } from '../BaseAction'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
group_id: number
|
group_id: number | string
|
||||||
is_dismiss: boolean
|
is_dismiss?: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
export default class SetGroupLeave extends BaseAction<Payload, void> {
|
export default class SetGroupLeave extends BaseAction<Payload, null> {
|
||||||
actionName = ActionName.SetGroupLeave
|
actionName = ActionName.SetGroupLeave
|
||||||
|
payloadSchema = Schema.object({
|
||||||
|
group_id: Schema.union([Number, String]).required()
|
||||||
|
})
|
||||||
|
|
||||||
protected async _handle(payload: Payload) {
|
protected async _handle(payload: Payload) {
|
||||||
try {
|
await this.ctx.ntGroupApi.quitGroup(payload.group_id.toString())
|
||||||
await this.ctx.ntGroupApi.quitGroup(payload.group_id.toString())
|
return null
|
||||||
} catch (e) {
|
|
||||||
this.ctx.logger.error('退群失败', e)
|
|
||||||
throw e
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,13 +1,17 @@
|
|||||||
import { BaseAction } from '../BaseAction'
|
import { BaseAction, Schema } from '../BaseAction'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
group_id: number
|
group_id: number | string
|
||||||
group_name: string
|
group_name: string
|
||||||
}
|
}
|
||||||
|
|
||||||
export default class SetGroupName extends BaseAction<Payload, null> {
|
export default class SetGroupName extends BaseAction<Payload, null> {
|
||||||
actionName = ActionName.SetGroupName
|
actionName = ActionName.SetGroupName
|
||||||
|
payloadSchema = Schema.object({
|
||||||
|
group_id: Schema.union([Number, String]).required(),
|
||||||
|
group_name: Schema.string().required()
|
||||||
|
})
|
||||||
|
|
||||||
protected async _handle(payload: Payload): Promise<null> {
|
protected async _handle(payload: Payload): Promise<null> {
|
||||||
await this.ctx.ntGroupApi.setGroupName(payload.group_id.toString(), payload.group_name)
|
await this.ctx.ntGroupApi.setGroupName(payload.group_id.toString(), payload.group_name)
|
||||||
|
@@ -1,17 +1,21 @@
|
|||||||
import { BaseAction } from '../BaseAction'
|
import { BaseAction, Schema } from '../BaseAction'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
|
import { parseBool } from '@/common/utils/misc'
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
group_id: number
|
group_id: number | string
|
||||||
enable: boolean
|
enable: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
export default class SetGroupWholeBan extends BaseAction<Payload, null> {
|
export default class SetGroupWholeBan extends BaseAction<Payload, null> {
|
||||||
actionName = ActionName.SetGroupWholeBan
|
actionName = ActionName.SetGroupWholeBan
|
||||||
|
payloadSchema = Schema.object({
|
||||||
|
group_id: Schema.union([Number, String]).required(),
|
||||||
|
enable: Schema.union([Boolean, Schema.transform(String, parseBool)]).default(true)
|
||||||
|
})
|
||||||
|
|
||||||
protected async _handle(payload: Payload): Promise<null> {
|
protected async _handle(payload: Payload): Promise<null> {
|
||||||
const enable = payload.enable.toString() === 'true'
|
await this.ctx.ntGroupApi.banGroup(payload.group_id.toString(), payload.enable)
|
||||||
await this.ctx.ntGroupApi.banGroup(payload.group_id.toString(), enable)
|
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
import type Adapter from '../adapter'
|
import type Adapter from '../adapter'
|
||||||
import GetMsg from './msg/GetMsg'
|
import GetMsg from './msg/GetMsg'
|
||||||
import GetLoginInfo from './system/GetLoginInfo'
|
import GetLoginInfo from './system/GetLoginInfo'
|
||||||
import { GetFriendList, GetFriendWithCategory } from './user/GetFriendList'
|
import { GetFriendList } from './user/GetFriendList'
|
||||||
import GetGroupList from './group/GetGroupList'
|
import GetGroupList from './group/GetGroupList'
|
||||||
import GetGroupInfo from './group/GetGroupInfo'
|
import GetGroupInfo from './group/GetGroupInfo'
|
||||||
import GetGroupMemberList from './group/GetGroupMemberList'
|
import GetGroupMemberList from './group/GetGroupMemberList'
|
||||||
@@ -37,7 +37,6 @@ import GetImage from './file/GetImage'
|
|||||||
import GetRecord from './file/GetRecord'
|
import GetRecord from './file/GetRecord'
|
||||||
import { MarkMsgAsRead } from './go-cqhttp/MarkMsgAsRead'
|
import { MarkMsgAsRead } from './go-cqhttp/MarkMsgAsRead'
|
||||||
import CleanCache from './system/CleanCache'
|
import CleanCache from './system/CleanCache'
|
||||||
import { UploadGroupFile, UploadPrivateFile } from './go-cqhttp/UploadFile'
|
|
||||||
import { GetConfigAction, SetConfigAction } from './llonebot/Config'
|
import { GetConfigAction, SetConfigAction } from './llonebot/Config'
|
||||||
import GetGroupAddRequest from './llonebot/GetGroupAddRequest'
|
import GetGroupAddRequest from './llonebot/GetGroupAddRequest'
|
||||||
import SetQQAvatar from './llonebot/SetQQAvatar'
|
import SetQQAvatar from './llonebot/SetQQAvatar'
|
||||||
@@ -46,13 +45,13 @@ import { GetGroupMsgHistory } from './go-cqhttp/GetGroupMsgHistory'
|
|||||||
import GetFile from './file/GetFile'
|
import GetFile from './file/GetFile'
|
||||||
import { GetForwardMsg } from './go-cqhttp/GetForwardMsg'
|
import { GetForwardMsg } from './go-cqhttp/GetForwardMsg'
|
||||||
import { GetCookies } from './user/GetCookie'
|
import { GetCookies } from './user/GetCookie'
|
||||||
import { SetMsgEmojiLike } from './msg/SetMsgEmojiLike'
|
import { SetMsgEmojiLike } from './llonebot/SetMsgEmojiLike'
|
||||||
import { ForwardFriendSingleMsg, ForwardGroupSingleMsg } from './msg/ForwardSingleMsg'
|
import { ForwardFriendSingleMsg, ForwardGroupSingleMsg } from './msg/ForwardSingleMsg'
|
||||||
import { GetGroupEssence } from './group/GetGroupEssence'
|
import { GetEssenceMsgList } from './go-cqhttp/GetGroupEssence'
|
||||||
import { GetGroupHonorInfo } from './group/GetGroupHonorInfo'
|
import { GetGroupHonorInfo } from './group/GetGroupHonorInfo'
|
||||||
import { HandleQuickOperation } from './go-cqhttp/QuickOperation'
|
import { HandleQuickOperation } from './go-cqhttp/QuickOperation'
|
||||||
import { SetEssenceMsg } from './go-cqhttp/SetEssenceMsg'
|
import { SetEssenceMsg } from './go-cqhttp/SetEssenceMsg'
|
||||||
import { DelEssenceMsg } from './go-cqhttp/DelEssenceMsg'
|
import { DeleteEssenceMsg } from './go-cqhttp/DelEssenceMsg'
|
||||||
import { GetEvent } from './llonebot/GetEvent'
|
import { GetEvent } from './llonebot/GetEvent'
|
||||||
import { DelGroupFile } from './go-cqhttp/DelGroupFile'
|
import { DelGroupFile } from './go-cqhttp/DelGroupFile'
|
||||||
import { GetGroupSystemMsg } from './go-cqhttp/GetGroupSystemMsg'
|
import { GetGroupSystemMsg } from './go-cqhttp/GetGroupSystemMsg'
|
||||||
@@ -67,6 +66,12 @@ import { FetchEmojiLike } from './llonebot/FetchEmojiLike'
|
|||||||
import { FetchCustomFace } from './llonebot/FetchCustomFace'
|
import { FetchCustomFace } from './llonebot/FetchCustomFace'
|
||||||
import { GetFriendMsgHistory } from './llonebot/GetFriendMsgHistory'
|
import { GetFriendMsgHistory } from './llonebot/GetFriendMsgHistory'
|
||||||
import { GetGroupFilesByFolder } from './go-cqhttp/GetGroupFilesByFolder'
|
import { GetGroupFilesByFolder } from './go-cqhttp/GetGroupFilesByFolder'
|
||||||
|
import { GetFriendWithCategory } from './llonebot/GetFriendWithCategory'
|
||||||
|
import { UploadGroupFile } from './go-cqhttp/UploadGroupFile'
|
||||||
|
import { UploadPrivateFile } from './go-cqhttp/UploadPrivateFile'
|
||||||
|
import { GetGroupFileUrl } from './go-cqhttp/GetGroupFileUrl'
|
||||||
|
import { GetGroupNotice } from './go-cqhttp/GetGroupNotice'
|
||||||
|
import { GetRobotUinRange } from './llonebot/GetRobotUinRange'
|
||||||
|
|
||||||
export function initActionMap(adapter: Adapter) {
|
export function initActionMap(adapter: Adapter) {
|
||||||
const actionHandlers = [
|
const actionHandlers = [
|
||||||
@@ -83,6 +88,8 @@ export function initActionMap(adapter: Adapter) {
|
|||||||
new GetFriendMsgHistory(adapter),
|
new GetFriendMsgHistory(adapter),
|
||||||
new FetchEmojiLike(adapter),
|
new FetchEmojiLike(adapter),
|
||||||
new FetchCustomFace(adapter),
|
new FetchCustomFace(adapter),
|
||||||
|
new SetMsgEmojiLike(adapter),
|
||||||
|
new GetRobotUinRange(adapter),
|
||||||
// onebot11
|
// onebot11
|
||||||
new SendLike(adapter),
|
new SendLike(adapter),
|
||||||
new GetMsg(adapter),
|
new GetMsg(adapter),
|
||||||
@@ -113,11 +120,10 @@ export function initActionMap(adapter: Adapter) {
|
|||||||
new GetRecord(adapter),
|
new GetRecord(adapter),
|
||||||
new CleanCache(adapter),
|
new CleanCache(adapter),
|
||||||
new GetCookies(adapter),
|
new GetCookies(adapter),
|
||||||
new SetMsgEmojiLike(adapter),
|
|
||||||
new ForwardFriendSingleMsg(adapter),
|
new ForwardFriendSingleMsg(adapter),
|
||||||
new ForwardGroupSingleMsg(adapter),
|
new ForwardGroupSingleMsg(adapter),
|
||||||
// go-cqhttp
|
// go-cqhttp
|
||||||
new GetGroupEssence(adapter),
|
new GetEssenceMsgList(adapter),
|
||||||
new GetGroupHonorInfo(adapter),
|
new GetGroupHonorInfo(adapter),
|
||||||
new SendForwardMsg(adapter),
|
new SendForwardMsg(adapter),
|
||||||
new SendGroupForwardMsg(adapter),
|
new SendGroupForwardMsg(adapter),
|
||||||
@@ -132,7 +138,7 @@ export function initActionMap(adapter: Adapter) {
|
|||||||
new GetForwardMsg(adapter),
|
new GetForwardMsg(adapter),
|
||||||
new HandleQuickOperation(adapter),
|
new HandleQuickOperation(adapter),
|
||||||
new SetEssenceMsg(adapter),
|
new SetEssenceMsg(adapter),
|
||||||
new DelEssenceMsg(adapter),
|
new DeleteEssenceMsg(adapter),
|
||||||
new DelGroupFile(adapter),
|
new DelGroupFile(adapter),
|
||||||
new GetGroupSystemMsg(adapter),
|
new GetGroupSystemMsg(adapter),
|
||||||
new CreateGroupFileFolder(adapter),
|
new CreateGroupFileFolder(adapter),
|
||||||
@@ -141,6 +147,8 @@ export function initActionMap(adapter: Adapter) {
|
|||||||
new GetGroupRootFiles(adapter),
|
new GetGroupRootFiles(adapter),
|
||||||
new SendGroupNotice(adapter),
|
new SendGroupNotice(adapter),
|
||||||
new GetGroupFilesByFolder(adapter),
|
new GetGroupFilesByFolder(adapter),
|
||||||
|
new GetGroupFileUrl(adapter),
|
||||||
|
new GetGroupNotice(adapter),
|
||||||
]
|
]
|
||||||
const actionMap = new Map<string, BaseAction<any, unknown>>()
|
const actionMap = new Map<string, BaseAction<any, unknown>>()
|
||||||
for (const action of actionHandlers) {
|
for (const action of actionHandlers) {
|
||||||
|
@@ -1,6 +1,5 @@
|
|||||||
import { BaseAction, Schema } from '../BaseAction'
|
import { BaseAction, Schema } from '../BaseAction'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
import { MessageUnique } from '@/common/utils/messageUnique'
|
|
||||||
import { Dict } from 'cosmokit'
|
import { Dict } from 'cosmokit'
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
@@ -20,9 +19,9 @@ export class FetchEmojiLike extends BaseAction<Payload, Dict> {
|
|||||||
})
|
})
|
||||||
|
|
||||||
async _handle(payload: Payload) {
|
async _handle(payload: Payload) {
|
||||||
const msgInfo = await MessageUnique.getMsgIdAndPeerByShortId(+payload.message_id)
|
const msgInfo = await this.ctx.store.getMsgInfoByShortId(+payload.message_id)
|
||||||
if (!msgInfo) throw new Error('消息不存在')
|
if (!msgInfo) throw new Error('消息不存在')
|
||||||
const { msgSeq } = (await this.ctx.ntMsgApi.getMsgsByMsgId(msgInfo.Peer, [msgInfo.MsgId])).msgList[0]
|
const { msgSeq } = (await this.ctx.ntMsgApi.getMsgsByMsgId(msgInfo.peer, [msgInfo.msgId])).msgList[0]
|
||||||
return await this.ctx.ntMsgApi.getMsgEmojiLikesList(msgInfo.Peer, msgSeq, payload.emojiId, payload.emojiType, +payload.count)
|
return await this.ctx.ntMsgApi.getMsgEmojiLikesList(msgInfo.peer, msgSeq, payload.emojiId, payload.emojiType, +payload.count)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -2,9 +2,8 @@ import { BaseAction, Schema } from '../BaseAction'
|
|||||||
import { OB11Message } from '@/onebot11/types'
|
import { OB11Message } from '@/onebot11/types'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
import { ChatType, RawMessage } from '@/ntqqapi/types'
|
import { ChatType, RawMessage } from '@/ntqqapi/types'
|
||||||
import { MessageUnique } from '@/common/utils/messageUnique'
|
|
||||||
import { OB11Entities } from '@/onebot11/entities'
|
import { OB11Entities } from '@/onebot11/entities'
|
||||||
import { filterNullable } from '@/common/utils/misc'
|
import { filterNullable, parseBool } from '@/common/utils/misc'
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
user_id: number | string
|
user_id: number | string
|
||||||
@@ -25,28 +24,25 @@ export class GetFriendMsgHistory extends BaseAction<Payload, Response> {
|
|||||||
message_seq: Schema.union([Number, String]),
|
message_seq: Schema.union([Number, String]),
|
||||||
message_id: Schema.union([Number, String]),
|
message_id: Schema.union([Number, String]),
|
||||||
count: Schema.union([Number, String]).default(20),
|
count: Schema.union([Number, String]).default(20),
|
||||||
reverseOrder: Schema.boolean().default(false)
|
reverseOrder: Schema.union([Boolean, Schema.transform(String, parseBool)]).default(false)
|
||||||
})
|
})
|
||||||
|
|
||||||
async _handle(payload: Payload): Promise<Response> {
|
async _handle(payload: Payload): Promise<Response> {
|
||||||
const startMsgId = payload.message_seq ?? payload.message_id
|
const startMsgId = payload.message_seq ?? payload.message_id
|
||||||
let msgList: RawMessage[]
|
let msgList: RawMessage[]
|
||||||
if (startMsgId) {
|
if (startMsgId) {
|
||||||
const msgInfo = await MessageUnique.getMsgIdAndPeerByShortId(+startMsgId)
|
const msgInfo = await this.ctx.store.getMsgInfoByShortId(+startMsgId)
|
||||||
if (!msgInfo) throw new Error(`消息${startMsgId}不存在`)
|
if (!msgInfo) throw new Error(`消息${startMsgId}不存在`)
|
||||||
msgList = (await this.ctx.ntMsgApi.getMsgHistory(msgInfo.Peer, msgInfo.MsgId, +payload.count)).msgList
|
msgList = (await this.ctx.ntMsgApi.getMsgHistory(msgInfo.peer, msgInfo.msgId, +payload.count)).msgList
|
||||||
} else {
|
} else {
|
||||||
const uid = await this.ctx.ntUserApi.getUidByUin(payload.user_id.toString())
|
const uid = await this.ctx.ntUserApi.getUidByUin(payload.user_id.toString())
|
||||||
if (!uid) throw new Error(`记录${payload.user_id}不存在`)
|
if (!uid) throw new Error(`记录${payload.user_id}不存在`)
|
||||||
const isBuddy = await this.ctx.ntFriendApi.isBuddy(uid)
|
const isBuddy = await this.ctx.ntFriendApi.isBuddy(uid)
|
||||||
const peer = { chatType: isBuddy ? ChatType.friend : ChatType.temp, peerUid: uid }
|
const peer = { chatType: isBuddy ? ChatType.C2C : ChatType.TempC2CFromGroup, peerUid: uid }
|
||||||
msgList = (await this.ctx.ntMsgApi.getAioFirstViewLatestMsgs(peer, +payload.count)).msgList
|
msgList = (await this.ctx.ntMsgApi.getAioFirstViewLatestMsgs(peer, +payload.count)).msgList
|
||||||
}
|
}
|
||||||
if (msgList.length === 0) throw new Error('未找到消息')
|
if (msgList.length === 0) throw new Error('未找到消息')
|
||||||
if (payload.reverseOrder) msgList.reverse()
|
if (payload.reverseOrder) msgList.reverse()
|
||||||
msgList.map(msg => {
|
|
||||||
msg.msgShortId = MessageUnique.createMsg({ chatType: msg.chatType, peerUid: msg.peerUid }, msg.msgId)
|
|
||||||
})
|
|
||||||
const ob11MsgList = await Promise.all(msgList.map(msg => OB11Entities.message(this.ctx, msg)))
|
const ob11MsgList = await Promise.all(msgList.map(msg => OB11Entities.message(this.ctx, msg)))
|
||||||
return { messages: filterNullable(ob11MsgList) }
|
return { messages: filterNullable(ob11MsgList) }
|
||||||
}
|
}
|
||||||
|
38
src/onebot11/action/llonebot/GetFriendWithCategory.ts
Normal file
38
src/onebot11/action/llonebot/GetFriendWithCategory.ts
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
import { BaseAction } from '../BaseAction'
|
||||||
|
import { OB11User } from '../../types'
|
||||||
|
import { OB11Entities } from '../../entities'
|
||||||
|
import { ActionName } from '../types'
|
||||||
|
import { getBuildVersion } from '@/common/utils'
|
||||||
|
|
||||||
|
interface Category {
|
||||||
|
categoryId: number
|
||||||
|
categorySortId: number
|
||||||
|
categoryName: string
|
||||||
|
categoryMbCount: number
|
||||||
|
onlineCount: number
|
||||||
|
buddyList: OB11User[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export class GetFriendWithCategory extends BaseAction<void, Category[]> {
|
||||||
|
actionName = ActionName.GetFriendsWithCategory
|
||||||
|
|
||||||
|
protected async _handle() {
|
||||||
|
if (getBuildVersion() < 26702) {
|
||||||
|
throw new Error('this ntqq version not support, must be 26702 or later')
|
||||||
|
}
|
||||||
|
const data = await this.ctx.ntFriendApi.getBuddyV2WithCate(true)
|
||||||
|
return data.buddyCategory.map(item => {
|
||||||
|
return {
|
||||||
|
categoryId: item.categoryId,
|
||||||
|
categorySortId: item.categorySortId,
|
||||||
|
categoryName: item.categroyName,
|
||||||
|
categoryMbCount: item.categroyMbCount,
|
||||||
|
onlineCount: item.onlineCount,
|
||||||
|
buddyList: item.buddyUids.map(uid => {
|
||||||
|
const info = data.userSimpleInfos[uid]
|
||||||
|
return OB11Entities.friendV2(info)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
@@ -1,5 +1,5 @@
|
|||||||
import { BaseAction } from '../BaseAction'
|
import { BaseAction } from '../BaseAction'
|
||||||
import { GroupNotify, GroupNotifyStatus } from '@/ntqqapi/types'
|
import { GroupNotifyStatus } from '@/ntqqapi/types'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
|
|
||||||
interface OB11GroupRequestNotify {
|
interface OB11GroupRequestNotify {
|
||||||
@@ -13,7 +13,7 @@ export default class GetGroupAddRequest extends BaseAction<null, OB11GroupReques
|
|||||||
|
|
||||||
protected async _handle(): Promise<OB11GroupRequestNotify[]> {
|
protected async _handle(): Promise<OB11GroupRequestNotify[]> {
|
||||||
const data = await this.ctx.ntGroupApi.getGroupIgnoreNotifies()
|
const data = await this.ctx.ntGroupApi.getGroupIgnoreNotifies()
|
||||||
const notifies: GroupNotify[] = data.notifies.filter((notify) => notify.status === GroupNotifyStatus.KUNHANDLE)
|
const notifies = data.notifies.filter(notify => notify.status === GroupNotifyStatus.KUNHANDLE)
|
||||||
const returnData: OB11GroupRequestNotify[] = []
|
const returnData: OB11GroupRequestNotify[] = []
|
||||||
for (const notify of notifies) {
|
for (const notify of notifies) {
|
||||||
const uin = await this.ctx.ntUserApi.getUinByUid(notify.user1.uid)
|
const uin = await this.ctx.ntUserApi.getUinByUid(notify.user1.uid)
|
||||||
|
@@ -8,10 +8,10 @@ export class GetProfileLike extends BaseAction<void, Dict[]> {
|
|||||||
|
|
||||||
async _handle() {
|
async _handle() {
|
||||||
const ret = await this.ctx.ntUserApi.getProfileLike(selfInfo.uid)
|
const ret = await this.ctx.ntUserApi.getProfileLike(selfInfo.uid)
|
||||||
const listdata = ret.info.userLikeInfos[0].favoriteInfo.userInfos
|
const data = ret.info.userLikeInfos[0].favoriteInfo.userInfos
|
||||||
for (const item of listdata) {
|
for (const item of data) {
|
||||||
item.uin = Number(await this.ctx.ntUserApi.getUinByUid(item.uid)) || 0
|
item.uin = Number(await this.ctx.ntUserApi.getUinByUid(item.uid)) || 0
|
||||||
}
|
}
|
||||||
return listdata
|
return data
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
11
src/onebot11/action/llonebot/GetRobotUinRange.ts
Normal file
11
src/onebot11/action/llonebot/GetRobotUinRange.ts
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
import { BaseAction } from '../BaseAction'
|
||||||
|
import { ActionName } from '../types'
|
||||||
|
import { Dict } from 'cosmokit'
|
||||||
|
|
||||||
|
export class GetRobotUinRange extends BaseAction<void, Dict[]> {
|
||||||
|
actionName = ActionName.GetRobotUinRange
|
||||||
|
|
||||||
|
async _handle() {
|
||||||
|
return await this.ctx.ntUserApi.getRobotUinRange()
|
||||||
|
}
|
||||||
|
}
|
@@ -1,6 +1,5 @@
|
|||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
import { BaseAction } from '../BaseAction'
|
import { BaseAction } from '../BaseAction'
|
||||||
import { MessageUnique } from '@/common/utils/messageUnique'
|
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
message_id: number | string
|
message_id: number | string
|
||||||
@@ -14,19 +13,19 @@ export class SetMsgEmojiLike extends BaseAction<Payload, unknown> {
|
|||||||
if (!payload.message_id) {
|
if (!payload.message_id) {
|
||||||
throw Error('message_id不能为空')
|
throw Error('message_id不能为空')
|
||||||
}
|
}
|
||||||
const msg = await MessageUnique.getMsgIdAndPeerByShortId(+payload.message_id)
|
const msg = await this.ctx.store.getMsgInfoByShortId(+payload.message_id)
|
||||||
if (!msg) {
|
if (!msg) {
|
||||||
throw new Error('msg not found')
|
throw new Error('msg not found')
|
||||||
}
|
}
|
||||||
if (!payload.emoji_id) {
|
if (!payload.emoji_id) {
|
||||||
throw new Error('emojiId not found')
|
throw new Error('emojiId not found')
|
||||||
}
|
}
|
||||||
const msgData = (await this.ctx.ntMsgApi.getMsgsByMsgId(msg.Peer, [msg.MsgId])).msgList
|
const msgData = (await this.ctx.ntMsgApi.getMsgsByMsgId(msg.peer, [msg.msgId])).msgList
|
||||||
if (!msgData || msgData.length == 0 || !msgData[0].msgSeq) {
|
if (!msgData || msgData.length == 0 || !msgData[0].msgSeq) {
|
||||||
throw new Error('find msg by msgid error')
|
throw new Error('find msg by msgid error')
|
||||||
}
|
}
|
||||||
return await this.ctx.ntMsgApi.setEmojiLike(
|
return await this.ctx.ntMsgApi.setEmojiLike(
|
||||||
msg.Peer,
|
msg.peer,
|
||||||
msgData[0].msgSeq,
|
msgData[0].msgSeq,
|
||||||
payload.emoji_id.toString(),
|
payload.emoji_id.toString(),
|
||||||
true
|
true
|
@@ -1,4 +1,4 @@
|
|||||||
import fs from 'node:fs'
|
import { unlink } from 'node:fs/promises'
|
||||||
import { BaseAction } from '../BaseAction'
|
import { BaseAction } from '../BaseAction'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
import { checkFileReceived, uri2local } from '../../../common/utils/file'
|
import { checkFileReceived, uri2local } from '../../../common/utils/file'
|
||||||
@@ -13,18 +13,17 @@ export default class SetAvatar extends BaseAction<Payload, null> {
|
|||||||
protected async _handle(payload: Payload): Promise<null> {
|
protected async _handle(payload: Payload): Promise<null> {
|
||||||
const { path, isLocal, errMsg } = await uri2local(payload.file)
|
const { path, isLocal, errMsg } = await uri2local(payload.file)
|
||||||
if (errMsg) {
|
if (errMsg) {
|
||||||
throw `头像${payload.file}设置失败,file字段可能格式不正确`
|
throw new Error(errMsg)
|
||||||
}
|
}
|
||||||
if (path) {
|
if (path) {
|
||||||
await checkFileReceived(path, 5000) // 文件不存在QQ会崩溃,需要提前判断
|
await checkFileReceived(path, 5000) // 文件不存在QQ会崩溃,需要提前判断
|
||||||
const ret = await this.ctx.ntUserApi.setQQAvatar(path)
|
const ret = await this.ctx.ntUserApi.setQQAvatar(path)
|
||||||
if (!isLocal) {
|
if (!isLocal) {
|
||||||
fs.unlink(path, () => { })
|
unlink(path)
|
||||||
}
|
}
|
||||||
if (!ret) {
|
if (!ret) {
|
||||||
throw `头像${payload.file}设置失败,api无返回`
|
throw `头像${payload.file}设置失败,api无返回`
|
||||||
}
|
}
|
||||||
// log(`头像设置返回:${JSON.stringify(ret)}`)
|
|
||||||
if ((ret.result as number) === 1004022) {
|
if ((ret.result as number) === 1004022) {
|
||||||
throw `头像${payload.file}设置失败,文件可能不是图片格式`
|
throw `头像${payload.file}设置失败,文件可能不是图片格式`
|
||||||
} else if (ret.result !== 0) {
|
} else if (ret.result !== 0) {
|
||||||
@@ -32,7 +31,7 @@ export default class SetAvatar extends BaseAction<Payload, null> {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (!isLocal) {
|
if (!isLocal) {
|
||||||
fs.unlink(path, () => { })
|
unlink(path)
|
||||||
}
|
}
|
||||||
throw `头像${payload.file}设置失败,无法获取头像,文件可能不存在`
|
throw `头像${payload.file}设置失败,无法获取头像,文件可能不存在`
|
||||||
}
|
}
|
||||||
|
@@ -1,6 +1,5 @@
|
|||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
import { BaseAction } from '../BaseAction'
|
import { BaseAction } from '../BaseAction'
|
||||||
import { MessageUnique } from '@/common/utils/messageUnique'
|
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
message_id: number | string
|
message_id: number | string
|
||||||
@@ -13,11 +12,11 @@ class DeleteMsg extends BaseAction<Payload, void> {
|
|||||||
if (!payload.message_id) {
|
if (!payload.message_id) {
|
||||||
throw new Error('参数message_id不能为空')
|
throw new Error('参数message_id不能为空')
|
||||||
}
|
}
|
||||||
const msg = await MessageUnique.getMsgIdAndPeerByShortId(+payload.message_id)
|
const msg = await this.ctx.store.getMsgInfoByShortId(+payload.message_id)
|
||||||
if (!msg) {
|
if (!msg) {
|
||||||
throw new Error(`消息${payload.message_id}不存在`)
|
throw new Error(`消息${payload.message_id}不存在`)
|
||||||
}
|
}
|
||||||
const data = await this.ctx.ntMsgApi.recallMsg(msg.Peer, [msg.MsgId])
|
const data = await this.ctx.ntMsgApi.recallMsg(msg.peer, [msg.msgId])
|
||||||
if (data.result !== 0) {
|
if (data.result !== 0) {
|
||||||
this.ctx.logger.error('delete_msg', payload.message_id, data)
|
this.ctx.logger.error('delete_msg', payload.message_id, data)
|
||||||
throw new Error(`消息撤回失败`)
|
throw new Error(`消息撤回失败`)
|
||||||
|
@@ -1,8 +1,6 @@
|
|||||||
import { BaseAction } from '../BaseAction'
|
import { BaseAction } from '../BaseAction'
|
||||||
import { ChatType } from '@/ntqqapi/types'
|
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
import { Peer } from '@/ntqqapi/types'
|
import { createPeer } from '@/onebot11/helper/createMessage'
|
||||||
import { MessageUnique } from '@/common/utils/messageUnique'
|
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
message_id: number | string
|
message_id: number | string
|
||||||
@@ -11,29 +9,18 @@ interface Payload {
|
|||||||
}
|
}
|
||||||
|
|
||||||
abstract class ForwardSingleMsg extends BaseAction<Payload, null> {
|
abstract class ForwardSingleMsg extends BaseAction<Payload, null> {
|
||||||
protected async getTargetPeer(payload: Payload): Promise<Peer> {
|
|
||||||
if (payload.user_id) {
|
|
||||||
const peerUid = await this.ctx.ntUserApi.getUidByUin(payload.user_id.toString())
|
|
||||||
if (!peerUid) {
|
|
||||||
throw new Error(`无法找到私聊对象${payload.user_id}`)
|
|
||||||
}
|
|
||||||
return { chatType: ChatType.friend, peerUid }
|
|
||||||
}
|
|
||||||
return { chatType: ChatType.group, peerUid: payload.group_id!.toString() }
|
|
||||||
}
|
|
||||||
|
|
||||||
protected async _handle(payload: Payload): Promise<null> {
|
protected async _handle(payload: Payload): Promise<null> {
|
||||||
if (!payload.message_id) {
|
if (!payload.message_id) {
|
||||||
throw Error('message_id不能为空')
|
throw Error('message_id不能为空')
|
||||||
}
|
}
|
||||||
const msg = await MessageUnique.getMsgIdAndPeerByShortId(+payload.message_id)
|
const msg = await this.ctx.store.getMsgInfoByShortId(+payload.message_id)
|
||||||
if (!msg) {
|
if (!msg) {
|
||||||
throw new Error(`无法找到消息${payload.message_id}`)
|
throw new Error(`无法找到消息${payload.message_id}`)
|
||||||
}
|
}
|
||||||
const peer = await this.getTargetPeer(payload)
|
const peer = await createPeer(this.ctx, payload)
|
||||||
const ret = await this.ctx.ntMsgApi.forwardMsg(msg.Peer, peer, [msg.MsgId])
|
const ret = await this.ctx.ntMsgApi.forwardMsg(msg.peer, peer, [msg.msgId])
|
||||||
if (ret.result !== 0) {
|
if (ret.length === 0) {
|
||||||
throw new Error(`转发消息失败 ${ret.errMsg}`)
|
throw new Error(`转发消息失败`)
|
||||||
}
|
}
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
@@ -2,7 +2,6 @@ import { BaseAction } from '../BaseAction'
|
|||||||
import { OB11Message } from '../../types'
|
import { OB11Message } from '../../types'
|
||||||
import { OB11Entities } from '../../entities'
|
import { OB11Entities } from '../../entities'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
import { MessageUnique } from '@/common/utils/messageUnique'
|
|
||||||
|
|
||||||
export interface PayloadType {
|
export interface PayloadType {
|
||||||
message_id: number | string
|
message_id: number | string
|
||||||
@@ -17,24 +16,20 @@ class GetMsg extends BaseAction<PayloadType, OB11Message> {
|
|||||||
if (!payload.message_id) {
|
if (!payload.message_id) {
|
||||||
throw new Error('参数message_id不能为空')
|
throw new Error('参数message_id不能为空')
|
||||||
}
|
}
|
||||||
const msgShortId = MessageUnique.getShortIdByMsgId(payload.message_id.toString())
|
const msgInfo = await this.ctx.store.getMsgInfoByShortId(+payload.message_id)
|
||||||
const msgIdWithPeer = await MessageUnique.getMsgIdAndPeerByShortId(msgShortId || +payload.message_id)
|
if (!msgInfo) {
|
||||||
if (!msgIdWithPeer) {
|
|
||||||
throw new Error('消息不存在')
|
throw new Error('消息不存在')
|
||||||
}
|
}
|
||||||
const peer = {
|
const peer = {
|
||||||
guildId: '',
|
guildId: '',
|
||||||
peerUid: msgIdWithPeer.Peer.peerUid,
|
peerUid: msgInfo.peer.peerUid,
|
||||||
chatType: msgIdWithPeer.Peer.chatType
|
chatType: msgInfo.peer.chatType
|
||||||
}
|
}
|
||||||
const msg = this.adapter.getMsgCache(msgIdWithPeer.MsgId) ?? (await this.ctx.ntMsgApi.getMsgsByMsgId(peer, [msgIdWithPeer.MsgId])).msgList[0]
|
const msg = this.ctx.store.getMsgCache(msgInfo.msgId) ?? (await this.ctx.ntMsgApi.getMsgsByMsgId(peer, [msgInfo.msgId])).msgList[0]
|
||||||
const retMsg = await OB11Entities.message(this.ctx, msg)
|
const retMsg = await OB11Entities.message(this.ctx, msg)
|
||||||
if (!retMsg) {
|
if (!retMsg) {
|
||||||
throw new Error('消息为空')
|
throw new Error('消息为空')
|
||||||
}
|
}
|
||||||
retMsg.message_id = MessageUnique.createMsg(peer, msg.msgId)!
|
|
||||||
retMsg.message_seq = retMsg.message_id
|
|
||||||
retMsg.real_id = retMsg.message_id
|
|
||||||
return retMsg
|
return retMsg
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -93,7 +93,11 @@ export class SendMsg extends BaseAction<OB11PostSendMsg, ReturnData> {
|
|||||||
if (!returnMsg) {
|
if (!returnMsg) {
|
||||||
throw new Error('消息发送失败')
|
throw new Error('消息发送失败')
|
||||||
}
|
}
|
||||||
return { message_id: returnMsg.msgShortId! }
|
const msgShortId = this.ctx.store.createMsgShortId({
|
||||||
|
chatType: returnMsg.chatType,
|
||||||
|
peerUid: returnMsg.peerUid
|
||||||
|
}, returnMsg.msgId)
|
||||||
|
return { message_id: msgShortId }
|
||||||
}
|
}
|
||||||
|
|
||||||
private getSpecialMsgNum(message: OB11MessageData[], msgType: OB11MessageDataType): number {
|
private getSpecialMsgNum(message: OB11MessageData[], msgType: OB11MessageDataType): number {
|
||||||
|
@@ -24,6 +24,9 @@ export enum ActionName {
|
|||||||
FetchEmojiLike = 'fetch_emoji_like',
|
FetchEmojiLike = 'fetch_emoji_like',
|
||||||
FetchCustomFace = 'fetch_custom_face',
|
FetchCustomFace = 'fetch_custom_face',
|
||||||
GetFriendMsgHistory = 'get_friend_msg_history',
|
GetFriendMsgHistory = 'get_friend_msg_history',
|
||||||
|
SendForwardMsg = 'send_forward_msg',
|
||||||
|
SetMsgEmojiLike = 'set_msg_emoji_like',
|
||||||
|
GetRobotUinRange = 'get_robot_uin_range',
|
||||||
// onebot 11
|
// onebot 11
|
||||||
SendLike = 'send_like',
|
SendLike = 'send_like',
|
||||||
GetLoginInfo = 'get_login_info',
|
GetLoginInfo = 'get_login_info',
|
||||||
@@ -37,7 +40,6 @@ export enum ActionName {
|
|||||||
SendGroupMsg = 'send_group_msg',
|
SendGroupMsg = 'send_group_msg',
|
||||||
SendPrivateMsg = 'send_private_msg',
|
SendPrivateMsg = 'send_private_msg',
|
||||||
DeleteMsg = 'delete_msg',
|
DeleteMsg = 'delete_msg',
|
||||||
SetMsgEmojiLike = 'set_msg_emoji_like',
|
|
||||||
SetGroupAddRequest = 'set_group_add_request',
|
SetGroupAddRequest = 'set_group_add_request',
|
||||||
SetFriendAddRequest = 'set_friend_add_request',
|
SetFriendAddRequest = 'set_friend_add_request',
|
||||||
SetGroupLeave = 'set_group_leave',
|
SetGroupLeave = 'set_group_leave',
|
||||||
@@ -57,8 +59,7 @@ export enum ActionName {
|
|||||||
GetCookies = 'get_cookies',
|
GetCookies = 'get_cookies',
|
||||||
ForwardFriendSingleMsg = 'forward_friend_single_msg',
|
ForwardFriendSingleMsg = 'forward_friend_single_msg',
|
||||||
ForwardGroupSingleMsg = 'forward_group_single_msg',
|
ForwardGroupSingleMsg = 'forward_group_single_msg',
|
||||||
// 以下为go-cqhttp api
|
// go-cqhttp
|
||||||
GoCQHTTP_SendForwardMsg = 'send_forward_msg',
|
|
||||||
GoCQHTTP_SendGroupForwardMsg = 'send_group_forward_msg',
|
GoCQHTTP_SendGroupForwardMsg = 'send_group_forward_msg',
|
||||||
GoCQHTTP_SendPrivateForwardMsg = 'send_private_forward_msg',
|
GoCQHTTP_SendPrivateForwardMsg = 'send_private_forward_msg',
|
||||||
GoCQHTTP_GetStrangerInfo = 'get_stranger_info',
|
GoCQHTTP_GetStrangerInfo = 'get_stranger_info',
|
||||||
@@ -69,7 +70,7 @@ export enum ActionName {
|
|||||||
GoCQHTTP_DownloadFile = 'download_file',
|
GoCQHTTP_DownloadFile = 'download_file',
|
||||||
GoCQHTTP_GetGroupMsgHistory = 'get_group_msg_history',
|
GoCQHTTP_GetGroupMsgHistory = 'get_group_msg_history',
|
||||||
GoCQHTTP_GetForwardMsg = 'get_forward_msg',
|
GoCQHTTP_GetForwardMsg = 'get_forward_msg',
|
||||||
GoCQHTTP_GetEssenceMsg = 'get_essence_msg_list',
|
GoCQHTTP_GetEssenceMsgList = 'get_essence_msg_list',
|
||||||
GoCQHTTP_HandleQuickOperation = '.handle_quick_operation',
|
GoCQHTTP_HandleQuickOperation = '.handle_quick_operation',
|
||||||
GetGroupHonorInfo = 'get_group_honor_info',
|
GetGroupHonorInfo = 'get_group_honor_info',
|
||||||
GoCQHTTP_SetEssenceMsg = 'set_essence_msg',
|
GoCQHTTP_SetEssenceMsg = 'set_essence_msg',
|
||||||
@@ -81,5 +82,7 @@ export enum ActionName {
|
|||||||
GoCQHTTP_GetGroupAtAllRemain = 'get_group_at_all_remain',
|
GoCQHTTP_GetGroupAtAllRemain = 'get_group_at_all_remain',
|
||||||
GoCQHTTP_GetGroupRootFiles = 'get_group_root_files',
|
GoCQHTTP_GetGroupRootFiles = 'get_group_root_files',
|
||||||
GoCQHTTP_SendGroupNotice = '_send_group_notice',
|
GoCQHTTP_SendGroupNotice = '_send_group_notice',
|
||||||
GoCQHTTP_GetGroupFilesByFolder = 'get_group_files_by_folder'
|
GoCQHTTP_GetGroupFilesByFolder = 'get_group_files_by_folder',
|
||||||
|
GoCQHTTP_GetGroupFileUrl = 'get_group_file_url',
|
||||||
|
GoCQHTTP_GetGroupNotice = '_get_group_notice',
|
||||||
}
|
}
|
||||||
|
@@ -1,35 +1,25 @@
|
|||||||
import { BaseAction } from '../BaseAction'
|
import { BaseAction, Schema } from '../BaseAction'
|
||||||
import { OB11User } from '../../types'
|
import { OB11User } from '../../types'
|
||||||
import { OB11Entities } from '../../entities'
|
import { OB11Entities } from '../../entities'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
import { getBuildVersion } from '@/common/utils'
|
import { getBuildVersion } from '@/common/utils'
|
||||||
|
import { parseBool } from '@/common/utils/misc'
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
no_cache: boolean | string
|
no_cache: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
export class GetFriendList extends BaseAction<Payload, OB11User[]> {
|
export class GetFriendList extends BaseAction<Payload, OB11User[]> {
|
||||||
actionName = ActionName.GetFriendList
|
actionName = ActionName.GetFriendList
|
||||||
|
payloadSchema = Schema.object({
|
||||||
|
no_cache: Schema.union([Boolean, Schema.transform(String, parseBool)]).default(false)
|
||||||
|
})
|
||||||
|
|
||||||
protected async _handle(payload: Payload) {
|
protected async _handle(payload: Payload) {
|
||||||
const refresh = payload?.no_cache === true || payload?.no_cache === 'true'
|
const refresh = payload.no_cache
|
||||||
if (getBuildVersion() >= 26702) {
|
if (getBuildVersion() >= 26702) {
|
||||||
return OB11Entities.friendsV2(await this.ctx.ntFriendApi.getBuddyV2(refresh))
|
return OB11Entities.friendsV2(await this.ctx.ntFriendApi.getBuddyV2(refresh))
|
||||||
}
|
}
|
||||||
return OB11Entities.friends(await this.ctx.ntFriendApi.getFriends())
|
return OB11Entities.friends(await this.ctx.ntFriendApi.getFriends())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// extend
|
|
||||||
export class GetFriendWithCategory extends BaseAction<void, OB11User[]> {
|
|
||||||
actionName = ActionName.GetFriendsWithCategory
|
|
||||||
|
|
||||||
protected async _handle() {
|
|
||||||
if (getBuildVersion() >= 26702) {
|
|
||||||
//全新逻辑
|
|
||||||
return OB11Entities.friendsV2(await this.ctx.ntFriendApi.getBuddyV2ExWithCate(true))
|
|
||||||
} else {
|
|
||||||
throw new Error('this ntqq version not support, must be 26702 or later')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@@ -10,15 +10,12 @@ export default class SendLike extends BaseAction<Payload, null> {
|
|||||||
actionName = ActionName.SendLike
|
actionName = ActionName.SendLike
|
||||||
|
|
||||||
protected async _handle(payload: Payload): Promise<null> {
|
protected async _handle(payload: Payload): Promise<null> {
|
||||||
try {
|
const uin = payload.user_id.toString()
|
||||||
const qq = payload.user_id.toString()
|
const uid = await this.ctx.ntUserApi.getUidByUin(uin)
|
||||||
const uid: string = await this.ctx.ntUserApi.getUidByUin(qq) || ''
|
if (!uid) throw new Error('无法获取用户信息')
|
||||||
const result = await this.ctx.ntUserApi.like(uid, +payload.times || 1)
|
const result = await this.ctx.ntUserApi.like(uid, +payload.times || 1)
|
||||||
if (result?.result !== 0) {
|
if (result.result !== 0) {
|
||||||
throw Error(result?.errMsg)
|
throw new Error(result.errMsg)
|
||||||
}
|
|
||||||
} catch (e) {
|
|
||||||
throw `点赞失败 ${e}`
|
|
||||||
}
|
}
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
@@ -1,5 +1,6 @@
|
|||||||
import { BaseAction } from '../BaseAction'
|
import { BaseAction } from '../BaseAction'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
|
import { ChatType } from '@/ntqqapi/types'
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
flag: string
|
flag: string
|
||||||
@@ -22,6 +23,11 @@ export default class SetFriendAddRequest extends BaseAction<Payload, null> {
|
|||||||
if (payload.remark) {
|
if (payload.remark) {
|
||||||
await this.ctx.ntFriendApi.setBuddyRemark(uid, payload.remark)
|
await this.ctx.ntFriendApi.setBuddyRemark(uid, payload.remark)
|
||||||
}
|
}
|
||||||
|
await this.ctx.ntMsgApi.activateChat({
|
||||||
|
peerUid: uid,
|
||||||
|
chatType: ChatType.C2C,
|
||||||
|
guildId: ''
|
||||||
|
})
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -5,7 +5,6 @@ import {
|
|||||||
GroupNotifyType,
|
GroupNotifyType,
|
||||||
RawMessage,
|
RawMessage,
|
||||||
BuddyReqType,
|
BuddyReqType,
|
||||||
Peer,
|
|
||||||
FriendRequest,
|
FriendRequest,
|
||||||
GroupMember,
|
GroupMember,
|
||||||
GroupMemberRole,
|
GroupMemberRole,
|
||||||
@@ -13,7 +12,6 @@ import {
|
|||||||
} from '../ntqqapi/types'
|
} from '../ntqqapi/types'
|
||||||
import { OB11GroupRequestEvent } from './event/request/OB11GroupRequest'
|
import { OB11GroupRequestEvent } from './event/request/OB11GroupRequest'
|
||||||
import { OB11FriendRequestEvent } from './event/request/OB11FriendRequest'
|
import { OB11FriendRequestEvent } from './event/request/OB11FriendRequest'
|
||||||
import { MessageUnique } from '../common/utils/messageUnique'
|
|
||||||
import { GroupDecreaseSubType, OB11GroupDecreaseEvent } from './event/notice/OB11GroupDecreaseEvent'
|
import { GroupDecreaseSubType, OB11GroupDecreaseEvent } from './event/notice/OB11GroupDecreaseEvent'
|
||||||
import { selfInfo } from '../common/globalVars'
|
import { selfInfo } from '../common/globalVars'
|
||||||
import { OB11Config, Config as LLOBConfig } from '../common/types'
|
import { OB11Config, Config as LLOBConfig } from '../common/types'
|
||||||
@@ -37,10 +35,8 @@ declare module 'cordis' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class OneBot11Adapter extends Service {
|
class OneBot11Adapter extends Service {
|
||||||
static inject = ['ntMsgApi', 'ntFileApi', 'ntFileCacheApi', 'ntFriendApi', 'ntGroupApi', 'ntUserApi', 'ntWindowApi', 'ntWebApi']
|
static inject = ['ntMsgApi', 'ntFileApi', 'ntFileCacheApi', 'ntFriendApi', 'ntGroupApi', 'ntUserApi', 'ntWindowApi', 'ntWebApi', 'store']
|
||||||
|
|
||||||
public messages: Map<string, RawMessage> = new Map()
|
|
||||||
public startTime = 0
|
|
||||||
private ob11WebSocket: OB11WebSocket
|
private ob11WebSocket: OB11WebSocket
|
||||||
private ob11WebSocketReverseManager: OB11WebSocketReverseManager
|
private ob11WebSocketReverseManager: OB11WebSocketReverseManager
|
||||||
private ob11Http: OB11Http
|
private ob11Http: OB11Http
|
||||||
@@ -76,24 +72,6 @@ class OneBot11Adapter extends Service {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 缓存近期消息内容 */
|
|
||||||
public async addMsgCache(msg: RawMessage) {
|
|
||||||
const expire = this.config.msgCacheExpire * 1000
|
|
||||||
if (expire === 0) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
const id = msg.msgId
|
|
||||||
this.messages.set(id, msg)
|
|
||||||
setTimeout(() => {
|
|
||||||
this.messages.delete(id)
|
|
||||||
}, expire)
|
|
||||||
}
|
|
||||||
|
|
||||||
/** 获取近期消息内容 */
|
|
||||||
public getMsgCache(msgId: string) {
|
|
||||||
return this.messages.get(msgId)
|
|
||||||
}
|
|
||||||
|
|
||||||
public dispatch(event: OB11BaseEvent | OB11Message) {
|
public dispatch(event: OB11BaseEvent | OB11Message) {
|
||||||
if (this.config.enableWs) {
|
if (this.config.enableWs) {
|
||||||
this.ob11WebSocket.emitEvent(event)
|
this.ob11WebSocket.emitEvent(event)
|
||||||
@@ -110,124 +88,107 @@ class OneBot11Adapter extends Service {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private async handleGroupNotify(notifies: GroupNotify[]) {
|
private async handleGroupNotify(notify: GroupNotify) {
|
||||||
for (const notify of notifies) {
|
try {
|
||||||
try {
|
const flag = notify.group.groupCode + '|' + notify.seq + '|' + notify.type
|
||||||
const notifyTime = parseInt(notify.seq) / 1000
|
if ([GroupNotifyType.MEMBER_LEAVE_NOTIFY_ADMIN, GroupNotifyType.KICK_MEMBER_NOTIFY_ADMIN].includes(notify.type)) {
|
||||||
if (notifyTime < this.startTime) {
|
this.ctx.logger.info('有成员退出通知', notify)
|
||||||
continue
|
const member1Uin = await this.ctx.ntUserApi.getUinByUid(notify.user1.uid)
|
||||||
}
|
let operatorId = member1Uin
|
||||||
const flag = notify.group.groupCode + '|' + notify.seq + '|' + notify.type
|
let subType: GroupDecreaseSubType = 'leave'
|
||||||
if ([GroupNotifyType.MEMBER_LEAVE_NOTIFY_ADMIN, GroupNotifyType.KICK_MEMBER_NOTIFY_ADMIN].includes(notify.type)) {
|
if (notify.user2.uid) {
|
||||||
this.ctx.logger.info('有成员退出通知', notify)
|
// 是被踢的
|
||||||
const member1Uin = await this.ctx.ntUserApi.getUinByUid(notify.user1.uid)
|
const member2Uin = await this.ctx.ntUserApi.getUinByUid(notify.user2.uid)
|
||||||
let operatorId = member1Uin
|
if (member2Uin) {
|
||||||
let subType: GroupDecreaseSubType = 'leave'
|
operatorId = member2Uin
|
||||||
if (notify.user2.uid) {
|
|
||||||
// 是被踢的
|
|
||||||
const member2Uin = await this.ctx.ntUserApi.getUinByUid(notify.user2.uid)
|
|
||||||
if (member2Uin) {
|
|
||||||
operatorId = member2Uin
|
|
||||||
}
|
|
||||||
subType = 'kick'
|
|
||||||
}
|
}
|
||||||
const event = new OB11GroupDecreaseEvent(
|
subType = 'kick'
|
||||||
parseInt(notify.group.groupCode),
|
|
||||||
parseInt(member1Uin),
|
|
||||||
parseInt(operatorId),
|
|
||||||
subType,
|
|
||||||
)
|
|
||||||
this.dispatch(event)
|
|
||||||
}
|
}
|
||||||
else if (notify.type === GroupNotifyType.REQUEST_JOIN_NEED_ADMINI_STRATOR_PASS && notify.status === GroupNotifyStatus.KUNHANDLE) {
|
const event = new OB11GroupDecreaseEvent(
|
||||||
this.ctx.logger.info('有加群请求')
|
parseInt(notify.group.groupCode),
|
||||||
const requestUin = await this.ctx.ntUserApi.getUinByUid(notify.user1.uid)
|
parseInt(member1Uin),
|
||||||
const event = new OB11GroupRequestEvent(
|
parseInt(operatorId),
|
||||||
parseInt(notify.group.groupCode),
|
subType,
|
||||||
parseInt(requestUin) || 0,
|
)
|
||||||
flag,
|
this.dispatch(event)
|
||||||
notify.postscript,
|
|
||||||
)
|
|
||||||
this.dispatch(event)
|
|
||||||
}
|
|
||||||
else if (notify.type === GroupNotifyType.INVITED_BY_MEMBER && notify.status === GroupNotifyStatus.KUNHANDLE) {
|
|
||||||
this.ctx.logger.info('收到邀请我加群通知')
|
|
||||||
const userId = await this.ctx.ntUserApi.getUinByUid(notify.user2.uid)
|
|
||||||
const event = new OB11GroupRequestEvent(
|
|
||||||
parseInt(notify.group.groupCode),
|
|
||||||
parseInt(userId) || 0,
|
|
||||||
flag,
|
|
||||||
notify.postscript,
|
|
||||||
undefined,
|
|
||||||
'invite'
|
|
||||||
)
|
|
||||||
this.dispatch(event)
|
|
||||||
}
|
|
||||||
else if (notify.type === GroupNotifyType.INVITED_NEED_ADMINI_STRATOR_PASS && notify.status === GroupNotifyStatus.KUNHANDLE) {
|
|
||||||
this.ctx.logger.info('收到群员邀请加群通知')
|
|
||||||
const userId = await this.ctx.ntUserApi.getUinByUid(notify.user1.uid)
|
|
||||||
const event = new OB11GroupRequestEvent(
|
|
||||||
parseInt(notify.group.groupCode),
|
|
||||||
parseInt(userId) || 0,
|
|
||||||
flag,
|
|
||||||
notify.postscript
|
|
||||||
)
|
|
||||||
this.dispatch(event)
|
|
||||||
}
|
|
||||||
} catch (e) {
|
|
||||||
this.ctx.logger.error('解析群通知失败', (e as Error).stack)
|
|
||||||
}
|
}
|
||||||
|
else if (notify.type === GroupNotifyType.REQUEST_JOIN_NEED_ADMINI_STRATOR_PASS && notify.status === GroupNotifyStatus.KUNHANDLE) {
|
||||||
|
this.ctx.logger.info('有加群请求')
|
||||||
|
const requestUin = await this.ctx.ntUserApi.getUinByUid(notify.user1.uid)
|
||||||
|
const event = new OB11GroupRequestEvent(
|
||||||
|
parseInt(notify.group.groupCode),
|
||||||
|
parseInt(requestUin) || 0,
|
||||||
|
flag,
|
||||||
|
notify.postscript,
|
||||||
|
)
|
||||||
|
this.dispatch(event)
|
||||||
|
}
|
||||||
|
else if (notify.type === GroupNotifyType.INVITED_BY_MEMBER && notify.status === GroupNotifyStatus.KUNHANDLE) {
|
||||||
|
this.ctx.logger.info('收到邀请我加群通知')
|
||||||
|
const userId = await this.ctx.ntUserApi.getUinByUid(notify.user2.uid)
|
||||||
|
const event = new OB11GroupRequestEvent(
|
||||||
|
parseInt(notify.group.groupCode),
|
||||||
|
parseInt(userId) || 0,
|
||||||
|
flag,
|
||||||
|
notify.postscript,
|
||||||
|
undefined,
|
||||||
|
'invite'
|
||||||
|
)
|
||||||
|
this.dispatch(event)
|
||||||
|
}
|
||||||
|
else if (notify.type === GroupNotifyType.INVITED_NEED_ADMINI_STRATOR_PASS && notify.status === GroupNotifyStatus.KUNHANDLE) {
|
||||||
|
this.ctx.logger.info('收到群员邀请加群通知')
|
||||||
|
const userId = await this.ctx.ntUserApi.getUinByUid(notify.user1.uid)
|
||||||
|
const event = new OB11GroupRequestEvent(
|
||||||
|
parseInt(notify.group.groupCode),
|
||||||
|
parseInt(userId) || 0,
|
||||||
|
flag,
|
||||||
|
notify.postscript
|
||||||
|
)
|
||||||
|
this.dispatch(event)
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
this.ctx.logger.error('解析群通知失败', (e as Error).stack)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private handleMsg(msgList: RawMessage[]) {
|
private handleMsg(message: RawMessage) {
|
||||||
for (const message of msgList) {
|
OB11Entities.message(this.ctx, message).then(msg => {
|
||||||
// 过滤启动之前的消息
|
if (!msg) {
|
||||||
if (parseInt(message.msgTime) < this.startTime / 1000) {
|
return
|
||||||
continue
|
|
||||||
}
|
}
|
||||||
const peer: Peer = {
|
if (!this.config.debug && msg.message.length === 0) {
|
||||||
chatType: message.chatType,
|
return
|
||||||
peerUid: message.peerUid
|
|
||||||
}
|
}
|
||||||
message.msgShortId = MessageUnique.createMsg(peer, message.msgId)
|
const isSelfMsg = msg.user_id.toString() === selfInfo.uin
|
||||||
this.addMsgCache(message)
|
if (isSelfMsg && !this.config.reportSelfMessage) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if (isSelfMsg) {
|
||||||
|
msg.target_id = parseInt(message.peerUin)
|
||||||
|
}
|
||||||
|
this.dispatch(msg)
|
||||||
|
}).catch(e => this.ctx.logger.error('constructMessage error: ', e.stack.toString()))
|
||||||
|
|
||||||
OB11Entities.message(this.ctx, message)
|
OB11Entities.groupEvent(this.ctx, message).then(groupEvent => {
|
||||||
.then((msg) => {
|
if (groupEvent) {
|
||||||
if (!msg) {
|
this.dispatch(groupEvent)
|
||||||
return
|
}
|
||||||
}
|
})
|
||||||
if (!this.config.debug && msg.message.length === 0) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
const isSelfMsg = msg.user_id.toString() === selfInfo.uin
|
|
||||||
if (isSelfMsg && !this.config.reportSelfMessage) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if (isSelfMsg) {
|
|
||||||
msg.target_id = parseInt(message.peerUin)
|
|
||||||
}
|
|
||||||
this.dispatch(msg)
|
|
||||||
})
|
|
||||||
.catch((e) => this.ctx.logger.error('constructMessage error: ', e.stack.toString()))
|
|
||||||
|
|
||||||
OB11Entities.groupEvent(this.ctx, message).then((groupEvent) => {
|
OB11Entities.privateEvent(this.ctx, message).then(privateEvent => {
|
||||||
if (groupEvent) {
|
if (privateEvent) {
|
||||||
this.dispatch(groupEvent)
|
this.dispatch(privateEvent)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
OB11Entities.privateEvent(this.ctx, message).then((privateEvent) => {
|
|
||||||
if (privateEvent) {
|
|
||||||
this.dispatch(privateEvent)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private handleRecallMsg(message: RawMessage) {
|
private handleRecallMsg(message: RawMessage) {
|
||||||
const oriMessageId = MessageUnique.getShortIdByMsgId(message.msgId)
|
const peer = {
|
||||||
|
peerUid: message.peerUid,
|
||||||
|
chatType: message.chatType
|
||||||
|
}
|
||||||
|
const oriMessageId = this.ctx.store.getShortIdByMsgInfo(peer, message.msgId)
|
||||||
if (!oriMessageId) {
|
if (!oriMessageId) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -238,30 +199,22 @@ class OneBot11Adapter extends Service {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
private async handleFriendRequest(buddyReqs: FriendRequest[]) {
|
private async handleFriendRequest(req: FriendRequest) {
|
||||||
for (const req of buddyReqs) {
|
let userId = 0
|
||||||
if (!!req.isInitiator || (req.isDecide && req.reqType !== BuddyReqType.KMEINITIATORWAITPEERCONFIRM)) {
|
try {
|
||||||
continue
|
const requesterUin = await this.ctx.ntUserApi.getUinByUid(req.friendUid)
|
||||||
}
|
userId = parseInt(requesterUin)
|
||||||
if (+req.reqTime < this.startTime / 1000) {
|
} catch (e) {
|
||||||
continue
|
this.ctx.logger.error('获取加好友者QQ号失败', e)
|
||||||
}
|
|
||||||
let userId = 0
|
|
||||||
try {
|
|
||||||
const requesterUin = await this.ctx.ntUserApi.getUinByUid(req.friendUid)
|
|
||||||
userId = parseInt(requesterUin)
|
|
||||||
} catch (e) {
|
|
||||||
this.ctx.logger.error('获取加好友者QQ号失败', e)
|
|
||||||
}
|
|
||||||
const flag = req.friendUid + '|' + req.reqTime
|
|
||||||
const comment = req.extWords
|
|
||||||
const friendRequestEvent = new OB11FriendRequestEvent(
|
|
||||||
userId,
|
|
||||||
comment,
|
|
||||||
flag
|
|
||||||
)
|
|
||||||
this.dispatch(friendRequestEvent)
|
|
||||||
}
|
}
|
||||||
|
const flag = req.friendUid + '|' + req.reqTime
|
||||||
|
const comment = req.extWords
|
||||||
|
const friendRequestEvent = new OB11FriendRequestEvent(
|
||||||
|
userId,
|
||||||
|
comment,
|
||||||
|
flag
|
||||||
|
)
|
||||||
|
this.dispatch(friendRequestEvent)
|
||||||
}
|
}
|
||||||
|
|
||||||
private async handleConfigUpdated(config: LLOBConfig) {
|
private async handleConfigUpdated(config: LLOBConfig) {
|
||||||
@@ -377,7 +330,6 @@ class OneBot11Adapter extends Service {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public start() {
|
public start() {
|
||||||
this.startTime = Date.now()
|
|
||||||
if (this.config.enableWs) {
|
if (this.config.enableWs) {
|
||||||
this.ob11WebSocket.start()
|
this.ob11WebSocket.start()
|
||||||
}
|
}
|
||||||
@@ -400,7 +352,7 @@ class OneBot11Adapter extends Service {
|
|||||||
this.handleRecallMsg(input)
|
this.handleRecallMsg(input)
|
||||||
})
|
})
|
||||||
this.ctx.on('nt/message-sent', input => {
|
this.ctx.on('nt/message-sent', input => {
|
||||||
this.handleMsg([input])
|
this.handleMsg(input)
|
||||||
})
|
})
|
||||||
this.ctx.on('nt/group-notify', input => {
|
this.ctx.on('nt/group-notify', input => {
|
||||||
this.handleGroupNotify(input)
|
this.handleGroupNotify(input)
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
import http from 'node:http'
|
import http from 'node:http'
|
||||||
import cors from 'cors'
|
import cors from 'cors'
|
||||||
import crypto from 'node:crypto'
|
import crypto from 'node:crypto'
|
||||||
import express, { Express, Request, Response } from 'express'
|
import express, { Express, Request, Response, NextFunction } from 'express'
|
||||||
import { BaseAction } from '../action/BaseAction'
|
import { BaseAction } from '../action/BaseAction'
|
||||||
import { Context } from 'cordis'
|
import { Context } from 'cordis'
|
||||||
import { llonebotError, selfInfo } from '@/common/globalVars'
|
import { llonebotError, selfInfo } from '@/common/globalVars'
|
||||||
@@ -12,8 +12,6 @@ import { handleQuickOperation, QuickOperationEvent } from '../helper/quickOperat
|
|||||||
import { OB11HeartbeatEvent } from '../event/meta/OB11HeartbeatEvent'
|
import { OB11HeartbeatEvent } from '../event/meta/OB11HeartbeatEvent'
|
||||||
import { Dict } from 'cosmokit'
|
import { Dict } from 'cosmokit'
|
||||||
|
|
||||||
type RegisterHandler = (res: Response, payload: unknown) => Promise<unknown>
|
|
||||||
|
|
||||||
class OB11Http {
|
class OB11Http {
|
||||||
private readonly expressAPP: Express
|
private readonly expressAPP: Express
|
||||||
private server?: http.Server
|
private server?: http.Server
|
||||||
@@ -25,7 +23,6 @@ class OB11Http {
|
|||||||
this.expressAPP.use(express.urlencoded({ extended: true, limit: '5000mb' }))
|
this.expressAPP.use(express.urlencoded({ extended: true, limit: '5000mb' }))
|
||||||
this.expressAPP.use((req, res, next) => {
|
this.expressAPP.use((req, res, next) => {
|
||||||
// 兼容处理没有带content-type的请求
|
// 兼容处理没有带content-type的请求
|
||||||
// log("req.headers['content-type']", req.headers['content-type'])
|
|
||||||
req.headers['content-type'] = 'application/json'
|
req.headers['content-type'] = 'application/json'
|
||||||
const originalJson = express.json({ limit: '5000mb' })
|
const originalJson = express.json({ limit: '5000mb' })
|
||||||
// 调用原始的express.json()处理器
|
// 调用原始的express.json()处理器
|
||||||
@@ -37,12 +34,8 @@ class OB11Http {
|
|||||||
next()
|
next()
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
setTimeout(() => {
|
this.expressAPP.use((req, res, next) => this.authorize(req, res, next))
|
||||||
for (const [actionName, action] of config.actionMap) {
|
this.expressAPP.use((req, res, next) => this.handleRequest(req, res, next))
|
||||||
this.registerRouter('post', actionName, (res, payload) => action.handle(payload))
|
|
||||||
this.registerRouter('get', actionName, (res, payload) => action.handle(payload))
|
|
||||||
}
|
|
||||||
}, 0)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public start() {
|
public start() {
|
||||||
@@ -83,8 +76,10 @@ class OB11Http {
|
|||||||
Object.assign(this.config, config)
|
Object.assign(this.config, config)
|
||||||
}
|
}
|
||||||
|
|
||||||
private authorize(req: Request, res: Response, next: () => void) {
|
private authorize(req: Request, res: Response, next: NextFunction) {
|
||||||
const serverToken = this.config.token
|
const serverToken = this.config.token
|
||||||
|
if (!serverToken) return next()
|
||||||
|
|
||||||
let clientToken = ''
|
let clientToken = ''
|
||||||
const authHeader = req.get('authorization')
|
const authHeader = req.get('authorization')
|
||||||
if (authHeader) {
|
if (authHeader) {
|
||||||
@@ -99,36 +94,32 @@ class OB11Http {
|
|||||||
this.ctx.logger.info('receive http url token', clientToken)
|
this.ctx.logger.info('receive http url token', clientToken)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (serverToken && clientToken !== serverToken) {
|
if (clientToken !== serverToken) {
|
||||||
return res.status(403).send(JSON.stringify({ message: 'token verify failed!' }))
|
res.status(403).json({ message: 'token verify failed!' })
|
||||||
|
} else {
|
||||||
|
next()
|
||||||
}
|
}
|
||||||
next()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private registerRouter(method: 'post' | 'get', url: string, handler: RegisterHandler) {
|
private async handleRequest(req: Request, res: Response, next: NextFunction) {
|
||||||
if (!url.startsWith('/')) {
|
if (req.path === '/') return next()
|
||||||
url = '/' + url
|
let payload = req.body
|
||||||
|
if (req.method === 'GET') {
|
||||||
|
payload = req.query
|
||||||
|
} else if (req.query) {
|
||||||
|
payload = { ...req.query, ...req.body }
|
||||||
}
|
}
|
||||||
|
this.ctx.logger.info('收到 HTTP 请求', req.url, payload)
|
||||||
if (!this.expressAPP[method]) {
|
const action = this.config.actionMap.get(req.path.replaceAll('/', ''))
|
||||||
const err = `LLOneBot server register router failed,${method} not exist`
|
if (action) {
|
||||||
this.ctx.logger.error(err)
|
|
||||||
throw err
|
|
||||||
}
|
|
||||||
this.expressAPP[method](url, this.authorize.bind(this), async (req: Request, res: Response) => {
|
|
||||||
let payload = req.body
|
|
||||||
if (method == 'get') {
|
|
||||||
payload = req.query
|
|
||||||
} else if (req.query) {
|
|
||||||
payload = { ...req.query, ...req.body }
|
|
||||||
}
|
|
||||||
this.ctx.logger.info('收到 HTTP 请求', url, payload)
|
|
||||||
try {
|
try {
|
||||||
res.send(await handler(res, payload))
|
res.json(await action.handle(payload))
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
res.send(OB11Response.error((e as Error).stack!.toString(), 200))
|
res.json(OB11Response.error((e as Error).stack!.toString(), 200))
|
||||||
}
|
}
|
||||||
})
|
} else {
|
||||||
|
res.status(404).json(OB11Response.error('API 不存在', 404))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -72,7 +72,3 @@ export function encodeCQCode(input: OB11MessageData) {
|
|||||||
result += ']'
|
result += ']'
|
||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
|
|
||||||
// const result = parseCQCode("[CQ:at,qq=114514]早上好啊[CQ:image,file=http://baidu.com/1.jpg,type=show,id=40004]")
|
|
||||||
// const result = parseCQCode("好好好")
|
|
||||||
// console.log(JSON.stringify(result))
|
|
||||||
|
@@ -15,18 +15,15 @@ import {
|
|||||||
FaceIndex,
|
FaceIndex,
|
||||||
GrayTipElementSubType,
|
GrayTipElementSubType,
|
||||||
Group,
|
Group,
|
||||||
Peer,
|
|
||||||
GroupMember,
|
GroupMember,
|
||||||
RawMessage,
|
RawMessage,
|
||||||
Sex,
|
Sex,
|
||||||
TipGroupElementType,
|
TipGroupElementType,
|
||||||
User,
|
User,
|
||||||
FriendV2,
|
SimpleInfo
|
||||||
ChatType2
|
|
||||||
} from '../ntqqapi/types'
|
} from '../ntqqapi/types'
|
||||||
import { EventType } from './event/OB11BaseEvent'
|
import { EventType } from './event/OB11BaseEvent'
|
||||||
import { encodeCQCode } from './cqcode'
|
import { encodeCQCode } from './cqcode'
|
||||||
import { MessageUnique } from '../common/utils/messageUnique'
|
|
||||||
import { OB11GroupIncreaseEvent } from './event/notice/OB11GroupIncreaseEvent'
|
import { OB11GroupIncreaseEvent } from './event/notice/OB11GroupIncreaseEvent'
|
||||||
import { OB11GroupBanEvent } from './event/notice/OB11GroupBanEvent'
|
import { OB11GroupBanEvent } from './event/notice/OB11GroupBanEvent'
|
||||||
import { OB11GroupUploadNoticeEvent } from './event/notice/OB11GroupUploadNoticeEvent'
|
import { OB11GroupUploadNoticeEvent } from './event/notice/OB11GroupUploadNoticeEvent'
|
||||||
@@ -56,14 +53,15 @@ export namespace OB11Entities {
|
|||||||
messagePostFormat,
|
messagePostFormat,
|
||||||
} = ctx.config as OneBot11Adapter.Config
|
} = ctx.config as OneBot11Adapter.Config
|
||||||
const selfUin = selfInfo.uin
|
const selfUin = selfInfo.uin
|
||||||
|
const msgShortId = ctx.store.createMsgShortId({ chatType: msg.chatType, peerUid: msg.peerUid }, msg.msgId)
|
||||||
const resMsg: OB11Message = {
|
const resMsg: OB11Message = {
|
||||||
self_id: parseInt(selfUin),
|
self_id: parseInt(selfUin),
|
||||||
user_id: parseInt(msg.senderUin),
|
user_id: parseInt(msg.senderUin),
|
||||||
time: parseInt(msg.msgTime) || Date.now(),
|
time: parseInt(msg.msgTime) || Date.now(),
|
||||||
message_id: msg.msgShortId!,
|
message_id: msgShortId,
|
||||||
real_id: msg.msgShortId!,
|
real_id: msgShortId,
|
||||||
message_seq: msg.msgShortId!,
|
message_seq: msgShortId,
|
||||||
message_type: msg.chatType === ChatType.group ? 'group' : 'private',
|
message_type: msg.chatType === ChatType.Group ? 'group' : 'private',
|
||||||
sender: {
|
sender: {
|
||||||
user_id: parseInt(msg.senderUin),
|
user_id: parseInt(msg.senderUin),
|
||||||
nickname: msg.sendNickName,
|
nickname: msg.sendNickName,
|
||||||
@@ -79,7 +77,7 @@ export namespace OB11Entities {
|
|||||||
if (debug) {
|
if (debug) {
|
||||||
resMsg.raw = msg
|
resMsg.raw = msg
|
||||||
}
|
}
|
||||||
if (msg.chatType === ChatType.group) {
|
if (msg.chatType === ChatType.Group) {
|
||||||
resMsg.sub_type = 'normal'
|
resMsg.sub_type = 'normal'
|
||||||
resMsg.group_id = parseInt(msg.peerUin)
|
resMsg.group_id = parseInt(msg.peerUin)
|
||||||
const member = await ctx.ntGroupApi.getGroupMember(msg.peerUin, msg.senderUin)
|
const member = await ctx.ntGroupApi.getGroupMember(msg.peerUin, msg.senderUin)
|
||||||
@@ -89,15 +87,15 @@ export namespace OB11Entities {
|
|||||||
resMsg.sender.title = member.memberSpecialTitle ?? ''
|
resMsg.sender.title = member.memberSpecialTitle ?? ''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (msg.chatType === ChatType.friend) {
|
else if (msg.chatType === ChatType.C2C) {
|
||||||
resMsg.sub_type = 'friend'
|
resMsg.sub_type = 'friend'
|
||||||
resMsg.sender.nickname = (await ctx.ntUserApi.getUserDetailInfo(msg.senderUid)).nick
|
resMsg.sender.nickname = (await ctx.ntUserApi.getUserDetailInfo(msg.senderUid)).nick
|
||||||
}
|
}
|
||||||
else if (msg.chatType as unknown as ChatType2 === ChatType2.KCHATTYPETEMPC2CFROMGROUP) {
|
else if (msg.chatType === ChatType.TempC2CFromGroup) {
|
||||||
resMsg.sub_type = 'group'
|
resMsg.sub_type = 'group'
|
||||||
resMsg.temp_source = 0 //群聊
|
resMsg.temp_source = 0 //群聊
|
||||||
resMsg.sender.nickname = (await ctx.ntUserApi.getUserDetailInfo(msg.senderUid)).nick
|
resMsg.sender.nickname = (await ctx.ntUserApi.getUserDetailInfo(msg.senderUid)).nick
|
||||||
const ret = await ctx.ntMsgApi.getTempChatInfo(ChatType2.KCHATTYPETEMPC2CFROMGROUP, msg.senderUid)
|
const ret = await ctx.ntMsgApi.getTempChatInfo(ChatType.TempC2CFromGroup, msg.senderUid)
|
||||||
if (ret?.result === 0) {
|
if (ret?.result === 0) {
|
||||||
resMsg.sender.group_id = Number(ret.tmpChatInfo?.groupCode)
|
resMsg.sender.group_id = Number(ret.tmpChatInfo?.groupCode)
|
||||||
} else {
|
} else {
|
||||||
@@ -107,37 +105,31 @@ export namespace OB11Entities {
|
|||||||
|
|
||||||
for (const element of msg.elements) {
|
for (const element of msg.elements) {
|
||||||
let messageSegment: OB11MessageData | undefined
|
let messageSegment: OB11MessageData | undefined
|
||||||
if (element.textElement && element.textElement?.atType !== AtType.notAt) {
|
if (element.textElement && element.textElement?.atType !== AtType.Unknown) {
|
||||||
let qq: string
|
let qq: string
|
||||||
let name: string | undefined
|
let name: string | undefined
|
||||||
if (element.textElement.atType == AtType.atAll) {
|
if (element.textElement.atType === AtType.All) {
|
||||||
qq = 'all'
|
qq = 'all'
|
||||||
}
|
} else {
|
||||||
else {
|
const { atNtUid, atUid, content } = element.textElement
|
||||||
const { atNtUid, content } = element.textElement
|
if (atUid && atUid !== '0') {
|
||||||
let atQQ = element.textElement.atUid
|
qq = atUid
|
||||||
if (!atQQ || atQQ === '0') {
|
} else {
|
||||||
const atMember = await ctx.ntGroupApi.getGroupMember(msg.peerUin, atNtUid)
|
qq = await ctx.ntUserApi.getUinByUid(atNtUid)
|
||||||
if (atMember) {
|
|
||||||
atQQ = atMember.uin
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (atQQ) {
|
|
||||||
qq = atQQ
|
|
||||||
name = content.replace('@', '')
|
|
||||||
}
|
}
|
||||||
|
name = content.replace('@', '')
|
||||||
}
|
}
|
||||||
messageSegment = {
|
messageSegment = {
|
||||||
type: OB11MessageDataType.at,
|
type: OB11MessageDataType.at,
|
||||||
data: {
|
data: {
|
||||||
qq: qq!,
|
qq,
|
||||||
name
|
name
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (element.textElement) {
|
else if (element.textElement) {
|
||||||
const text = element.textElement.content
|
const text = element.textElement.content
|
||||||
if (!text.trim()) {
|
if (!text) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
messageSegment = {
|
messageSegment = {
|
||||||
@@ -179,7 +171,7 @@ export namespace OB11Entities {
|
|||||||
messageSegment = {
|
messageSegment = {
|
||||||
type: OB11MessageDataType.reply,
|
type: OB11MessageDataType.reply,
|
||||||
data: {
|
data: {
|
||||||
id: MessageUnique.createMsg(peer, replyMsg ? replyMsg.msgId : records.msgId).toString()
|
id: ctx.store.createMsgShortId(peer, replyMsg ? replyMsg.msgId : records.msgId).toString()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
@@ -199,7 +191,7 @@ export namespace OB11Entities {
|
|||||||
file_size: fileSize,
|
file_size: fileSize,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
MessageUnique.addFileCache({
|
ctx.store.addFileCache({
|
||||||
peerUid: msg.peerUid,
|
peerUid: msg.peerUid,
|
||||||
msgId: msg.msgId,
|
msgId: msg.msgId,
|
||||||
msgTime: +msg.msgTime,
|
msgTime: +msg.msgTime,
|
||||||
@@ -227,7 +219,7 @@ export namespace OB11Entities {
|
|||||||
file_size: fileSize,
|
file_size: fileSize,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
MessageUnique.addFileCache({
|
ctx.store.addFileCache({
|
||||||
peerUid: msg.peerUid,
|
peerUid: msg.peerUid,
|
||||||
msgId: msg.msgId,
|
msgId: msg.msgId,
|
||||||
msgTime: +msg.msgTime,
|
msgTime: +msg.msgTime,
|
||||||
@@ -252,7 +244,7 @@ export namespace OB11Entities {
|
|||||||
file_size: fileSize,
|
file_size: fileSize,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
MessageUnique.addFileCache({
|
ctx.store.addFileCache({
|
||||||
peerUid: msg.peerUid,
|
peerUid: msg.peerUid,
|
||||||
msgId: msg.msgId,
|
msgId: msg.msgId,
|
||||||
msgTime: +msg.msgTime,
|
msgTime: +msg.msgTime,
|
||||||
@@ -276,7 +268,7 @@ export namespace OB11Entities {
|
|||||||
file_size: fileSize,
|
file_size: fileSize,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
MessageUnique.addFileCache({
|
ctx.store.addFileCache({
|
||||||
peerUid: msg.peerUid,
|
peerUid: msg.peerUid,
|
||||||
msgId: msg.msgId,
|
msgId: msg.msgId,
|
||||||
msgTime: +msg.msgTime,
|
msgTime: +msg.msgTime,
|
||||||
@@ -299,28 +291,31 @@ export namespace OB11Entities {
|
|||||||
}
|
}
|
||||||
else if (element.faceElement) {
|
else if (element.faceElement) {
|
||||||
const { faceElement } = element
|
const { faceElement } = element
|
||||||
const faceId = faceElement.faceIndex
|
const { faceIndex, pokeType } = faceElement
|
||||||
if (faceId === FaceIndex.dice) {
|
if (faceIndex === FaceIndex.Dice) {
|
||||||
messageSegment = {
|
messageSegment = {
|
||||||
type: OB11MessageDataType.dice,
|
type: OB11MessageDataType.dice,
|
||||||
data: {
|
data: {
|
||||||
result: faceElement.resultId!
|
result: faceElement.resultId!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
} else if (faceIndex === FaceIndex.RPS) {
|
||||||
else if (faceId === FaceIndex.RPS) {
|
|
||||||
messageSegment = {
|
messageSegment = {
|
||||||
type: OB11MessageDataType.RPS,
|
type: OB11MessageDataType.RPS,
|
||||||
data: {
|
data: {
|
||||||
result: faceElement.resultId!
|
result: faceElement.resultId!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
/*} else if (faceIndex === 1 && pokeType === 1) {
|
||||||
else {
|
messageSegment = {
|
||||||
|
type: OB11MessageDataType.shake,
|
||||||
|
data: {}
|
||||||
|
}*/
|
||||||
|
} else {
|
||||||
messageSegment = {
|
messageSegment = {
|
||||||
type: OB11MessageDataType.face,
|
type: OB11MessageDataType.face,
|
||||||
data: {
|
data: {
|
||||||
id: faceId.toString()
|
id: faceIndex.toString()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -343,7 +338,6 @@ export namespace OB11Entities {
|
|||||||
key: marketFaceElement.key
|
key: marketFaceElement.key
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//mFaceCache.set(emojiId, element.marketFaceElement.faceName!)
|
|
||||||
}
|
}
|
||||||
else if (element.markdownElement) {
|
else if (element.markdownElement) {
|
||||||
const { markdownElement } = element
|
const { markdownElement } = element
|
||||||
@@ -364,20 +358,20 @@ export namespace OB11Entities {
|
|||||||
}
|
}
|
||||||
if (messageSegment) {
|
if (messageSegment) {
|
||||||
const cqCode = encodeCQCode(messageSegment)
|
const cqCode = encodeCQCode(messageSegment)
|
||||||
if (messagePostFormat === 'string') {
|
if (messagePostFormat === 'array') {
|
||||||
(resMsg.message as string) += cqCode
|
|
||||||
} else {
|
|
||||||
(resMsg.message as OB11MessageData[]).push(messageSegment)
|
(resMsg.message as OB11MessageData[]).push(messageSegment)
|
||||||
}
|
}
|
||||||
resMsg.raw_message += cqCode
|
resMsg.raw_message += cqCode
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
resMsg.raw_message = resMsg.raw_message.trim()
|
if (messagePostFormat === 'string') {
|
||||||
|
resMsg.message = resMsg.raw_message
|
||||||
|
}
|
||||||
return resMsg
|
return resMsg
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function privateEvent(ctx: Context, msg: RawMessage): Promise<OB11BaseNoticeEvent | void> {
|
export async function privateEvent(ctx: Context, msg: RawMessage): Promise<OB11BaseNoticeEvent | void> {
|
||||||
if (msg.chatType !== ChatType.friend) {
|
if (msg.chatType !== ChatType.C2C) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
for (const element of msg.elements) {
|
for (const element of msg.elements) {
|
||||||
@@ -396,7 +390,8 @@ export namespace OB11Entities {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (grayTipElement.xmlElement?.templId === '10229') {
|
if (grayTipElement.xmlElement?.templId === '10229' || grayTipElement.jsonGrayTipElement?.busiId === '19324') {
|
||||||
|
ctx.logger.info('收到好友添加消息', msg.peerUid)
|
||||||
const uin = +msg.peerUin || +(await ctx.ntUserApi.getUinByUid(msg.peerUid))
|
const uin = +msg.peerUin || +(await ctx.ntUserApi.getUinByUid(msg.peerUid))
|
||||||
return new OB11FriendAddNoticeEvent(uin)
|
return new OB11FriendAddNoticeEvent(uin)
|
||||||
}
|
}
|
||||||
@@ -405,7 +400,7 @@ export namespace OB11Entities {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export async function groupEvent(ctx: Context, msg: RawMessage): Promise<OB11GroupNoticeEvent | void> {
|
export async function groupEvent(ctx: Context, msg: RawMessage): Promise<OB11GroupNoticeEvent | void> {
|
||||||
if (msg.chatType !== ChatType.group) {
|
if (msg.chatType !== ChatType.Group) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if (msg.senderUin) {
|
if (msg.senderUin) {
|
||||||
@@ -425,7 +420,7 @@ export namespace OB11Entities {
|
|||||||
const grayTipElement = element.grayTipElement
|
const grayTipElement = element.grayTipElement
|
||||||
const groupElement = grayTipElement?.groupElement
|
const groupElement = grayTipElement?.groupElement
|
||||||
if (groupElement) {
|
if (groupElement) {
|
||||||
if (groupElement.type === TipGroupElementType.memberIncrease) {
|
if (groupElement.type === TipGroupElementType.MemberIncrease) {
|
||||||
ctx.logger.info('收到群成员增加消息', groupElement)
|
ctx.logger.info('收到群成员增加消息', groupElement)
|
||||||
await ctx.sleep(1000)
|
await ctx.sleep(1000)
|
||||||
const member = await ctx.ntGroupApi.getGroupMember(msg.peerUid, groupElement.memberUid)
|
const member = await ctx.ntGroupApi.getGroupMember(msg.peerUid, groupElement.memberUid)
|
||||||
@@ -439,8 +434,8 @@ export namespace OB11Entities {
|
|||||||
return new OB11GroupIncreaseEvent(parseInt(msg.peerUid), parseInt(memberUin), parseInt(operatorUin))
|
return new OB11GroupIncreaseEvent(parseInt(msg.peerUid), parseInt(memberUin), parseInt(operatorUin))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (groupElement.type === TipGroupElementType.ban) {
|
else if (groupElement.type === TipGroupElementType.Ban) {
|
||||||
ctx.logger.info('收到群群员禁言提示', groupElement)
|
ctx.logger.info('收到群成员禁言提示', groupElement)
|
||||||
const memberUid = groupElement.shutUp?.member.uid
|
const memberUid = groupElement.shutUp?.member.uid
|
||||||
const adminUid = groupElement.shutUp?.admin.uid
|
const adminUid = groupElement.shutUp?.admin.uid
|
||||||
let memberUin: string = ''
|
let memberUin: string = ''
|
||||||
@@ -469,7 +464,7 @@ export namespace OB11Entities {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (groupElement.type === TipGroupElementType.kicked) {
|
else if (groupElement.type === TipGroupElementType.Kicked) {
|
||||||
ctx.logger.info(`收到我被踢出或退群提示, 群${msg.peerUid}`, groupElement)
|
ctx.logger.info(`收到我被踢出或退群提示, 群${msg.peerUid}`, groupElement)
|
||||||
ctx.ntGroupApi.quitGroup(msg.peerUid)
|
ctx.ntGroupApi.quitGroup(msg.peerUid)
|
||||||
try {
|
try {
|
||||||
@@ -505,14 +500,6 @@ export namespace OB11Entities {
|
|||||||
const xmlElement = grayTipElement.xmlElement
|
const xmlElement = grayTipElement.xmlElement
|
||||||
|
|
||||||
if (xmlElement?.templId === '10382') {
|
if (xmlElement?.templId === '10382') {
|
||||||
// 表情回应消息
|
|
||||||
// "content":
|
|
||||||
// "<gtip align=\"center\">
|
|
||||||
// <qq uin=\"u_snYxnEfja-Po_\" col=\"3\" jp=\"3794\"/>
|
|
||||||
// <nor txt=\"回应了你的\"/>
|
|
||||||
// <url jp= \"\" msgseq=\"74711\" col=\"3\" txt=\"消息:\"/>
|
|
||||||
// <face type=\"1\" id=\"76\"> </face>
|
|
||||||
// </gtip>",
|
|
||||||
const emojiLikeData = new XMLParser({
|
const emojiLikeData = new XMLParser({
|
||||||
ignoreAttributes: false,
|
ignoreAttributes: false,
|
||||||
attributeNamePrefix: '',
|
attributeNamePrefix: '',
|
||||||
@@ -523,7 +510,7 @@ export namespace OB11Entities {
|
|||||||
const msgSeq: string = emojiLikeData.gtip.url.msgseq
|
const msgSeq: string = emojiLikeData.gtip.url.msgseq
|
||||||
const emojiId: string = emojiLikeData.gtip.face.id
|
const emojiId: string = emojiLikeData.gtip.face.id
|
||||||
const peer = {
|
const peer = {
|
||||||
chatType: ChatType.group,
|
chatType: ChatType.Group,
|
||||||
guildId: '',
|
guildId: '',
|
||||||
peerUid: msg.peerUid,
|
peerUid: msg.peerUid,
|
||||||
}
|
}
|
||||||
@@ -531,11 +518,11 @@ export namespace OB11Entities {
|
|||||||
if (!replyMsgList?.length) {
|
if (!replyMsgList?.length) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
const shortId = MessageUnique.getShortIdByMsgId(replyMsgList[0].msgId)
|
const shortId = ctx.store.createMsgShortId(peer, replyMsgList[0].msgId)
|
||||||
return new OB11GroupMsgEmojiLikeEvent(
|
return new OB11GroupMsgEmojiLikeEvent(
|
||||||
parseInt(msg.peerUid),
|
parseInt(msg.peerUid),
|
||||||
parseInt(senderUin),
|
parseInt(senderUin),
|
||||||
shortId!,
|
shortId,
|
||||||
[{
|
[{
|
||||||
emoji_id: emojiId,
|
emoji_id: emojiId,
|
||||||
count: 1,
|
count: 1,
|
||||||
@@ -547,7 +534,7 @@ export namespace OB11Entities {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (
|
if (
|
||||||
grayTipElement.subElementType == GrayTipElementSubType.XMLMSG &&
|
grayTipElement.subElementType == GrayTipElementSubType.XmlMsg &&
|
||||||
xmlElement?.templId == '10179'
|
xmlElement?.templId == '10179'
|
||||||
) {
|
) {
|
||||||
ctx.logger.info('收到新人被邀请进群消息', grayTipElement)
|
ctx.logger.info('收到新人被邀请进群消息', grayTipElement)
|
||||||
@@ -581,35 +568,29 @@ export namespace OB11Entities {
|
|||||||
pokedetail
|
pokedetail
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
} else if (grayTipElement.jsonGrayTipElement?.busiId === '2401' && json.items[2]) {
|
||||||
if (grayTipElement.jsonGrayTipElement?.busiId === '2401') {
|
|
||||||
ctx.logger.info('收到群精华消息', json)
|
ctx.logger.info('收到群精华消息', json)
|
||||||
const searchParams = new URL(json.items[0].jp).searchParams
|
const searchParams = new URL(json.items[2].jp).searchParams
|
||||||
const msgSeq = searchParams.get('msgSeq')!
|
const msgSeq = searchParams.get('seq')
|
||||||
const Group = searchParams.get('groupCode')
|
const groupCode = searchParams.get('gc')
|
||||||
const Peer: Peer = {
|
const msgRandom = searchParams.get('random')
|
||||||
|
if (!groupCode || !msgSeq || !msgRandom) return
|
||||||
|
const peer = {
|
||||||
guildId: '',
|
guildId: '',
|
||||||
chatType: ChatType.group,
|
chatType: ChatType.Group,
|
||||||
peerUid: Group!
|
peerUid: groupCode
|
||||||
}
|
}
|
||||||
const msgList = (await ctx.ntMsgApi.getMsgsBySeqAndCount(Peer, msgSeq.toString(), 1, true, true))?.msgList
|
const essence = await ctx.ntGroupApi.queryCachedEssenceMsg(groupCode, msgSeq, msgRandom)
|
||||||
if (!msgList?.length) {
|
const { msgList } = await ctx.ntMsgApi.queryMsgsWithFilterExBySeq(peer, msgSeq, '0')
|
||||||
return
|
const sourceMsg = msgList.find(e => e.msgRandom === msgRandom)
|
||||||
}
|
if (!sourceMsg) return
|
||||||
//const origMsg = await dbUtil.getMsgByLongId(msgList[0].msgId)
|
|
||||||
//const postMsg = await dbUtil.getMsgBySeqId(origMsg?.msgSeq!) ?? origMsg
|
|
||||||
// 如果 senderUin 为 0,可能是 历史消息 或 自身消息
|
|
||||||
//if (msgList[0].senderUin === '0') {
|
|
||||||
//msgList[0].senderUin = postMsg?.senderUin ?? getSelfUin()
|
|
||||||
//}
|
|
||||||
return new OB11GroupEssenceEvent(
|
return new OB11GroupEssenceEvent(
|
||||||
parseInt(msg.peerUid),
|
parseInt(msg.peerUid),
|
||||||
MessageUnique.getShortIdByMsgId(msgList[0].msgId)!,
|
ctx.store.getShortIdByMsgInfo(peer, sourceMsg.msgId)!,
|
||||||
parseInt(msgList[0].senderUin!)
|
parseInt(essence.items[0]?.msgSenderUin ?? sourceMsg.senderUin),
|
||||||
|
parseInt(essence.items[0]?.opUin ?? '0'),
|
||||||
)
|
)
|
||||||
// 获取MsgSeq+Peer可获取具体消息
|
} else if (grayTipElement.jsonGrayTipElement?.busiId === '2407') {
|
||||||
}
|
|
||||||
if (grayTipElement.jsonGrayTipElement?.busiId === '2407') {
|
|
||||||
const memberUin = json.items[1].param[0]
|
const memberUin = json.items[1].param[0]
|
||||||
const title = json.items[3].txt
|
const title = json.items[3].txt
|
||||||
ctx.logger.info('收到群成员新头衔消息', json)
|
ctx.logger.info('收到群成员新头衔消息', json)
|
||||||
@@ -619,6 +600,11 @@ export namespace OB11Entities {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
return new OB11GroupTitleEvent(parseInt(msg.peerUid), parseInt(memberUin), title)
|
return new OB11GroupTitleEvent(parseInt(msg.peerUid), parseInt(memberUin), title)
|
||||||
|
} else if (grayTipElement.jsonGrayTipElement?.busiId === '19217') {
|
||||||
|
ctx.logger.info('收到新人被邀请进群消息', grayTipElement)
|
||||||
|
const userId = new URL(json.items[2].jp).searchParams.get('robot_uin')
|
||||||
|
const operatorId = new URL(json.items[0].jp).searchParams.get('uin')
|
||||||
|
return new OB11GroupIncreaseEvent(Number(msg.peerUid), Number(userId), Number(operatorId), 'invite')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -631,13 +617,13 @@ export namespace OB11Entities {
|
|||||||
shortId: number
|
shortId: number
|
||||||
): Promise<OB11FriendRecallNoticeEvent | OB11GroupRecallNoticeEvent | undefined> {
|
): Promise<OB11FriendRecallNoticeEvent | OB11GroupRecallNoticeEvent | undefined> {
|
||||||
const msgElement = msg.elements.find(
|
const msgElement = msg.elements.find(
|
||||||
(element) => element.grayTipElement?.subElementType === GrayTipElementSubType.REVOKE,
|
(element) => element.grayTipElement?.subElementType === GrayTipElementSubType.Revoke,
|
||||||
)
|
)
|
||||||
if (!msgElement) {
|
if (!msgElement) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
const revokeElement = msgElement.grayTipElement!.revokeElement
|
const revokeElement = msgElement.grayTipElement!.revokeElement
|
||||||
if (msg.chatType === ChatType.group) {
|
if (msg.chatType === ChatType.Group) {
|
||||||
const operator = await ctx.ntGroupApi.getGroupMember(msg.peerUid, revokeElement!.operatorUid)
|
const operator = await ctx.ntGroupApi.getGroupMember(msg.peerUid, revokeElement!.operatorUid)
|
||||||
return new OB11GroupRecallNoticeEvent(
|
return new OB11GroupRecallNoticeEvent(
|
||||||
parseInt(msg.peerUid),
|
parseInt(msg.peerUid),
|
||||||
@@ -665,23 +651,20 @@ export namespace OB11Entities {
|
|||||||
return friends.map(friend)
|
return friends.map(friend)
|
||||||
}
|
}
|
||||||
|
|
||||||
export function friendsV2(friends: FriendV2[]): OB11User[] {
|
export function friendV2(raw: SimpleInfo): OB11User {
|
||||||
const data: OB11User[] = []
|
return {
|
||||||
for (const friend of friends) {
|
...omit(raw.baseInfo, ['richBuffer', 'phoneNum']),
|
||||||
const sexValue = sex(friend.baseInfo.sex!)
|
...omit(raw.coreInfo, ['nick']),
|
||||||
data.push({
|
user_id: parseInt(raw.coreInfo.uin),
|
||||||
...omit(friend.baseInfo, ['richBuffer']),
|
nickname: raw.coreInfo.nick,
|
||||||
...friend.coreInfo,
|
remark: raw.coreInfo.remark || raw.coreInfo.nick,
|
||||||
user_id: parseInt(friend.coreInfo.uin),
|
sex: sex(raw.baseInfo.sex),
|
||||||
nickname: friend.coreInfo.nick,
|
level: 0
|
||||||
remark: friend.coreInfo.nick,
|
|
||||||
sex: sexValue,
|
|
||||||
level: 0,
|
|
||||||
categroyName: friend.categroyName,
|
|
||||||
categoryId: friend.categoryId
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
return data
|
}
|
||||||
|
|
||||||
|
export function friendsV2(raw: SimpleInfo[]): OB11User[] {
|
||||||
|
return raw.map(friendV2)
|
||||||
}
|
}
|
||||||
|
|
||||||
export function groupMemberRole(role: number): OB11GroupMemberRole | undefined {
|
export function groupMemberRole(role: number): OB11GroupMemberRole | undefined {
|
||||||
|
@@ -1,16 +1,20 @@
|
|||||||
import { OB11GroupNoticeEvent } from './OB11GroupNoticeEvent';
|
import { OB11GroupNoticeEvent } from './OB11GroupNoticeEvent'
|
||||||
|
|
||||||
export class OB11GroupEssenceEvent extends OB11GroupNoticeEvent {
|
export class OB11GroupEssenceEvent extends OB11GroupNoticeEvent {
|
||||||
notice_type = 'essence'
|
notice_type = 'essence'
|
||||||
message_id: number
|
message_id: number
|
||||||
sender_id: number
|
sender_id: number
|
||||||
sub_type: 'add' | 'delete' = 'add'
|
sub_type: 'add' | 'delete' = 'add'
|
||||||
group_id: number
|
group_id: number
|
||||||
user_id: number = 0
|
user_id: number
|
||||||
|
operator_id: number
|
||||||
|
|
||||||
constructor(groupId: number, message_id: number, sender_id: number) {
|
constructor(groupId: number, messageId: number, senderId: number, operatorId: number) {
|
||||||
super()
|
super()
|
||||||
this.group_id = groupId
|
this.group_id = groupId
|
||||||
this.message_id = message_id
|
this.user_id = senderId
|
||||||
this.sender_id = sender_id
|
this.message_id = messageId
|
||||||
|
this.sender_id = senderId
|
||||||
|
this.operator_id = operatorId
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -8,17 +8,15 @@ export interface MsgEmojiLike {
|
|||||||
export class OB11GroupMsgEmojiLikeEvent extends OB11GroupNoticeEvent {
|
export class OB11GroupMsgEmojiLikeEvent extends OB11GroupNoticeEvent {
|
||||||
notice_type = 'group_msg_emoji_like'
|
notice_type = 'group_msg_emoji_like'
|
||||||
message_id: number
|
message_id: number
|
||||||
sub_type?: 'ban' | 'lift_ban'
|
|
||||||
likes: MsgEmojiLike[]
|
likes: MsgEmojiLike[]
|
||||||
group_id: number
|
group_id: number
|
||||||
user_id: number
|
user_id: number
|
||||||
|
|
||||||
constructor(groupId: number, userId: number, messageId: number, likes: MsgEmojiLike[], sub_type?: 'ban' | 'lift_ban') {
|
constructor(groupId: number, userId: number, messageId: number, likes: MsgEmojiLike[]) {
|
||||||
super()
|
super()
|
||||||
this.group_id = groupId
|
this.group_id = groupId
|
||||||
this.user_id = userId // 可为空,表示是对别人的消息操作,如果是对bot自己的消息则不为空
|
this.user_id = userId // 可为空,表示是对别人的消息操作,如果是对bot自己的消息则不为空
|
||||||
this.message_id = messageId
|
this.message_id = messageId
|
||||||
this.likes = likes
|
this.likes = likes
|
||||||
this.sub_type = sub_type
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -15,8 +15,7 @@ import {
|
|||||||
} from '../types'
|
} from '../types'
|
||||||
import { decodeCQCode } from '../cqcode'
|
import { decodeCQCode } from '../cqcode'
|
||||||
import { Peer } from '@/ntqqapi/types/msg'
|
import { Peer } from '@/ntqqapi/types/msg'
|
||||||
import { SendElementEntities } from '@/ntqqapi/entities'
|
import { SendElement } from '@/ntqqapi/entities'
|
||||||
import { MessageUnique } from '@/common/utils/messageUnique'
|
|
||||||
import { selfInfo } from '@/common/globalVars'
|
import { selfInfo } from '@/common/globalVars'
|
||||||
import { uri2local } from '@/common/utils'
|
import { uri2local } from '@/common/utils'
|
||||||
import { Context } from 'cordis'
|
import { Context } from 'cordis'
|
||||||
@@ -37,7 +36,7 @@ export async function createSendElements(
|
|||||||
case OB11MessageDataType.text: {
|
case OB11MessageDataType.text: {
|
||||||
const text = sendMsg.data?.text
|
const text = sendMsg.data?.text
|
||||||
if (text) {
|
if (text) {
|
||||||
sendElements.push(SendElementEntities.text(sendMsg.data!.text))
|
sendElements.push(SendElement.text(sendMsg.data!.text))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
@@ -63,22 +62,22 @@ export async function createSendElements(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (isAdmin && remainAtAllCount > 0) {
|
if (isAdmin && remainAtAllCount > 0) {
|
||||||
sendElements.push(SendElementEntities.at(atQQ, atQQ, AtType.atAll, '@全体成员'))
|
sendElements.push(SendElement.at(atQQ, atQQ, AtType.All, '@全体成员'))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (peer.chatType === ChatType.group) {
|
else if (peer.chatType === ChatType.Group) {
|
||||||
const atMember = await ctx.ntGroupApi.getGroupMember(peer.peerUid, atQQ)
|
const atMember = await ctx.ntGroupApi.getGroupMember(peer.peerUid, atQQ)
|
||||||
if (atMember) {
|
if (atMember) {
|
||||||
const display = `@${atMember.cardName || atMember.nick}`
|
const display = `@${atMember.cardName || atMember.nick}`
|
||||||
sendElements.push(
|
sendElements.push(
|
||||||
SendElementEntities.at(atQQ, atMember.uid, AtType.atUser, display),
|
SendElement.at(atQQ, atMember.uid, AtType.One, display),
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
const atNmae = sendMsg.data?.name
|
const atNmae = sendMsg.data?.name
|
||||||
const uid = await ctx.ntUserApi.getUidByUin(atQQ) || ''
|
const uid = await ctx.ntUserApi.getUidByUin(atQQ) || ''
|
||||||
const display = atNmae ? `@${atNmae}` : ''
|
const display = atNmae ? `@${atNmae}` : ''
|
||||||
sendElements.push(
|
sendElements.push(
|
||||||
SendElementEntities.at(atQQ, uid, AtType.atUser, display),
|
SendElement.at(atQQ, uid, AtType.One, display),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -87,18 +86,18 @@ export async function createSendElements(
|
|||||||
break
|
break
|
||||||
case OB11MessageDataType.reply: {
|
case OB11MessageDataType.reply: {
|
||||||
if (sendMsg.data?.id) {
|
if (sendMsg.data?.id) {
|
||||||
const replyMsgId = await MessageUnique.getMsgIdAndPeerByShortId(+sendMsg.data.id)
|
const replyMsgId = await ctx.store.getMsgInfoByShortId(+sendMsg.data.id)
|
||||||
if (!replyMsgId) {
|
if (!replyMsgId) {
|
||||||
ctx.logger.warn('回复消息不存在', replyMsgId)
|
ctx.logger.warn('回复消息不存在', replyMsgId)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
const replyMsg = (await ctx.ntMsgApi.getMsgsByMsgId(
|
const replyMsg = (await ctx.ntMsgApi.getMsgsByMsgId(
|
||||||
replyMsgId.Peer,
|
replyMsgId.peer,
|
||||||
[replyMsgId.MsgId!]
|
[replyMsgId.msgId!]
|
||||||
)).msgList[0]
|
)).msgList[0]
|
||||||
if (replyMsg) {
|
if (replyMsg) {
|
||||||
sendElements.push(
|
sendElements.push(
|
||||||
SendElementEntities.reply(
|
SendElement.reply(
|
||||||
replyMsg.msgSeq,
|
replyMsg.msgSeq,
|
||||||
replyMsg.msgId,
|
replyMsg.msgId,
|
||||||
replyMsg.senderUin!,
|
replyMsg.senderUin!,
|
||||||
@@ -112,13 +111,13 @@ export async function createSendElements(
|
|||||||
case OB11MessageDataType.face: {
|
case OB11MessageDataType.face: {
|
||||||
const faceId = sendMsg.data?.id
|
const faceId = sendMsg.data?.id
|
||||||
if (faceId) {
|
if (faceId) {
|
||||||
sendElements.push(SendElementEntities.face(parseInt(faceId)))
|
sendElements.push(SendElement.face(parseInt(faceId)))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
case OB11MessageDataType.mface: {
|
case OB11MessageDataType.mface: {
|
||||||
sendElements.push(
|
sendElements.push(
|
||||||
SendElementEntities.mface(
|
SendElement.mface(
|
||||||
+sendMsg.data.emoji_package_id,
|
+sendMsg.data.emoji_package_id,
|
||||||
sendMsg.data.emoji_id,
|
sendMsg.data.emoji_id,
|
||||||
sendMsg.data.key,
|
sendMsg.data.key,
|
||||||
@@ -128,19 +127,20 @@ export async function createSendElements(
|
|||||||
}
|
}
|
||||||
break
|
break
|
||||||
case OB11MessageDataType.image: {
|
case OB11MessageDataType.image: {
|
||||||
const res = await SendElementEntities.pic(
|
const res = await SendElement.pic(
|
||||||
ctx,
|
ctx,
|
||||||
(await handleOb11FileLikeMessage(ctx, sendMsg, { deleteAfterSentFiles })).path,
|
(await handleOb11FileLikeMessage(ctx, sendMsg, { deleteAfterSentFiles })).path,
|
||||||
sendMsg.data.summary || '',
|
sendMsg.data.summary || '',
|
||||||
sendMsg.data.subType || 0
|
sendMsg.data.subType || 0,
|
||||||
|
sendMsg.data.type === 'flash'
|
||||||
)
|
)
|
||||||
deleteAfterSentFiles.push(res.picElement.sourcePath)
|
deleteAfterSentFiles.push(res.picElement.sourcePath!)
|
||||||
sendElements.push(res)
|
sendElements.push(res)
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
case OB11MessageDataType.file: {
|
case OB11MessageDataType.file: {
|
||||||
const { path, fileName } = await handleOb11FileLikeMessage(ctx, sendMsg, { deleteAfterSentFiles })
|
const { path, fileName } = await handleOb11FileLikeMessage(ctx, sendMsg, { deleteAfterSentFiles })
|
||||||
sendElements.push(await SendElementEntities.file(ctx, path, fileName))
|
sendElements.push(await SendElement.file(ctx, path, fileName))
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
case OB11MessageDataType.video: {
|
case OB11MessageDataType.video: {
|
||||||
@@ -150,34 +150,38 @@ export async function createSendElements(
|
|||||||
const uri2LocalRes = await uri2local(thumb)
|
const uri2LocalRes = await uri2local(thumb)
|
||||||
if (uri2LocalRes.success) thumb = uri2LocalRes.path
|
if (uri2LocalRes.success) thumb = uri2LocalRes.path
|
||||||
}
|
}
|
||||||
const res = await SendElementEntities.video(ctx, path, fileName, thumb)
|
const res = await SendElement.video(ctx, path, fileName, thumb)
|
||||||
deleteAfterSentFiles.push(res.videoElement.filePath)
|
deleteAfterSentFiles.push(res.videoElement.filePath)
|
||||||
sendElements.push(res)
|
sendElements.push(res)
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
case OB11MessageDataType.voice: {
|
case OB11MessageDataType.voice: {
|
||||||
const { path } = await handleOb11FileLikeMessage(ctx, sendMsg, { deleteAfterSentFiles })
|
const { path } = await handleOb11FileLikeMessage(ctx, sendMsg, { deleteAfterSentFiles })
|
||||||
sendElements.push(await SendElementEntities.ptt(ctx, path))
|
sendElements.push(await SendElement.ptt(ctx, path))
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
case OB11MessageDataType.json: {
|
case OB11MessageDataType.json: {
|
||||||
sendElements.push(SendElementEntities.ark(sendMsg.data.data))
|
sendElements.push(SendElement.ark(sendMsg.data.data))
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
case OB11MessageDataType.dice: {
|
case OB11MessageDataType.dice: {
|
||||||
const resultId = sendMsg.data?.result
|
const resultId = sendMsg.data?.result
|
||||||
sendElements.push(SendElementEntities.dice(resultId))
|
sendElements.push(SendElement.dice(resultId))
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
case OB11MessageDataType.RPS: {
|
case OB11MessageDataType.RPS: {
|
||||||
const resultId = sendMsg.data?.result
|
const resultId = sendMsg.data?.result
|
||||||
sendElements.push(SendElementEntities.rps(resultId))
|
sendElements.push(SendElement.rps(resultId))
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
case OB11MessageDataType.contact: {
|
case OB11MessageDataType.contact: {
|
||||||
const { type, id } = sendMsg.data
|
const { type, id } = sendMsg.data
|
||||||
const data = type === 'qq' ? ctx.ntFriendApi.getBuddyRecommendContact(id) : ctx.ntGroupApi.getGroupRecommendContact(id)
|
const data = type === 'qq' ? ctx.ntFriendApi.getBuddyRecommendContact(id) : ctx.ntGroupApi.getGroupRecommendContact(id)
|
||||||
sendElements.push(SendElementEntities.ark(await data))
|
sendElements.push(SendElement.ark(await data))
|
||||||
|
}
|
||||||
|
break
|
||||||
|
case OB11MessageDataType.shake: {
|
||||||
|
sendElements.push(SendElement.shake())
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
@@ -244,24 +248,32 @@ export async function sendMsg(
|
|||||||
sendElements: SendMessageElement[],
|
sendElements: SendMessageElement[],
|
||||||
deleteAfterSentFiles: string[]
|
deleteAfterSentFiles: string[]
|
||||||
) {
|
) {
|
||||||
|
if (peer.chatType === ChatType.Group) {
|
||||||
|
const info = await ctx.ntGroupApi.getGroupAllInfo(peer.peerUid)
|
||||||
|
.catch(() => undefined)
|
||||||
|
const shutUpMeTimestamp = info?.groupAll.shutUpMeTimestamp
|
||||||
|
if (shutUpMeTimestamp && shutUpMeTimestamp * 1000 > Date.now()) {
|
||||||
|
throw new Error('当前处于被禁言状态')
|
||||||
|
}
|
||||||
|
}
|
||||||
if (!sendElements.length) {
|
if (!sendElements.length) {
|
||||||
throw '消息体无法解析,请检查是否发送了不支持的消息类型'
|
throw new Error('消息体无法解析,请检查是否发送了不支持的消息类型')
|
||||||
}
|
}
|
||||||
// 计算发送的文件大小
|
// 计算发送的文件大小
|
||||||
let totalSize = 0
|
let totalSize = 0
|
||||||
for (const fileElement of sendElements) {
|
for (const fileElement of sendElements) {
|
||||||
try {
|
try {
|
||||||
if (fileElement.elementType === ElementType.PTT) {
|
if (fileElement.elementType === ElementType.Ptt) {
|
||||||
totalSize += fs.statSync(fileElement.pttElement.filePath).size
|
totalSize += fs.statSync(fileElement.pttElement.filePath!).size
|
||||||
}
|
}
|
||||||
if (fileElement.elementType === ElementType.FILE) {
|
if (fileElement.elementType === ElementType.File) {
|
||||||
totalSize += fs.statSync(fileElement.fileElement.filePath).size
|
totalSize += fs.statSync(fileElement.fileElement.filePath).size
|
||||||
}
|
}
|
||||||
if (fileElement.elementType === ElementType.VIDEO) {
|
if (fileElement.elementType === ElementType.Video) {
|
||||||
totalSize += fs.statSync(fileElement.videoElement.filePath).size
|
totalSize += fs.statSync(fileElement.videoElement.filePath).size
|
||||||
}
|
}
|
||||||
if (fileElement.elementType === ElementType.PIC) {
|
if (fileElement.elementType === ElementType.Pic) {
|
||||||
totalSize += fs.statSync(fileElement.picElement.sourcePath).size
|
totalSize += fs.statSync(fileElement.picElement.sourcePath!).size
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
ctx.logger.warn('文件大小计算失败', e, fileElement)
|
ctx.logger.warn('文件大小计算失败', e, fileElement)
|
||||||
@@ -272,8 +284,7 @@ export async function sendMsg(
|
|||||||
//log('设置消息超时时间', timeout)
|
//log('设置消息超时时间', timeout)
|
||||||
const returnMsg = await ctx.ntMsgApi.sendMsg(peer, sendElements, timeout)
|
const returnMsg = await ctx.ntMsgApi.sendMsg(peer, sendElements, timeout)
|
||||||
if (returnMsg) {
|
if (returnMsg) {
|
||||||
returnMsg.msgShortId = MessageUnique.createMsg(peer, returnMsg.msgId)
|
ctx.logger.info('消息发送', peer)
|
||||||
ctx.logger.info('消息发送', returnMsg.msgShortId)
|
|
||||||
deleteAfterSentFiles.map(path => fsPromise.unlink(path))
|
deleteAfterSentFiles.map(path => fsPromise.unlink(path))
|
||||||
return returnMsg
|
return returnMsg
|
||||||
}
|
}
|
||||||
@@ -290,10 +301,10 @@ export enum CreatePeerMode {
|
|||||||
Group = 2
|
Group = 2
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function createPeer(ctx: Context, payload: CreatePeerPayload, mode: CreatePeerMode): Promise<Peer> {
|
export async function createPeer(ctx: Context, payload: CreatePeerPayload, mode = CreatePeerMode.Normal): Promise<Peer> {
|
||||||
if ((mode === CreatePeerMode.Group || mode === CreatePeerMode.Normal) && payload.group_id) {
|
if ((mode === CreatePeerMode.Group || mode === CreatePeerMode.Normal) && payload.group_id) {
|
||||||
return {
|
return {
|
||||||
chatType: ChatType.group,
|
chatType: ChatType.Group,
|
||||||
peerUid: payload.group_id.toString(),
|
peerUid: payload.group_id.toString(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -302,7 +313,7 @@ export async function createPeer(ctx: Context, payload: CreatePeerPayload, mode:
|
|||||||
if (!uid) throw new Error('无法获取用户信息')
|
if (!uid) throw new Error('无法获取用户信息')
|
||||||
const isBuddy = await ctx.ntFriendApi.isBuddy(uid)
|
const isBuddy = await ctx.ntFriendApi.isBuddy(uid)
|
||||||
return {
|
return {
|
||||||
chatType: isBuddy ? ChatType.friend : ChatType.temp,
|
chatType: isBuddy ? ChatType.C2C : ChatType.TempC2CFromGroup,
|
||||||
peerUid: uid,
|
peerUid: uid,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -3,7 +3,6 @@ import { OB11FriendRequestEvent } from '../event/request/OB11FriendRequest'
|
|||||||
import { OB11GroupRequestEvent } from '../event/request/OB11GroupRequest'
|
import { OB11GroupRequestEvent } from '../event/request/OB11GroupRequest'
|
||||||
import { GroupRequestOperateTypes } from '@/ntqqapi/types'
|
import { GroupRequestOperateTypes } from '@/ntqqapi/types'
|
||||||
import { convertMessage2List, createSendElements, sendMsg, createPeer, CreatePeerMode } from '../helper/createMessage'
|
import { convertMessage2List, createSendElements, sendMsg, createPeer, CreatePeerMode } from '../helper/createMessage'
|
||||||
import { MessageUnique } from '@/common/utils/messageUnique'
|
|
||||||
import { isNullable } from 'cosmokit'
|
import { isNullable } from 'cosmokit'
|
||||||
import { Context } from 'cordis'
|
import { Context } from 'cordis'
|
||||||
|
|
||||||
@@ -88,18 +87,18 @@ async function handleMsg(ctx: Context, msg: OB11Message, quickAction: QuickOpera
|
|||||||
}
|
}
|
||||||
if (msg.message_type === 'group') {
|
if (msg.message_type === 'group') {
|
||||||
const groupMsgQuickAction = quickAction as QuickOperationGroupMessage
|
const groupMsgQuickAction = quickAction as QuickOperationGroupMessage
|
||||||
const rawMessage = await MessageUnique.getMsgIdAndPeerByShortId(+(msg.message_id ?? 0))
|
const rawMessage = await ctx.store.getMsgInfoByShortId(+(msg.message_id ?? 0))
|
||||||
if (!rawMessage) return
|
if (!rawMessage) return
|
||||||
// handle group msg
|
// handle group msg
|
||||||
if (groupMsgQuickAction.delete) {
|
if (groupMsgQuickAction.delete) {
|
||||||
ctx.ntMsgApi.recallMsg(peer, [rawMessage.MsgId]).catch(e => ctx.logger.error(e))
|
ctx.ntMsgApi.recallMsg(peer, [rawMessage.msgId]).catch(e => ctx.logger.error(e))
|
||||||
}
|
}
|
||||||
if (groupMsgQuickAction.kick) {
|
if (groupMsgQuickAction.kick) {
|
||||||
const { msgList } = await ctx.ntMsgApi.getMsgsByMsgId(peer, [rawMessage.MsgId])
|
const { msgList } = await ctx.ntMsgApi.getMsgsByMsgId(peer, [rawMessage.msgId])
|
||||||
ctx.ntGroupApi.kickMember(peer.peerUid, [msgList[0].senderUid]).catch(e => ctx.logger.error(e))
|
ctx.ntGroupApi.kickMember(peer.peerUid, [msgList[0].senderUid]).catch(e => ctx.logger.error(e))
|
||||||
}
|
}
|
||||||
if (groupMsgQuickAction.ban) {
|
if (groupMsgQuickAction.ban) {
|
||||||
const { msgList } = await ctx.ntMsgApi.getMsgsByMsgId(peer, [rawMessage.MsgId])
|
const { msgList } = await ctx.ntMsgApi.getMsgsByMsgId(peer, [rawMessage.msgId])
|
||||||
ctx.ntGroupApi.banMember(peer.peerUid, [
|
ctx.ntGroupApi.banMember(peer.peerUid, [
|
||||||
{
|
{
|
||||||
uid: msgList[0].senderUid,
|
uid: msgList[0].senderUid,
|
||||||
|
@@ -98,8 +98,15 @@ export interface OB11Message {
|
|||||||
temp_source?: 0 | 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9
|
temp_source?: 0 | 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface OB11ForwardMessage extends OB11Message {
|
export interface OB11ForwardMessage {
|
||||||
content: OB11MessageData[] | string
|
content: OB11MessageData[] | string
|
||||||
|
sender: {
|
||||||
|
nickname: string
|
||||||
|
user_id: number
|
||||||
|
}
|
||||||
|
time: number
|
||||||
|
message_format: string //扩展
|
||||||
|
message_type: string //扩展
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface OB11Return<DataType> {
|
export interface OB11Return<DataType> {
|
||||||
@@ -131,6 +138,7 @@ export enum OB11MessageDataType {
|
|||||||
dice = 'dice',
|
dice = 'dice',
|
||||||
RPS = 'rps',
|
RPS = 'rps',
|
||||||
contact = 'contact',
|
contact = 'contact',
|
||||||
|
shake = 'shake',
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface OB11MessageMFace {
|
export interface OB11MessageMFace {
|
||||||
@@ -187,6 +195,7 @@ export interface OB11MessageImage extends OB11MessageFileBase {
|
|||||||
data: OB11MessageFileBase['data'] & {
|
data: OB11MessageFileBase['data'] & {
|
||||||
summary?: string // 图片摘要
|
summary?: string // 图片摘要
|
||||||
subType?: PicSubType
|
subType?: PicSubType
|
||||||
|
type?: 'flash' | 'show'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -285,6 +294,11 @@ export interface OB11MessageContact {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface OB11MessageShake {
|
||||||
|
type: OB11MessageDataType.shake
|
||||||
|
data: Record<string, never>
|
||||||
|
}
|
||||||
|
|
||||||
export type OB11MessageData =
|
export type OB11MessageData =
|
||||||
| OB11MessageText
|
| OB11MessageText
|
||||||
| OB11MessageFace
|
| OB11MessageFace
|
||||||
@@ -305,6 +319,7 @@ export type OB11MessageData =
|
|||||||
| OB11MessageMarkdown
|
| OB11MessageMarkdown
|
||||||
| OB11MessageForward
|
| OB11MessageForward
|
||||||
| OB11MessageContact
|
| OB11MessageContact
|
||||||
|
| OB11MessageShake
|
||||||
|
|
||||||
export interface OB11PostSendMsg {
|
export interface OB11PostSendMsg {
|
||||||
message_type?: 'private' | 'group'
|
message_type?: 'private' | 'group'
|
||||||
|
@@ -1 +1 @@
|
|||||||
export const version = '3.33.0'
|
export const version = '3.34.0'
|
||||||
|
@@ -1,18 +0,0 @@
|
|||||||
import http from 'https'
|
|
||||||
|
|
||||||
function checkUrl(imageUrl) {
|
|
||||||
http
|
|
||||||
.get(imageUrl, (response) => {
|
|
||||||
console.log(response.statusCode)
|
|
||||||
})
|
|
||||||
.on('error', (e) => {
|
|
||||||
console.log(e)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
checkUrl(
|
|
||||||
'https://gchat.qpic.cn/download?appid=1407&fileid=CgoxMzMyNTI0MjIxEhRrdaUgQP5MjweWa4uR8pviUDaGQhjcxQUg_wooiYTj39fphQNQgL2jAQ&spec=0&rkey=CAQSKAB6JWENi5LMk0kc62l8Pm3Jn1dsLZHyRLAnNmHGoZ3y_gDZPqZt-64',
|
|
||||||
)
|
|
||||||
checkUrl(
|
|
||||||
'https://multimedia.nt.qq.com.cn/download?appid=1407&fileid=CgoxMzMyNTI0MjIxEhRrdaUgQP5MjweWa4uR8pviUDaGQhjcxQUg_wooiYTj39fphQNQgL2jAQ&spec=0&rkey=CAQSKAB6JWENi5LMk0kc62l8Pm3Jn1dsLZHyRLAnNmHGoZ3y_gDZPqZt-64',
|
|
||||||
)
|
|
@@ -4,7 +4,6 @@
|
|||||||
"module": "CommonJS",
|
"module": "CommonJS",
|
||||||
"outDir": "./dist",
|
"outDir": "./dist",
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"isolatedModules": true,
|
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"allowSyntheticDefaultImports": true,
|
"allowSyntheticDefaultImports": true,
|
||||||
"experimentalDecorators": true,
|
"experimentalDecorators": true,
|
||||||
|
Reference in New Issue
Block a user