40 lines
1.6 KiB
JavaScript
40 lines
1.6 KiB
JavaScript
import { ZaloApiError } from "../Errors/ZaloApiError.js";
|
|
import { ThreadType } from "../models/index.js";
|
|
import { apiFactory } from "../utils.js";
|
|
export const setHiddenConversationsFactory = apiFactory()((api, ctx, utils) => {
|
|
const serviceURL = utils.makeURL(`${api.zpwServiceMap.conversation[0]}/api/hiddenconvers/add-remove`);
|
|
/**
|
|
* Set hidden conversations
|
|
*
|
|
* @param hidden - Hide or unhide conversations
|
|
* @param threadId Thread ID(s)
|
|
* @param type Thread type (User/Group)
|
|
*
|
|
* @throws {ZaloApiError}
|
|
*/
|
|
return async function setHiddenConversations(hidden, threadId, type = ThreadType.User) {
|
|
threadId = Array.isArray(threadId) ? threadId : [threadId];
|
|
if (threadId.length === 0)
|
|
throw new ZaloApiError("threadId is required");
|
|
const is_group = type === ThreadType.Group ? 1 : 0;
|
|
const params = {
|
|
[hidden ? "add_threads" : "del_threads"]: JSON.stringify(threadId.map((id) => ({
|
|
thread_id: id,
|
|
is_group: is_group,
|
|
}))),
|
|
[hidden ? "del_threads" : "add_threads"]: "[]",
|
|
imei: ctx.imei,
|
|
};
|
|
const encryptedParams = utils.encodeAES(JSON.stringify(params));
|
|
if (!encryptedParams)
|
|
throw new ZaloApiError("Failed to encrypt params");
|
|
const response = await utils.request(serviceURL, {
|
|
method: "POST",
|
|
body: new URLSearchParams({
|
|
params: encryptedParams,
|
|
}),
|
|
});
|
|
return utils.resolve(response);
|
|
};
|
|
});
|