@warriorteam/zalo-personal
Version:
Unofficial Zalo Personal API for JavaScript - A powerful library for interacting with Zalo personal accounts with URL attachment support, auto-reply, product catalog, and business features
43 lines (42 loc) • 1.55 kB
JavaScript
import { ZaloApiError } from "../Errors/ZaloApiError.js";
import { ThreadType } from "../models/index.js";
import { apiFactory } from "../utils.js";
export const undoFactory = apiFactory()((api, ctx, utils) => {
const URLType = {
[ThreadType.User]: utils.makeURL(`${api.zpwServiceMap.chat[0]}/api/message/undo`),
[ThreadType.Group]: utils.makeURL(`${api.zpwServiceMap.group[0]}/api/group/undomsg`),
};
/**
* Undo a message
*
* @param payload Undo payload containing message ID and client message ID
* @param threadId group or user id
* @param type Message type (User or Group), default is User
*
* @throws {ZaloApiError}
*/
return async function undo(payload, threadId, type = ThreadType.User) {
const params = {
msgId: payload.msgId,
clientId: Date.now(),
cliMsgIdUndo: payload.cliMsgId,
};
if (type == ThreadType.Group) {
params["grid"] = threadId;
params["visibility"] = 0;
params["imei"] = ctx.imei;
}
else
params["toid"] = threadId;
const encryptedParams = utils.encodeAES(JSON.stringify(params));
if (!encryptedParams)
throw new ZaloApiError("Failed to encrypt message");
const response = await utils.request(URLType[type], {
method: "POST",
body: new URLSearchParams({
params: encryptedParams,
}),
});
return utils.resolve(response);
};
});