@deffa5556/bail 1.0.6 → 1.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/WAProto/index.cjs +106053 -0
- package/cjs/deffa/config.cjs +14 -0
- package/cjs/deffa/plugins/ai/deepseekr1.cjs +35 -0
- package/cjs/deffa/plugins/ai/gita.cjs +26 -0
- package/cjs/deffa/plugins/ai/glm47flash.cjs +35 -0
- package/cjs/deffa/plugins/ai/gptoss120b.cjs +35 -0
- package/cjs/deffa/plugins/ai/qwq32b.cjs +35 -0
- package/cjs/deffa/plugins/berita/antara.cjs +25 -0
- package/cjs/deffa/plugins/berita/cnbcindonesia.cjs +25 -0
- package/cjs/deffa/plugins/berita/cnn.cjs +25 -0
- package/cjs/deffa/plugins/berita/kompas.cjs +25 -0
- package/cjs/deffa/plugins/berita/liputan6.cjs +25 -0
- package/cjs/deffa/plugins/berita/merdeka.cjs +25 -0
- package/cjs/deffa/plugins/berita/sindonews.cjs +25 -0
- package/cjs/deffa/plugins/berita/tribunnews.cjs +25 -0
- package/cjs/deffa/plugins/downloader/douyin.cjs +30 -0
- package/cjs/deffa/plugins/downloader/facebook.cjs +30 -0
- package/cjs/deffa/plugins/downloader/github.cjs +35 -0
- package/cjs/deffa/plugins/downloader/lahelu.cjs +30 -0
- package/cjs/deffa/plugins/downloader/snackvideo.cjs +30 -0
- package/cjs/deffa/plugins/downloader/soundcloud.cjs +30 -0
- package/cjs/deffa/plugins/downloader/tiktok.cjs +30 -0
- package/cjs/deffa/plugins/downloader/tiktokhd.cjs +30 -0
- package/cjs/deffa/plugins/downloader/twitter.cjs +30 -0
- package/cjs/deffa/plugins/downloader/ummy.cjs +36 -0
- package/cjs/deffa/plugins/index.cjs +213 -0
- package/cjs/deffa/plugins/info/bmkg.cjs +34 -0
- package/cjs/deffa/plugins/info/cuaca.cjs +31 -0
- package/cjs/deffa/plugins/info/jadwaltv.cjs +29 -0
- package/cjs/deffa/plugins/maker/brat.cjs +45 -0
- package/cjs/deffa/plugins/maker/bratvid.cjs +52 -0
- package/cjs/deffa/plugins/search/8font.cjs +28 -0
- package/cjs/deffa/plugins/search/applemusic.cjs +28 -0
- package/cjs/deffa/plugins/search/bimg.cjs +30 -0
- package/cjs/deffa/plugins/search/brave.cjs +34 -0
- package/cjs/deffa/plugins/search/duckduckgo.cjs +28 -0
- package/cjs/deffa/plugins/search/lahelu.cjs +28 -0
- package/cjs/deffa/plugins/search/mangatoon.cjs +28 -0
- package/cjs/deffa/plugins/search/mcpedl.cjs +28 -0
- package/cjs/deffa/plugins/search/myinstants.cjs +28 -0
- package/cjs/deffa/plugins/search/otakotaku.cjs +28 -0
- package/cjs/deffa/plugins/search/pinterest.cjs +30 -0
- package/cjs/deffa/plugins/search/resep.cjs +28 -0
- package/cjs/deffa/plugins/search/seegore.cjs +30 -0
- package/cjs/deffa/plugins/search/soundcloud.cjs +28 -0
- package/cjs/deffa/plugins/search/youtube.cjs +28 -0
- package/cjs/deffa/plugins/stalk/github.cjs +38 -0
- package/cjs/deffa/plugins/stalk/pinterest.cjs +37 -0
- package/cjs/deffa/plugins/stalk/threads.cjs +34 -0
- package/cjs/deffa/plugins/stalk/tiktok.cjs +37 -0
- package/cjs/deffa/plugins/stalk/twitter.cjs +37 -0
- package/cjs/deffa/plugins/stalk/youtube.cjs +37 -0
- package/cjs/lib/Defaults/index.cjs +158 -0
- package/cjs/lib/Discord/Client.cjs +263 -0
- package/cjs/lib/Discord/Constants.cjs +1842 -0
- package/cjs/lib/Discord/connect-dc.cjs +11 -0
- package/cjs/lib/Discord/esm-bridge.cjs +136 -0
- package/cjs/lib/Discord/gateway/Dispatcher.cjs +93 -0
- package/cjs/lib/Discord/gateway/Shard.cjs +695 -0
- package/cjs/lib/Discord/gateway/ShardManager.cjs +344 -0
- package/cjs/lib/Discord/gateway/compression/base.cjs +13 -0
- package/cjs/lib/Discord/gateway/compression/config.cjs +47 -0
- package/cjs/lib/Discord/gateway/compression/pako.cjs +44 -0
- package/cjs/lib/Discord/gateway/compression/zlib-native.cjs +47 -0
- package/cjs/lib/Discord/gateway/compression/zlib-sync.cjs +31 -0
- package/cjs/lib/Discord/gateway/compression/zstd-napi.cjs +80 -0
- package/cjs/lib/Discord/gateway/compression/zstd-native.cjs +46 -0
- package/cjs/lib/Discord/gateway/events.cjs +956 -0
- package/cjs/lib/Discord/index.cjs +238 -0
- package/cjs/lib/Discord/rest/Bucket.cjs +69 -0
- package/cjs/lib/Discord/rest/DiscordHTTPError.cjs +63 -0
- package/cjs/lib/Discord/rest/DiscordRESTError.cjs +84 -0
- package/cjs/lib/Discord/rest/OAuthHelper.cjs +226 -0
- package/cjs/lib/Discord/rest/RESTManager.cjs +116 -0
- package/cjs/lib/Discord/rest/RequestHandler.cjs +320 -0
- package/cjs/lib/Discord/rest/SequentialBucket.cjs +69 -0
- package/cjs/lib/Discord/routes/Applications.cjs +625 -0
- package/cjs/lib/Discord/routes/Channels.cjs +1199 -0
- package/cjs/lib/Discord/routes/Guilds.cjs +1792 -0
- package/cjs/lib/Discord/routes/Interactions.cjs +212 -0
- package/cjs/lib/Discord/routes/Lobbies.cjs +197 -0
- package/cjs/lib/Discord/routes/Miscellaneous.cjs +120 -0
- package/cjs/lib/Discord/routes/OAuth.cjs +350 -0
- package/cjs/lib/Discord/routes/Users.cjs +107 -0
- package/cjs/lib/Discord/routes/Webhooks.cjs +308 -0
- package/cjs/lib/Discord/structures/AnnouncementChannel.cjs +46 -0
- package/cjs/lib/Discord/structures/AnnouncementThreadChannel.cjs +28 -0
- package/cjs/lib/Discord/structures/Application.cjs +345 -0
- package/cjs/lib/Discord/structures/ApplicationCommand.cjs +109 -0
- package/cjs/lib/Discord/structures/Attachment.cjs +46 -0
- package/cjs/lib/Discord/structures/AuditLogEntry.cjs +41 -0
- package/cjs/lib/Discord/structures/AutoModerationRule.cjs +117 -0
- package/cjs/lib/Discord/structures/AutocompleteInteraction.cjs +90 -0
- package/cjs/lib/Discord/structures/Base.cjs +56 -0
- package/cjs/lib/Discord/structures/BaseEntitlement.cjs +40 -0
- package/cjs/lib/Discord/structures/CategoryChannel.cjs +102 -0
- package/cjs/lib/Discord/structures/Channel.cjs +89 -0
- package/cjs/lib/Discord/structures/ClientApplication.cjs +269 -0
- package/cjs/lib/Discord/structures/CommandInteraction.cjs +294 -0
- package/cjs/lib/Discord/structures/ComponentInteraction.cjs +306 -0
- package/cjs/lib/Discord/structures/Entitlement.cjs +24 -0
- package/cjs/lib/Discord/structures/ExtendedUser.cjs +48 -0
- package/cjs/lib/Discord/structures/ForumChannel.cjs +20 -0
- package/cjs/lib/Discord/structures/GroupChannel.cjs +160 -0
- package/cjs/lib/Discord/structures/Guild.cjs +1289 -0
- package/cjs/lib/Discord/structures/GuildChannel.cjs +82 -0
- package/cjs/lib/Discord/structures/GuildPreview.cjs +141 -0
- package/cjs/lib/Discord/structures/GuildScheduledEvent.cjs +166 -0
- package/cjs/lib/Discord/structures/GuildTemplate.cjs +96 -0
- package/cjs/lib/Discord/structures/Integration.cjs +123 -0
- package/cjs/lib/Discord/structures/Interaction.cjs +78 -0
- package/cjs/lib/Discord/structures/InteractionResolvedChannel.cjs +36 -0
- package/cjs/lib/Discord/structures/Invite.cjs +196 -0
- package/cjs/lib/Discord/structures/InviteGuild.cjs +117 -0
- package/cjs/lib/Discord/structures/InviteRole.cjs +88 -0
- package/cjs/lib/Discord/structures/Lobby.cjs +84 -0
- package/cjs/lib/Discord/structures/LobbyMember.cjs +30 -0
- package/cjs/lib/Discord/structures/MediaChannel.cjs +20 -0
- package/cjs/lib/Discord/structures/Member.cjs +300 -0
- package/cjs/lib/Discord/structures/Message.cjs +553 -0
- package/cjs/lib/Discord/structures/ModalSubmitInteraction.cjs +263 -0
- package/cjs/lib/Discord/structures/OAuthApplication.cjs +203 -0
- package/cjs/lib/Discord/structures/OAuthGuild.cjs +98 -0
- package/cjs/lib/Discord/structures/PartialApplication.cjs +97 -0
- package/cjs/lib/Discord/structures/Permission.cjs +61 -0
- package/cjs/lib/Discord/structures/PermissionOverwrite.cjs +46 -0
- package/cjs/lib/Discord/structures/PingInteraction.cjs +27 -0
- package/cjs/lib/Discord/structures/Poll.cjs +69 -0
- package/cjs/lib/Discord/structures/PrimaryGuild.cjs +93 -0
- package/cjs/lib/Discord/structures/PrivateChannel.cjs +131 -0
- package/cjs/lib/Discord/structures/PrivateThreadChannel.cjs +28 -0
- package/cjs/lib/Discord/structures/PublicThreadChannel.cjs +36 -0
- package/cjs/lib/Discord/structures/Role.cjs +126 -0
- package/cjs/lib/Discord/structures/SKU.cjs +58 -0
- package/cjs/lib/Discord/structures/Soundboard.cjs +58 -0
- package/cjs/lib/Discord/structures/StageChannel.cjs +45 -0
- package/cjs/lib/Discord/structures/StageInstance.cjs +80 -0
- package/cjs/lib/Discord/structures/Subscription.cjs +21 -0
- package/cjs/lib/Discord/structures/Team.cjs +70 -0
- package/cjs/lib/Discord/structures/TestEntitlement.cjs +22 -0
- package/cjs/lib/Discord/structures/TextChannel.cjs +48 -0
- package/cjs/lib/Discord/structures/TextableChannel.cjs +265 -0
- package/cjs/lib/Discord/structures/TextableVoiceChannel.cjs +70 -0
- package/cjs/lib/Discord/structures/ThreadChannel.cjs +276 -0
- package/cjs/lib/Discord/structures/ThreadOnlyChannel.cjs +205 -0
- package/cjs/lib/Discord/structures/ThreadableChannel.cjs +57 -0
- package/cjs/lib/Discord/structures/UnavailableGuild.cjs +21 -0
- package/cjs/lib/Discord/structures/User.cjs +223 -0
- package/cjs/lib/Discord/structures/VoiceChannel.cjs +34 -0
- package/cjs/lib/Discord/structures/VoiceState.cjs +113 -0
- package/cjs/lib/Discord/structures/Webhook.cjs +224 -0
- package/cjs/lib/Discord/util/Collection.cjs +77 -0
- package/cjs/lib/Discord/util/Errors.cjs +81 -0
- package/cjs/lib/Discord/util/QueryBuilder.cjs +20 -0
- package/cjs/lib/Discord/util/Routes.cjs +293 -0
- package/cjs/lib/Discord/util/SimpleCollection.cjs +78 -0
- package/cjs/lib/Discord/util/Time.cjs +92 -0
- package/cjs/lib/Discord/util/TypedCollection.cjs +78 -0
- package/cjs/lib/Discord/util/TypedEmitter.cjs +20 -0
- package/cjs/lib/Discord/util/Util.cjs +906 -0
- package/cjs/lib/Discord/util/interactions/InteractionOptionsWrapper.cjs +207 -0
- package/cjs/lib/Discord/util/interactions/MessageInteractionResponse.cjs +26 -0
- package/cjs/lib/Discord/util/interactions/ModalSubmitInteractionComponentsWrapper.cjs +98 -0
- package/cjs/lib/Discord/util/interactions/SelectMenuValuesWrapper.cjs +77 -0
- package/cjs/lib/Discord/util/interactions/shared.cjs +20 -0
- package/cjs/lib/Discord/util/warning.cjs +34 -0
- package/cjs/lib/Signal/Group/ciphertext-message.cjs +16 -0
- package/cjs/lib/Signal/Group/group-session-builder.cjs +67 -0
- package/cjs/lib/Signal/Group/group_cipher.cjs +86 -0
- package/cjs/lib/Signal/Group/index.cjs +58 -0
- package/cjs/lib/Signal/Group/keyhelper.cjs +56 -0
- package/cjs/lib/Signal/Group/sender-chain-key.cjs +30 -0
- package/cjs/lib/Signal/Group/sender-key-distribution-message.cjs +67 -0
- package/cjs/lib/Signal/Group/sender-key-message.cjs +70 -0
- package/cjs/lib/Signal/Group/sender-key-name.cjs +52 -0
- package/cjs/lib/Signal/Group/sender-key-record.cjs +45 -0
- package/cjs/lib/Signal/Group/sender-key-state.cjs +88 -0
- package/cjs/lib/Signal/Group/sender-message-key.cjs +30 -0
- package/cjs/lib/Signal/libsignal.cjs +467 -0
- package/cjs/lib/Signal/lid-mapping.cjs +281 -0
- package/cjs/lib/Socket/Client/index.cjs +19 -0
- package/cjs/lib/Socket/Client/types.cjs +15 -0
- package/cjs/lib/Socket/Client/websocket.cjs +61 -0
- package/cjs/lib/Socket/business.cjs +384 -0
- package/cjs/lib/Socket/chats.cjs +1221 -0
- package/cjs/lib/Socket/communities.cjs +440 -0
- package/cjs/lib/Socket/groups.cjs +353 -0
- package/cjs/lib/Socket/index.cjs +14 -0
- package/cjs/lib/Socket/messages-recv.cjs +1772 -0
- package/cjs/lib/Socket/messages-send.cjs +1376 -0
- package/cjs/lib/Socket/mex.cjs +46 -0
- package/cjs/lib/Socket/newsletter.cjs +230 -0
- package/cjs/lib/Socket/socket.cjs +976 -0
- package/cjs/lib/Store/index.cjs +20 -0
- package/cjs/lib/Store/make-in-memory-store.cjs +470 -0
- package/cjs/lib/Store/make-ordered-dictionary.cjs +82 -0
- package/cjs/lib/Store/object-repository.cjs +28 -0
- package/cjs/lib/Telegram/button.cjs +147 -0
- package/cjs/lib/Telegram/composer.cjs +582 -0
- package/cjs/lib/Telegram/context.cjs +853 -0
- package/cjs/lib/Telegram/core/helpers/args.cjs +57 -0
- package/cjs/lib/Telegram/core/helpers/check.cjs +55 -0
- package/cjs/lib/Telegram/core/helpers/compact.cjs +16 -0
- package/cjs/lib/Telegram/core/helpers/deunionize.cjs +12 -0
- package/cjs/lib/Telegram/core/helpers/formatting.cjs +91 -0
- package/cjs/lib/Telegram/core/helpers/util.cjs +50 -0
- package/cjs/lib/Telegram/core/network/client.cjs +338 -0
- package/cjs/lib/Telegram/core/network/error.cjs +21 -0
- package/cjs/lib/Telegram/core/network/multipart-stream.cjs +79 -0
- package/cjs/lib/Telegram/core/network/polling.cjs +87 -0
- package/cjs/lib/Telegram/core/network/webhook.cjs +54 -0
- package/cjs/lib/Telegram/core/types/typegram.cjs +31 -0
- package/cjs/lib/Telegram/deffa-telegraf.cjs +264 -0
- package/cjs/lib/Telegram/esm-bridge.cjs +20 -0
- package/cjs/lib/Telegram/filters.cjs +69 -0
- package/cjs/lib/Telegram/format.cjs +58 -0
- package/cjs/lib/Telegram/future.cjs +140 -0
- package/cjs/lib/Telegram/index.cjs +67 -0
- package/cjs/lib/Telegram/input.cjs +61 -0
- package/cjs/lib/Telegram/markup.cjs +129 -0
- package/cjs/lib/Telegram/middleware.cjs +2 -0
- package/cjs/lib/Telegram/reactions.cjs +84 -0
- package/cjs/lib/Telegram/router.cjs +46 -0
- package/cjs/lib/Telegram/scenes/base.cjs +39 -0
- package/cjs/lib/Telegram/scenes/context.cjs +104 -0
- package/cjs/lib/Telegram/scenes/index.cjs +21 -0
- package/cjs/lib/Telegram/scenes/stage.cjs +49 -0
- package/cjs/lib/Telegram/scenes/wizard/context.cjs +31 -0
- package/cjs/lib/Telegram/scenes/wizard/index.cjs +45 -0
- package/cjs/lib/Telegram/scenes.cjs +21 -0
- package/cjs/lib/Telegram/session.cjs +166 -0
- package/cjs/lib/Telegram/telegram-types.cjs +6 -0
- package/cjs/lib/Telegram/telegram.cjs +945 -0
- package/cjs/lib/Telegram/types.cjs +2 -0
- package/cjs/lib/Telegram/utils.cjs +5 -0
- package/cjs/lib/Types/Auth.cjs +3 -0
- package/cjs/lib/Types/Bussines.cjs +3 -0
- package/cjs/lib/Types/Call.cjs +3 -0
- package/cjs/lib/Types/Chat.cjs +11 -0
- package/cjs/lib/Types/Contact.cjs +3 -0
- package/cjs/lib/Types/Events.cjs +4 -0
- package/cjs/lib/Types/GroupMetadata.cjs +3 -0
- package/cjs/lib/Types/Label.cjs +26 -0
- package/cjs/lib/Types/LabelAssociation.cjs +8 -0
- package/cjs/lib/Types/Message.cjs +19 -0
- package/cjs/lib/Types/Mex.cjs +40 -0
- package/cjs/lib/Types/Product.cjs +3 -0
- package/cjs/lib/Types/RichType.cjs +24 -0
- package/cjs/lib/Types/Signal.cjs +4 -0
- package/cjs/lib/Types/Socket.cjs +4 -0
- package/cjs/lib/Types/State.cjs +54 -0
- package/cjs/lib/Types/USync.cjs +4 -0
- package/cjs/lib/Types/index.cjs +42 -0
- package/cjs/lib/Utils/auth-utils.cjs +312 -0
- package/cjs/lib/Utils/browser-utils.cjs +39 -0
- package/cjs/lib/Utils/business.cjs +241 -0
- package/cjs/lib/Utils/chat-utils.cjs +890 -0
- package/cjs/lib/Utils/companion-reg-client-utils.cjs +51 -0
- package/cjs/lib/Utils/crypto.cjs +170 -0
- package/cjs/lib/Utils/decode-wa-message.cjs +330 -0
- package/cjs/lib/Utils/event-buffer.cjs +629 -0
- package/cjs/lib/Utils/generics.cjs +427 -0
- package/cjs/lib/Utils/history.cjs +141 -0
- package/cjs/lib/Utils/identity-change-handler.cjs +56 -0
- package/cjs/lib/Utils/index.cjs +43 -0
- package/cjs/lib/Utils/link-preview.cjs +122 -0
- package/cjs/lib/Utils/logger.cjs +8 -0
- package/cjs/lib/Utils/lt-hash.cjs +11 -0
- package/cjs/lib/Utils/make-mutex.cjs +38 -0
- package/cjs/lib/Utils/message-retry-manager.cjs +267 -0
- package/cjs/lib/Utils/messages-media.cjs +906 -0
- package/cjs/lib/Utils/messages.cjs +1909 -0
- package/cjs/lib/Utils/noise-handler.cjs +205 -0
- package/cjs/lib/Utils/offline-node-processor.cjs +43 -0
- package/cjs/lib/Utils/pre-key-manager.cjs +113 -0
- package/cjs/lib/Utils/process-message.cjs +755 -0
- package/cjs/lib/Utils/reporting-utils.cjs +263 -0
- package/cjs/lib/Utils/rich-message-utils.cjs +434 -0
- package/cjs/lib/Utils/session-guard.cjs +163 -0
- package/cjs/lib/Utils/signal.cjs +214 -0
- package/cjs/lib/Utils/stanza-ack.cjs +41 -0
- package/cjs/lib/Utils/sync-action-utils.cjs +54 -0
- package/cjs/lib/Utils/tc-token-utils.cjs +174 -0
- package/cjs/lib/Utils/text-sticker.cjs +174 -0
- package/cjs/lib/Utils/use-multi-file-auth-state.cjs +125 -0
- package/cjs/lib/Utils/use-single-file-auth-state.cjs +113 -0
- package/cjs/lib/Utils/use-sqlite-auth-state.cjs +145 -0
- package/cjs/lib/Utils/validate-connection.cjs +210 -0
- package/cjs/lib/WABinary/constants.cjs +1470 -0
- package/cjs/lib/WABinary/decode.cjs +301 -0
- package/cjs/lib/WABinary/encode.cjs +257 -0
- package/cjs/lib/WABinary/generic-utils.cjs +240 -0
- package/cjs/lib/WABinary/index.cjs +22 -0
- package/cjs/lib/WABinary/jid-utils.cjs +114 -0
- package/cjs/lib/WABinary/types.cjs +37 -0
- package/cjs/lib/WAM/BinaryInfo.cjs +14 -0
- package/cjs/lib/WAM/constants.cjs +22856 -0
- package/cjs/lib/WAM/encode.cjs +154 -0
- package/cjs/lib/WAM/index.cjs +20 -0
- package/cjs/lib/WAUSync/Protocols/USyncContactProtocol.cjs +56 -0
- package/cjs/lib/WAUSync/Protocols/USyncDeviceProtocol.cjs +58 -0
- package/cjs/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.cjs +31 -0
- package/cjs/lib/WAUSync/Protocols/USyncStatusProtocol.cjs +42 -0
- package/cjs/lib/WAUSync/Protocols/USyncUsernameProtocol.cjs +29 -0
- package/cjs/lib/WAUSync/Protocols/UsyncBotProfileProtocol.cjs +55 -0
- package/cjs/lib/WAUSync/Protocols/UsyncLIDProtocol.cjs +33 -0
- package/cjs/lib/WAUSync/Protocols/index.cjs +22 -0
- package/cjs/lib/WAUSync/USyncQuery.cjs +102 -0
- package/cjs/lib/WAUSync/USyncUser.cjs +35 -0
- package/cjs/lib/WAUSync/index.cjs +20 -0
- package/cjs/lib/index.cjs +372 -0
- package/cjs/lib/plugins/loader.cjs +117 -0
- package/lib/Defaults/index.js +1 -1
- package/lib/Socket/socket.js +3 -3
- package/lib/Telegram/esm-bridge.mjs +1 -1
- package/package.json +11 -6
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.encodeWAM = void 0;
|
|
4
|
+
const BinaryInfo_js_1 = require("./BinaryInfo.cjs");
|
|
5
|
+
const constants_js_1 = require("./constants.cjs");
|
|
6
|
+
const getHeaderBitLength = (key) => (key < 256 ? 2 : 3);
|
|
7
|
+
const encodeWAM = (binaryInfo) => {
|
|
8
|
+
binaryInfo.buffer = [];
|
|
9
|
+
encodeWAMHeader(binaryInfo);
|
|
10
|
+
encodeEvents(binaryInfo);
|
|
11
|
+
const totalSize = binaryInfo.buffer.map(a => a.length).reduce((a, b) => a + b);
|
|
12
|
+
const buffer = Buffer.alloc(totalSize);
|
|
13
|
+
let offset = 0;
|
|
14
|
+
for (const buffer_ of binaryInfo.buffer) {
|
|
15
|
+
buffer_.copy(buffer, offset);
|
|
16
|
+
offset += buffer_.length;
|
|
17
|
+
}
|
|
18
|
+
return buffer;
|
|
19
|
+
};
|
|
20
|
+
exports.encodeWAM = encodeWAM;
|
|
21
|
+
function encodeWAMHeader(binaryInfo) {
|
|
22
|
+
const headerBuffer = Buffer.alloc(8); // starting buffer
|
|
23
|
+
headerBuffer.write('WAM', 0, 'utf8');
|
|
24
|
+
headerBuffer.writeUInt8(binaryInfo.protocolVersion, 3);
|
|
25
|
+
headerBuffer.writeUInt8(1, 4); //random flag
|
|
26
|
+
headerBuffer.writeUInt16BE(binaryInfo.sequence, 5);
|
|
27
|
+
headerBuffer.writeUInt8(0, 7); // regular channel
|
|
28
|
+
binaryInfo.buffer.push(headerBuffer);
|
|
29
|
+
}
|
|
30
|
+
function encodeGlobalAttributes(binaryInfo, globals) {
|
|
31
|
+
for (const [key, _value] of Object.entries(globals)) {
|
|
32
|
+
const id = constants_js_1.WEB_GLOBALS.find(a => a?.name === key).id;
|
|
33
|
+
let value = _value;
|
|
34
|
+
if (typeof value === 'boolean') {
|
|
35
|
+
value = value ? 1 : 0;
|
|
36
|
+
}
|
|
37
|
+
binaryInfo.buffer.push(serializeData(id, value, constants_js_1.FLAG_GLOBAL));
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
function encodeEvents(binaryInfo) {
|
|
41
|
+
for (const [name, { props, globals }] of binaryInfo.events.map(a => Object.entries(a)[0])) {
|
|
42
|
+
encodeGlobalAttributes(binaryInfo, globals);
|
|
43
|
+
const event = constants_js_1.WEB_EVENTS.find(a => a.name === name);
|
|
44
|
+
const props_ = Object.entries(props);
|
|
45
|
+
let extended = false;
|
|
46
|
+
for (const [, value] of props_) {
|
|
47
|
+
extended || (extended = value !== null);
|
|
48
|
+
}
|
|
49
|
+
const eventFlag = extended ? constants_js_1.FLAG_EVENT : constants_js_1.FLAG_EVENT | constants_js_1.FLAG_EXTENDED;
|
|
50
|
+
binaryInfo.buffer.push(serializeData(event.id, -event.weight, eventFlag));
|
|
51
|
+
for (let i = 0; i < props_.length; i++) {
|
|
52
|
+
const [key, _value] = props_[i];
|
|
53
|
+
const id = event.props[key]?.[0];
|
|
54
|
+
extended = i < props_.length - 1;
|
|
55
|
+
let value = _value;
|
|
56
|
+
if (typeof value === 'boolean') {
|
|
57
|
+
value = value ? 1 : 0;
|
|
58
|
+
}
|
|
59
|
+
const fieldFlag = extended ? constants_js_1.FLAG_EVENT : constants_js_1.FLAG_FIELD | constants_js_1.FLAG_EXTENDED;
|
|
60
|
+
binaryInfo.buffer.push(serializeData(id, value, fieldFlag));
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
function serializeData(key, value, flag) {
|
|
65
|
+
const bufferLength = getHeaderBitLength(key);
|
|
66
|
+
let buffer;
|
|
67
|
+
let offset = 0;
|
|
68
|
+
if (value === null) {
|
|
69
|
+
if (flag === constants_js_1.FLAG_GLOBAL) {
|
|
70
|
+
buffer = Buffer.alloc(bufferLength);
|
|
71
|
+
offset = serializeHeader(buffer, offset, key, flag);
|
|
72
|
+
return buffer;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
else if (typeof value === 'number' && Number.isInteger(value)) {
|
|
76
|
+
// is number
|
|
77
|
+
if (value === 0 || value === 1) {
|
|
78
|
+
buffer = Buffer.alloc(bufferLength);
|
|
79
|
+
offset = serializeHeader(buffer, offset, key, flag | ((value + 1) << 4));
|
|
80
|
+
return buffer;
|
|
81
|
+
}
|
|
82
|
+
else if (-128 <= value && value < 128) {
|
|
83
|
+
buffer = Buffer.alloc(bufferLength + 1);
|
|
84
|
+
offset = serializeHeader(buffer, offset, key, flag | (3 << 4));
|
|
85
|
+
buffer.writeInt8(value, offset);
|
|
86
|
+
return buffer;
|
|
87
|
+
}
|
|
88
|
+
else if (-32768 <= value && value < 32768) {
|
|
89
|
+
buffer = Buffer.alloc(bufferLength + 2);
|
|
90
|
+
offset = serializeHeader(buffer, offset, key, flag | (4 << 4));
|
|
91
|
+
buffer.writeInt16LE(value, offset);
|
|
92
|
+
return buffer;
|
|
93
|
+
}
|
|
94
|
+
else if (-2147483648 <= value && value < 2147483648) {
|
|
95
|
+
buffer = Buffer.alloc(bufferLength + 4);
|
|
96
|
+
offset = serializeHeader(buffer, offset, key, flag | (5 << 4));
|
|
97
|
+
buffer.writeInt32LE(value, offset);
|
|
98
|
+
return buffer;
|
|
99
|
+
}
|
|
100
|
+
else {
|
|
101
|
+
buffer = Buffer.alloc(bufferLength + 8);
|
|
102
|
+
offset = serializeHeader(buffer, offset, key, flag | (7 << 4));
|
|
103
|
+
buffer.writeDoubleLE(value, offset);
|
|
104
|
+
return buffer;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
else if (typeof value === 'number') {
|
|
108
|
+
// is float
|
|
109
|
+
buffer = Buffer.alloc(bufferLength + 8);
|
|
110
|
+
offset = serializeHeader(buffer, offset, key, flag | (7 << 4));
|
|
111
|
+
buffer.writeDoubleLE(value, offset);
|
|
112
|
+
return buffer;
|
|
113
|
+
}
|
|
114
|
+
else if (typeof value === 'string') {
|
|
115
|
+
// is string
|
|
116
|
+
const utf8Bytes = Buffer.byteLength(value, 'utf8');
|
|
117
|
+
if (utf8Bytes < 256) {
|
|
118
|
+
buffer = Buffer.alloc(bufferLength + 1 + utf8Bytes);
|
|
119
|
+
offset = serializeHeader(buffer, offset, key, flag | (8 << 4));
|
|
120
|
+
buffer.writeUint8(utf8Bytes, offset++);
|
|
121
|
+
}
|
|
122
|
+
else if (utf8Bytes < 65536) {
|
|
123
|
+
buffer = Buffer.alloc(bufferLength + 2 + utf8Bytes);
|
|
124
|
+
offset = serializeHeader(buffer, offset, key, flag | (9 << 4));
|
|
125
|
+
buffer.writeUInt16LE(utf8Bytes, offset);
|
|
126
|
+
offset += 2;
|
|
127
|
+
}
|
|
128
|
+
else {
|
|
129
|
+
buffer = Buffer.alloc(bufferLength + 4 + utf8Bytes);
|
|
130
|
+
offset = serializeHeader(buffer, offset, key, flag | (10 << 4));
|
|
131
|
+
buffer.writeUInt32LE(utf8Bytes, offset);
|
|
132
|
+
offset += 4;
|
|
133
|
+
}
|
|
134
|
+
buffer.write(value, offset, 'utf8');
|
|
135
|
+
return buffer;
|
|
136
|
+
}
|
|
137
|
+
throw 'missing';
|
|
138
|
+
}
|
|
139
|
+
function serializeHeader(buffer, offset, key, flag) {
|
|
140
|
+
if (key < 256) {
|
|
141
|
+
buffer.writeUInt8(flag, offset);
|
|
142
|
+
offset += 1;
|
|
143
|
+
buffer.writeUInt8(key, offset);
|
|
144
|
+
offset += 1;
|
|
145
|
+
}
|
|
146
|
+
else {
|
|
147
|
+
buffer.writeUInt8(flag | constants_js_1.FLAG_BYTE, offset);
|
|
148
|
+
offset += 1;
|
|
149
|
+
buffer.writeUInt16LE(key, offset);
|
|
150
|
+
offset += 2;
|
|
151
|
+
}
|
|
152
|
+
return offset;
|
|
153
|
+
}
|
|
154
|
+
//# sourceMappingURL=encode.js.map
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./constants.cjs"), exports);
|
|
18
|
+
__exportStar(require("./encode.cjs"), exports);
|
|
19
|
+
__exportStar(require("./BinaryInfo.cjs"), exports);
|
|
20
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.USyncContactProtocol = void 0;
|
|
4
|
+
const index_js_1 = require("../../WABinary/index.cjs");
|
|
5
|
+
const USyncUser_js_1 = require("../USyncUser.cjs");
|
|
6
|
+
class USyncContactProtocol {
|
|
7
|
+
constructor() {
|
|
8
|
+
this.name = 'contact';
|
|
9
|
+
}
|
|
10
|
+
getQueryElement() {
|
|
11
|
+
return {
|
|
12
|
+
tag: 'contact',
|
|
13
|
+
attrs: {}
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
getUserElement(user) {
|
|
17
|
+
if (user.phone) {
|
|
18
|
+
return {
|
|
19
|
+
tag: 'contact',
|
|
20
|
+
attrs: {},
|
|
21
|
+
content: user.phone
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
if (user.username) {
|
|
25
|
+
return {
|
|
26
|
+
tag: 'contact',
|
|
27
|
+
attrs: {
|
|
28
|
+
username: user.username,
|
|
29
|
+
...(user.usernameKey ? { pin: user.usernameKey } : {}),
|
|
30
|
+
...(user.lid ? { lid: user.lid } : {})
|
|
31
|
+
}
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
if (user.type) {
|
|
35
|
+
return {
|
|
36
|
+
tag: 'contact',
|
|
37
|
+
attrs: {
|
|
38
|
+
type: user.type
|
|
39
|
+
}
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
return {
|
|
43
|
+
tag: 'contact',
|
|
44
|
+
attrs: {}
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
parser(node) {
|
|
48
|
+
if (node.tag === 'contact') {
|
|
49
|
+
(0, index_js_1.assertNodeErrorFree)(node);
|
|
50
|
+
return node?.attrs?.type === 'in';
|
|
51
|
+
}
|
|
52
|
+
return false;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
exports.USyncContactProtocol = USyncContactProtocol;
|
|
56
|
+
//# sourceMappingURL=USyncContactProtocol.js.map
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.USyncDeviceProtocol = void 0;
|
|
4
|
+
const index_js_1 = require("../../WABinary/index.cjs");
|
|
5
|
+
class USyncDeviceProtocol {
|
|
6
|
+
constructor() {
|
|
7
|
+
this.name = 'devices';
|
|
8
|
+
}
|
|
9
|
+
getQueryElement() {
|
|
10
|
+
return {
|
|
11
|
+
tag: 'devices',
|
|
12
|
+
attrs: {
|
|
13
|
+
version: '2'
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
getUserElement( /* user: USyncUser */) {
|
|
18
|
+
//TODO: Implement device phashing, ts and expectedTs
|
|
19
|
+
//TODO: if all are not present, return null <- current behavior
|
|
20
|
+
//TODO: otherwise return a node w tag 'devices' w those as attrs
|
|
21
|
+
return null;
|
|
22
|
+
}
|
|
23
|
+
parser(node) {
|
|
24
|
+
const deviceList = [];
|
|
25
|
+
let keyIndex = undefined;
|
|
26
|
+
if (node.tag === 'devices') {
|
|
27
|
+
(0, index_js_1.assertNodeErrorFree)(node);
|
|
28
|
+
const deviceListNode = (0, index_js_1.getBinaryNodeChild)(node, 'device-list');
|
|
29
|
+
const keyIndexNode = (0, index_js_1.getBinaryNodeChild)(node, 'key-index-list');
|
|
30
|
+
if (Array.isArray(deviceListNode?.content)) {
|
|
31
|
+
for (const { tag, attrs } of deviceListNode.content) {
|
|
32
|
+
const id = +attrs.id;
|
|
33
|
+
const keyIndex = +attrs['key-index'];
|
|
34
|
+
if (tag === 'device') {
|
|
35
|
+
deviceList.push({
|
|
36
|
+
id,
|
|
37
|
+
keyIndex,
|
|
38
|
+
isHosted: !!(attrs['is_hosted'] && attrs['is_hosted'] === 'true')
|
|
39
|
+
});
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
if (keyIndexNode?.tag === 'key-index-list') {
|
|
44
|
+
keyIndex = {
|
|
45
|
+
timestamp: +keyIndexNode.attrs['ts'],
|
|
46
|
+
signedKeyIndex: keyIndexNode?.content,
|
|
47
|
+
expectedTimestamp: keyIndexNode.attrs['expected_ts'] ? +keyIndexNode.attrs['expected_ts'] : undefined
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
return {
|
|
52
|
+
deviceList,
|
|
53
|
+
keyIndex
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
exports.USyncDeviceProtocol = USyncDeviceProtocol;
|
|
58
|
+
//# sourceMappingURL=USyncDeviceProtocol.js.map
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.USyncDisappearingModeProtocol = void 0;
|
|
4
|
+
const index_js_1 = require("../../WABinary/index.cjs");
|
|
5
|
+
class USyncDisappearingModeProtocol {
|
|
6
|
+
constructor() {
|
|
7
|
+
this.name = 'disappearing_mode';
|
|
8
|
+
}
|
|
9
|
+
getQueryElement() {
|
|
10
|
+
return {
|
|
11
|
+
tag: 'disappearing_mode',
|
|
12
|
+
attrs: {}
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getUserElement() {
|
|
16
|
+
return null;
|
|
17
|
+
}
|
|
18
|
+
parser(node) {
|
|
19
|
+
if (node.tag === 'disappearing_mode') {
|
|
20
|
+
(0, index_js_1.assertNodeErrorFree)(node);
|
|
21
|
+
const duration = +node?.attrs.duration;
|
|
22
|
+
const setAt = new Date(+(node?.attrs.t || 0) * 1000);
|
|
23
|
+
return {
|
|
24
|
+
duration,
|
|
25
|
+
setAt
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
exports.USyncDisappearingModeProtocol = USyncDisappearingModeProtocol;
|
|
31
|
+
//# sourceMappingURL=USyncDisappearingModeProtocol.js.map
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.USyncStatusProtocol = void 0;
|
|
4
|
+
const index_js_1 = require("../../WABinary/index.cjs");
|
|
5
|
+
class USyncStatusProtocol {
|
|
6
|
+
constructor() {
|
|
7
|
+
this.name = 'status';
|
|
8
|
+
}
|
|
9
|
+
getQueryElement() {
|
|
10
|
+
return {
|
|
11
|
+
tag: 'status',
|
|
12
|
+
attrs: {}
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getUserElement() {
|
|
16
|
+
return null;
|
|
17
|
+
}
|
|
18
|
+
parser(node) {
|
|
19
|
+
if (node.tag === 'status') {
|
|
20
|
+
(0, index_js_1.assertNodeErrorFree)(node);
|
|
21
|
+
let status = node?.content?.toString() ?? null;
|
|
22
|
+
const setAt = new Date(+(node?.attrs.t || 0) * 1000);
|
|
23
|
+
if (!status) {
|
|
24
|
+
if (node.attrs?.code && +node.attrs.code === 401) {
|
|
25
|
+
status = '';
|
|
26
|
+
}
|
|
27
|
+
else {
|
|
28
|
+
status = null;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
else if (typeof status === 'string' && status.length === 0) {
|
|
32
|
+
status = null;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
status,
|
|
36
|
+
setAt
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
exports.USyncStatusProtocol = USyncStatusProtocol;
|
|
42
|
+
//# sourceMappingURL=USyncStatusProtocol.js.map
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.USyncUsernameProtocol = void 0;
|
|
4
|
+
const index_js_1 = require("../../WABinary/index.cjs");
|
|
5
|
+
const USyncUser_js_1 = require("../USyncUser.cjs");
|
|
6
|
+
class USyncUsernameProtocol {
|
|
7
|
+
constructor() {
|
|
8
|
+
this.name = 'username';
|
|
9
|
+
}
|
|
10
|
+
getQueryElement() {
|
|
11
|
+
return {
|
|
12
|
+
tag: 'username',
|
|
13
|
+
attrs: {}
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
getUserElement(user) {
|
|
17
|
+
void user;
|
|
18
|
+
return null;
|
|
19
|
+
}
|
|
20
|
+
parser(node) {
|
|
21
|
+
if (node.tag === 'username') {
|
|
22
|
+
(0, index_js_1.assertNodeErrorFree)(node);
|
|
23
|
+
return typeof node.content === 'string' ? node.content : null;
|
|
24
|
+
}
|
|
25
|
+
return null;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
exports.USyncUsernameProtocol = USyncUsernameProtocol;
|
|
29
|
+
//# sourceMappingURL=USyncUsernameProtocol.js.map
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.USyncBotProfileProtocol = void 0;
|
|
4
|
+
const index_js_1 = require("../../WABinary/index.cjs");
|
|
5
|
+
const USyncUser_js_1 = require("../USyncUser.cjs");
|
|
6
|
+
class USyncBotProfileProtocol {
|
|
7
|
+
constructor() {
|
|
8
|
+
this.name = 'bot';
|
|
9
|
+
}
|
|
10
|
+
getQueryElement() {
|
|
11
|
+
return {
|
|
12
|
+
tag: 'bot',
|
|
13
|
+
attrs: {},
|
|
14
|
+
content: [{ tag: 'profile', attrs: { v: '1' } }]
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
getUserElement(user) {
|
|
18
|
+
return {
|
|
19
|
+
tag: 'bot',
|
|
20
|
+
attrs: {},
|
|
21
|
+
content: [{ tag: 'profile', attrs: { persona_id: user.personaId } }]
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
parser(node) {
|
|
25
|
+
const botNode = (0, index_js_1.getBinaryNodeChild)(node, 'bot');
|
|
26
|
+
const profile = (0, index_js_1.getBinaryNodeChild)(botNode, 'profile');
|
|
27
|
+
const commandsNode = (0, index_js_1.getBinaryNodeChild)(profile, 'commands');
|
|
28
|
+
const promptsNode = (0, index_js_1.getBinaryNodeChild)(profile, 'prompts');
|
|
29
|
+
const commands = [];
|
|
30
|
+
const prompts = [];
|
|
31
|
+
for (const command of (0, index_js_1.getBinaryNodeChildren)(commandsNode, 'command')) {
|
|
32
|
+
commands.push({
|
|
33
|
+
name: (0, index_js_1.getBinaryNodeChildString)(command, 'name'),
|
|
34
|
+
description: (0, index_js_1.getBinaryNodeChildString)(command, 'description')
|
|
35
|
+
});
|
|
36
|
+
}
|
|
37
|
+
for (const prompt of (0, index_js_1.getBinaryNodeChildren)(promptsNode, 'prompt')) {
|
|
38
|
+
prompts.push(`${(0, index_js_1.getBinaryNodeChildString)(prompt, 'emoji')} ${(0, index_js_1.getBinaryNodeChildString)(prompt, 'text')}`);
|
|
39
|
+
}
|
|
40
|
+
return {
|
|
41
|
+
isDefault: !!(0, index_js_1.getBinaryNodeChild)(profile, 'default'),
|
|
42
|
+
jid: node.attrs.jid,
|
|
43
|
+
name: (0, index_js_1.getBinaryNodeChildString)(profile, 'name'),
|
|
44
|
+
attributes: (0, index_js_1.getBinaryNodeChildString)(profile, 'attributes'),
|
|
45
|
+
description: (0, index_js_1.getBinaryNodeChildString)(profile, 'description'),
|
|
46
|
+
category: (0, index_js_1.getBinaryNodeChildString)(profile, 'category'),
|
|
47
|
+
personaId: profile.attrs['persona_id'],
|
|
48
|
+
commandsDescription: (0, index_js_1.getBinaryNodeChildString)(commandsNode, 'description'),
|
|
49
|
+
commands,
|
|
50
|
+
prompts
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
exports.USyncBotProfileProtocol = USyncBotProfileProtocol;
|
|
55
|
+
//# sourceMappingURL=UsyncBotProfileProtocol.js.map
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.USyncLIDProtocol = void 0;
|
|
4
|
+
class USyncLIDProtocol {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.name = 'lid';
|
|
7
|
+
}
|
|
8
|
+
getQueryElement() {
|
|
9
|
+
return {
|
|
10
|
+
tag: 'lid',
|
|
11
|
+
attrs: {}
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
getUserElement(user) {
|
|
15
|
+
if (user.lid) {
|
|
16
|
+
return {
|
|
17
|
+
tag: 'lid',
|
|
18
|
+
attrs: { jid: user.lid }
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
else {
|
|
22
|
+
return null;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
parser(node) {
|
|
26
|
+
if (node.tag === 'lid') {
|
|
27
|
+
return node.attrs.val;
|
|
28
|
+
}
|
|
29
|
+
return null;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
exports.USyncLIDProtocol = USyncLIDProtocol;
|
|
33
|
+
//# sourceMappingURL=UsyncLIDProtocol.js.map
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./USyncDeviceProtocol.cjs"), exports);
|
|
18
|
+
__exportStar(require("./USyncContactProtocol.cjs"), exports);
|
|
19
|
+
__exportStar(require("./USyncStatusProtocol.cjs"), exports);
|
|
20
|
+
__exportStar(require("./USyncDisappearingModeProtocol.cjs"), exports);
|
|
21
|
+
__exportStar(require("./USyncUsernameProtocol.cjs"), exports);
|
|
22
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.USyncQuery = void 0;
|
|
4
|
+
const index_js_1 = require("../WABinary/index.cjs");
|
|
5
|
+
const UsyncBotProfileProtocol_js_1 = require("./Protocols/UsyncBotProfileProtocol.cjs");
|
|
6
|
+
const UsyncLIDProtocol_js_1 = require("./Protocols/UsyncLIDProtocol.cjs");
|
|
7
|
+
const index_js_2 = require("./Protocols/index.cjs");
|
|
8
|
+
const USyncUser_js_1 = require("./USyncUser.cjs");
|
|
9
|
+
class USyncQuery {
|
|
10
|
+
constructor() {
|
|
11
|
+
this.protocols = [];
|
|
12
|
+
this.users = [];
|
|
13
|
+
this.context = 'interactive';
|
|
14
|
+
this.mode = 'query';
|
|
15
|
+
}
|
|
16
|
+
withMode(mode) {
|
|
17
|
+
this.mode = mode;
|
|
18
|
+
return this;
|
|
19
|
+
}
|
|
20
|
+
withContext(context) {
|
|
21
|
+
this.context = context;
|
|
22
|
+
return this;
|
|
23
|
+
}
|
|
24
|
+
withUser(user) {
|
|
25
|
+
this.users.push(user);
|
|
26
|
+
return this;
|
|
27
|
+
}
|
|
28
|
+
parseUSyncQueryResult(result) {
|
|
29
|
+
if (result?.attrs.type !== 'result') {
|
|
30
|
+
return;
|
|
31
|
+
}
|
|
32
|
+
const protocolMap = Object.fromEntries(this.protocols.map(protocol => {
|
|
33
|
+
return [protocol.name, protocol.parser];
|
|
34
|
+
}));
|
|
35
|
+
const queryResult = {
|
|
36
|
+
// TODO: implement errors etc.
|
|
37
|
+
list: [],
|
|
38
|
+
sideList: []
|
|
39
|
+
};
|
|
40
|
+
const usyncNode = (0, index_js_1.getBinaryNodeChild)(result, 'usync');
|
|
41
|
+
//TODO: implement error backoff, refresh etc.
|
|
42
|
+
//TODO: see if there are any errors in the result node
|
|
43
|
+
//const resultNode = getBinaryNodeChild(usyncNode, 'result')
|
|
44
|
+
const listNode = usyncNode ? (0, index_js_1.getBinaryNodeChild)(usyncNode, 'list') : undefined;
|
|
45
|
+
if (listNode?.content && Array.isArray(listNode.content)) {
|
|
46
|
+
queryResult.list = listNode.content.reduce((acc, node) => {
|
|
47
|
+
const id = node?.attrs.jid;
|
|
48
|
+
if (id) {
|
|
49
|
+
const data = Array.isArray(node?.content)
|
|
50
|
+
? Object.fromEntries(node.content
|
|
51
|
+
.map(content => {
|
|
52
|
+
const protocol = content.tag;
|
|
53
|
+
const parser = protocolMap[protocol];
|
|
54
|
+
if (parser) {
|
|
55
|
+
return [protocol, parser(content)];
|
|
56
|
+
}
|
|
57
|
+
else {
|
|
58
|
+
return [protocol, null];
|
|
59
|
+
}
|
|
60
|
+
})
|
|
61
|
+
.filter(([, b]) => b !== null))
|
|
62
|
+
: {};
|
|
63
|
+
acc.push({ ...data, id });
|
|
64
|
+
}
|
|
65
|
+
return acc;
|
|
66
|
+
}, []);
|
|
67
|
+
}
|
|
68
|
+
//TODO: implement side list
|
|
69
|
+
//const sideListNode = getBinaryNodeChild(usyncNode, 'side_list')
|
|
70
|
+
return queryResult;
|
|
71
|
+
}
|
|
72
|
+
withDeviceProtocol() {
|
|
73
|
+
this.protocols.push(new index_js_2.USyncDeviceProtocol());
|
|
74
|
+
return this;
|
|
75
|
+
}
|
|
76
|
+
withContactProtocol() {
|
|
77
|
+
this.protocols.push(new index_js_2.USyncContactProtocol());
|
|
78
|
+
return this;
|
|
79
|
+
}
|
|
80
|
+
withStatusProtocol() {
|
|
81
|
+
this.protocols.push(new index_js_2.USyncStatusProtocol());
|
|
82
|
+
return this;
|
|
83
|
+
}
|
|
84
|
+
withDisappearingModeProtocol() {
|
|
85
|
+
this.protocols.push(new index_js_2.USyncDisappearingModeProtocol());
|
|
86
|
+
return this;
|
|
87
|
+
}
|
|
88
|
+
withBotProfileProtocol() {
|
|
89
|
+
this.protocols.push(new UsyncBotProfileProtocol_js_1.USyncBotProfileProtocol());
|
|
90
|
+
return this;
|
|
91
|
+
}
|
|
92
|
+
withLIDProtocol() {
|
|
93
|
+
this.protocols.push(new UsyncLIDProtocol_js_1.USyncLIDProtocol());
|
|
94
|
+
return this;
|
|
95
|
+
}
|
|
96
|
+
withUsernameProtocol() {
|
|
97
|
+
this.protocols.push(new index_js_2.USyncUsernameProtocol());
|
|
98
|
+
return this;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
exports.USyncQuery = USyncQuery;
|
|
102
|
+
//# sourceMappingURL=USyncQuery.js.map
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.USyncUser = void 0;
|
|
4
|
+
class USyncUser {
|
|
5
|
+
withId(id) {
|
|
6
|
+
this.id = id;
|
|
7
|
+
return this;
|
|
8
|
+
}
|
|
9
|
+
withLid(lid) {
|
|
10
|
+
this.lid = lid;
|
|
11
|
+
return this;
|
|
12
|
+
}
|
|
13
|
+
withPhone(phone) {
|
|
14
|
+
this.phone = phone;
|
|
15
|
+
return this;
|
|
16
|
+
}
|
|
17
|
+
withUsername(username) {
|
|
18
|
+
this.username = username;
|
|
19
|
+
return this;
|
|
20
|
+
}
|
|
21
|
+
withUsernameKey(usernameKey) {
|
|
22
|
+
this.usernameKey = usernameKey;
|
|
23
|
+
return this;
|
|
24
|
+
}
|
|
25
|
+
withType(type) {
|
|
26
|
+
this.type = type;
|
|
27
|
+
return this;
|
|
28
|
+
}
|
|
29
|
+
withPersonaId(personaId) {
|
|
30
|
+
this.personaId = personaId;
|
|
31
|
+
return this;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
exports.USyncUser = USyncUser;
|
|
35
|
+
//# sourceMappingURL=USyncUser.js.map
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./Protocols/index.cjs"), exports);
|
|
18
|
+
__exportStar(require("./USyncQuery.cjs"), exports);
|
|
19
|
+
__exportStar(require("./USyncUser.cjs"), exports);
|
|
20
|
+
//# sourceMappingURL=index.js.map
|