update lại thư mục cấu trúc mới của server nodejs và python
This commit is contained in:
+34
@@ -0,0 +1,34 @@
|
||||
import { ZaloApiError } from "../Errors/ZaloApiError.js";
|
||||
import { apiFactory } from "../utils.js";
|
||||
export const updateLabelsFactory = apiFactory()((api, ctx, utils) => {
|
||||
const serviceURL = utils.makeURL(`${api.zpwServiceMap.label[0]}/api/convlabel/update`);
|
||||
/**
|
||||
* Update labels
|
||||
*
|
||||
* @param label label data
|
||||
*
|
||||
* @throws {ZaloApiError}
|
||||
*/
|
||||
return async function updateLabels(payload) {
|
||||
const params = {
|
||||
labelData: JSON.stringify(payload.labelData),
|
||||
version: payload.version,
|
||||
imei: ctx.imei,
|
||||
};
|
||||
const encryptedParams = utils.encodeAES(JSON.stringify(params));
|
||||
if (!encryptedParams)
|
||||
throw new ZaloApiError("Failed to encrypt message");
|
||||
const response = await utils.request(serviceURL, {
|
||||
method: "POST",
|
||||
body: new URLSearchParams({
|
||||
params: encryptedParams,
|
||||
}),
|
||||
});
|
||||
const unFormatted = (await utils.resolve(response));
|
||||
return {
|
||||
labelData: JSON.parse(unFormatted.labelData),
|
||||
version: unFormatted.version,
|
||||
lastUpdateTime: unFormatted.lastUpdateTime,
|
||||
};
|
||||
};
|
||||
});
|
||||
Reference in New Issue
Block a user