mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2024-11-21 09:36:35 +00:00
fix: #539
This commit is contained in:
parent
ded53cd348
commit
d4fbbd6711
@ -1,5 +1,5 @@
|
|||||||
import { ChatType, GetFileListParam, Peer, RawMessage, SendMessageElement, SendStatusType } from '@/core/entities';
|
import { ChatType, GetFileListParam, Peer, RawMessage, SendMessageElement, SendStatusType } from '@/core/entities';
|
||||||
import { InstanceContext, NapCatCore } from '@/core';
|
import { GroupFileInfoUpdateItem, InstanceContext, NapCatCore } from '@/core';
|
||||||
import { GeneralCallResult } from '@/core/services/common';
|
import { GeneralCallResult } from '@/core/services/common';
|
||||||
|
|
||||||
export class NTQQMsgApi {
|
export class NTQQMsgApi {
|
||||||
@ -25,9 +25,11 @@ export class NTQQMsgApi {
|
|||||||
async sendShowInputStatusReq(peer: Peer, eventType: number) {
|
async sendShowInputStatusReq(peer: Peer, eventType: number) {
|
||||||
return this.context.session.getMsgService().sendShowInputStatusReq(peer.chatType, eventType, peer.peerUid);
|
return this.context.session.getMsgService().sendShowInputStatusReq(peer.chatType, eventType, peer.peerUid);
|
||||||
}
|
}
|
||||||
|
|
||||||
async getSourceOfReplyMsgV2(peer: Peer, clientSeq: string, time: string) {
|
async getSourceOfReplyMsgV2(peer: Peer, clientSeq: string, time: string) {
|
||||||
return this.context.session.getMsgService().getSourceOfReplyMsgV2(peer, clientSeq, time);
|
return this.context.session.getMsgService().getSourceOfReplyMsgV2(peer, clientSeq, time);
|
||||||
}
|
}
|
||||||
|
|
||||||
async getMsgEmojiLikesList(peer: Peer, msgSeq: string, emojiId: string, emojiType: string, count: number = 20) {
|
async getMsgEmojiLikesList(peer: Peer, msgSeq: string, emojiId: string, emojiType: string, count: number = 20) {
|
||||||
//注意此处emojiType 可选值一般为1-2 2好像是unicode表情dec值 大部分情况 Taged Mlikiowa
|
//注意此处emojiType 可选值一般为1-2 2好像是unicode表情dec值 大部分情况 Taged Mlikiowa
|
||||||
return this.context.session.getMsgService().getMsgEmojiLikesList(peer, msgSeq, emojiId, emojiType, '', false, count);
|
return this.context.session.getMsgService().getMsgEmojiLikesList(peer, msgSeq, emojiId, emojiType, '', false, count);
|
||||||
@ -136,6 +138,10 @@ export class NTQQMsgApi {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async getGroupFileList(GroupCode: string, params: GetFileListParam) {
|
async getGroupFileList(GroupCode: string, params: GetFileListParam) {
|
||||||
|
const item: GroupFileInfoUpdateItem[] = [];
|
||||||
|
let index = params.startIndex;
|
||||||
|
while (true) {
|
||||||
|
params.startIndex = index;
|
||||||
const [, groupFileListResult] = await this.core.eventWrapper.callNormalEventV2(
|
const [, groupFileListResult] = await this.core.eventWrapper.callNormalEventV2(
|
||||||
'NodeIKernelRichMediaService/getGroupFileList',
|
'NodeIKernelRichMediaService/getGroupFileList',
|
||||||
'NodeIKernelMsgListener/onGroupFileInfoUpdate',
|
'NodeIKernelMsgListener/onGroupFileInfoUpdate',
|
||||||
@ -148,7 +154,13 @@ export class NTQQMsgApi {
|
|||||||
1,
|
1,
|
||||||
5000,
|
5000,
|
||||||
);
|
);
|
||||||
return groupFileListResult.item;
|
if (!groupFileListResult?.item?.length) break;
|
||||||
|
item.push(...groupFileListResult.item);
|
||||||
|
if (groupFileListResult.isEnd) break;
|
||||||
|
if (item.length === params.fileCount) break;
|
||||||
|
index = groupFileListResult.nextIndex;
|
||||||
|
}
|
||||||
|
return item;
|
||||||
}
|
}
|
||||||
|
|
||||||
async getMsgHistory(peer: Peer, msgId: string, count: number, isReverseOrder: boolean = false) {
|
async getMsgHistory(peer: Peer, msgId: string, count: number, isReverseOrder: boolean = false) {
|
||||||
|
@ -29,7 +29,22 @@ export interface GroupFileInfoUpdateParamType {
|
|||||||
retMsg: string;
|
retMsg: string;
|
||||||
clientWording: string;
|
clientWording: string;
|
||||||
isEnd: boolean;
|
isEnd: boolean;
|
||||||
item: Array<{
|
item: Array<GroupFileInfoUpdateItem>;
|
||||||
|
allFileCount: number;
|
||||||
|
nextIndex: number;
|
||||||
|
reqId: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
// {
|
||||||
|
// sessionType: 1,
|
||||||
|
// chatType: 100,
|
||||||
|
// peerUid: 'u_PVQ3tl6K78xxxx',
|
||||||
|
// groupCode: '809079648',
|
||||||
|
// fromNick: '拾xxxx,
|
||||||
|
// sig: '0x'
|
||||||
|
// }
|
||||||
|
|
||||||
|
export interface GroupFileInfoUpdateItem {
|
||||||
peerId: string;
|
peerId: string;
|
||||||
type: number;
|
type: number;
|
||||||
folderInfo?: {
|
folderInfo?: {
|
||||||
@ -69,20 +84,8 @@ export interface GroupFileInfoUpdateParamType {
|
|||||||
elementId: string;
|
elementId: string;
|
||||||
isFolder: boolean;
|
isFolder: boolean;
|
||||||
},
|
},
|
||||||
}>;
|
|
||||||
allFileCount: string;
|
|
||||||
nextIndex: string;
|
|
||||||
reqId: string;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// {
|
|
||||||
// sessionType: 1,
|
|
||||||
// chatType: 100,
|
|
||||||
// peerUid: 'u_PVQ3tl6K78xxxx',
|
|
||||||
// groupCode: '809079648',
|
|
||||||
// fromNick: '拾xxxx,
|
|
||||||
// sig: '0x'
|
|
||||||
// }
|
|
||||||
export interface TempOnRecvParams {
|
export interface TempOnRecvParams {
|
||||||
sessionType: number,//1
|
sessionType: number,//1
|
||||||
chatType: ChatType,//100
|
chatType: ChatType,//100
|
||||||
|
Loading…
x
Reference in New Issue
Block a user