feat(event): implement guild-request event

This commit is contained in:
Il Harper 2024-08-23 12:06:40 +08:00
parent 660c7d5a7e
commit d4f322dd4d
No known key found for this signature in database
GPG Key ID: 4B71FCA698E7E8EC
5 changed files with 157 additions and 3 deletions

View File

@ -139,6 +139,17 @@ export const quitGroup = define<
]
>('ns-ntApi-2', 'nodeIKernelGroupService/quitGroup')
export const getSingleScreenNotifies = define<
unknown,
[
{
doubt: boolean
startSeq: string // '1716209619000000'
number: number // 16
},
]
>('ns-ntApi-2', 'nodeIKernelGroupService/getSingleScreenNotifies')
export const operateSysNotify = define<
unknown,
[

View File

@ -2,6 +2,7 @@ import type { Group, Profile } from '@chronocat/red'
export const requestMethodMap: Record<string, string> = {}
export const emittedBuddyReqList: string[] = []
export const emittedGroupReqList: string[] = []
export const sendQueue: string[] = []

View File

@ -5,6 +5,7 @@ import type {
OnBuddyListChange,
OnBuddyReqChange,
OnGroupListUpdate,
OnGroupSingleScreenNotifies,
OnMemberInfoChange,
OnMemberListChange,
OnMsgInfoListUpdate,
@ -22,6 +23,7 @@ import type { ChronocatContext } from '@chronocat/shell'
import type { IpcManData } from 'ipcman'
import {
emittedBuddyReqList,
emittedGroupReqList,
friendMap,
groupMap,
requestMethodMap,
@ -29,6 +31,7 @@ import {
} from './globalVars'
import {
FriendRequestDispatchMessage,
GuildRequestDispatchMessage,
MessageCreatedDispatchMessage,
MessageDeletedDispatchMessage,
} from './messages'
@ -208,6 +211,30 @@ const dispatcher = async (
return
}
case 'nodeIKernelGroupListener/onGroupNotifiesUnreadCountUpdated': {
// const {} = payload as OnGroupNotifiesUnreadCountUpdated
return
}
case 'nodeIKernelGroupListener/onGroupSingleScreenNotifies': {
const { notifies } = payload as OnGroupSingleScreenNotifies
for (const notify of notifies) {
const uin = ctx.chronocat.uix.getUin(notify.user1.uid)
if (!uin) return
const key = `${notify.group.groupCode}:${uin}:${notify.seq}`
if (emittedGroupReqList.includes(key)) return
emittedGroupReqList.push(key)
ctx.chronocat.emit(new GuildRequestDispatchMessage(notify, uin))
}
return
}
case 'onBuddyListChange':
case 'nodeIKernelBuddyListener/onBuddyListChange': {
const { data } = payload as OnBuddyListChange
@ -225,8 +252,6 @@ const dispatcher = async (
}
case 'nodeIKernelBuddyListener/onBuddyReqChange': {
if (channel !== 'IPC_DOWN_2') return
const { buddyReqs } = payload as OnBuddyReqChange
buddyReqs.forEach((x) => {

View File

@ -1,4 +1,4 @@
import type { BuddyReq, RedMessage } from '@chronocat/red'
import type { BuddyReq, GroupNotify, RedMessage } from '@chronocat/red'
import type {
ChronocatContext,
ChronocatLogCurrentConfig,
@ -38,6 +38,46 @@ export class MessageDeletedDispatchMessage implements SatoriDispatchMessage {
.map((e) => ((e.type = 'message-deleted'), e))
}
export class GuildRequestDispatchMessage implements SatoriDispatchMessage {
constructor(
private notify: GroupNotify,
private uin: string,
) {}
type = 'satori' as const
toSatori = async (
ctx: ChronocatContext,
_config: O.Intersect<
ChronocatLogCurrentConfig,
ChronocatSatoriEventsConfig
>,
) => {
const event: Event = {
id: undefined as unknown as number,
type: 'guild-request',
platform: ctx.chronocat.platform,
self_id: undefined as unknown as string,
timestamp: new Date().getTime(),
guild: {
id: this.notify.group.groupCode,
name: this.notify.group.groupName,
avatar: `https://p.qlogo.cn/gh/${this.notify.group.groupCode}/${this.notify.group.groupCode}/640`,
},
user: {
id: `${this.uin}`,
name: this.notify.user1.nickName,
avatar: `http://thirdqq.qlogo.cn/headimg_dl?dst_uin=${this.uin}&spec=640`,
},
}
return [event]
}
}
export class FriendRequestDispatchMessage implements SatoriDispatchMessage {
constructor(
private buddyReq: BuddyReq,

View File

@ -180,3 +180,80 @@ export interface MsgsIncludeSelf {
export interface OnOpenParamChange {
data: Contact[]
}
export interface OnGroupNotifiesUnreadCountUpdated {
/**
*
*/
doubt: boolean
/**
* ID
*/
oldestUnreadSeq: string // '1716209619000000'
/**
*
*
*/
unreadCount: number
}
export interface OnGroupSingleScreenNotifies {
/**
*
*/
doubt: false
/**
* ID
*/
nextStartSeq: '0'
notifies: GroupNotify[]
}
export interface GroupNotify {
seq: string // '1716209619000000'
type: number // 7
status: number // 1
group: {
groupCode: string
groupName: string
}
user1: {
uid: string
nickName: string
}
user2: {
uid: string
nickName: string
}
actionUser: {
uid: string
nickName: string
}
actionTime: string // '0'
invitationExt: {
srcType: number // 0
groupCode: string // '0'
waitStatus: number // 0
}
/**
*
*/
postscript: string
repeatSeqs: []
warningTips: string // '该账号存在风险,请谨慎操作'
}