mirror of
https://github.com/LLOneBot/LLOneBot.git
synced 2024-11-22 01:56:33 +00:00
Compare commits
34 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
b03bcf9a7c | ||
![]() |
d4f9629af2 | ||
![]() |
6d47e2ee80 | ||
![]() |
506bddb21a | ||
![]() |
91c689baf8 | ||
![]() |
b7938aaab8 | ||
![]() |
b1a892cf4e | ||
![]() |
9284fc7e8a | ||
![]() |
ceb063143a | ||
![]() |
ed55a5a54c | ||
![]() |
2c4fdbfa6a | ||
![]() |
1132495eb3 | ||
![]() |
2ac2c68435 | ||
![]() |
6477366ba6 | ||
![]() |
1d63473a04 | ||
![]() |
692ba5163e | ||
![]() |
8bcea090ec | ||
![]() |
67568a662d | ||
![]() |
66b3706524 | ||
![]() |
6d82dd1dad | ||
![]() |
20f2e66b11 | ||
![]() |
efefb963c0 | ||
![]() |
92d780cf70 | ||
![]() |
ce6886011f | ||
![]() |
319b275e4f | ||
![]() |
9738c3f63c | ||
![]() |
3de054600c | ||
![]() |
da0ebd3f80 | ||
![]() |
d5682a9788 | ||
![]() |
a1298b1c93 | ||
![]() |
6fac490d66 | ||
![]() |
dc25d83778 | ||
![]() |
1bcdbba29a | ||
![]() |
9ecfb6ea0c |
5
.github/ISSUE_TEMPLATE/bug_report.yaml
vendored
5
.github/ISSUE_TEMPLATE/bug_report.yaml
vendored
@@ -7,9 +7,6 @@ body:
|
|||||||
attributes:
|
attributes:
|
||||||
value: |
|
value: |
|
||||||
欢迎来到 LLOneBot 的 Issue Tracker!请填写以下表格来提交 Bug。
|
欢迎来到 LLOneBot 的 Issue Tracker!请填写以下表格来提交 Bug。
|
||||||
在提交新的 Bug 反馈前,请确保您:
|
|
||||||
* 已经搜索了现有的 issues,并且没有找到可以解决您问题的方法
|
|
||||||
* 不与现有的某一 issue 重复
|
|
||||||
- type: input
|
- type: input
|
||||||
id: system-version
|
id: system-version
|
||||||
attributes:
|
attributes:
|
||||||
@@ -40,8 +37,6 @@ body:
|
|||||||
label: OneBot 客户端
|
label: OneBot 客户端
|
||||||
description: 连接至 LLOneBot 的客户端版本信息
|
description: 连接至 LLOneBot 的客户端版本信息
|
||||||
placeholder: Overflow 2.16.0-2cf7991-SNAPSHOT
|
placeholder: Overflow 2.16.0-2cf7991-SNAPSHOT
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: what-happened
|
id: what-happened
|
||||||
attributes:
|
attributes:
|
||||||
|
3
.gitignore
vendored
3
.gitignore
vendored
@@ -11,5 +11,6 @@ node_modules
|
|||||||
dist
|
dist
|
||||||
out
|
out
|
||||||
|
|
||||||
.idea/
|
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
.idea
|
||||||
|
.vscode
|
||||||
|
@@ -4,7 +4,7 @@
|
|||||||
"name": "LLOneBot",
|
"name": "LLOneBot",
|
||||||
"slug": "LLOneBot",
|
"slug": "LLOneBot",
|
||||||
"description": "实现 OneBot 11 协议,用于 QQ 机器人开发",
|
"description": "实现 OneBot 11 协议,用于 QQ 机器人开发",
|
||||||
"version": "3.31.10",
|
"version": "3.32.5",
|
||||||
"icon": "./icon.webp",
|
"icon": "./icon.webp",
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
|
17
package.json
17
package.json
@@ -7,11 +7,12 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "electron-vite build",
|
"build": "electron-vite build",
|
||||||
"build-mac": "npm run build && npm run deploy-mac",
|
"build-mac": "npm run build && npm run deploy-mac",
|
||||||
"deploy-mac": "cp -r dist/* ~/Library/Containers/com.tencent.qq/Data/LiteLoaderQQNT/plugins/LLOneBot/",
|
"deploy-mac": "cp -r dist/* ~/Library/Containers/com.tencent.qq/Data/Documents/LiteLoaderQQNT/plugins/LLOneBot/",
|
||||||
"build-win": "npm run build && npm run deploy-win",
|
"build-win": "npm run build && npm run deploy-win",
|
||||||
"deploy-win": "cmd /c \"xcopy /C /S /Y dist\\* %USERPROFILE%\\documents\\LiteLoaderQQNT\\plugins\\LLOneBot\\\"",
|
"deploy-win": "cmd /c \"xcopy /C /S /Y dist\\* %LITELOADERQQNT_PROFILE%\\plugins\\LLOneBot\\\"",
|
||||||
"format": "prettier -cw .",
|
"format": "prettier -cw .",
|
||||||
"check": "tsc"
|
"check": "tsc",
|
||||||
|
"compile:proto": "pbjs --no-create --no-convert --no-encode --no-verify -t static-module -w es6 -p src/ntqqapi/proto -o src/ntqqapi/proto/compiled.js systemMessage.proto profileLikeTip.proto && pbts -o src/ntqqapi/proto/compiled.d.ts src/ntqqapi/proto/compiled.js"
|
||||||
},
|
},
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
@@ -21,11 +22,12 @@
|
|||||||
"cordis": "^3.18.0",
|
"cordis": "^3.18.0",
|
||||||
"cors": "^2.8.5",
|
"cors": "^2.8.5",
|
||||||
"cosmokit": "^1.6.2",
|
"cosmokit": "^1.6.2",
|
||||||
"express": "^4.19.2",
|
"express": "^5.0.0",
|
||||||
"fast-xml-parser": "^4.5.0",
|
"fast-xml-parser": "^4.5.0",
|
||||||
"file-type": "^19.4.1",
|
"file-type": "^19.5.0",
|
||||||
"fluent-ffmpeg": "^2.1.3",
|
"fluent-ffmpeg": "^2.1.3",
|
||||||
"minato": "^3.5.1",
|
"minato": "^3.5.1",
|
||||||
|
"protobufjs": "^7.4.0",
|
||||||
"silk-wasm": "^3.6.1",
|
"silk-wasm": "^3.6.1",
|
||||||
"ws": "^8.18.0"
|
"ws": "^8.18.0"
|
||||||
},
|
},
|
||||||
@@ -37,8 +39,9 @@
|
|||||||
"@types/ws": "^8.5.12",
|
"@types/ws": "^8.5.12",
|
||||||
"electron": "^31.4.0",
|
"electron": "^31.4.0",
|
||||||
"electron-vite": "^2.3.0",
|
"electron-vite": "^2.3.0",
|
||||||
"typescript": "^5.5.4",
|
"protobufjs-cli": "^1.1.3",
|
||||||
"vite": "^5.4.3",
|
"typescript": "^5.6.2",
|
||||||
|
"vite": "^5.4.4",
|
||||||
"vite-plugin-cp": "^4.0.8"
|
"vite-plugin-cp": "^4.0.8"
|
||||||
},
|
},
|
||||||
"packageManager": "yarn@4.4.1"
|
"packageManager": "yarn@4.4.1"
|
||||||
|
@@ -35,4 +35,4 @@ const manifest = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
writeFileSync('manifest.json', JSON.stringify(manifest, null, 2))
|
writeFileSync('manifest.json', JSON.stringify(manifest, null, 2))
|
||||||
|
@@ -19,4 +19,4 @@ export const selfInfo: SelfInfo = {
|
|||||||
uin: '',
|
uin: '',
|
||||||
nick: '',
|
nick: '',
|
||||||
online: true,
|
online: true,
|
||||||
}
|
}
|
||||||
|
@@ -70,4 +70,4 @@ export interface FileCacheV2 {
|
|||||||
chatType: number
|
chatType: number
|
||||||
elementId: string
|
elementId: string
|
||||||
elementType: number
|
elementType: number
|
||||||
}
|
}
|
||||||
|
@@ -4,6 +4,7 @@ import path from 'node:path'
|
|||||||
import { TEMP_DIR } from '../globalVars'
|
import { TEMP_DIR } from '../globalVars'
|
||||||
import { randomUUID, createHash } from 'node:crypto'
|
import { randomUUID, createHash } from 'node:crypto'
|
||||||
import { fileURLToPath } from 'node:url'
|
import { fileURLToPath } from 'node:url'
|
||||||
|
import { fileTypeFromFile } from 'file-type'
|
||||||
|
|
||||||
export function isGIF(path: string) {
|
export function isGIF(path: string) {
|
||||||
const buffer = Buffer.alloc(4)
|
const buffer = Buffer.alloc(4)
|
||||||
@@ -116,7 +117,7 @@ type Uri2LocalRes = {
|
|||||||
isLocal: boolean
|
isLocal: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function uri2local(uri: string, filename?: string): Promise<Uri2LocalRes> {
|
export async function uri2local(uri: string, filename?: string, needExt?: boolean): Promise<Uri2LocalRes> {
|
||||||
const { type } = checkUriType(uri)
|
const { type } = checkUriType(uri)
|
||||||
|
|
||||||
if (type === FileUriType.FileURL) {
|
if (type === FileUriType.FileURL) {
|
||||||
@@ -132,15 +133,21 @@ export async function uri2local(uri: string, filename?: string): Promise<Uri2Loc
|
|||||||
|
|
||||||
if (type === FileUriType.RemoteURL) {
|
if (type === FileUriType.RemoteURL) {
|
||||||
try {
|
try {
|
||||||
const res = await fetchFile(uri)
|
const res = await fetchFile(uri, { 'Referer': uri })
|
||||||
const match = res.url.match(/.+\/([^/?]*)(?=\?)?/)
|
const match = res.url.match(/.+\/([^/?]*)(?=\?)?/)
|
||||||
if (match?.[1]) {
|
if (match?.[1]) {
|
||||||
filename ??= match[1].replace(/[/\\:*?"<>|]/g, '_')
|
filename ??= match[1].replace(/[/\\:*?"<>|]/g, '_')
|
||||||
} else {
|
} else {
|
||||||
filename ??= randomUUID()
|
filename ??= randomUUID()
|
||||||
}
|
}
|
||||||
const filePath = path.join(TEMP_DIR, filename)
|
let filePath = path.join(TEMP_DIR, filename)
|
||||||
await fsPromise.writeFile(filePath, res.data)
|
await fsPromise.writeFile(filePath, res.data)
|
||||||
|
if (needExt && !path.extname(filePath)) {
|
||||||
|
const ext = (await fileTypeFromFile(filePath))?.ext
|
||||||
|
filename += `.${ext}`
|
||||||
|
await fsPromise.rename(filePath, `${filePath}.${ext}`)
|
||||||
|
filePath = `${filePath}.${ext}`
|
||||||
|
}
|
||||||
return { success: true, errMsg: '', fileName: filename, path: filePath, isLocal: false }
|
return { success: true, errMsg: '', fileName: filename, path: filePath, isLocal: false }
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
const errMsg = `${uri} 下载失败, ${(e as Error).message}`
|
const errMsg = `${uri} 下载失败, ${(e as Error).message}`
|
||||||
@@ -150,9 +157,15 @@ export async function uri2local(uri: string, filename?: string): Promise<Uri2Loc
|
|||||||
|
|
||||||
if (type === FileUriType.OneBotBase64) {
|
if (type === FileUriType.OneBotBase64) {
|
||||||
filename ??= randomUUID()
|
filename ??= randomUUID()
|
||||||
const filePath = path.join(TEMP_DIR, filename)
|
let filePath = path.join(TEMP_DIR, filename)
|
||||||
const base64 = uri.replace(/^base64:\/\//, '')
|
const base64 = uri.replace(/^base64:\/\//, '')
|
||||||
await fsPromise.writeFile(filePath, base64, 'base64')
|
await fsPromise.writeFile(filePath, base64, 'base64')
|
||||||
|
if (needExt) {
|
||||||
|
const ext = (await fileTypeFromFile(filePath))?.ext
|
||||||
|
filename += `.${ext}`
|
||||||
|
await fsPromise.rename(filePath, `${filePath}.${ext}`)
|
||||||
|
filePath = `${filePath}.${ext}`
|
||||||
|
}
|
||||||
return { success: true, errMsg: '', fileName: filename, path: filePath, isLocal: false }
|
return { success: true, errMsg: '', fileName: filename, path: filePath, isLocal: false }
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -162,8 +175,14 @@ export async function uri2local(uri: string, filename?: string): Promise<Uri2Loc
|
|||||||
if (capture) {
|
if (capture) {
|
||||||
filename ??= randomUUID()
|
filename ??= randomUUID()
|
||||||
const [, _type, base64] = capture
|
const [, _type, base64] = capture
|
||||||
const filePath = path.join(TEMP_DIR, filename)
|
let filePath = path.join(TEMP_DIR, filename)
|
||||||
await fsPromise.writeFile(filePath, base64, 'base64')
|
await fsPromise.writeFile(filePath, base64, 'base64')
|
||||||
|
if (needExt) {
|
||||||
|
const ext = (await fileTypeFromFile(filePath))?.ext
|
||||||
|
filename += `.${ext}`
|
||||||
|
await fsPromise.rename(filePath, `${filePath}.${ext}`)
|
||||||
|
filePath = `${filePath}.${ext}`
|
||||||
|
}
|
||||||
return { success: true, errMsg: '', fileName: filename, path: filePath, isLocal: false }
|
return { success: true, errMsg: '', fileName: filename, path: filePath, isLocal: false }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
import { QQLevel } from '@/ntqqapi/types'
|
import { QQLevel } from '@/ntqqapi/types'
|
||||||
import { Dict } from 'cosmokit'
|
import { Dict, isNullable } from 'cosmokit'
|
||||||
|
|
||||||
export function isNumeric(str: string) {
|
export function isNumeric(str: string) {
|
||||||
return /^\d+$/.test(str)
|
return /^\d+$/.test(str)
|
||||||
@@ -32,4 +32,8 @@ export function mergeNewProperties(newObj: Dict, oldObj: Dict) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function filterNullable<T>(array: T[]) {
|
||||||
|
return array.filter(e => !isNullable(e)) as NonNullable<T>[]
|
||||||
|
}
|
||||||
|
@@ -16,12 +16,11 @@ export class LimitedHashTable<K, V> {
|
|||||||
this.keyToValue.set(key, value)
|
this.keyToValue.set(key, value)
|
||||||
this.valueToKey.set(value, key)
|
this.valueToKey.set(value, key)
|
||||||
while (this.keyToValue.size !== this.valueToKey.size) {
|
while (this.keyToValue.size !== this.valueToKey.size) {
|
||||||
console.log('keyToValue.size !== valueToKey.size Error Atom')
|
|
||||||
this.keyToValue.clear()
|
this.keyToValue.clear()
|
||||||
this.valueToKey.clear()
|
this.valueToKey.clear()
|
||||||
}
|
}
|
||||||
while (this.keyToValue.size > this.maxSize || this.valueToKey.size > this.maxSize) {
|
while (this.keyToValue.size > this.maxSize || this.valueToKey.size > this.maxSize) {
|
||||||
const oldestKey = this.keyToValue.keys().next().value
|
const oldestKey = this.keyToValue.keys().next().value!
|
||||||
this.valueToKey.delete(this.keyToValue.get(oldestKey)!)
|
this.valueToKey.delete(this.keyToValue.get(oldestKey)!)
|
||||||
this.keyToValue.delete(oldestKey)
|
this.keyToValue.delete(oldestKey)
|
||||||
}
|
}
|
||||||
@@ -56,7 +55,7 @@ export class LimitedHashTable<K, V> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//获取最近刚写入的几个值
|
//获取最近刚写入的几个值
|
||||||
getHeads(size: number): { key: K; value: V }[] | undefined {
|
getHeads(size: number): { key: K, value: V }[] | undefined {
|
||||||
const keyList = this.getKeyList()
|
const keyList = this.getKeyList()
|
||||||
if (keyList.length === 0) {
|
if (keyList.length === 0) {
|
||||||
return undefined
|
return undefined
|
||||||
|
@@ -5,20 +5,22 @@ import { version } from '../../version'
|
|||||||
import { copyFolder, log, fetchFile } from '.'
|
import { copyFolder, log, fetchFile } from '.'
|
||||||
import { PLUGIN_DIR, TEMP_DIR } from '../globalVars'
|
import { PLUGIN_DIR, TEMP_DIR } from '../globalVars'
|
||||||
|
|
||||||
const downloadMirrorHosts = ['https://mirror.ghproxy.com/']
|
const downloadMirrorHosts = ['https://ghp.ci/']
|
||||||
const checkVersionMirrorHosts = ['https://kkgithub.com']
|
const releasesMirrorHosts = ['https://kkgithub.com']
|
||||||
|
|
||||||
export async function checkNewVersion() {
|
export async function checkNewVersion() {
|
||||||
const latestVersionText = await getRemoteVersion()
|
const latestVersionText = await getRemoteVersion()
|
||||||
const latestVersion = latestVersionText.split('.')
|
const latestVersion = latestVersionText.split('.')
|
||||||
//log('llonebot last version', latestVersion)
|
log('LLOneBot latest version', latestVersion)
|
||||||
const currentVersion: string[] = version.split('.')
|
const currentVersion = version.split('.')
|
||||||
//log('llonebot current version', currentVersion)
|
//log('llonebot current version', currentVersion)
|
||||||
for (const k of [0, 1, 2]) {
|
for (const k of [0, 1, 2]) {
|
||||||
if (parseInt(latestVersion[k]) > parseInt(currentVersion[k])) {
|
const latest = parseInt(latestVersion[k])
|
||||||
|
const current = parseInt(currentVersion[k])
|
||||||
|
if (latest > current) {
|
||||||
log('')
|
log('')
|
||||||
return { result: true, version: latestVersionText }
|
return { result: true, version: latestVersionText }
|
||||||
} else if (parseInt(latestVersion[k]) < parseInt(currentVersion[k])) {
|
} else if (latest < current) {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -28,7 +30,7 @@ export async function checkNewVersion() {
|
|||||||
export async function upgradeLLOneBot() {
|
export async function upgradeLLOneBot() {
|
||||||
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
|
let downloadSuccess = false
|
||||||
// 多镜像下载
|
// 多镜像下载
|
||||||
@@ -73,26 +75,34 @@ export async function upgradeLLOneBot() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export async function getRemoteVersion() {
|
export async function getRemoteVersion() {
|
||||||
let Version = ''
|
for (const mirror of releasesMirrorHosts) {
|
||||||
for (let i = 0; i < checkVersionMirrorHosts.length; i++) {
|
const version = await getRemoteVersionByReleasesMirror(mirror)
|
||||||
const mirrorGithub = checkVersionMirrorHosts[i]
|
if (version) {
|
||||||
const tVersion = await getRemoteVersionByMirror(mirrorGithub)
|
return version
|
||||||
if (tVersion && tVersion != '') {
|
}
|
||||||
Version = tVersion
|
}
|
||||||
break
|
for (const mirror of downloadMirrorHosts) {
|
||||||
|
const version = await getRemoteVersionByDownloadMirror(mirror)
|
||||||
|
if (version) {
|
||||||
|
return version
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return Version
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function getRemoteVersionByMirror(mirrorGithub: string) {
|
|
||||||
let releasePage = 'error'
|
|
||||||
|
|
||||||
try {
|
|
||||||
releasePage = (await fetchFile(mirrorGithub + '/LLOneBot/LLOneBot/releases')).data.toString()
|
|
||||||
// log("releasePage", releasePage);
|
|
||||||
if (releasePage === 'error') return ''
|
|
||||||
return releasePage.match(new RegExp('(?<=(tag/v)).*?(?=("))'))?.[0]
|
|
||||||
} catch { }
|
|
||||||
return ''
|
return ''
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function getRemoteVersionByDownloadMirror(mirrorGithub: string) {
|
||||||
|
try {
|
||||||
|
const source = 'https://raw.githubusercontent.com/LLOneBot/LLOneBot/main/src/version.ts'
|
||||||
|
const page = (await fetchFile(mirrorGithub + source)).data.toString()
|
||||||
|
return page.match(/(\d+\.\d+\.\d+)/)?.[0]
|
||||||
|
} catch (e) {
|
||||||
|
log(e?.toString())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function getRemoteVersionByReleasesMirror(mirrorGithub: string) {
|
||||||
|
try {
|
||||||
|
const page = (await fetchFile(mirrorGithub + '/LLOneBot/LLOneBot/releases')).data.toString()
|
||||||
|
return page.match(new RegExp('(?<=(tag/v)).*?(?=("))'))?.[0]
|
||||||
|
} catch { }
|
||||||
|
}
|
||||||
|
2
src/global.d.ts
vendored
2
src/global.d.ts
vendored
@@ -6,4 +6,4 @@ declare global {
|
|||||||
var LiteLoader: Dict
|
var LiteLoader: Dict
|
||||||
var authData: Dict | undefined
|
var authData: Dict | undefined
|
||||||
var navigation: Dict | undefined
|
var navigation: Dict | undefined
|
||||||
}
|
}
|
||||||
|
@@ -14,19 +14,14 @@ export default class Log {
|
|||||||
|
|
||||||
constructor(ctx: Context, cfg: Config) {
|
constructor(ctx: Context, cfg: Config) {
|
||||||
Logger.targets.splice(0, Logger.targets.length)
|
Logger.targets.splice(0, Logger.targets.length)
|
||||||
if (!cfg.enable) {
|
let enable = cfg.enable
|
||||||
return
|
|
||||||
}
|
|
||||||
const file = path.join(LOG_DIR, cfg.filename)
|
const file = path.join(LOG_DIR, cfg.filename)
|
||||||
/*const refreshNick = ctx.debounce(() => {
|
|
||||||
const ntUserApi = ctx.get('ntUserApi')
|
|
||||||
if (ntUserApi && !selfInfo.nick) {
|
|
||||||
ntUserApi.getSelfNick(true)
|
|
||||||
}
|
|
||||||
}, 1000)*/
|
|
||||||
const target: Logger.Target = {
|
const target: Logger.Target = {
|
||||||
colors: 0,
|
colors: 0,
|
||||||
record: (record: Logger.Record) => {
|
record: (record: Logger.Record) => {
|
||||||
|
if (!enable) {
|
||||||
|
return
|
||||||
|
}
|
||||||
const dateTime = new Date(record.timestamp).toLocaleString()
|
const dateTime = new Date(record.timestamp).toLocaleString()
|
||||||
const userInfo = selfInfo.uin ? `${selfInfo.nick}(${selfInfo.uin})` : ''
|
const userInfo = selfInfo.uin ? `${selfInfo.nick}(${selfInfo.uin})` : ''
|
||||||
const content = `${dateTime} [${record.type}] ${userInfo} | ${record.name} ${record.content}\n\n`
|
const content = `${dateTime} [${record.type}] ${userInfo} | ${record.name} ${record.content}\n\n`
|
||||||
@@ -34,5 +29,8 @@ export default class Log {
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
Logger.targets.push(target)
|
Logger.targets.push(target)
|
||||||
|
ctx.on('llonebot/config-updated', input => {
|
||||||
|
enable = input.log!
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -202,7 +202,7 @@ function onLoad() {
|
|||||||
|
|
||||||
// 创建窗口时触发
|
// 创建窗口时触发
|
||||||
function onBrowserWindowCreated(window: BrowserWindow) {
|
function onBrowserWindowCreated(window: BrowserWindow) {
|
||||||
if (![2, 4].includes(window.id)) {
|
if (![2, 4, 6].includes(window.id)) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if (window.id === 2) {
|
if (window.id === 2) {
|
||||||
|
@@ -38,7 +38,7 @@ export class NTQQFileApi extends Service {
|
|||||||
|
|
||||||
constructor(protected ctx: Context) {
|
constructor(protected ctx: Context) {
|
||||||
super(ctx, 'ntFileApi', true)
|
super(ctx, 'ntFileApi', true)
|
||||||
this.rkeyManager = new RkeyManager(ctx, 'http://napcat-sign.wumiao.wang:2082/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) {
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
import { ReceiveCmdS } from '../hook'
|
import { ReceiveCmdS } from '../hook'
|
||||||
import { Group, GroupMember, GroupMemberRole, GroupNotifies, GroupRequestOperateTypes, GetFileListParam } from '../types'
|
import { Group, GroupMember, GroupMemberRole, GroupNotifies, GroupRequestOperateTypes, GetFileListParam, PublishGroupBulletinReq } from '../types'
|
||||||
import { invoke, NTClass, NTMethod } from '../ntcall'
|
import { invoke, NTClass, NTMethod } from '../ntcall'
|
||||||
import { GeneralCallResult } from '../services'
|
import { GeneralCallResult } from '../services'
|
||||||
import { NTQQWindows } from './window'
|
import { NTQQWindows } from './window'
|
||||||
@@ -288,4 +288,16 @@ export class NTQQGroupApi extends Service {
|
|||||||
)
|
)
|
||||||
return data.fileInfo.item
|
return data.fileInfo.item
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async publishGroupBulletin(groupCode: string, req: PublishGroupBulletinReq) {
|
||||||
|
const ntUserApi = this.ctx.get('ntUserApi')!
|
||||||
|
const psKey = (await ntUserApi.getPSkey(['qun.qq.com'])).domainPskeyMap.get('qun.qq.com')!
|
||||||
|
return await invoke('nodeIKernelGroupService/publishGroupBulletin', [{ groupCode, psKey, req }, null])
|
||||||
|
}
|
||||||
|
|
||||||
|
async uploadGroupBulletinPic(groupCode: string, path: string) {
|
||||||
|
const ntUserApi = this.ctx.get('ntUserApi')!
|
||||||
|
const psKey = (await ntUserApi.getPSkey(['qun.qq.com'])).domainPskeyMap.get('qun.qq.com')!
|
||||||
|
return await invoke('nodeIKernelGroupService/uploadGroupBulletinPic', [{ groupCode, psKey, path }, null])
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@@ -252,4 +252,8 @@ export class NTQQMsgApi extends Service {
|
|||||||
}
|
}
|
||||||
}, null])
|
}, null])
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async setMsgRead(peer: Peer) {
|
||||||
|
return await invoke('nodeIKernelMsgService/setMsgRead', [{ peer }, null])
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@@ -109,6 +109,10 @@ export class NTQQUserApi extends Service {
|
|||||||
return cookies
|
return cookies
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async getPSkey(domains: string[]) {
|
||||||
|
return await invoke('nodeIKernelTipOffService/getPskey', [{ domains, isForNewPCQQ: true }, null])
|
||||||
|
}
|
||||||
|
|
||||||
genBkn(sKey: string) {
|
genBkn(sKey: string) {
|
||||||
sKey = sKey || ''
|
sKey = sKey || ''
|
||||||
let hash = 5381
|
let hash = 5381
|
||||||
@@ -292,4 +296,19 @@ export class NTQQUserApi extends Service {
|
|||||||
}
|
}
|
||||||
}, null])
|
}, null])
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async getProfileLike(uid: string) {
|
||||||
|
return await invoke('nodeIKernelProfileLikeService/getBuddyProfileLike', [{
|
||||||
|
req: {
|
||||||
|
friendUids: [uid],
|
||||||
|
basic: 1,
|
||||||
|
vote: 1,
|
||||||
|
favorite: 0,
|
||||||
|
userProfile: 1,
|
||||||
|
type: 2,
|
||||||
|
start: 0,
|
||||||
|
limit: 20,
|
||||||
|
}
|
||||||
|
}, null])
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
import { invoke, NTClass, NTMethod } from '../ntcall'
|
import { invoke, NTClass, NTMethod } from '../ntcall'
|
||||||
import { GeneralCallResult } from '../services'
|
import { GeneralCallResult } from '../services'
|
||||||
import { ReceiveCmd } from '../hook'
|
import { ReceiveCmdS } from '../hook'
|
||||||
import { BrowserWindow } from 'electron'
|
import { BrowserWindow } from 'electron'
|
||||||
import { Service, Context } from 'cordis'
|
import { Service, Context } from 'cordis'
|
||||||
|
|
||||||
@@ -39,7 +39,7 @@ export class NTQQWindowApi extends Service {
|
|||||||
async openWindow<R = GeneralCallResult>(
|
async openWindow<R = GeneralCallResult>(
|
||||||
ntQQWindow: NTQQWindow,
|
ntQQWindow: NTQQWindow,
|
||||||
args: unknown[],
|
args: unknown[],
|
||||||
cbCmd: ReceiveCmd | undefined,
|
cbCmd: ReceiveCmdS | undefined,
|
||||||
autoCloseSeconds: number = 2,
|
autoCloseSeconds: number = 2,
|
||||||
) {
|
) {
|
||||||
const result = await invoke<R>(
|
const result = await invoke<R>(
|
||||||
|
@@ -19,6 +19,7 @@ import {
|
|||||||
} from './types'
|
} from './types'
|
||||||
import { selfInfo } from '../common/globalVars'
|
import { selfInfo } from '../common/globalVars'
|
||||||
import { version } from '../version'
|
import { version } from '../version'
|
||||||
|
import { invoke } from './ntcall'
|
||||||
|
|
||||||
declare module 'cordis' {
|
declare module 'cordis' {
|
||||||
interface Context {
|
interface Context {
|
||||||
@@ -30,7 +31,8 @@ declare module 'cordis' {
|
|||||||
'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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -185,12 +187,6 @@ class Core extends Service {
|
|||||||
})
|
})
|
||||||
|
|
||||||
registerReceiveHook<{ msgRecord: RawMessage }>(ReceiveCmdS.SELF_SEND_MSG, payload => {
|
registerReceiveHook<{ msgRecord: RawMessage }>(ReceiveCmdS.SELF_SEND_MSG, payload => {
|
||||||
const { msgId, chatType, peerUid } = payload.msgRecord
|
|
||||||
const peer = {
|
|
||||||
chatType,
|
|
||||||
peerUid
|
|
||||||
}
|
|
||||||
MessageUnique.createMsg(peer, msgId)
|
|
||||||
if (!this.config.reportSelfMessage) {
|
if (!this.config.reportSelfMessage) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -225,6 +221,14 @@ class Core extends Service {
|
|||||||
registerReceiveHook<FriendRequestNotify>(ReceiveCmdS.FRIEND_REQUEST, payload => {
|
registerReceiveHook<FriendRequestNotify>(ReceiveCmdS.FRIEND_REQUEST, payload => {
|
||||||
this.ctx.parallel('nt/friend-request', payload.data.buddyReqs)
|
this.ctx.parallel('nt/friend-request', payload.data.buddyReqs)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
invoke('nodeIKernelMsgListener/onRecvSysMsg', [], { classNameIsRegister: true })
|
||||||
|
|
||||||
|
registerReceiveHook<{
|
||||||
|
msgBuf: number[]
|
||||||
|
}>('nodeIKernelMsgListener/onRecvSysMsg', payload => {
|
||||||
|
this.ctx.parallel('nt/system-message-created', Uint8Array.from(payload.msgBuf))
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -233,4 +237,4 @@ namespace Core {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default Core
|
export default Core
|
||||||
|
@@ -99,19 +99,20 @@ export namespace SendElementEntities {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function file(ctx: Context, filePath: string, fileName = '', folderId = ''): Promise<SendFileElement> {
|
export async function file(ctx: Context, filePath: string, fileName: string, folderId = ''): Promise<SendFileElement> {
|
||||||
const { fileName: _fileName, path, fileSize } = await ctx.ntFileApi.uploadFile(filePath, ElementType.FILE)
|
const fileSize = (await stat(filePath)).size.toString()
|
||||||
if (fileSize === 0) {
|
if (fileSize === '0') {
|
||||||
throw '文件异常,大小为 0'
|
ctx.logger.warn(`文件${fileName}异常,大小为 0`)
|
||||||
|
throw new Error('文件异常,大小为 0')
|
||||||
}
|
}
|
||||||
const element: SendFileElement = {
|
const element: SendFileElement = {
|
||||||
elementType: ElementType.FILE,
|
elementType: ElementType.FILE,
|
||||||
elementId: '',
|
elementId: '',
|
||||||
fileElement: {
|
fileElement: {
|
||||||
fileName: fileName || _fileName,
|
fileName,
|
||||||
folderId: folderId,
|
folderId,
|
||||||
filePath: path!,
|
filePath,
|
||||||
fileSize: fileSize.toString(),
|
fileSize,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
return element
|
return element
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
import { Context } from "cordis"
|
import { Context } from 'cordis'
|
||||||
|
|
||||||
interface ServerRkeyData {
|
interface ServerRkeyData {
|
||||||
group_rkey: string
|
group_rkey: string
|
||||||
|
@@ -6,48 +6,46 @@ import { Dict } from 'cosmokit'
|
|||||||
|
|
||||||
export const hookApiCallbacks: Record<string, (res: any) => void> = {}
|
export const hookApiCallbacks: Record<string, (res: any) => void> = {}
|
||||||
|
|
||||||
export const ReceiveCmdS = {
|
export enum ReceiveCmdS {
|
||||||
RECENT_CONTACT: 'nodeIKernelRecentContactListener/onRecentContactListChangedVer2',
|
RECENT_CONTACT = 'nodeIKernelRecentContactListener/onRecentContactListChangedVer2',
|
||||||
UPDATE_MSG: 'nodeIKernelMsgListener/onMsgInfoListUpdate',
|
UPDATE_MSG = 'nodeIKernelMsgListener/onMsgInfoListUpdate',
|
||||||
UPDATE_ACTIVE_MSG: 'nodeIKernelMsgListener/onActiveMsgInfoUpdate',
|
UPDATE_ACTIVE_MSG = 'nodeIKernelMsgListener/onActiveMsgInfoUpdate',
|
||||||
NEW_MSG: `nodeIKernelMsgListener/onRecvMsg`,
|
NEW_MSG = 'nodeIKernelMsgListener/onRecvMsg',
|
||||||
NEW_ACTIVE_MSG: `nodeIKernelMsgListener/onRecvActiveMsg`,
|
NEW_ACTIVE_MSG = 'nodeIKernelMsgListener/onRecvActiveMsg',
|
||||||
SELF_SEND_MSG: 'nodeIKernelMsgListener/onAddSendMsg',
|
SELF_SEND_MSG = 'nodeIKernelMsgListener/onAddSendMsg',
|
||||||
USER_INFO: 'nodeIKernelProfileListener/onProfileSimpleChanged',
|
USER_INFO = 'nodeIKernelProfileListener/onProfileSimpleChanged',
|
||||||
USER_DETAIL_INFO: 'nodeIKernelProfileListener/onProfileDetailInfoChanged',
|
USER_DETAIL_INFO = 'nodeIKernelProfileListener/onProfileDetailInfoChanged',
|
||||||
GROUPS: 'nodeIKernelGroupListener/onGroupListUpdate',
|
GROUPS = 'nodeIKernelGroupListener/onGroupListUpdate',
|
||||||
GROUPS_STORE: 'onGroupListUpdate',
|
GROUPS_STORE = 'onGroupListUpdate',
|
||||||
GROUP_MEMBER_INFO_UPDATE: 'nodeIKernelGroupListener/onMemberInfoChange',
|
GROUP_MEMBER_INFO_UPDATE = 'nodeIKernelGroupListener/onMemberInfoChange',
|
||||||
FRIENDS: 'onBuddyListChange',
|
FRIENDS = 'onBuddyListChange',
|
||||||
MEDIA_DOWNLOAD_COMPLETE: 'nodeIKernelMsgListener/onRichMediaDownloadComplete',
|
MEDIA_DOWNLOAD_COMPLETE = 'nodeIKernelMsgListener/onRichMediaDownloadComplete',
|
||||||
UNREAD_GROUP_NOTIFY: 'nodeIKernelGroupListener/onGroupNotifiesUnreadCountUpdated',
|
UNREAD_GROUP_NOTIFY = 'nodeIKernelGroupListener/onGroupNotifiesUnreadCountUpdated',
|
||||||
GROUP_NOTIFY: 'nodeIKernelGroupListener/onGroupSingleScreenNotifies',
|
GROUP_NOTIFY = 'nodeIKernelGroupListener/onGroupSingleScreenNotifies',
|
||||||
FRIEND_REQUEST: 'nodeIKernelBuddyListener/onBuddyReqChange',
|
FRIEND_REQUEST = 'nodeIKernelBuddyListener/onBuddyReqChange',
|
||||||
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',
|
SKEY_UPDATE = 'onSkeyUpdate',
|
||||||
} as const
|
}
|
||||||
|
|
||||||
export type ReceiveCmd = string
|
type NTReturnData = [
|
||||||
|
{
|
||||||
interface NTQQApiReturnData extends Array<unknown> {
|
|
||||||
0: {
|
|
||||||
type: 'request'
|
type: 'request'
|
||||||
eventName: NTClass
|
eventName: NTClass
|
||||||
callbackId?: string
|
callbackId?: string
|
||||||
}
|
},
|
||||||
1: {
|
{
|
||||||
cmdName: ReceiveCmd
|
cmdName: ReceiveCmdS
|
||||||
cmdType: 'event'
|
cmdType: 'event'
|
||||||
payload: unknown
|
payload: unknown
|
||||||
}[]
|
}[]
|
||||||
}
|
]
|
||||||
|
|
||||||
const logHook = false
|
const logHook = false
|
||||||
|
|
||||||
const receiveHooks: Array<{
|
const receiveHooks: Array<{
|
||||||
method: ReceiveCmd[]
|
method: ReceiveCmdS[]
|
||||||
hookFunc: (payload: any) => void | Promise<void>
|
hookFunc: (payload: any) => void | Promise<void>
|
||||||
id: string
|
id: string
|
||||||
}> = []
|
}> = []
|
||||||
@@ -58,62 +56,44 @@ const callHooks: Array<{
|
|||||||
}> = []
|
}> = []
|
||||||
|
|
||||||
export function hookNTQQApiReceive(window: BrowserWindow, onlyLog: boolean) {
|
export function hookNTQQApiReceive(window: BrowserWindow, onlyLog: boolean) {
|
||||||
const originalSend = window.webContents.send
|
window.webContents.send = new Proxy(window.webContents.send, {
|
||||||
const patchSend = (channel: string, ...args: NTQQApiReturnData) => {
|
apply(target, thisArg, args: [channel: string, ...args: NTReturnData]) {
|
||||||
try {
|
try {
|
||||||
const isLogger = args[0]?.eventName?.startsWith('ns-LoggerApi')
|
if (logHook && !args[1]?.eventName?.startsWith('ns-LoggerApi')) {
|
||||||
if (logHook && !isLogger) {
|
log('received ntqq api message', args)
|
||||||
log(`received ntqq api message: ${channel}`, args)
|
}
|
||||||
}
|
} catch { }
|
||||||
} catch { }
|
if (!onlyLog) {
|
||||||
if (!onlyLog) {
|
if (args[2] instanceof Array) {
|
||||||
if (args?.[1] instanceof Array) {
|
for (const receiveData of args[2]) {
|
||||||
for (const receiveData of args[1]) {
|
const ntMethodName = receiveData.cmdName
|
||||||
const ntQQApiMethodName = receiveData.cmdName
|
for (const hook of receiveHooks) {
|
||||||
// log(`received ntqq api message: ${channel} ${ntQQApiMethodName}`, JSON.stringify(receiveData))
|
if (hook.method.includes(ntMethodName)) {
|
||||||
for (const hook of receiveHooks) {
|
Promise.resolve(hook.hookFunc(receiveData.payload))
|
||||||
if (hook.method.includes(ntQQApiMethodName)) {
|
}
|
||||||
new Promise(resolve => {
|
|
||||||
try {
|
|
||||||
hook.hookFunc(receiveData.payload)
|
|
||||||
} catch (e) {
|
|
||||||
log('hook error', ntQQApiMethodName, (e as Error).stack?.toString())
|
|
||||||
}
|
|
||||||
resolve(undefined)
|
|
||||||
}).then()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
if (args[1]?.callbackId) {
|
||||||
if (args[0]?.callbackId) {
|
const callbackId = args[1].callbackId
|
||||||
// log("hookApiCallback", hookApiCallbacks, args)
|
if (hookApiCallbacks[callbackId]) {
|
||||||
const callbackId = args[0].callbackId
|
Promise.resolve(hookApiCallbacks[callbackId](args[2]))
|
||||||
if (hookApiCallbacks[callbackId]) {
|
delete hookApiCallbacks[callbackId]
|
||||||
new Promise(resolve => {
|
}
|
||||||
hookApiCallbacks[callbackId](args[1])
|
|
||||||
resolve(undefined)
|
|
||||||
}).then()
|
|
||||||
delete hookApiCallbacks[callbackId]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
return target.apply(thisArg, args)
|
||||||
originalSend.call(window.webContents, channel, ...args)
|
},
|
||||||
}
|
})
|
||||||
window.webContents.send = patchSend
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function hookNTQQApiCall(window: BrowserWindow, onlyLog: boolean) {
|
export function hookNTQQApiCall(window: BrowserWindow, onlyLog: boolean) {
|
||||||
// 监听调用NTQQApi
|
|
||||||
const webContents = window.webContents as Dict
|
const webContents = window.webContents as Dict
|
||||||
const ipc_message_proxy = webContents._events['-ipc-message']?.[0] || webContents._events['-ipc-message']
|
const ipc_message_proxy = webContents._events['-ipc-message']?.[0] || webContents._events['-ipc-message']
|
||||||
|
|
||||||
const proxyIpcMsg = new Proxy(ipc_message_proxy, {
|
const proxyIpcMsg = new Proxy(ipc_message_proxy, {
|
||||||
apply(target, thisArg, args) {
|
apply(target, thisArg, args) {
|
||||||
// console.log(thisArg, args);
|
const isLogger = args[3]?.[0]?.eventName?.startsWith('ns-LoggerApi')
|
||||||
let isLogger = false
|
|
||||||
try {
|
|
||||||
isLogger = args[3][0].eventName.startsWith('ns-LoggerApi')
|
|
||||||
} catch (e) { }
|
|
||||||
if (!isLogger) {
|
if (!isLogger) {
|
||||||
try {
|
try {
|
||||||
logHook && log('call NTQQ api', thisArg, args)
|
logHook && log('call NTQQ api', thisArg, args)
|
||||||
@@ -121,21 +101,14 @@ export function hookNTQQApiCall(window: BrowserWindow, onlyLog: boolean) {
|
|||||||
if (!onlyLog) {
|
if (!onlyLog) {
|
||||||
try {
|
try {
|
||||||
const _args: unknown[] = args[3][1]
|
const _args: unknown[] = args[3][1]
|
||||||
const cmdName: NTMethod = _args[0] as NTMethod
|
const cmdName = _args[0] as NTMethod
|
||||||
const callParams = _args.slice(1)
|
const callParams = _args.slice(1)
|
||||||
callHooks.forEach((hook) => {
|
callHooks.forEach((hook) => {
|
||||||
if (hook.method.includes(cmdName)) {
|
if (hook.method.includes(cmdName)) {
|
||||||
new Promise(resolve => {
|
Promise.resolve(hook.hookFunc(callParams))
|
||||||
try {
|
|
||||||
hook.hookFunc(callParams)
|
|
||||||
} catch (e) {
|
|
||||||
log('hook call error', e, _args)
|
|
||||||
}
|
|
||||||
resolve(undefined)
|
|
||||||
}).then()
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
} catch (e) { }
|
} catch { }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return target.apply(thisArg, args)
|
return target.apply(thisArg, args)
|
||||||
@@ -147,7 +120,7 @@ export function hookNTQQApiCall(window: BrowserWindow, onlyLog: boolean) {
|
|||||||
webContents._events['-ipc-message'] = proxyIpcMsg
|
webContents._events['-ipc-message'] = proxyIpcMsg
|
||||||
}
|
}
|
||||||
|
|
||||||
const ipc_invoke_proxy = webContents._events['-ipc-invoke']?.[0] || webContents._events['-ipc-invoke']
|
/*const ipc_invoke_proxy = webContents._events['-ipc-invoke']?.[0] || webContents._events['-ipc-invoke']
|
||||||
const proxyIpcInvoke = new Proxy(ipc_invoke_proxy, {
|
const proxyIpcInvoke = new Proxy(ipc_invoke_proxy, {
|
||||||
apply(target, thisArg, args) {
|
apply(target, thisArg, args) {
|
||||||
//HOOK_LOG && log('call NTQQ invoke api', thisArg, args)
|
//HOOK_LOG && log('call NTQQ invoke api', thisArg, args)
|
||||||
@@ -157,9 +130,7 @@ export function hookNTQQApiCall(window: BrowserWindow, onlyLog: boolean) {
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
const ret = target.apply(thisArg, args)
|
const ret = target.apply(thisArg, args)
|
||||||
/*try {
|
//HOOK_LOG && log('call NTQQ invoke api return', ret)
|
||||||
HOOK_LOG && log('call NTQQ invoke api return', ret)
|
|
||||||
} catch (e) { }*/
|
|
||||||
return ret
|
return ret
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
@@ -167,11 +138,11 @@ export function hookNTQQApiCall(window: BrowserWindow, onlyLog: boolean) {
|
|||||||
webContents._events['-ipc-invoke'][0] = proxyIpcInvoke
|
webContents._events['-ipc-invoke'][0] = proxyIpcInvoke
|
||||||
} else {
|
} else {
|
||||||
webContents._events['-ipc-invoke'] = proxyIpcInvoke
|
webContents._events['-ipc-invoke'] = proxyIpcInvoke
|
||||||
}
|
}*/
|
||||||
}
|
}
|
||||||
|
|
||||||
export function registerReceiveHook<PayloadType>(
|
export function registerReceiveHook<PayloadType>(
|
||||||
method: ReceiveCmd | ReceiveCmd[],
|
method: string | string[],
|
||||||
hookFunc: (payload: PayloadType) => void,
|
hookFunc: (payload: PayloadType) => void,
|
||||||
): string {
|
): string {
|
||||||
const id = randomUUID()
|
const id = randomUUID()
|
||||||
@@ -179,7 +150,7 @@ export function registerReceiveHook<PayloadType>(
|
|||||||
method = [method]
|
method = [method]
|
||||||
}
|
}
|
||||||
receiveHooks.push({
|
receiveHooks.push({
|
||||||
method,
|
method: method as ReceiveCmdS[],
|
||||||
hookFunc,
|
hookFunc,
|
||||||
id,
|
id,
|
||||||
})
|
})
|
||||||
@@ -202,4 +173,4 @@ export function registerCallHook(
|
|||||||
export function removeReceiveHook(id: string) {
|
export function removeReceiveHook(id: string) {
|
||||||
const index = receiveHooks.findIndex((h) => h.id === id)
|
const index = receiveHooks.findIndex((h) => h.id === id)
|
||||||
receiveHooks.splice(index, 1)
|
receiveHooks.splice(index, 1)
|
||||||
}
|
}
|
||||||
|
@@ -136,7 +136,6 @@ export function invoke<
|
|||||||
// 这里的callback比较特殊,QQ后端先返回是否调用成功,再返回一条结果数据
|
// 这里的callback比较特殊,QQ后端先返回是否调用成功,再返回一条结果数据
|
||||||
const secondCallback = () => {
|
const secondCallback = () => {
|
||||||
const hookId = registerReceiveHook<R>(options.cbCmd!, (payload) => {
|
const hookId = registerReceiveHook<R>(options.cbCmd!, (payload) => {
|
||||||
// log(methodName, "second callback", cbCmd, payload, cmdCB);
|
|
||||||
if (options.cmdCB) {
|
if (options.cmdCB) {
|
||||||
if (options.cmdCB(payload, result)) {
|
if (options.cmdCB(payload, result)) {
|
||||||
removeReceiveHook(hookId)
|
removeReceiveHook(hookId)
|
||||||
@@ -182,4 +181,4 @@ export function invoke<
|
|||||||
apiArgs,
|
apiArgs,
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
411
src/ntqqapi/proto/compiled.d.ts
vendored
Normal file
411
src/ntqqapi/proto/compiled.d.ts
vendored
Normal file
@@ -0,0 +1,411 @@
|
|||||||
|
import * as $protobuf from "protobufjs";
|
||||||
|
import Long = require("long");
|
||||||
|
/** Namespace SysMsg. */
|
||||||
|
export namespace SysMsg {
|
||||||
|
|
||||||
|
/** Properties of a SystemMessage. */
|
||||||
|
interface ISystemMessage {
|
||||||
|
|
||||||
|
/** SystemMessage header */
|
||||||
|
header?: (SysMsg.ISystemMessageHeader[]|null);
|
||||||
|
|
||||||
|
/** SystemMessage msgSpec */
|
||||||
|
msgSpec?: (SysMsg.ISystemMessageMsgSpec[]|null);
|
||||||
|
|
||||||
|
/** SystemMessage bodyWrapper */
|
||||||
|
bodyWrapper?: (SysMsg.ISystemMessageBodyWrapper|null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Represents a SystemMessage. */
|
||||||
|
class SystemMessage implements ISystemMessage {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs a new SystemMessage.
|
||||||
|
* @param [properties] Properties to set
|
||||||
|
*/
|
||||||
|
constructor(properties?: SysMsg.ISystemMessage);
|
||||||
|
|
||||||
|
/** SystemMessage header. */
|
||||||
|
public header: SysMsg.ISystemMessageHeader[];
|
||||||
|
|
||||||
|
/** SystemMessage msgSpec. */
|
||||||
|
public msgSpec: SysMsg.ISystemMessageMsgSpec[];
|
||||||
|
|
||||||
|
/** SystemMessage bodyWrapper. */
|
||||||
|
public bodyWrapper?: (SysMsg.ISystemMessageBodyWrapper|null);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a SystemMessage message from the specified reader or buffer.
|
||||||
|
* @param reader Reader or buffer to decode from
|
||||||
|
* @param [length] Message length if known beforehand
|
||||||
|
* @returns SystemMessage
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): SysMsg.SystemMessage;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a SystemMessage message from the specified reader or buffer, length delimited.
|
||||||
|
* @param reader Reader or buffer to decode from
|
||||||
|
* @returns SystemMessage
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): SysMsg.SystemMessage;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the default type url for SystemMessage
|
||||||
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
||||||
|
* @returns The default type url
|
||||||
|
*/
|
||||||
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Properties of a SystemMessageHeader. */
|
||||||
|
interface ISystemMessageHeader {
|
||||||
|
|
||||||
|
/** SystemMessageHeader peerNumber */
|
||||||
|
peerNumber?: (number|null);
|
||||||
|
|
||||||
|
/** SystemMessageHeader peerString */
|
||||||
|
peerString?: (string|null);
|
||||||
|
|
||||||
|
/** SystemMessageHeader uin */
|
||||||
|
uin?: (number|null);
|
||||||
|
|
||||||
|
/** SystemMessageHeader uid */
|
||||||
|
uid?: (string|null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Represents a SystemMessageHeader. */
|
||||||
|
class SystemMessageHeader implements ISystemMessageHeader {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs a new SystemMessageHeader.
|
||||||
|
* @param [properties] Properties to set
|
||||||
|
*/
|
||||||
|
constructor(properties?: SysMsg.ISystemMessageHeader);
|
||||||
|
|
||||||
|
/** SystemMessageHeader peerNumber. */
|
||||||
|
public peerNumber: number;
|
||||||
|
|
||||||
|
/** SystemMessageHeader peerString. */
|
||||||
|
public peerString: string;
|
||||||
|
|
||||||
|
/** SystemMessageHeader uin. */
|
||||||
|
public uin: number;
|
||||||
|
|
||||||
|
/** SystemMessageHeader uid. */
|
||||||
|
public uid?: (string|null);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a SystemMessageHeader message from the specified reader or buffer.
|
||||||
|
* @param reader Reader or buffer to decode from
|
||||||
|
* @param [length] Message length if known beforehand
|
||||||
|
* @returns SystemMessageHeader
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): SysMsg.SystemMessageHeader;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a SystemMessageHeader message from the specified reader or buffer, length delimited.
|
||||||
|
* @param reader Reader or buffer to decode from
|
||||||
|
* @returns SystemMessageHeader
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): SysMsg.SystemMessageHeader;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the default type url for SystemMessageHeader
|
||||||
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
||||||
|
* @returns The default type url
|
||||||
|
*/
|
||||||
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Properties of a SystemMessageMsgSpec. */
|
||||||
|
interface ISystemMessageMsgSpec {
|
||||||
|
|
||||||
|
/** SystemMessageMsgSpec msgType */
|
||||||
|
msgType?: (number|null);
|
||||||
|
|
||||||
|
/** SystemMessageMsgSpec subType */
|
||||||
|
subType?: (number|null);
|
||||||
|
|
||||||
|
/** SystemMessageMsgSpec subSubType */
|
||||||
|
subSubType?: (number|null);
|
||||||
|
|
||||||
|
/** SystemMessageMsgSpec msgSeq */
|
||||||
|
msgSeq?: (number|null);
|
||||||
|
|
||||||
|
/** SystemMessageMsgSpec time */
|
||||||
|
time?: (number|null);
|
||||||
|
|
||||||
|
/** SystemMessageMsgSpec other */
|
||||||
|
other?: (number|null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Represents a SystemMessageMsgSpec. */
|
||||||
|
class SystemMessageMsgSpec implements ISystemMessageMsgSpec {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs a new SystemMessageMsgSpec.
|
||||||
|
* @param [properties] Properties to set
|
||||||
|
*/
|
||||||
|
constructor(properties?: SysMsg.ISystemMessageMsgSpec);
|
||||||
|
|
||||||
|
/** SystemMessageMsgSpec msgType. */
|
||||||
|
public msgType: number;
|
||||||
|
|
||||||
|
/** SystemMessageMsgSpec subType. */
|
||||||
|
public subType: number;
|
||||||
|
|
||||||
|
/** SystemMessageMsgSpec subSubType. */
|
||||||
|
public subSubType: number;
|
||||||
|
|
||||||
|
/** SystemMessageMsgSpec msgSeq. */
|
||||||
|
public msgSeq: number;
|
||||||
|
|
||||||
|
/** SystemMessageMsgSpec time. */
|
||||||
|
public time: number;
|
||||||
|
|
||||||
|
/** SystemMessageMsgSpec other. */
|
||||||
|
public other: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a SystemMessageMsgSpec message from the specified reader or buffer.
|
||||||
|
* @param reader Reader or buffer to decode from
|
||||||
|
* @param [length] Message length if known beforehand
|
||||||
|
* @returns SystemMessageMsgSpec
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): SysMsg.SystemMessageMsgSpec;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a SystemMessageMsgSpec message from the specified reader or buffer, length delimited.
|
||||||
|
* @param reader Reader or buffer to decode from
|
||||||
|
* @returns SystemMessageMsgSpec
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): SysMsg.SystemMessageMsgSpec;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the default type url for SystemMessageMsgSpec
|
||||||
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
||||||
|
* @returns The default type url
|
||||||
|
*/
|
||||||
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Properties of a SystemMessageBodyWrapper. */
|
||||||
|
interface ISystemMessageBodyWrapper {
|
||||||
|
|
||||||
|
/** SystemMessageBodyWrapper body */
|
||||||
|
body?: (Uint8Array|null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Represents a SystemMessageBodyWrapper. */
|
||||||
|
class SystemMessageBodyWrapper implements ISystemMessageBodyWrapper {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs a new SystemMessageBodyWrapper.
|
||||||
|
* @param [properties] Properties to set
|
||||||
|
*/
|
||||||
|
constructor(properties?: SysMsg.ISystemMessageBodyWrapper);
|
||||||
|
|
||||||
|
/** SystemMessageBodyWrapper body. */
|
||||||
|
public body: Uint8Array;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a SystemMessageBodyWrapper message from the specified reader or buffer.
|
||||||
|
* @param reader Reader or buffer to decode from
|
||||||
|
* @param [length] Message length if known beforehand
|
||||||
|
* @returns SystemMessageBodyWrapper
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): SysMsg.SystemMessageBodyWrapper;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a SystemMessageBodyWrapper message from the specified reader or buffer, length delimited.
|
||||||
|
* @param reader Reader or buffer to decode from
|
||||||
|
* @returns SystemMessageBodyWrapper
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): SysMsg.SystemMessageBodyWrapper;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the default type url for SystemMessageBodyWrapper
|
||||||
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
||||||
|
* @returns The default type url
|
||||||
|
*/
|
||||||
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Properties of a LikeDetail. */
|
||||||
|
interface ILikeDetail {
|
||||||
|
|
||||||
|
/** LikeDetail txt */
|
||||||
|
txt?: (string|null);
|
||||||
|
|
||||||
|
/** LikeDetail uin */
|
||||||
|
uin?: (number|null);
|
||||||
|
|
||||||
|
/** LikeDetail nickname */
|
||||||
|
nickname?: (string|null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Represents a LikeDetail. */
|
||||||
|
class LikeDetail implements ILikeDetail {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs a new LikeDetail.
|
||||||
|
* @param [properties] Properties to set
|
||||||
|
*/
|
||||||
|
constructor(properties?: SysMsg.ILikeDetail);
|
||||||
|
|
||||||
|
/** LikeDetail txt. */
|
||||||
|
public txt: string;
|
||||||
|
|
||||||
|
/** LikeDetail uin. */
|
||||||
|
public uin: number;
|
||||||
|
|
||||||
|
/** LikeDetail nickname. */
|
||||||
|
public nickname: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a LikeDetail message from the specified reader or buffer.
|
||||||
|
* @param reader Reader or buffer to decode from
|
||||||
|
* @param [length] Message length if known beforehand
|
||||||
|
* @returns LikeDetail
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): SysMsg.LikeDetail;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a LikeDetail message from the specified reader or buffer, length delimited.
|
||||||
|
* @param reader Reader or buffer to decode from
|
||||||
|
* @returns LikeDetail
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): SysMsg.LikeDetail;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the default type url for LikeDetail
|
||||||
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
||||||
|
* @returns The default type url
|
||||||
|
*/
|
||||||
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Properties of a LikeMsg. */
|
||||||
|
interface ILikeMsg {
|
||||||
|
|
||||||
|
/** LikeMsg count */
|
||||||
|
count?: (number|null);
|
||||||
|
|
||||||
|
/** LikeMsg time */
|
||||||
|
time?: (number|null);
|
||||||
|
|
||||||
|
/** LikeMsg detail */
|
||||||
|
detail?: (SysMsg.ILikeDetail|null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Represents a LikeMsg. */
|
||||||
|
class LikeMsg implements ILikeMsg {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs a new LikeMsg.
|
||||||
|
* @param [properties] Properties to set
|
||||||
|
*/
|
||||||
|
constructor(properties?: SysMsg.ILikeMsg);
|
||||||
|
|
||||||
|
/** LikeMsg count. */
|
||||||
|
public count: number;
|
||||||
|
|
||||||
|
/** LikeMsg time. */
|
||||||
|
public time: number;
|
||||||
|
|
||||||
|
/** LikeMsg detail. */
|
||||||
|
public detail?: (SysMsg.ILikeDetail|null);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a LikeMsg message from the specified reader or buffer.
|
||||||
|
* @param reader Reader or buffer to decode from
|
||||||
|
* @param [length] Message length if known beforehand
|
||||||
|
* @returns LikeMsg
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): SysMsg.LikeMsg;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a LikeMsg message from the specified reader or buffer, length delimited.
|
||||||
|
* @param reader Reader or buffer to decode from
|
||||||
|
* @returns LikeMsg
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): SysMsg.LikeMsg;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the default type url for LikeMsg
|
||||||
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
||||||
|
* @returns The default type url
|
||||||
|
*/
|
||||||
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Properties of a ProfileLikeTip. */
|
||||||
|
interface IProfileLikeTip {
|
||||||
|
|
||||||
|
/** ProfileLikeTip msg */
|
||||||
|
msg?: (SysMsg.ILikeMsg|null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Represents a ProfileLikeTip. */
|
||||||
|
class ProfileLikeTip implements IProfileLikeTip {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs a new ProfileLikeTip.
|
||||||
|
* @param [properties] Properties to set
|
||||||
|
*/
|
||||||
|
constructor(properties?: SysMsg.IProfileLikeTip);
|
||||||
|
|
||||||
|
/** ProfileLikeTip msg. */
|
||||||
|
public msg?: (SysMsg.ILikeMsg|null);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a ProfileLikeTip message from the specified reader or buffer.
|
||||||
|
* @param reader Reader or buffer to decode from
|
||||||
|
* @param [length] Message length if known beforehand
|
||||||
|
* @returns ProfileLikeTip
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): SysMsg.ProfileLikeTip;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a ProfileLikeTip message from the specified reader or buffer, length delimited.
|
||||||
|
* @param reader Reader or buffer to decode from
|
||||||
|
* @returns ProfileLikeTip
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): SysMsg.ProfileLikeTip;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the default type url for ProfileLikeTip
|
||||||
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
||||||
|
* @returns The default type url
|
||||||
|
*/
|
||||||
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
||||||
|
}
|
||||||
|
}
|
891
src/ntqqapi/proto/compiled.js
Normal file
891
src/ntqqapi/proto/compiled.js
Normal file
@@ -0,0 +1,891 @@
|
|||||||
|
/*eslint-disable block-scoped-var, id-length, no-control-regex, no-magic-numbers, no-prototype-builtins, no-redeclare, no-shadow, no-var, sort-vars*/
|
||||||
|
import * as $protobuf from "protobufjs/minimal";
|
||||||
|
|
||||||
|
// Common aliases
|
||||||
|
const $Reader = $protobuf.Reader, $util = $protobuf.util;
|
||||||
|
|
||||||
|
// Exported root namespace
|
||||||
|
const $root = $protobuf.roots["default"] || ($protobuf.roots["default"] = {});
|
||||||
|
|
||||||
|
export const SysMsg = $root.SysMsg = (() => {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Namespace SysMsg.
|
||||||
|
* @exports SysMsg
|
||||||
|
* @namespace
|
||||||
|
*/
|
||||||
|
const SysMsg = {};
|
||||||
|
|
||||||
|
SysMsg.SystemMessage = (function() {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Properties of a SystemMessage.
|
||||||
|
* @memberof SysMsg
|
||||||
|
* @interface ISystemMessage
|
||||||
|
* @property {Array.<SysMsg.ISystemMessageHeader>|null} [header] SystemMessage header
|
||||||
|
* @property {Array.<SysMsg.ISystemMessageMsgSpec>|null} [msgSpec] SystemMessage msgSpec
|
||||||
|
* @property {SysMsg.ISystemMessageBodyWrapper|null} [bodyWrapper] SystemMessage bodyWrapper
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs a new SystemMessage.
|
||||||
|
* @memberof SysMsg
|
||||||
|
* @classdesc Represents a SystemMessage.
|
||||||
|
* @implements ISystemMessage
|
||||||
|
* @constructor
|
||||||
|
* @param {SysMsg.ISystemMessage=} [properties] Properties to set
|
||||||
|
*/
|
||||||
|
function SystemMessage(properties) {
|
||||||
|
this.header = [];
|
||||||
|
this.msgSpec = [];
|
||||||
|
if (properties)
|
||||||
|
for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
|
||||||
|
if (properties[keys[i]] != null)
|
||||||
|
this[keys[i]] = properties[keys[i]];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* SystemMessage header.
|
||||||
|
* @member {Array.<SysMsg.ISystemMessageHeader>} header
|
||||||
|
* @memberof SysMsg.SystemMessage
|
||||||
|
* @instance
|
||||||
|
*/
|
||||||
|
SystemMessage.prototype.header = $util.emptyArray;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* SystemMessage msgSpec.
|
||||||
|
* @member {Array.<SysMsg.ISystemMessageMsgSpec>} msgSpec
|
||||||
|
* @memberof SysMsg.SystemMessage
|
||||||
|
* @instance
|
||||||
|
*/
|
||||||
|
SystemMessage.prototype.msgSpec = $util.emptyArray;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* SystemMessage bodyWrapper.
|
||||||
|
* @member {SysMsg.ISystemMessageBodyWrapper|null|undefined} bodyWrapper
|
||||||
|
* @memberof SysMsg.SystemMessage
|
||||||
|
* @instance
|
||||||
|
*/
|
||||||
|
SystemMessage.prototype.bodyWrapper = null;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a SystemMessage message from the specified reader or buffer.
|
||||||
|
* @function decode
|
||||||
|
* @memberof SysMsg.SystemMessage
|
||||||
|
* @static
|
||||||
|
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
||||||
|
* @param {number} [length] Message length if known beforehand
|
||||||
|
* @returns {SysMsg.SystemMessage} SystemMessage
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
SystemMessage.decode = function decode(reader, length) {
|
||||||
|
if (!(reader instanceof $Reader))
|
||||||
|
reader = $Reader.create(reader);
|
||||||
|
let end = length === undefined ? reader.len : reader.pos + length, message = new $root.SysMsg.SystemMessage();
|
||||||
|
while (reader.pos < end) {
|
||||||
|
let tag = reader.uint32();
|
||||||
|
switch (tag >>> 3) {
|
||||||
|
case 1: {
|
||||||
|
if (!(message.header && message.header.length))
|
||||||
|
message.header = [];
|
||||||
|
message.header.push($root.SysMsg.SystemMessageHeader.decode(reader, reader.uint32()));
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 2: {
|
||||||
|
if (!(message.msgSpec && message.msgSpec.length))
|
||||||
|
message.msgSpec = [];
|
||||||
|
message.msgSpec.push($root.SysMsg.SystemMessageMsgSpec.decode(reader, reader.uint32()));
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 3: {
|
||||||
|
message.bodyWrapper = $root.SysMsg.SystemMessageBodyWrapper.decode(reader, reader.uint32());
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
reader.skipType(tag & 7);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return message;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a SystemMessage message from the specified reader or buffer, length delimited.
|
||||||
|
* @function decodeDelimited
|
||||||
|
* @memberof SysMsg.SystemMessage
|
||||||
|
* @static
|
||||||
|
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
||||||
|
* @returns {SysMsg.SystemMessage} SystemMessage
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
SystemMessage.decodeDelimited = function decodeDelimited(reader) {
|
||||||
|
if (!(reader instanceof $Reader))
|
||||||
|
reader = new $Reader(reader);
|
||||||
|
return this.decode(reader, reader.uint32());
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the default type url for SystemMessage
|
||||||
|
* @function getTypeUrl
|
||||||
|
* @memberof SysMsg.SystemMessage
|
||||||
|
* @static
|
||||||
|
* @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
||||||
|
* @returns {string} The default type url
|
||||||
|
*/
|
||||||
|
SystemMessage.getTypeUrl = function getTypeUrl(typeUrlPrefix) {
|
||||||
|
if (typeUrlPrefix === undefined) {
|
||||||
|
typeUrlPrefix = "type.googleapis.com";
|
||||||
|
}
|
||||||
|
return typeUrlPrefix + "/SysMsg.SystemMessage";
|
||||||
|
};
|
||||||
|
|
||||||
|
return SystemMessage;
|
||||||
|
})();
|
||||||
|
|
||||||
|
SysMsg.SystemMessageHeader = (function() {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Properties of a SystemMessageHeader.
|
||||||
|
* @memberof SysMsg
|
||||||
|
* @interface ISystemMessageHeader
|
||||||
|
* @property {number|null} [peerNumber] SystemMessageHeader peerNumber
|
||||||
|
* @property {string|null} [peerString] SystemMessageHeader peerString
|
||||||
|
* @property {number|null} [uin] SystemMessageHeader uin
|
||||||
|
* @property {string|null} [uid] SystemMessageHeader uid
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs a new SystemMessageHeader.
|
||||||
|
* @memberof SysMsg
|
||||||
|
* @classdesc Represents a SystemMessageHeader.
|
||||||
|
* @implements ISystemMessageHeader
|
||||||
|
* @constructor
|
||||||
|
* @param {SysMsg.ISystemMessageHeader=} [properties] Properties to set
|
||||||
|
*/
|
||||||
|
function SystemMessageHeader(properties) {
|
||||||
|
if (properties)
|
||||||
|
for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
|
||||||
|
if (properties[keys[i]] != null)
|
||||||
|
this[keys[i]] = properties[keys[i]];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* SystemMessageHeader peerNumber.
|
||||||
|
* @member {number} peerNumber
|
||||||
|
* @memberof SysMsg.SystemMessageHeader
|
||||||
|
* @instance
|
||||||
|
*/
|
||||||
|
SystemMessageHeader.prototype.peerNumber = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* SystemMessageHeader peerString.
|
||||||
|
* @member {string} peerString
|
||||||
|
* @memberof SysMsg.SystemMessageHeader
|
||||||
|
* @instance
|
||||||
|
*/
|
||||||
|
SystemMessageHeader.prototype.peerString = "";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* SystemMessageHeader uin.
|
||||||
|
* @member {number} uin
|
||||||
|
* @memberof SysMsg.SystemMessageHeader
|
||||||
|
* @instance
|
||||||
|
*/
|
||||||
|
SystemMessageHeader.prototype.uin = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* SystemMessageHeader uid.
|
||||||
|
* @member {string|null|undefined} uid
|
||||||
|
* @memberof SysMsg.SystemMessageHeader
|
||||||
|
* @instance
|
||||||
|
*/
|
||||||
|
SystemMessageHeader.prototype.uid = null;
|
||||||
|
|
||||||
|
// OneOf field names bound to virtual getters and setters
|
||||||
|
let $oneOfFields;
|
||||||
|
|
||||||
|
// Virtual OneOf for proto3 optional field
|
||||||
|
Object.defineProperty(SystemMessageHeader.prototype, "_uid", {
|
||||||
|
get: $util.oneOfGetter($oneOfFields = ["uid"]),
|
||||||
|
set: $util.oneOfSetter($oneOfFields)
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a SystemMessageHeader message from the specified reader or buffer.
|
||||||
|
* @function decode
|
||||||
|
* @memberof SysMsg.SystemMessageHeader
|
||||||
|
* @static
|
||||||
|
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
||||||
|
* @param {number} [length] Message length if known beforehand
|
||||||
|
* @returns {SysMsg.SystemMessageHeader} SystemMessageHeader
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
SystemMessageHeader.decode = function decode(reader, length) {
|
||||||
|
if (!(reader instanceof $Reader))
|
||||||
|
reader = $Reader.create(reader);
|
||||||
|
let end = length === undefined ? reader.len : reader.pos + length, message = new $root.SysMsg.SystemMessageHeader();
|
||||||
|
while (reader.pos < end) {
|
||||||
|
let tag = reader.uint32();
|
||||||
|
switch (tag >>> 3) {
|
||||||
|
case 1: {
|
||||||
|
message.peerNumber = reader.uint32();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 2: {
|
||||||
|
message.peerString = reader.string();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 5: {
|
||||||
|
message.uin = reader.uint32();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 6: {
|
||||||
|
message.uid = reader.string();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
reader.skipType(tag & 7);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return message;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a SystemMessageHeader message from the specified reader or buffer, length delimited.
|
||||||
|
* @function decodeDelimited
|
||||||
|
* @memberof SysMsg.SystemMessageHeader
|
||||||
|
* @static
|
||||||
|
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
||||||
|
* @returns {SysMsg.SystemMessageHeader} SystemMessageHeader
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
SystemMessageHeader.decodeDelimited = function decodeDelimited(reader) {
|
||||||
|
if (!(reader instanceof $Reader))
|
||||||
|
reader = new $Reader(reader);
|
||||||
|
return this.decode(reader, reader.uint32());
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the default type url for SystemMessageHeader
|
||||||
|
* @function getTypeUrl
|
||||||
|
* @memberof SysMsg.SystemMessageHeader
|
||||||
|
* @static
|
||||||
|
* @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
||||||
|
* @returns {string} The default type url
|
||||||
|
*/
|
||||||
|
SystemMessageHeader.getTypeUrl = function getTypeUrl(typeUrlPrefix) {
|
||||||
|
if (typeUrlPrefix === undefined) {
|
||||||
|
typeUrlPrefix = "type.googleapis.com";
|
||||||
|
}
|
||||||
|
return typeUrlPrefix + "/SysMsg.SystemMessageHeader";
|
||||||
|
};
|
||||||
|
|
||||||
|
return SystemMessageHeader;
|
||||||
|
})();
|
||||||
|
|
||||||
|
SysMsg.SystemMessageMsgSpec = (function() {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Properties of a SystemMessageMsgSpec.
|
||||||
|
* @memberof SysMsg
|
||||||
|
* @interface ISystemMessageMsgSpec
|
||||||
|
* @property {number|null} [msgType] SystemMessageMsgSpec msgType
|
||||||
|
* @property {number|null} [subType] SystemMessageMsgSpec subType
|
||||||
|
* @property {number|null} [subSubType] SystemMessageMsgSpec subSubType
|
||||||
|
* @property {number|null} [msgSeq] SystemMessageMsgSpec msgSeq
|
||||||
|
* @property {number|null} [time] SystemMessageMsgSpec time
|
||||||
|
* @property {number|null} [other] SystemMessageMsgSpec other
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs a new SystemMessageMsgSpec.
|
||||||
|
* @memberof SysMsg
|
||||||
|
* @classdesc Represents a SystemMessageMsgSpec.
|
||||||
|
* @implements ISystemMessageMsgSpec
|
||||||
|
* @constructor
|
||||||
|
* @param {SysMsg.ISystemMessageMsgSpec=} [properties] Properties to set
|
||||||
|
*/
|
||||||
|
function SystemMessageMsgSpec(properties) {
|
||||||
|
if (properties)
|
||||||
|
for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
|
||||||
|
if (properties[keys[i]] != null)
|
||||||
|
this[keys[i]] = properties[keys[i]];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* SystemMessageMsgSpec msgType.
|
||||||
|
* @member {number} msgType
|
||||||
|
* @memberof SysMsg.SystemMessageMsgSpec
|
||||||
|
* @instance
|
||||||
|
*/
|
||||||
|
SystemMessageMsgSpec.prototype.msgType = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* SystemMessageMsgSpec subType.
|
||||||
|
* @member {number} subType
|
||||||
|
* @memberof SysMsg.SystemMessageMsgSpec
|
||||||
|
* @instance
|
||||||
|
*/
|
||||||
|
SystemMessageMsgSpec.prototype.subType = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* SystemMessageMsgSpec subSubType.
|
||||||
|
* @member {number} subSubType
|
||||||
|
* @memberof SysMsg.SystemMessageMsgSpec
|
||||||
|
* @instance
|
||||||
|
*/
|
||||||
|
SystemMessageMsgSpec.prototype.subSubType = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* SystemMessageMsgSpec msgSeq.
|
||||||
|
* @member {number} msgSeq
|
||||||
|
* @memberof SysMsg.SystemMessageMsgSpec
|
||||||
|
* @instance
|
||||||
|
*/
|
||||||
|
SystemMessageMsgSpec.prototype.msgSeq = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* SystemMessageMsgSpec time.
|
||||||
|
* @member {number} time
|
||||||
|
* @memberof SysMsg.SystemMessageMsgSpec
|
||||||
|
* @instance
|
||||||
|
*/
|
||||||
|
SystemMessageMsgSpec.prototype.time = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* SystemMessageMsgSpec other.
|
||||||
|
* @member {number} other
|
||||||
|
* @memberof SysMsg.SystemMessageMsgSpec
|
||||||
|
* @instance
|
||||||
|
*/
|
||||||
|
SystemMessageMsgSpec.prototype.other = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a SystemMessageMsgSpec message from the specified reader or buffer.
|
||||||
|
* @function decode
|
||||||
|
* @memberof SysMsg.SystemMessageMsgSpec
|
||||||
|
* @static
|
||||||
|
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
||||||
|
* @param {number} [length] Message length if known beforehand
|
||||||
|
* @returns {SysMsg.SystemMessageMsgSpec} SystemMessageMsgSpec
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
SystemMessageMsgSpec.decode = function decode(reader, length) {
|
||||||
|
if (!(reader instanceof $Reader))
|
||||||
|
reader = $Reader.create(reader);
|
||||||
|
let end = length === undefined ? reader.len : reader.pos + length, message = new $root.SysMsg.SystemMessageMsgSpec();
|
||||||
|
while (reader.pos < end) {
|
||||||
|
let tag = reader.uint32();
|
||||||
|
switch (tag >>> 3) {
|
||||||
|
case 1: {
|
||||||
|
message.msgType = reader.uint32();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 2: {
|
||||||
|
message.subType = reader.uint32();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 3: {
|
||||||
|
message.subSubType = reader.uint32();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 5: {
|
||||||
|
message.msgSeq = reader.uint32();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 6: {
|
||||||
|
message.time = reader.uint32();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 13: {
|
||||||
|
message.other = reader.uint32();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
reader.skipType(tag & 7);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return message;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a SystemMessageMsgSpec message from the specified reader or buffer, length delimited.
|
||||||
|
* @function decodeDelimited
|
||||||
|
* @memberof SysMsg.SystemMessageMsgSpec
|
||||||
|
* @static
|
||||||
|
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
||||||
|
* @returns {SysMsg.SystemMessageMsgSpec} SystemMessageMsgSpec
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
SystemMessageMsgSpec.decodeDelimited = function decodeDelimited(reader) {
|
||||||
|
if (!(reader instanceof $Reader))
|
||||||
|
reader = new $Reader(reader);
|
||||||
|
return this.decode(reader, reader.uint32());
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the default type url for SystemMessageMsgSpec
|
||||||
|
* @function getTypeUrl
|
||||||
|
* @memberof SysMsg.SystemMessageMsgSpec
|
||||||
|
* @static
|
||||||
|
* @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
||||||
|
* @returns {string} The default type url
|
||||||
|
*/
|
||||||
|
SystemMessageMsgSpec.getTypeUrl = function getTypeUrl(typeUrlPrefix) {
|
||||||
|
if (typeUrlPrefix === undefined) {
|
||||||
|
typeUrlPrefix = "type.googleapis.com";
|
||||||
|
}
|
||||||
|
return typeUrlPrefix + "/SysMsg.SystemMessageMsgSpec";
|
||||||
|
};
|
||||||
|
|
||||||
|
return SystemMessageMsgSpec;
|
||||||
|
})();
|
||||||
|
|
||||||
|
SysMsg.SystemMessageBodyWrapper = (function() {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Properties of a SystemMessageBodyWrapper.
|
||||||
|
* @memberof SysMsg
|
||||||
|
* @interface ISystemMessageBodyWrapper
|
||||||
|
* @property {Uint8Array|null} [body] SystemMessageBodyWrapper body
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs a new SystemMessageBodyWrapper.
|
||||||
|
* @memberof SysMsg
|
||||||
|
* @classdesc Represents a SystemMessageBodyWrapper.
|
||||||
|
* @implements ISystemMessageBodyWrapper
|
||||||
|
* @constructor
|
||||||
|
* @param {SysMsg.ISystemMessageBodyWrapper=} [properties] Properties to set
|
||||||
|
*/
|
||||||
|
function SystemMessageBodyWrapper(properties) {
|
||||||
|
if (properties)
|
||||||
|
for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
|
||||||
|
if (properties[keys[i]] != null)
|
||||||
|
this[keys[i]] = properties[keys[i]];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* SystemMessageBodyWrapper body.
|
||||||
|
* @member {Uint8Array} body
|
||||||
|
* @memberof SysMsg.SystemMessageBodyWrapper
|
||||||
|
* @instance
|
||||||
|
*/
|
||||||
|
SystemMessageBodyWrapper.prototype.body = $util.newBuffer([]);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a SystemMessageBodyWrapper message from the specified reader or buffer.
|
||||||
|
* @function decode
|
||||||
|
* @memberof SysMsg.SystemMessageBodyWrapper
|
||||||
|
* @static
|
||||||
|
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
||||||
|
* @param {number} [length] Message length if known beforehand
|
||||||
|
* @returns {SysMsg.SystemMessageBodyWrapper} SystemMessageBodyWrapper
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
SystemMessageBodyWrapper.decode = function decode(reader, length) {
|
||||||
|
if (!(reader instanceof $Reader))
|
||||||
|
reader = $Reader.create(reader);
|
||||||
|
let end = length === undefined ? reader.len : reader.pos + length, message = new $root.SysMsg.SystemMessageBodyWrapper();
|
||||||
|
while (reader.pos < end) {
|
||||||
|
let tag = reader.uint32();
|
||||||
|
switch (tag >>> 3) {
|
||||||
|
case 2: {
|
||||||
|
message.body = reader.bytes();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
reader.skipType(tag & 7);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return message;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a SystemMessageBodyWrapper message from the specified reader or buffer, length delimited.
|
||||||
|
* @function decodeDelimited
|
||||||
|
* @memberof SysMsg.SystemMessageBodyWrapper
|
||||||
|
* @static
|
||||||
|
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
||||||
|
* @returns {SysMsg.SystemMessageBodyWrapper} SystemMessageBodyWrapper
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
SystemMessageBodyWrapper.decodeDelimited = function decodeDelimited(reader) {
|
||||||
|
if (!(reader instanceof $Reader))
|
||||||
|
reader = new $Reader(reader);
|
||||||
|
return this.decode(reader, reader.uint32());
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the default type url for SystemMessageBodyWrapper
|
||||||
|
* @function getTypeUrl
|
||||||
|
* @memberof SysMsg.SystemMessageBodyWrapper
|
||||||
|
* @static
|
||||||
|
* @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
||||||
|
* @returns {string} The default type url
|
||||||
|
*/
|
||||||
|
SystemMessageBodyWrapper.getTypeUrl = function getTypeUrl(typeUrlPrefix) {
|
||||||
|
if (typeUrlPrefix === undefined) {
|
||||||
|
typeUrlPrefix = "type.googleapis.com";
|
||||||
|
}
|
||||||
|
return typeUrlPrefix + "/SysMsg.SystemMessageBodyWrapper";
|
||||||
|
};
|
||||||
|
|
||||||
|
return SystemMessageBodyWrapper;
|
||||||
|
})();
|
||||||
|
|
||||||
|
SysMsg.LikeDetail = (function() {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Properties of a LikeDetail.
|
||||||
|
* @memberof SysMsg
|
||||||
|
* @interface ILikeDetail
|
||||||
|
* @property {string|null} [txt] LikeDetail txt
|
||||||
|
* @property {number|null} [uin] LikeDetail uin
|
||||||
|
* @property {string|null} [nickname] LikeDetail nickname
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs a new LikeDetail.
|
||||||
|
* @memberof SysMsg
|
||||||
|
* @classdesc Represents a LikeDetail.
|
||||||
|
* @implements ILikeDetail
|
||||||
|
* @constructor
|
||||||
|
* @param {SysMsg.ILikeDetail=} [properties] Properties to set
|
||||||
|
*/
|
||||||
|
function LikeDetail(properties) {
|
||||||
|
if (properties)
|
||||||
|
for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
|
||||||
|
if (properties[keys[i]] != null)
|
||||||
|
this[keys[i]] = properties[keys[i]];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* LikeDetail txt.
|
||||||
|
* @member {string} txt
|
||||||
|
* @memberof SysMsg.LikeDetail
|
||||||
|
* @instance
|
||||||
|
*/
|
||||||
|
LikeDetail.prototype.txt = "";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* LikeDetail uin.
|
||||||
|
* @member {number} uin
|
||||||
|
* @memberof SysMsg.LikeDetail
|
||||||
|
* @instance
|
||||||
|
*/
|
||||||
|
LikeDetail.prototype.uin = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* LikeDetail nickname.
|
||||||
|
* @member {string} nickname
|
||||||
|
* @memberof SysMsg.LikeDetail
|
||||||
|
* @instance
|
||||||
|
*/
|
||||||
|
LikeDetail.prototype.nickname = "";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a LikeDetail message from the specified reader or buffer.
|
||||||
|
* @function decode
|
||||||
|
* @memberof SysMsg.LikeDetail
|
||||||
|
* @static
|
||||||
|
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
||||||
|
* @param {number} [length] Message length if known beforehand
|
||||||
|
* @returns {SysMsg.LikeDetail} LikeDetail
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
LikeDetail.decode = function decode(reader, length) {
|
||||||
|
if (!(reader instanceof $Reader))
|
||||||
|
reader = $Reader.create(reader);
|
||||||
|
let end = length === undefined ? reader.len : reader.pos + length, message = new $root.SysMsg.LikeDetail();
|
||||||
|
while (reader.pos < end) {
|
||||||
|
let tag = reader.uint32();
|
||||||
|
switch (tag >>> 3) {
|
||||||
|
case 1: {
|
||||||
|
message.txt = reader.string();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 3: {
|
||||||
|
message.uin = reader.uint32();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 5: {
|
||||||
|
message.nickname = reader.string();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
reader.skipType(tag & 7);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return message;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a LikeDetail message from the specified reader or buffer, length delimited.
|
||||||
|
* @function decodeDelimited
|
||||||
|
* @memberof SysMsg.LikeDetail
|
||||||
|
* @static
|
||||||
|
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
||||||
|
* @returns {SysMsg.LikeDetail} LikeDetail
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
LikeDetail.decodeDelimited = function decodeDelimited(reader) {
|
||||||
|
if (!(reader instanceof $Reader))
|
||||||
|
reader = new $Reader(reader);
|
||||||
|
return this.decode(reader, reader.uint32());
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the default type url for LikeDetail
|
||||||
|
* @function getTypeUrl
|
||||||
|
* @memberof SysMsg.LikeDetail
|
||||||
|
* @static
|
||||||
|
* @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
||||||
|
* @returns {string} The default type url
|
||||||
|
*/
|
||||||
|
LikeDetail.getTypeUrl = function getTypeUrl(typeUrlPrefix) {
|
||||||
|
if (typeUrlPrefix === undefined) {
|
||||||
|
typeUrlPrefix = "type.googleapis.com";
|
||||||
|
}
|
||||||
|
return typeUrlPrefix + "/SysMsg.LikeDetail";
|
||||||
|
};
|
||||||
|
|
||||||
|
return LikeDetail;
|
||||||
|
})();
|
||||||
|
|
||||||
|
SysMsg.LikeMsg = (function() {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Properties of a LikeMsg.
|
||||||
|
* @memberof SysMsg
|
||||||
|
* @interface ILikeMsg
|
||||||
|
* @property {number|null} [count] LikeMsg count
|
||||||
|
* @property {number|null} [time] LikeMsg time
|
||||||
|
* @property {SysMsg.ILikeDetail|null} [detail] LikeMsg detail
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs a new LikeMsg.
|
||||||
|
* @memberof SysMsg
|
||||||
|
* @classdesc Represents a LikeMsg.
|
||||||
|
* @implements ILikeMsg
|
||||||
|
* @constructor
|
||||||
|
* @param {SysMsg.ILikeMsg=} [properties] Properties to set
|
||||||
|
*/
|
||||||
|
function LikeMsg(properties) {
|
||||||
|
if (properties)
|
||||||
|
for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
|
||||||
|
if (properties[keys[i]] != null)
|
||||||
|
this[keys[i]] = properties[keys[i]];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* LikeMsg count.
|
||||||
|
* @member {number} count
|
||||||
|
* @memberof SysMsg.LikeMsg
|
||||||
|
* @instance
|
||||||
|
*/
|
||||||
|
LikeMsg.prototype.count = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* LikeMsg time.
|
||||||
|
* @member {number} time
|
||||||
|
* @memberof SysMsg.LikeMsg
|
||||||
|
* @instance
|
||||||
|
*/
|
||||||
|
LikeMsg.prototype.time = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* LikeMsg detail.
|
||||||
|
* @member {SysMsg.ILikeDetail|null|undefined} detail
|
||||||
|
* @memberof SysMsg.LikeMsg
|
||||||
|
* @instance
|
||||||
|
*/
|
||||||
|
LikeMsg.prototype.detail = null;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a LikeMsg message from the specified reader or buffer.
|
||||||
|
* @function decode
|
||||||
|
* @memberof SysMsg.LikeMsg
|
||||||
|
* @static
|
||||||
|
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
||||||
|
* @param {number} [length] Message length if known beforehand
|
||||||
|
* @returns {SysMsg.LikeMsg} LikeMsg
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
LikeMsg.decode = function decode(reader, length) {
|
||||||
|
if (!(reader instanceof $Reader))
|
||||||
|
reader = $Reader.create(reader);
|
||||||
|
let end = length === undefined ? reader.len : reader.pos + length, message = new $root.SysMsg.LikeMsg();
|
||||||
|
while (reader.pos < end) {
|
||||||
|
let tag = reader.uint32();
|
||||||
|
switch (tag >>> 3) {
|
||||||
|
case 1: {
|
||||||
|
message.count = reader.uint32();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 2: {
|
||||||
|
message.time = reader.uint32();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 3: {
|
||||||
|
message.detail = $root.SysMsg.LikeDetail.decode(reader, reader.uint32());
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
reader.skipType(tag & 7);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return message;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a LikeMsg message from the specified reader or buffer, length delimited.
|
||||||
|
* @function decodeDelimited
|
||||||
|
* @memberof SysMsg.LikeMsg
|
||||||
|
* @static
|
||||||
|
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
||||||
|
* @returns {SysMsg.LikeMsg} LikeMsg
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
LikeMsg.decodeDelimited = function decodeDelimited(reader) {
|
||||||
|
if (!(reader instanceof $Reader))
|
||||||
|
reader = new $Reader(reader);
|
||||||
|
return this.decode(reader, reader.uint32());
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the default type url for LikeMsg
|
||||||
|
* @function getTypeUrl
|
||||||
|
* @memberof SysMsg.LikeMsg
|
||||||
|
* @static
|
||||||
|
* @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
||||||
|
* @returns {string} The default type url
|
||||||
|
*/
|
||||||
|
LikeMsg.getTypeUrl = function getTypeUrl(typeUrlPrefix) {
|
||||||
|
if (typeUrlPrefix === undefined) {
|
||||||
|
typeUrlPrefix = "type.googleapis.com";
|
||||||
|
}
|
||||||
|
return typeUrlPrefix + "/SysMsg.LikeMsg";
|
||||||
|
};
|
||||||
|
|
||||||
|
return LikeMsg;
|
||||||
|
})();
|
||||||
|
|
||||||
|
SysMsg.ProfileLikeTip = (function() {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Properties of a ProfileLikeTip.
|
||||||
|
* @memberof SysMsg
|
||||||
|
* @interface IProfileLikeTip
|
||||||
|
* @property {SysMsg.ILikeMsg|null} [msg] ProfileLikeTip msg
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs a new ProfileLikeTip.
|
||||||
|
* @memberof SysMsg
|
||||||
|
* @classdesc Represents a ProfileLikeTip.
|
||||||
|
* @implements IProfileLikeTip
|
||||||
|
* @constructor
|
||||||
|
* @param {SysMsg.IProfileLikeTip=} [properties] Properties to set
|
||||||
|
*/
|
||||||
|
function ProfileLikeTip(properties) {
|
||||||
|
if (properties)
|
||||||
|
for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
|
||||||
|
if (properties[keys[i]] != null)
|
||||||
|
this[keys[i]] = properties[keys[i]];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ProfileLikeTip msg.
|
||||||
|
* @member {SysMsg.ILikeMsg|null|undefined} msg
|
||||||
|
* @memberof SysMsg.ProfileLikeTip
|
||||||
|
* @instance
|
||||||
|
*/
|
||||||
|
ProfileLikeTip.prototype.msg = null;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a ProfileLikeTip message from the specified reader or buffer.
|
||||||
|
* @function decode
|
||||||
|
* @memberof SysMsg.ProfileLikeTip
|
||||||
|
* @static
|
||||||
|
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
||||||
|
* @param {number} [length] Message length if known beforehand
|
||||||
|
* @returns {SysMsg.ProfileLikeTip} ProfileLikeTip
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
ProfileLikeTip.decode = function decode(reader, length) {
|
||||||
|
if (!(reader instanceof $Reader))
|
||||||
|
reader = $Reader.create(reader);
|
||||||
|
let end = length === undefined ? reader.len : reader.pos + length, message = new $root.SysMsg.ProfileLikeTip();
|
||||||
|
while (reader.pos < end) {
|
||||||
|
let tag = reader.uint32();
|
||||||
|
switch (tag >>> 3) {
|
||||||
|
case 14: {
|
||||||
|
message.msg = $root.SysMsg.LikeMsg.decode(reader, reader.uint32());
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
reader.skipType(tag & 7);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return message;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes a ProfileLikeTip message from the specified reader or buffer, length delimited.
|
||||||
|
* @function decodeDelimited
|
||||||
|
* @memberof SysMsg.ProfileLikeTip
|
||||||
|
* @static
|
||||||
|
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
||||||
|
* @returns {SysMsg.ProfileLikeTip} ProfileLikeTip
|
||||||
|
* @throws {Error} If the payload is not a reader or valid buffer
|
||||||
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||||
|
*/
|
||||||
|
ProfileLikeTip.decodeDelimited = function decodeDelimited(reader) {
|
||||||
|
if (!(reader instanceof $Reader))
|
||||||
|
reader = new $Reader(reader);
|
||||||
|
return this.decode(reader, reader.uint32());
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the default type url for ProfileLikeTip
|
||||||
|
* @function getTypeUrl
|
||||||
|
* @memberof SysMsg.ProfileLikeTip
|
||||||
|
* @static
|
||||||
|
* @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
||||||
|
* @returns {string} The default type url
|
||||||
|
*/
|
||||||
|
ProfileLikeTip.getTypeUrl = function getTypeUrl(typeUrlPrefix) {
|
||||||
|
if (typeUrlPrefix === undefined) {
|
||||||
|
typeUrlPrefix = "type.googleapis.com";
|
||||||
|
}
|
||||||
|
return typeUrlPrefix + "/SysMsg.ProfileLikeTip";
|
||||||
|
};
|
||||||
|
|
||||||
|
return ProfileLikeTip;
|
||||||
|
})();
|
||||||
|
|
||||||
|
return SysMsg;
|
||||||
|
})();
|
||||||
|
|
||||||
|
export { $root as default };
|
18
src/ntqqapi/proto/profileLikeTip.proto
Normal file
18
src/ntqqapi/proto/profileLikeTip.proto
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
syntax = "proto3";
|
||||||
|
package SysMsg;
|
||||||
|
|
||||||
|
message LikeDetail {
|
||||||
|
string txt = 1;
|
||||||
|
uint32 uin = 3;
|
||||||
|
string nickname = 5;
|
||||||
|
}
|
||||||
|
|
||||||
|
message LikeMsg {
|
||||||
|
uint32 count = 1;
|
||||||
|
uint32 time = 2;
|
||||||
|
LikeDetail detail = 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
message ProfileLikeTip {
|
||||||
|
LikeMsg msg = 14;
|
||||||
|
}
|
30
src/ntqqapi/proto/systemMessage.proto
Normal file
30
src/ntqqapi/proto/systemMessage.proto
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
syntax = "proto3";
|
||||||
|
package SysMsg;
|
||||||
|
|
||||||
|
message SystemMessage {
|
||||||
|
repeated SystemMessageHeader header = 1;
|
||||||
|
repeated SystemMessageMsgSpec msgSpec = 2;
|
||||||
|
SystemMessageBodyWrapper bodyWrapper = 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
message SystemMessageHeader {
|
||||||
|
uint32 peerNumber = 1;
|
||||||
|
string peerString = 2;
|
||||||
|
uint32 uin = 5;
|
||||||
|
optional string uid = 6;
|
||||||
|
}
|
||||||
|
|
||||||
|
message SystemMessageMsgSpec {
|
||||||
|
uint32 msgType = 1;
|
||||||
|
uint32 subType = 2;
|
||||||
|
uint32 subSubType = 3;
|
||||||
|
uint32 msgSeq = 5;
|
||||||
|
uint32 time = 6;
|
||||||
|
//uint64 msgId = 12;
|
||||||
|
uint32 other = 13;
|
||||||
|
}
|
||||||
|
|
||||||
|
message SystemMessageBodyWrapper {
|
||||||
|
bytes body = 2;
|
||||||
|
// Find the first [08], or ignore the first 7 bytes?
|
||||||
|
}
|
@@ -45,7 +45,7 @@ export interface NodeIKernelGroupService {
|
|||||||
errMsg: string,
|
errMsg: string,
|
||||||
uids: Map<string, string>
|
uids: Map<string, string>
|
||||||
}>
|
}>
|
||||||
|
|
||||||
//26702(其实更早 但是我不知道)
|
//26702(其实更早 但是我不知道)
|
||||||
checkGroupMemberCache(arrayList: Array<string>): Promise<unknown>
|
checkGroupMemberCache(arrayList: Array<string>): Promise<unknown>
|
||||||
|
|
||||||
@@ -202,11 +202,12 @@ export interface NodeIKernelGroupService {
|
|||||||
|
|
||||||
publishInstructionForNewcomers(groupCode: string, arg: unknown): void
|
publishInstructionForNewcomers(groupCode: string, arg: unknown): void
|
||||||
|
|
||||||
uploadGroupBulletinPic(groupCode: string, pskey: string, imagePath: string): Promise<GeneralCallResult & {
|
uploadGroupBulletinPic(groupCode: string, pskey: string, imagePath: string): Promise<{
|
||||||
errCode: number
|
errCode: number
|
||||||
|
errMsg: string
|
||||||
picInfo?: {
|
picInfo?: {
|
||||||
id: string,
|
id: string
|
||||||
width: number,
|
width: number
|
||||||
height: number
|
height: number
|
||||||
}
|
}
|
||||||
}>
|
}>
|
||||||
|
@@ -1,5 +1,6 @@
|
|||||||
import { BuddyProfileLikeReq } from '../types'
|
import { BuddyProfileLikeReq } from '../types'
|
||||||
import { GeneralCallResult } from './common'
|
import { GeneralCallResult } from './common'
|
||||||
|
import { Dict } from 'cosmokit'
|
||||||
|
|
||||||
export interface NodeIKernelProfileLikeService {
|
export interface NodeIKernelProfileLikeService {
|
||||||
addKernelProfileLikeListener(listener: NodeIKernelProfileLikeService): void
|
addKernelProfileLikeListener(listener: NodeIKernelProfileLikeService): void
|
||||||
@@ -10,8 +11,18 @@ export interface NodeIKernelProfileLikeService {
|
|||||||
|
|
||||||
getBuddyProfileLike(req: BuddyProfileLikeReq): Promise<GeneralCallResult & {
|
getBuddyProfileLike(req: BuddyProfileLikeReq): Promise<GeneralCallResult & {
|
||||||
info: {
|
info: {
|
||||||
userLikeInfos: Array<unknown>,
|
userLikeInfos: {
|
||||||
friendMaxVotes: number,
|
uid: string
|
||||||
|
time: string
|
||||||
|
favoriteInfo: {
|
||||||
|
total_count: number
|
||||||
|
last_time: number
|
||||||
|
today_count: number
|
||||||
|
userInfos: Dict[]
|
||||||
|
}
|
||||||
|
voteInfo: Dict
|
||||||
|
}[]
|
||||||
|
friendMaxVotes: number
|
||||||
start: number
|
start: number
|
||||||
}
|
}
|
||||||
}>
|
}>
|
||||||
|
@@ -65,3 +65,15 @@ export interface GroupMember {
|
|||||||
joinTime: string
|
joinTime: string
|
||||||
lastSpeakTime: string
|
lastSpeakTime: string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface PublishGroupBulletinReq {
|
||||||
|
text: string
|
||||||
|
picInfo?: {
|
||||||
|
id: string
|
||||||
|
width: number
|
||||||
|
height: number
|
||||||
|
}
|
||||||
|
oldFeedsId: ''
|
||||||
|
pinned: number
|
||||||
|
confirmRequired: number
|
||||||
|
}
|
@@ -282,9 +282,23 @@ export interface PicElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export enum GrayTipElementSubType {
|
export enum GrayTipElementSubType {
|
||||||
RECALL = 1,
|
REVOKE = 1,
|
||||||
INVITE_NEW_MEMBER = 12,
|
PROCLAMATION = 2,
|
||||||
MEMBER_NEW_TITLE = 17,
|
EMOJIREPLY = 3,
|
||||||
|
GROUP = 4,
|
||||||
|
BUDDY = 5,
|
||||||
|
FEED = 6,
|
||||||
|
ESSENCE = 7,
|
||||||
|
GROUPNOTIFY = 8,
|
||||||
|
BUDDYNOTIFY = 9,
|
||||||
|
FILE = 10,
|
||||||
|
FEEDCHANNELMSG = 11,
|
||||||
|
XMLMSG = 12,
|
||||||
|
LOCALMSG = 13,
|
||||||
|
BLOCK = 14,
|
||||||
|
AIOOP = 15,
|
||||||
|
WALLET = 16,
|
||||||
|
JSON = 17,
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface GrayTipElement {
|
export interface GrayTipElement {
|
||||||
@@ -541,4 +555,4 @@ export interface MessageElement {
|
|||||||
taskTopMsgElement?: unknown
|
taskTopMsgElement?: unknown
|
||||||
recommendedMsgElement?: unknown
|
recommendedMsgElement?: unknown
|
||||||
actionBarElement?: unknown
|
actionBarElement?: unknown
|
||||||
}
|
}
|
||||||
|
@@ -78,4 +78,4 @@ Process.dlopen = function (module: Dict, filename: string, flags = constants.dlo
|
|||||||
|
|
||||||
export function getSession() {
|
export function getSession() {
|
||||||
return wrapperApi['NodeIQQNTWrapperSession']
|
return wrapperApi['NodeIQQNTWrapperSession']
|
||||||
}
|
}
|
||||||
|
@@ -3,6 +3,7 @@ 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 { MessageUnique } from '@/common/utils/messageUnique'
|
||||||
|
import { filterNullable } from '@/common/utils/misc'
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
message_id: string // long msg id,gocq
|
message_id: string // long msg id,gocq
|
||||||
@@ -33,19 +34,21 @@ export class GetForwardMsg extends BaseAction<Payload, Response> {
|
|||||||
const messages = await Promise.all(
|
const messages = await Promise.all(
|
||||||
msgList.map(async (msg) => {
|
msgList.map(async (msg) => {
|
||||||
const resMsg = await OB11Entities.message(this.ctx, msg)
|
const resMsg = await OB11Entities.message(this.ctx, msg)
|
||||||
|
if (!resMsg) return
|
||||||
resMsg.message_id = MessageUnique.createMsg({
|
resMsg.message_id = MessageUnique.createMsg({
|
||||||
chatType: msg.chatType,
|
chatType: msg.chatType,
|
||||||
peerUid: msg.peerUid,
|
peerUid: msg.peerUid,
|
||||||
}, msg.msgId)
|
}, msg.msgId)
|
||||||
return resMsg
|
return resMsg
|
||||||
}),
|
})
|
||||||
)
|
)
|
||||||
const forwardMessages = messages.map(v => {
|
const forwardMessages = filterNullable(messages)
|
||||||
const msg = v as Partial<OB11ForwardMessage>
|
.map(v => {
|
||||||
msg.content = msg.message
|
const msg = v as Partial<OB11ForwardMessage>
|
||||||
delete msg.message
|
msg.content = msg.message
|
||||||
return msg as OB11ForwardMessage
|
delete msg.message
|
||||||
})
|
return msg as OB11ForwardMessage
|
||||||
|
})
|
||||||
return { messages: forwardMessages }
|
return { messages: forwardMessages }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -5,6 +5,7 @@ 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 { MessageUnique } from '@/common/utils/messageUnique'
|
||||||
|
import { filterNullable } from '@/common/utils/misc'
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
group_id: number | string
|
group_id: number | string
|
||||||
@@ -41,6 +42,6 @@ export class GetGroupMsgHistory extends BaseAction<Payload, Response> {
|
|||||||
})
|
})
|
||||||
)
|
)
|
||||||
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: ob11MsgList }
|
return { messages: filterNullable(ob11MsgList) }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,14 +1,23 @@
|
|||||||
import BaseAction from '../BaseAction'
|
import BaseAction from '../BaseAction'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
|
import { MessageUnique } from '@/common/utils/messageUnique'
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
message_id: number
|
message_id: number | string
|
||||||
}
|
}
|
||||||
|
|
||||||
export class MarkMsgAsRead extends BaseAction<Payload, null> {
|
export class MarkMsgAsRead extends BaseAction<Payload, null> {
|
||||||
actionName = ActionName.GoCQHTTP_MarkMsgAsRead
|
actionName = ActionName.GoCQHTTP_MarkMsgAsRead
|
||||||
|
|
||||||
protected async _handle() {
|
protected async _handle(payload: Payload) {
|
||||||
|
if (!payload.message_id) {
|
||||||
|
throw new Error('参数 message_id 不能为空')
|
||||||
|
}
|
||||||
|
const msg = await MessageUnique.getMsgIdAndPeerByShortId(+payload.message_id)
|
||||||
|
if (!msg) {
|
||||||
|
throw new Error('msg not found')
|
||||||
|
}
|
||||||
|
await this.ctx.ntMsgApi.setMsgRead(msg.Peer)
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
import BaseAction from '../BaseAction'
|
import BaseAction from '../BaseAction'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
|
import { unlink } from 'fs/promises'
|
||||||
|
import { checkFileReceived, uri2local } from '@/common/utils/file'
|
||||||
|
|
||||||
interface Payload {
|
interface Payload {
|
||||||
group_id: number | string
|
group_id: number | string
|
||||||
@@ -13,24 +15,39 @@ export class SendGroupNotice extends BaseAction<Payload, null> {
|
|||||||
actionName = ActionName.GoCQHTTP_SendGroupNotice
|
actionName = ActionName.GoCQHTTP_SendGroupNotice
|
||||||
|
|
||||||
async _handle(payload: Payload) {
|
async _handle(payload: Payload) {
|
||||||
const type = 1
|
if(!payload.content){
|
||||||
const isShowEditCard = 0
|
throw new Error('参数 content 不能为空')
|
||||||
const tipWindowType = 0
|
}
|
||||||
|
const groupCode = payload.group_id.toString()
|
||||||
const pinned = Number(payload.pinned ?? 0)
|
const pinned = Number(payload.pinned ?? 0)
|
||||||
const confirmRequired = Number(payload.confirm_required ?? 1)
|
const confirmRequired = Number(payload.confirm_required ?? 1)
|
||||||
|
|
||||||
const result = await this.ctx.ntWebApi.setGroupNotice({
|
let picInfo: { id: string, width: number, height: number } | undefined
|
||||||
groupCode: payload.group_id.toString(),
|
if (payload.image) {
|
||||||
content: payload.content,
|
const { path, isLocal, success, errMsg } = await uri2local(payload.image, undefined, true)
|
||||||
|
if (!success) {
|
||||||
|
throw new Error(`设置群公告失败, 错误信息: uri2local: ${errMsg}`)
|
||||||
|
}
|
||||||
|
await checkFileReceived(path, 5000) // 文件不存在QQ会崩溃,需要提前判断
|
||||||
|
const result = await this.ctx.ntGroupApi.uploadGroupBulletinPic(groupCode, path)
|
||||||
|
if (result.errCode !== 0) {
|
||||||
|
throw new Error(`设置群公告失败, 错误信息: uploadGroupBulletinPic: ${result.errMsg}`)
|
||||||
|
}
|
||||||
|
if (!isLocal) {
|
||||||
|
unlink(path)
|
||||||
|
}
|
||||||
|
picInfo = result.picInfo
|
||||||
|
}
|
||||||
|
|
||||||
|
const res = await this.ctx.ntGroupApi.publishGroupBulletin(groupCode, {
|
||||||
|
text: encodeURIComponent(payload.content),
|
||||||
|
oldFeedsId: '',
|
||||||
pinned,
|
pinned,
|
||||||
type,
|
|
||||||
isShowEditCard,
|
|
||||||
tipWindowType,
|
|
||||||
confirmRequired,
|
confirmRequired,
|
||||||
picId: ''
|
picInfo
|
||||||
})
|
})
|
||||||
if (result.ec !== 0) {
|
if (res.result !== 0) {
|
||||||
throw new Error(`设置群公告失败, 错误信息: ${result.em}`)
|
throw new Error(`设置群公告失败, 错误信息: ${res.errMsg}`)
|
||||||
}
|
}
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
@@ -1,8 +1,6 @@
|
|||||||
import fs from 'node:fs'
|
|
||||||
import BaseAction from '../BaseAction'
|
import BaseAction from '../BaseAction'
|
||||||
import { ActionName } from '../types'
|
import { ActionName } from '../types'
|
||||||
import { SendElementEntities } from '@/ntqqapi/entities'
|
import { SendElementEntities } from '@/ntqqapi/entities'
|
||||||
import { SendFileElement } from '@/ntqqapi/types'
|
|
||||||
import { uri2local } from '@/common/utils'
|
import { uri2local } from '@/common/utils'
|
||||||
import { sendMsg, createPeer, CreatePeerMode } from '../../helper/createMessage'
|
import { sendMsg, createPeer, CreatePeerMode } from '../../helper/createMessage'
|
||||||
|
|
||||||
@@ -18,17 +16,13 @@ export class UploadGroupFile extends BaseAction<UploadGroupFilePayload, null> {
|
|||||||
actionName = ActionName.GoCQHTTP_UploadGroupFile
|
actionName = ActionName.GoCQHTTP_UploadGroupFile
|
||||||
|
|
||||||
protected async _handle(payload: UploadGroupFilePayload): Promise<null> {
|
protected async _handle(payload: UploadGroupFilePayload): Promise<null> {
|
||||||
let file = payload.file
|
const { success, errMsg, path, fileName } = await uri2local(payload.file)
|
||||||
if (fs.existsSync(file)) {
|
if (!success) {
|
||||||
file = `file://${file}`
|
throw new Error(errMsg)
|
||||||
}
|
}
|
||||||
const downloadResult = await uri2local(file)
|
const file = await SendElementEntities.file(this.ctx, path, payload.name || fileName, payload.folder ?? payload.folder_id)
|
||||||
if (!downloadResult.success) {
|
|
||||||
throw new Error(downloadResult.errMsg)
|
|
||||||
}
|
|
||||||
const sendFileEle = await SendElementEntities.file(this.ctx, downloadResult.path, payload.name, payload.folder_id)
|
|
||||||
const peer = await createPeer(this.ctx, payload, CreatePeerMode.Group)
|
const peer = await createPeer(this.ctx, payload, CreatePeerMode.Group)
|
||||||
await sendMsg(this.ctx, peer, [sendFileEle], [])
|
await sendMsg(this.ctx, peer, [file], [])
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -43,16 +37,12 @@ export class UploadPrivateFile extends BaseAction<UploadPrivateFilePayload, null
|
|||||||
actionName = ActionName.GoCQHTTP_UploadPrivateFile
|
actionName = ActionName.GoCQHTTP_UploadPrivateFile
|
||||||
|
|
||||||
protected async _handle(payload: UploadPrivateFilePayload): Promise<null> {
|
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)
|
const peer = await createPeer(this.ctx, payload, CreatePeerMode.Private)
|
||||||
let file = payload.file
|
|
||||||
if (fs.existsSync(file)) {
|
|
||||||
file = `file://${file}`
|
|
||||||
}
|
|
||||||
const downloadResult = await uri2local(file)
|
|
||||||
if (!downloadResult.success) {
|
|
||||||
throw new Error(downloadResult.errMsg)
|
|
||||||
}
|
|
||||||
const sendFileEle: SendFileElement = await SendElementEntities.file(this.ctx, downloadResult.path, payload.name)
|
|
||||||
await sendMsg(this.ctx, peer, [sendFileEle], [])
|
await sendMsg(this.ctx, peer, [sendFileEle], [])
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
@@ -62,6 +62,7 @@ import { GetGroupAtAllRemain } from './go-cqhttp/GetGroupAtAllRemain'
|
|||||||
import { GetGroupRootFiles } from './go-cqhttp/GetGroupRootFiles'
|
import { GetGroupRootFiles } from './go-cqhttp/GetGroupRootFiles'
|
||||||
import { SetOnlineStatus } from './llonebot/SetOnlineStatus'
|
import { SetOnlineStatus } from './llonebot/SetOnlineStatus'
|
||||||
import { SendGroupNotice } from './go-cqhttp/SendGroupNotice'
|
import { SendGroupNotice } from './go-cqhttp/SendGroupNotice'
|
||||||
|
import { GetProfileLike } from './llonebot/GetProfileLike'
|
||||||
|
|
||||||
export function initActionMap(adapter: Adapter) {
|
export function initActionMap(adapter: Adapter) {
|
||||||
const actionHandlers = [
|
const actionHandlers = [
|
||||||
@@ -74,6 +75,7 @@ export function initActionMap(adapter: Adapter) {
|
|||||||
new GetFriendWithCategory(adapter),
|
new GetFriendWithCategory(adapter),
|
||||||
new GetEvent(adapter),
|
new GetEvent(adapter),
|
||||||
new SetOnlineStatus(adapter),
|
new SetOnlineStatus(adapter),
|
||||||
|
new GetProfileLike(adapter),
|
||||||
// onebot11
|
// onebot11
|
||||||
new SendLike(adapter),
|
new SendLike(adapter),
|
||||||
new GetMsg(adapter),
|
new GetMsg(adapter),
|
||||||
|
17
src/onebot11/action/llonebot/GetProfileLike.ts
Normal file
17
src/onebot11/action/llonebot/GetProfileLike.ts
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
import BaseAction from '../BaseAction'
|
||||||
|
import { ActionName } from '../types'
|
||||||
|
import { selfInfo } from '@/common/globalVars'
|
||||||
|
import { Dict } from 'cosmokit'
|
||||||
|
|
||||||
|
export class GetProfileLike extends BaseAction<void, Dict[]> {
|
||||||
|
actionName = ActionName.GetProfileLike
|
||||||
|
|
||||||
|
async _handle() {
|
||||||
|
const ret = await this.ctx.ntUserApi.getProfileLike(selfInfo.uid)
|
||||||
|
const listdata = ret.info.userLikeInfos[0].favoriteInfo.userInfos
|
||||||
|
for (const item of listdata) {
|
||||||
|
item.uin = Number(await this.ctx.ntUserApi.getUinByUid(item.uid)) || 0
|
||||||
|
}
|
||||||
|
return listdata
|
||||||
|
}
|
||||||
|
}
|
@@ -15,12 +15,12 @@ class GetMsg extends BaseAction<PayloadType, OB11Message> {
|
|||||||
|
|
||||||
protected async _handle(payload: PayloadType) {
|
protected async _handle(payload: PayloadType) {
|
||||||
if (!payload.message_id) {
|
if (!payload.message_id) {
|
||||||
throw '参数message_id不能为空'
|
throw new Error('参数message_id不能为空')
|
||||||
}
|
}
|
||||||
const msgShortId = MessageUnique.getShortIdByMsgId(payload.message_id.toString())
|
const msgShortId = MessageUnique.getShortIdByMsgId(payload.message_id.toString())
|
||||||
const msgIdWithPeer = await MessageUnique.getMsgIdAndPeerByShortId(msgShortId || +payload.message_id)
|
const msgIdWithPeer = await MessageUnique.getMsgIdAndPeerByShortId(msgShortId || +payload.message_id)
|
||||||
if (!msgIdWithPeer) {
|
if (!msgIdWithPeer) {
|
||||||
throw ('消息不存在')
|
throw new Error('消息不存在')
|
||||||
}
|
}
|
||||||
const peer = {
|
const peer = {
|
||||||
guildId: '',
|
guildId: '',
|
||||||
@@ -29,6 +29,9 @@ class GetMsg extends BaseAction<PayloadType, OB11Message> {
|
|||||||
}
|
}
|
||||||
const msg = this.adapter.getMsgCache(msgIdWithPeer.MsgId) ?? (await this.ctx.ntMsgApi.getMsgsByMsgId(peer, [msgIdWithPeer.MsgId])).msgList[0]
|
const msg = this.adapter.getMsgCache(msgIdWithPeer.MsgId) ?? (await this.ctx.ntMsgApi.getMsgsByMsgId(peer, [msgIdWithPeer.MsgId])).msgList[0]
|
||||||
const retMsg = await OB11Entities.message(this.ctx, msg)
|
const retMsg = await OB11Entities.message(this.ctx, msg)
|
||||||
|
if (!retMsg) {
|
||||||
|
throw new Error('消息为空')
|
||||||
|
}
|
||||||
retMsg.message_id = MessageUnique.createMsg(peer, msg.msgId)!
|
retMsg.message_id = MessageUnique.createMsg(peer, msg.msgId)!
|
||||||
retMsg.message_seq = retMsg.message_id
|
retMsg.message_seq = retMsg.message_id
|
||||||
retMsg.real_id = retMsg.message_id
|
retMsg.real_id = retMsg.message_id
|
||||||
|
@@ -20,6 +20,7 @@ export enum ActionName {
|
|||||||
GetFriendsWithCategory = 'get_friends_with_category',
|
GetFriendsWithCategory = 'get_friends_with_category',
|
||||||
GetEvent = 'get_event',
|
GetEvent = 'get_event',
|
||||||
SetOnlineStatus = 'set_online_status',
|
SetOnlineStatus = 'set_online_status',
|
||||||
|
GetProfileLike = 'get_profile_like',
|
||||||
// onebot 11
|
// onebot 11
|
||||||
SendLike = 'send_like',
|
SendLike = 'send_like',
|
||||||
GetLoginInfo = 'get_login_info',
|
GetLoginInfo = 'get_login_info',
|
||||||
@@ -65,9 +66,9 @@ 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_GetEssenceMsg = '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',
|
||||||
GoCQHTTP_DelEssenceMsg = 'delete_essence_msg',
|
GoCQHTTP_DelEssenceMsg = 'delete_essence_msg',
|
||||||
GoCQHTTP_DelGroupFile = 'delete_group_file',
|
GoCQHTTP_DelGroupFile = 'delete_group_file',
|
||||||
|
@@ -27,6 +27,8 @@ import { initActionMap } from './action'
|
|||||||
import { llonebotError } from '../common/globalVars'
|
import { llonebotError } from '../common/globalVars'
|
||||||
import { OB11GroupCardEvent } from './event/notice/OB11GroupCardEvent'
|
import { OB11GroupCardEvent } from './event/notice/OB11GroupCardEvent'
|
||||||
import { OB11GroupAdminNoticeEvent } from './event/notice/OB11GroupAdminNoticeEvent'
|
import { OB11GroupAdminNoticeEvent } from './event/notice/OB11GroupAdminNoticeEvent'
|
||||||
|
import { OB11ProfileLikeEvent } from './event/notice/OB11ProfileLikeEvent'
|
||||||
|
import { SysMsg } from '@/ntqqapi/proto/compiled'
|
||||||
|
|
||||||
declare module 'cordis' {
|
declare module 'cordis' {
|
||||||
interface Context {
|
interface Context {
|
||||||
@@ -193,6 +195,9 @@ class OneBot11Adapter extends Service {
|
|||||||
|
|
||||||
OB11Entities.message(this.ctx, message)
|
OB11Entities.message(this.ctx, message)
|
||||||
.then((msg) => {
|
.then((msg) => {
|
||||||
|
if (!msg) {
|
||||||
|
return
|
||||||
|
}
|
||||||
if (!this.config.debug && msg.message.length === 0) {
|
if (!this.config.debug && msg.message.length === 0) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -410,6 +415,18 @@ class OneBot11Adapter extends Service {
|
|||||||
this.ctx.on('nt/group-member-info-updated', input => {
|
this.ctx.on('nt/group-member-info-updated', input => {
|
||||||
this.handleGroupMemberInfoUpdated(input.groupCode, input.members)
|
this.handleGroupMemberInfoUpdated(input.groupCode, input.members)
|
||||||
})
|
})
|
||||||
|
this.ctx.on('nt/system-message-created', input => {
|
||||||
|
const sysMsg = SysMsg.SystemMessage.decode(input)
|
||||||
|
const { msgType, subType, subSubType } = sysMsg.msgSpec[0] ?? {}
|
||||||
|
if (msgType === 528 && subType === 39 && subSubType === 39) {
|
||||||
|
const tip = SysMsg.ProfileLikeTip.decode(sysMsg.bodyWrapper!.body!.slice(12))
|
||||||
|
const detail = tip.msg?.detail
|
||||||
|
if (!detail) return
|
||||||
|
const [times] = detail.txt?.match(/\d+/) ?? ['0']
|
||||||
|
const profileLikeEvent = new OB11ProfileLikeEvent(detail.uin!, detail.nickname!, +times)
|
||||||
|
this.dispatch(profileLikeEvent)
|
||||||
|
}
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -426,4 +443,4 @@ namespace OneBot11Adapter {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default OneBot11Adapter
|
export default OneBot11Adapter
|
||||||
|
@@ -49,7 +49,8 @@ import { pathToFileURL } from 'node:url'
|
|||||||
import OneBot11Adapter from './adapter'
|
import OneBot11Adapter from './adapter'
|
||||||
|
|
||||||
export namespace OB11Entities {
|
export namespace OB11Entities {
|
||||||
export async function message(ctx: Context, msg: RawMessage): Promise<OB11Message> {
|
export async function message(ctx: Context, msg: RawMessage): Promise<OB11Message | undefined> {
|
||||||
|
if (!msg.senderUin || msg.senderUin === '0') return //跳过空消息
|
||||||
const {
|
const {
|
||||||
debug,
|
debug,
|
||||||
messagePostFormat,
|
messagePostFormat,
|
||||||
@@ -57,14 +58,14 @@ export namespace OB11Entities {
|
|||||||
const selfUin = selfInfo.uin
|
const selfUin = selfInfo.uin
|
||||||
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: msg.msgShortId!,
|
||||||
real_id: msg.msgShortId!,
|
real_id: msg.msgShortId!,
|
||||||
message_seq: msg.msgShortId!,
|
message_seq: msg.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,
|
||||||
card: msg.sendMemberName ?? '',
|
card: msg.sendMemberName ?? '',
|
||||||
},
|
},
|
||||||
@@ -81,7 +82,7 @@ export namespace OB11Entities {
|
|||||||
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)
|
||||||
if (member) {
|
if (member) {
|
||||||
resMsg.sender.role = groupMemberRole(member.role)
|
resMsg.sender.role = groupMemberRole(member.role)
|
||||||
resMsg.sender.nickname = member.nick
|
resMsg.sender.nickname = member.nick
|
||||||
@@ -373,11 +374,10 @@ export namespace OB11Entities {
|
|||||||
}
|
}
|
||||||
for (const element of msg.elements) {
|
for (const element of msg.elements) {
|
||||||
if (element.grayTipElement) {
|
if (element.grayTipElement) {
|
||||||
if (element.grayTipElement.subElementType == GrayTipElementSubType.MEMBER_NEW_TITLE) {
|
const { grayTipElement } = element
|
||||||
const json = JSON.parse(element.grayTipElement.jsonGrayTipElement.jsonStr)
|
if (grayTipElement.subElementType === GrayTipElementSubType.JSON) {
|
||||||
if (element.grayTipElement.jsonGrayTipElement.busiId == 1061) {
|
const json = JSON.parse(grayTipElement.jsonGrayTipElement.jsonStr)
|
||||||
//判断业务类型
|
if (grayTipElement.jsonGrayTipElement.busiId === 1061) {
|
||||||
//Poke事件
|
|
||||||
const pokedetail: Dict[] = json.items
|
const pokedetail: Dict[] = json.items
|
||||||
//筛选item带有uid的元素
|
//筛选item带有uid的元素
|
||||||
const poke_uid = pokedetail.filter(item => item.uid)
|
const poke_uid = pokedetail.filter(item => item.uid)
|
||||||
@@ -389,7 +389,6 @@ export namespace OB11Entities {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//下面得改 上面也是错的grayTipElement.subElementType == GrayTipElementSubType.MEMBER_NEW_TITLE
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -489,7 +488,7 @@ export namespace OB11Entities {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (element.fileElement) {
|
else if (element.fileElement) {
|
||||||
return new OB11GroupUploadNoticeEvent(parseInt(msg.peerUid), parseInt(msg.senderUin!), {
|
return new OB11GroupUploadNoticeEvent(+msg.peerUid, +msg.senderUin!, {
|
||||||
id: element.fileElement.fileUuid!,
|
id: element.fileElement.fileUuid!,
|
||||||
name: element.fileElement.fileName,
|
name: element.fileElement.fileName,
|
||||||
size: parseInt(element.fileElement.fileSize),
|
size: parseInt(element.fileElement.fileSize),
|
||||||
@@ -543,7 +542,7 @@ export namespace OB11Entities {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (
|
if (
|
||||||
grayTipElement.subElementType == GrayTipElementSubType.INVITE_NEW_MEMBER &&
|
grayTipElement.subElementType == GrayTipElementSubType.XMLMSG &&
|
||||||
xmlElement?.templId == '10179'
|
xmlElement?.templId == '10179'
|
||||||
) {
|
) {
|
||||||
ctx.logger.info('收到新人被邀请进群消息', grayTipElement)
|
ctx.logger.info('收到新人被邀请进群消息', grayTipElement)
|
||||||
@@ -563,35 +562,9 @@ export namespace OB11Entities {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (grayTipElement.subElementType == GrayTipElementSubType.MEMBER_NEW_TITLE) {
|
else if (grayTipElement.subElementType == GrayTipElementSubType.JSON) {
|
||||||
const json = JSON.parse(grayTipElement.jsonGrayTipElement.jsonStr)
|
const json = JSON.parse(grayTipElement.jsonGrayTipElement.jsonStr)
|
||||||
/*
|
|
||||||
{
|
|
||||||
align: 'center',
|
|
||||||
items: [
|
|
||||||
{ txt: '恭喜', type: 'nor' },
|
|
||||||
{
|
|
||||||
col: '3',
|
|
||||||
jp: '5',
|
|
||||||
param: ["QQ号"],
|
|
||||||
txt: '林雨辰',
|
|
||||||
type: 'url'
|
|
||||||
},
|
|
||||||
{ txt: '获得群主授予的', type: 'nor' },
|
|
||||||
{
|
|
||||||
col: '3',
|
|
||||||
jp: '',
|
|
||||||
txt: '好好好',
|
|
||||||
type: 'url'
|
|
||||||
},
|
|
||||||
{ txt: '头衔', type: 'nor' }
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
* */
|
|
||||||
if (grayTipElement.jsonGrayTipElement.busiId == 1061) {
|
if (grayTipElement.jsonGrayTipElement.busiId == 1061) {
|
||||||
//判断业务类型
|
|
||||||
//Poke事件
|
|
||||||
const pokedetail: Dict[] = json.items
|
const pokedetail: Dict[] = json.items
|
||||||
//筛选item带有uid的元素
|
//筛选item带有uid的元素
|
||||||
const poke_uid = pokedetail.filter(item => item.uid)
|
const poke_uid = pokedetail.filter(item => item.uid)
|
||||||
@@ -653,7 +626,7 @@ 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.RECALL,
|
(element) => element.grayTipElement?.subElementType === GrayTipElementSubType.REVOKE,
|
||||||
)
|
)
|
||||||
if (!msgElement) {
|
if (!msgElement) {
|
||||||
return
|
return
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
import { selfInfo } from "@/common/globalVars"
|
import { selfInfo } from '@/common/globalVars'
|
||||||
|
|
||||||
export enum EventType {
|
export enum EventType {
|
||||||
META = 'meta_event',
|
META = 'meta_event',
|
||||||
|
@@ -4,7 +4,7 @@ export type GroupDecreaseSubType = 'leave' | 'kick' | 'kick_me'
|
|||||||
|
|
||||||
export class OB11GroupDecreaseEvent extends OB11GroupNoticeEvent {
|
export class OB11GroupDecreaseEvent extends OB11GroupNoticeEvent {
|
||||||
notice_type = 'group_decrease'
|
notice_type = 'group_decrease'
|
||||||
sub_type: GroupDecreaseSubType = 'leave' // TODO: 实现其他几种子类型的识别 ("leave" | "kick" | "kick_me")
|
sub_type: GroupDecreaseSubType = 'leave'
|
||||||
operator_id: number
|
operator_id: number
|
||||||
group_id: number
|
group_id: number
|
||||||
user_id: number
|
user_id: number
|
||||||
|
16
src/onebot11/event/notice/OB11ProfileLikeEvent.ts
Normal file
16
src/onebot11/event/notice/OB11ProfileLikeEvent.ts
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
import { OB11BaseNoticeEvent } from './OB11BaseNoticeEvent'
|
||||||
|
|
||||||
|
export class OB11ProfileLikeEvent extends OB11BaseNoticeEvent {
|
||||||
|
notice_type = 'notify'
|
||||||
|
sub_type = 'profile_like'
|
||||||
|
operator_id: number
|
||||||
|
operator_nick: string
|
||||||
|
times: number
|
||||||
|
|
||||||
|
constructor(operatorId: number, operatorNick: string, times: number) {
|
||||||
|
super()
|
||||||
|
this.operator_id = operatorId
|
||||||
|
this.operator_nick = operatorNick
|
||||||
|
this.times = times
|
||||||
|
}
|
||||||
|
}
|
@@ -1,7 +1,7 @@
|
|||||||
export const iconSvg = `
|
export const iconSvg = `
|
||||||
<?xml version="2.0" encoding="UTF-8" standalone="no"?>
|
<?xml version="2.0" encoding="UTF-8" standalone="no"?>
|
||||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="50px" y="10px" width="262px" height="150" viewBox="0 0 212 262" enable-background="new 0 0 212 262" xml:space="preserve">
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="50px" y="10px" width="262px" height="150" viewBox="0 0 212 262" enable-background="new 0 0 212 262" xml:space="preserve">
|
||||||
<image id="image0" width="212" height="210" x="0" y="-20" transform="rotate(180, 100, 100)"
|
<image id="image0" width="212" height="210" x="0" y="-20" transform="rotate(180, 100, 100)"
|
||||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAANQAAAEGCAYAAAAdX7uIAAAAIGNIUk0AAHomAACAhAAA+gAAAIDo
|
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAANQAAAEGCAYAAAAdX7uIAAAAIGNIUk0AAHomAACAhAAA+gAAAIDo
|
||||||
AAB1MAAA6mAAADqYAAAXcJy6UTwAAAAGYktHRAD/AP8A/6C9p5MAAAAJcEhZcwAADsMAAA7DAcdv
|
AAB1MAAA6mAAADqYAAAXcJy6UTwAAAAGYktHRAD/AP8A/6C9p5MAAAAJcEhZcwAADsMAAA7DAcdv
|
||||||
|
@@ -1 +1 @@
|
|||||||
export const version = '3.31.10'
|
export const version = '3.32.5'
|
||||||
|
@@ -24,11 +24,7 @@
|
|||||||
"noEmit": true
|
"noEmit": true
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
"src/*",
|
"src",
|
||||||
"src/**/*",
|
"scripts"
|
||||||
"scripts/*"
|
|
||||||
],
|
|
||||||
"exclude": [
|
|
||||||
"node_modules"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
Reference in New Issue
Block a user