update lại thư mục cấu trúc mới của server nodejs và python
This commit is contained in:
+61
@@ -0,0 +1,61 @@
|
||||
import { ZaloApiError } from "../Errors/ZaloApiError.js";
|
||||
import { ThreadType } from "../models/index.js";
|
||||
import { apiFactory } from "../utils.js";
|
||||
export const sendLinkFactory = apiFactory()((api, ctx, utils) => {
|
||||
const serviceURL = {
|
||||
[ThreadType.User]: utils.makeURL(`${api.zpwServiceMap.chat[0]}/api/message/link`, {
|
||||
nretry: 0,
|
||||
}),
|
||||
[ThreadType.Group]: utils.makeURL(`${api.zpwServiceMap.group[0]}/api/group/sendlink`, {
|
||||
nretry: 0,
|
||||
}),
|
||||
};
|
||||
/**
|
||||
* Send link
|
||||
*
|
||||
* @param options Link and ttl
|
||||
* @param threadId Thread ID
|
||||
* @param type Thread type
|
||||
*
|
||||
* @throws {ZaloApiError}
|
||||
*/
|
||||
return async function sendLink(options, threadId, type = ThreadType.User) {
|
||||
var _a;
|
||||
const res = await api.parseLink(options.link);
|
||||
const params = {
|
||||
msg: options.msg && options.msg.trim()
|
||||
? options.msg.includes(options.link)
|
||||
? options.msg
|
||||
: options.msg + " " + options.link
|
||||
: options.link,
|
||||
href: res.data.href,
|
||||
src: res.data.src,
|
||||
title: res.data.title,
|
||||
desc: res.data.desc,
|
||||
thumb: res.data.thumb,
|
||||
type: 2, // 0
|
||||
media: JSON.stringify(res.data.media),
|
||||
ttl: (_a = options.ttl) !== null && _a !== void 0 ? _a : 0,
|
||||
clientId: Date.now(),
|
||||
};
|
||||
if (type == ThreadType.Group) {
|
||||
params.grid = threadId;
|
||||
params.imei = ctx.imei;
|
||||
// params.mentionInfo = "[]"; @TODO: implement this
|
||||
}
|
||||
else {
|
||||
params.toId = threadId;
|
||||
params.mentionInfo = "";
|
||||
}
|
||||
const encryptedParams = utils.encodeAES(JSON.stringify(params));
|
||||
if (!encryptedParams)
|
||||
throw new ZaloApiError("Failed to encrypt params");
|
||||
const response = await utils.request(serviceURL[type], {
|
||||
method: "POST",
|
||||
body: new URLSearchParams({
|
||||
params: encryptedParams,
|
||||
}),
|
||||
});
|
||||
return utils.resolve(response);
|
||||
};
|
||||
});
|
||||
Reference in New Issue
Block a user