@deffa5556/bail 1.0.6 → 1.0.7
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/package.json +11 -6
|
@@ -0,0 +1,353 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.extractGroupMetadata = exports.makeGroupsSocket = void 0;
|
|
4
|
+
const boom_1 = require("@hapi/boom");
|
|
5
|
+
const index_js_1 = require("../../WAProto/index.cjs");
|
|
6
|
+
const index_js_2 = require("../Types/index.cjs");
|
|
7
|
+
const index_js_3 = require("../Utils/index.cjs");
|
|
8
|
+
const index_js_4 = require("../WABinary/index.cjs");
|
|
9
|
+
const chats_js_1 = require("./chats.cjs");
|
|
10
|
+
const makeGroupsSocket = (config) => {
|
|
11
|
+
const sock = (0, chats_js_1.makeChatsSocket)(config);
|
|
12
|
+
const { authState, ev, query, upsertMessage } = sock;
|
|
13
|
+
const groupQuery = async (jid, type, content) => query({
|
|
14
|
+
tag: 'iq',
|
|
15
|
+
attrs: {
|
|
16
|
+
type,
|
|
17
|
+
xmlns: 'w:g2',
|
|
18
|
+
to: jid
|
|
19
|
+
},
|
|
20
|
+
content
|
|
21
|
+
});
|
|
22
|
+
const groupMetadata = async (jid) => {
|
|
23
|
+
const result = await groupQuery(jid, 'get', [{ tag: 'query', attrs: { request: 'interactive' } }]);
|
|
24
|
+
return (0, exports.extractGroupMetadata)(result);
|
|
25
|
+
};
|
|
26
|
+
const groupFetchAllParticipating = async () => {
|
|
27
|
+
const result = await query({
|
|
28
|
+
tag: 'iq',
|
|
29
|
+
attrs: {
|
|
30
|
+
to: '@g.us',
|
|
31
|
+
xmlns: 'w:g2',
|
|
32
|
+
type: 'get'
|
|
33
|
+
},
|
|
34
|
+
content: [
|
|
35
|
+
{
|
|
36
|
+
tag: 'participating',
|
|
37
|
+
attrs: {},
|
|
38
|
+
content: [
|
|
39
|
+
{ tag: 'participants', attrs: {} },
|
|
40
|
+
{ tag: 'description', attrs: {} }
|
|
41
|
+
]
|
|
42
|
+
}
|
|
43
|
+
]
|
|
44
|
+
});
|
|
45
|
+
const data = {};
|
|
46
|
+
const groupsChild = (0, index_js_4.getBinaryNodeChild)(result, 'groups');
|
|
47
|
+
if (groupsChild) {
|
|
48
|
+
const groups = (0, index_js_4.getBinaryNodeChildren)(groupsChild, 'group');
|
|
49
|
+
for (const groupNode of groups) {
|
|
50
|
+
const meta = (0, exports.extractGroupMetadata)({
|
|
51
|
+
tag: 'result',
|
|
52
|
+
attrs: {},
|
|
53
|
+
content: [groupNode]
|
|
54
|
+
});
|
|
55
|
+
data[meta.id] = meta;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
// TODO: properly parse LID / PN DATA
|
|
59
|
+
sock.ev.emit('groups.update', Object.values(data));
|
|
60
|
+
return data;
|
|
61
|
+
};
|
|
62
|
+
sock.ws.on('CB:ib,,dirty', async (node) => {
|
|
63
|
+
const { attrs } = (0, index_js_4.getBinaryNodeChild)(node, 'dirty');
|
|
64
|
+
if (attrs.type !== 'groups') {
|
|
65
|
+
return;
|
|
66
|
+
}
|
|
67
|
+
await groupFetchAllParticipating();
|
|
68
|
+
await sock.cleanDirtyBits('groups');
|
|
69
|
+
});
|
|
70
|
+
return {
|
|
71
|
+
...sock,
|
|
72
|
+
groupQuery,
|
|
73
|
+
groupMetadata,
|
|
74
|
+
groupCreate: async (subject, participants) => {
|
|
75
|
+
const key = (0, index_js_3.generateMessageIDV2)();
|
|
76
|
+
const result = await groupQuery('@g.us', 'set', [
|
|
77
|
+
{
|
|
78
|
+
tag: 'create',
|
|
79
|
+
attrs: {
|
|
80
|
+
subject,
|
|
81
|
+
key
|
|
82
|
+
},
|
|
83
|
+
content: participants.map(jid => ({
|
|
84
|
+
tag: 'participant',
|
|
85
|
+
attrs: { jid }
|
|
86
|
+
}))
|
|
87
|
+
}
|
|
88
|
+
]);
|
|
89
|
+
return (0, exports.extractGroupMetadata)(result);
|
|
90
|
+
},
|
|
91
|
+
groupLeave: async (id) => {
|
|
92
|
+
await groupQuery('@g.us', 'set', [
|
|
93
|
+
{
|
|
94
|
+
tag: 'leave',
|
|
95
|
+
attrs: {},
|
|
96
|
+
content: [{ tag: 'group', attrs: { id } }]
|
|
97
|
+
}
|
|
98
|
+
]);
|
|
99
|
+
},
|
|
100
|
+
groupUpdateSubject: async (jid, subject) => {
|
|
101
|
+
await groupQuery(jid, 'set', [
|
|
102
|
+
{
|
|
103
|
+
tag: 'subject',
|
|
104
|
+
attrs: {},
|
|
105
|
+
content: Buffer.from(subject, 'utf-8')
|
|
106
|
+
}
|
|
107
|
+
]);
|
|
108
|
+
},
|
|
109
|
+
groupRequestParticipantsList: async (jid) => {
|
|
110
|
+
const result = await groupQuery(jid, 'get', [
|
|
111
|
+
{
|
|
112
|
+
tag: 'membership_approval_requests',
|
|
113
|
+
attrs: {}
|
|
114
|
+
}
|
|
115
|
+
]);
|
|
116
|
+
const node = (0, index_js_4.getBinaryNodeChild)(result, 'membership_approval_requests');
|
|
117
|
+
const participants = (0, index_js_4.getBinaryNodeChildren)(node, 'membership_approval_request');
|
|
118
|
+
return participants.map(v => v.attrs);
|
|
119
|
+
},
|
|
120
|
+
groupRequestParticipantsUpdate: async (jid, participants, action) => {
|
|
121
|
+
const result = await groupQuery(jid, 'set', [
|
|
122
|
+
{
|
|
123
|
+
tag: 'membership_requests_action',
|
|
124
|
+
attrs: {},
|
|
125
|
+
content: [
|
|
126
|
+
{
|
|
127
|
+
tag: action,
|
|
128
|
+
attrs: {},
|
|
129
|
+
content: participants.map(jid => ({
|
|
130
|
+
tag: 'participant',
|
|
131
|
+
attrs: { jid }
|
|
132
|
+
}))
|
|
133
|
+
}
|
|
134
|
+
]
|
|
135
|
+
}
|
|
136
|
+
]);
|
|
137
|
+
const node = (0, index_js_4.getBinaryNodeChild)(result, 'membership_requests_action');
|
|
138
|
+
const nodeAction = (0, index_js_4.getBinaryNodeChild)(node, action);
|
|
139
|
+
const participantsAffected = (0, index_js_4.getBinaryNodeChildren)(nodeAction, 'participant');
|
|
140
|
+
return participantsAffected.map(p => {
|
|
141
|
+
return { status: p.attrs.error || '200', jid: p.attrs.jid };
|
|
142
|
+
});
|
|
143
|
+
},
|
|
144
|
+
groupParticipantsUpdate: async (jid, participants, action) => {
|
|
145
|
+
const result = await groupQuery(jid, 'set', [
|
|
146
|
+
{
|
|
147
|
+
tag: action,
|
|
148
|
+
attrs: {},
|
|
149
|
+
content: participants.map(jid => ({
|
|
150
|
+
tag: 'participant',
|
|
151
|
+
attrs: { jid }
|
|
152
|
+
}))
|
|
153
|
+
}
|
|
154
|
+
]);
|
|
155
|
+
const node = (0, index_js_4.getBinaryNodeChild)(result, action);
|
|
156
|
+
const participantsAffected = (0, index_js_4.getBinaryNodeChildren)(node, 'participant');
|
|
157
|
+
return participantsAffected.map(p => {
|
|
158
|
+
return { status: p.attrs.error || '200', jid: p.attrs.jid, content: p };
|
|
159
|
+
});
|
|
160
|
+
},
|
|
161
|
+
groupUpdateDescription: async (jid, description) => {
|
|
162
|
+
const metadata = await groupMetadata(jid);
|
|
163
|
+
const prev = metadata.descId ?? null;
|
|
164
|
+
await groupQuery(jid, 'set', [
|
|
165
|
+
{
|
|
166
|
+
tag: 'description',
|
|
167
|
+
attrs: {
|
|
168
|
+
...(description ? { id: (0, index_js_3.generateMessageIDV2)() } : { delete: 'true' }),
|
|
169
|
+
...(prev ? { prev } : {})
|
|
170
|
+
},
|
|
171
|
+
content: description ? [{ tag: 'body', attrs: {}, content: Buffer.from(description, 'utf-8') }] : undefined
|
|
172
|
+
}
|
|
173
|
+
]);
|
|
174
|
+
},
|
|
175
|
+
groupInviteCode: async (jid) => {
|
|
176
|
+
const result = await groupQuery(jid, 'get', [{ tag: 'invite', attrs: {} }]);
|
|
177
|
+
const inviteNode = (0, index_js_4.getBinaryNodeChild)(result, 'invite');
|
|
178
|
+
return inviteNode?.attrs.code;
|
|
179
|
+
},
|
|
180
|
+
groupRevokeInvite: async (jid) => {
|
|
181
|
+
const result = await groupQuery(jid, 'set', [{ tag: 'invite', attrs: {} }]);
|
|
182
|
+
const inviteNode = (0, index_js_4.getBinaryNodeChild)(result, 'invite');
|
|
183
|
+
return inviteNode?.attrs.code;
|
|
184
|
+
},
|
|
185
|
+
groupAcceptInvite: async (code) => {
|
|
186
|
+
const results = await groupQuery('@g.us', 'set', [{ tag: 'invite', attrs: { code } }]);
|
|
187
|
+
const result = (0, index_js_4.getBinaryNodeChild)(results, 'group');
|
|
188
|
+
return result?.attrs.jid;
|
|
189
|
+
},
|
|
190
|
+
/**
|
|
191
|
+
* revoke a v4 invite for someone
|
|
192
|
+
* @param groupJid group jid
|
|
193
|
+
* @param invitedJid jid of person you invited
|
|
194
|
+
* @returns true if successful
|
|
195
|
+
*/
|
|
196
|
+
groupRevokeInviteV4: async (groupJid, invitedJid) => {
|
|
197
|
+
const result = await groupQuery(groupJid, 'set', [
|
|
198
|
+
{ tag: 'revoke', attrs: {}, content: [{ tag: 'participant', attrs: { jid: invitedJid } }] }
|
|
199
|
+
]);
|
|
200
|
+
return !!result;
|
|
201
|
+
},
|
|
202
|
+
/**
|
|
203
|
+
* accept a GroupInviteMessage
|
|
204
|
+
* @param key the key of the invite message, or optionally only provide the jid of the person who sent the invite
|
|
205
|
+
* @param inviteMessage the message to accept
|
|
206
|
+
*/
|
|
207
|
+
groupAcceptInviteV4: ev.createBufferedFunction(async (key, inviteMessage) => {
|
|
208
|
+
key = typeof key === 'string' ? { remoteJid: key } : key;
|
|
209
|
+
const results = await groupQuery(inviteMessage.groupJid, 'set', [
|
|
210
|
+
{
|
|
211
|
+
tag: 'accept',
|
|
212
|
+
attrs: {
|
|
213
|
+
code: inviteMessage.inviteCode,
|
|
214
|
+
expiration: inviteMessage.inviteExpiration.toString(),
|
|
215
|
+
admin: key.remoteJid
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
]);
|
|
219
|
+
// if we have the full message key
|
|
220
|
+
// update the invite message to be expired
|
|
221
|
+
if (key.id) {
|
|
222
|
+
// create new invite message that is expired
|
|
223
|
+
inviteMessage = index_js_1.proto.Message.GroupInviteMessage.fromObject(inviteMessage);
|
|
224
|
+
inviteMessage.inviteExpiration = 0;
|
|
225
|
+
inviteMessage.inviteCode = '';
|
|
226
|
+
ev.emit('messages.update', [
|
|
227
|
+
{
|
|
228
|
+
key,
|
|
229
|
+
update: {
|
|
230
|
+
message: {
|
|
231
|
+
groupInviteMessage: inviteMessage
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
]);
|
|
236
|
+
}
|
|
237
|
+
// generate the group add message
|
|
238
|
+
await upsertMessage({
|
|
239
|
+
key: {
|
|
240
|
+
remoteJid: inviteMessage.groupJid,
|
|
241
|
+
id: (0, index_js_3.generateMessageIDV2)(sock.user?.id),
|
|
242
|
+
fromMe: false,
|
|
243
|
+
participant: key.remoteJid
|
|
244
|
+
},
|
|
245
|
+
messageStubType: index_js_2.WAMessageStubType.GROUP_PARTICIPANT_ADD,
|
|
246
|
+
messageStubParameters: [JSON.stringify(authState.creds.me)],
|
|
247
|
+
participant: key.remoteJid,
|
|
248
|
+
messageTimestamp: (0, index_js_3.unixTimestampSeconds)()
|
|
249
|
+
}, 'notify');
|
|
250
|
+
return results.attrs.from;
|
|
251
|
+
}),
|
|
252
|
+
groupGetInviteInfo: async (code) => {
|
|
253
|
+
const results = await groupQuery('@g.us', 'get', [{ tag: 'invite', attrs: { code } }]);
|
|
254
|
+
return (0, exports.extractGroupMetadata)(results);
|
|
255
|
+
},
|
|
256
|
+
groupToggleEphemeral: async (jid, ephemeralExpiration) => {
|
|
257
|
+
const content = ephemeralExpiration
|
|
258
|
+
? { tag: 'ephemeral', attrs: { expiration: ephemeralExpiration.toString() } }
|
|
259
|
+
: { tag: 'not_ephemeral', attrs: {} };
|
|
260
|
+
await groupQuery(jid, 'set', [content]);
|
|
261
|
+
},
|
|
262
|
+
groupSettingUpdate: async (jid, setting) => {
|
|
263
|
+
await groupQuery(jid, 'set', [{ tag: setting, attrs: {} }]);
|
|
264
|
+
},
|
|
265
|
+
groupMemberAddMode: async (jid, mode) => {
|
|
266
|
+
await groupQuery(jid, 'set', [{ tag: 'member_add_mode', attrs: {}, content: mode }]);
|
|
267
|
+
},
|
|
268
|
+
groupJoinApprovalMode: async (jid, mode) => {
|
|
269
|
+
await groupQuery(jid, 'set', [
|
|
270
|
+
{ tag: 'membership_approval_mode', attrs: {}, content: [{ tag: 'group_join', attrs: { state: mode } }] }
|
|
271
|
+
]);
|
|
272
|
+
},
|
|
273
|
+
groupFetchAllParticipating
|
|
274
|
+
};
|
|
275
|
+
};
|
|
276
|
+
exports.makeGroupsSocket = makeGroupsSocket;
|
|
277
|
+
const extractGroupMetadata = (result) => {
|
|
278
|
+
const group = (0, index_js_4.getBinaryNodeChild)(result, 'group');
|
|
279
|
+
if (!group) {
|
|
280
|
+
// Mirror WAWeb: surface server/client errors with their code+text instead of crashing.
|
|
281
|
+
const errorNode = (0, index_js_4.getBinaryNodeChild)(result, 'error');
|
|
282
|
+
if (errorNode) {
|
|
283
|
+
const code = errorNode.attrs.code ? +errorNode.attrs.code : 500;
|
|
284
|
+
const text = errorNode.attrs.text || 'group metadata query failed';
|
|
285
|
+
throw new boom_1.Boom(text, { statusCode: code, data: errorNode });
|
|
286
|
+
}
|
|
287
|
+
throw new boom_1.Boom('Invalid group metadata response: missing <group> node', { data: result });
|
|
288
|
+
}
|
|
289
|
+
if (!group.attrs.id) {
|
|
290
|
+
throw new boom_1.Boom('Invalid group metadata response: missing group id', { data: group });
|
|
291
|
+
}
|
|
292
|
+
const descChild = (0, index_js_4.getBinaryNodeChild)(group, 'description');
|
|
293
|
+
let desc;
|
|
294
|
+
let descId;
|
|
295
|
+
let descOwner;
|
|
296
|
+
let descOwnerPn;
|
|
297
|
+
let descOwnerUsername;
|
|
298
|
+
let descTime;
|
|
299
|
+
if (descChild) {
|
|
300
|
+
desc = (0, index_js_4.getBinaryNodeChildString)(descChild, 'body');
|
|
301
|
+
descOwner = descChild.attrs.participant ? (0, index_js_4.jidNormalizedUser)(descChild.attrs.participant) : undefined;
|
|
302
|
+
descOwnerPn = descChild.attrs.participant_pn ? (0, index_js_4.jidNormalizedUser)(descChild.attrs.participant_pn) : undefined;
|
|
303
|
+
descOwnerUsername = descChild.attrs.participant_username || undefined;
|
|
304
|
+
descTime = +descChild.attrs.t;
|
|
305
|
+
descId = descChild.attrs.id;
|
|
306
|
+
}
|
|
307
|
+
const groupId = group.attrs.id.includes('@') ? group.attrs.id : (0, index_js_4.jidEncode)(group.attrs.id, 'g.us');
|
|
308
|
+
const eph = (0, index_js_4.getBinaryNodeChild)(group, 'ephemeral')?.attrs.expiration;
|
|
309
|
+
const memberAddMode = (0, index_js_4.getBinaryNodeChildString)(group, 'member_add_mode') === 'all_member_add';
|
|
310
|
+
const metadata = {
|
|
311
|
+
id: groupId,
|
|
312
|
+
notify: group.attrs.notify,
|
|
313
|
+
addressingMode: group.attrs.addressing_mode === 'lid' ? index_js_2.WAMessageAddressingMode.LID : index_js_2.WAMessageAddressingMode.PN,
|
|
314
|
+
subject: group.attrs.subject,
|
|
315
|
+
subjectOwner: group.attrs.s_o,
|
|
316
|
+
subjectOwnerPn: group.attrs.s_o_pn,
|
|
317
|
+
subjectOwnerUsername: group.attrs.s_o_username,
|
|
318
|
+
subjectTime: +group.attrs.s_t,
|
|
319
|
+
size: group.attrs.size ? +group.attrs.size : (0, index_js_4.getBinaryNodeChildren)(group, 'participant').length,
|
|
320
|
+
creation: +group.attrs.creation,
|
|
321
|
+
owner: group.attrs.creator ? (0, index_js_4.jidNormalizedUser)(group.attrs.creator) : undefined,
|
|
322
|
+
ownerPn: group.attrs.creator_pn ? (0, index_js_4.jidNormalizedUser)(group.attrs.creator_pn) : undefined,
|
|
323
|
+
ownerUsername: group.attrs.creator_username || undefined,
|
|
324
|
+
owner_country_code: group.attrs.creator_country_code,
|
|
325
|
+
desc,
|
|
326
|
+
descId,
|
|
327
|
+
descOwner,
|
|
328
|
+
descOwnerPn,
|
|
329
|
+
descOwnerUsername,
|
|
330
|
+
descTime,
|
|
331
|
+
linkedParent: (0, index_js_4.getBinaryNodeChild)(group, 'linked_parent')?.attrs.jid || undefined,
|
|
332
|
+
restrict: !!(0, index_js_4.getBinaryNodeChild)(group, 'locked'),
|
|
333
|
+
announce: !!(0, index_js_4.getBinaryNodeChild)(group, 'announcement'),
|
|
334
|
+
isCommunity: !!(0, index_js_4.getBinaryNodeChild)(group, 'parent'),
|
|
335
|
+
isCommunityAnnounce: !!(0, index_js_4.getBinaryNodeChild)(group, 'default_sub_group'),
|
|
336
|
+
joinApprovalMode: !!(0, index_js_4.getBinaryNodeChild)(group, 'membership_approval_mode'),
|
|
337
|
+
memberAddMode,
|
|
338
|
+
participants: (0, index_js_4.getBinaryNodeChildren)(group, 'participant').map(({ attrs }) => {
|
|
339
|
+
// TODO: Store LID MAPPINGS
|
|
340
|
+
return {
|
|
341
|
+
id: attrs.jid,
|
|
342
|
+
phoneNumber: (0, index_js_4.isLidUser)(attrs.jid) && (0, index_js_4.isPnUser)(attrs.phone_number) ? attrs.phone_number : undefined,
|
|
343
|
+
lid: (0, index_js_4.isPnUser)(attrs.jid) && (0, index_js_4.isLidUser)(attrs.lid) ? attrs.lid : undefined,
|
|
344
|
+
username: attrs.participant_username || attrs.username || undefined,
|
|
345
|
+
admin: (attrs.type || null)
|
|
346
|
+
};
|
|
347
|
+
}),
|
|
348
|
+
ephemeralDuration: eph ? +eph : undefined
|
|
349
|
+
};
|
|
350
|
+
return metadata;
|
|
351
|
+
};
|
|
352
|
+
exports.extractGroupMetadata = extractGroupMetadata;
|
|
353
|
+
//# sourceMappingURL=groups.js.map
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const index_js_1 = require("../Defaults/index.cjs");
|
|
4
|
+
const communities_js_1 = require("./communities.cjs");
|
|
5
|
+
// export the last socket layer
|
|
6
|
+
const makeWASocket = (config) => {
|
|
7
|
+
const newConfig = {
|
|
8
|
+
...index_js_1.DEFAULT_CONNECTION_CONFIG,
|
|
9
|
+
...config
|
|
10
|
+
};
|
|
11
|
+
return (0, communities_js_1.makeCommunitiesSocket)(newConfig);
|
|
12
|
+
};
|
|
13
|
+
exports.default = makeWASocket;
|
|
14
|
+
//# sourceMappingURL=index.js.map
|