@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
61 lines (57 loc) • 2.48 kB
JavaScript
;
var ZaloApiError = require('../Errors/ZaloApiError.cjs');
require('../models/AutoReply.cjs');
require('../models/Board.cjs');
var Enum = require('../models/Enum.cjs');
require('../models/FriendEvent.cjs');
require('../models/Group.cjs');
require('../models/GroupEvent.cjs');
require('../models/Reaction.cjs');
require('../models/Reminder.cjs');
require('../models/ZBusiness.cjs');
var utils = require('../utils.cjs');
const getListReminderFactory = utils.apiFactory()((api, ctx, utils) => {
const serviceURL = {
[Enum.ThreadType.User]: utils.makeURL(`${api.zpwServiceMap.group_board[0]}/api/board/oneone/list`),
[Enum.ThreadType.Group]: utils.makeURL(`${api.zpwServiceMap.group_board[0]}/api/board/listReminder`),
};
/**
* Get list reminder
*
* @param options - The options for the request
* @param threadId - The ID of the thread
* @param type - The type of the thread (User or Group)
*
* @throws {ZaloApiError}
*/
return async function getListReminder(options, threadId, type = Enum.ThreadType.User) {
var _a, _b, _c, _d;
const requestParams = Object.assign({ objectData: JSON.stringify(type === Enum.ThreadType.User
? {
uid: threadId,
board_type: 1,
page: (_a = options.page) !== null && _a !== void 0 ? _a : 1,
count: (_b = options.count) !== null && _b !== void 0 ? _b : 20,
last_id: 0,
last_type: 0,
}
: {
group_id: threadId,
board_type: 1,
page: (_c = options.page) !== null && _c !== void 0 ? _c : 1,
count: (_d = options.count) !== null && _d !== void 0 ? _d : 20,
last_id: 0,
last_type: 0,
}) }, (type === Enum.ThreadType.Group && { imei: ctx.imei }));
const encryptedParams = utils.encodeAES(JSON.stringify(requestParams));
if (!encryptedParams)
throw new ZaloApiError.ZaloApiError("Failed to encrypt params");
const response = await utils.request(utils.makeURL(serviceURL[type], { params: encryptedParams }), {
method: "GET",
});
return utils.resolve(response, (result) => {
return JSON.parse(result.data);
});
};
});
exports.getListReminderFactory = getListReminderFactory;