Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
it.auties.whatsapp.api.Whatsapp Maven / Gradle / Ivy
package it.auties.whatsapp.api;
import com.fasterxml.jackson.core.type.TypeReference;
import com.google.zxing.BinaryBitmap;
import com.google.zxing.ChecksumException;
import com.google.zxing.FormatException;
import com.google.zxing.NotFoundException;
import com.google.zxing.client.j2se.BufferedImageLuminanceSource;
import com.google.zxing.common.HybridBinarizer;
import com.google.zxing.qrcode.QRCodeReader;
import it.auties.curve25519.Curve25519;
import it.auties.whatsapp.controller.Keys;
import it.auties.whatsapp.controller.Store;
import it.auties.whatsapp.crypto.AesGcm;
import it.auties.whatsapp.crypto.Hkdf;
import it.auties.whatsapp.crypto.Hmac;
import it.auties.whatsapp.crypto.SessionCipher;
import it.auties.whatsapp.implementation.SocketHandler;
import it.auties.whatsapp.implementation.SocketState;
import it.auties.whatsapp.listener.Listener;
import it.auties.whatsapp.listener.ListenerConsumer;
import it.auties.whatsapp.listener.RegisterListenerProcessor;
import it.auties.whatsapp.model.action.*;
import it.auties.whatsapp.model.business.*;
import it.auties.whatsapp.model.call.Call;
import it.auties.whatsapp.model.call.CallStatus;
import it.auties.whatsapp.model.chat.*;
import it.auties.whatsapp.model.companion.CompanionLinkResult;
import it.auties.whatsapp.model.contact.Contact;
import it.auties.whatsapp.model.contact.ContactStatus;
import it.auties.whatsapp.model.info.*;
import it.auties.whatsapp.model.jid.Jid;
import it.auties.whatsapp.model.jid.JidProvider;
import it.auties.whatsapp.model.jid.JidServer;
import it.auties.whatsapp.model.media.AttachmentType;
import it.auties.whatsapp.model.media.MediaFile;
import it.auties.whatsapp.model.message.model.*;
import it.auties.whatsapp.model.message.server.ProtocolMessage;
import it.auties.whatsapp.model.message.server.ProtocolMessageBuilder;
import it.auties.whatsapp.model.message.standard.CallMessageBuilder;
import it.auties.whatsapp.model.message.standard.NewsletterAdminInviteMessageBuilder;
import it.auties.whatsapp.model.message.standard.ReactionMessageBuilder;
import it.auties.whatsapp.model.message.standard.TextMessage;
import it.auties.whatsapp.model.mobile.AccountInfo;
import it.auties.whatsapp.model.mobile.CountryLocale;
import it.auties.whatsapp.model.newsletter.*;
import it.auties.whatsapp.model.node.Attributes;
import it.auties.whatsapp.model.node.Node;
import it.auties.whatsapp.model.privacy.GdprAccountReport;
import it.auties.whatsapp.model.privacy.PrivacySettingEntry;
import it.auties.whatsapp.model.privacy.PrivacySettingType;
import it.auties.whatsapp.model.privacy.PrivacySettingValue;
import it.auties.whatsapp.model.product.LeaveNewsletterRequest;
import it.auties.whatsapp.model.request.*;
import it.auties.whatsapp.model.request.UpdateNewsletterRequest.UpdatePayload;
import it.auties.whatsapp.model.response.*;
import it.auties.whatsapp.model.setting.LocaleSettings;
import it.auties.whatsapp.model.setting.PushNameSettings;
import it.auties.whatsapp.model.setting.Setting;
import it.auties.whatsapp.model.signal.auth.*;
import it.auties.whatsapp.model.signal.keypair.SignalKeyPair;
import it.auties.whatsapp.model.sync.*;
import it.auties.whatsapp.model.sync.PatchRequest.PatchEntry;
import it.auties.whatsapp.model.sync.RecordSync.Operation;
import it.auties.whatsapp.util.*;
import javax.imageio.ImageIO;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.lang.reflect.Method;
import java.net.URI;
import java.nio.charset.StandardCharsets;
import java.time.Instant;
import java.time.ZonedDateTime;
import java.util.*;
import java.util.concurrent.*;
import java.util.function.BiConsumer;
import java.util.function.Consumer;
import java.util.function.Function;
import java.util.regex.Pattern;
import java.util.stream.Collectors;
import java.util.stream.IntStream;
import java.util.stream.Stream;
import static it.auties.whatsapp.model.contact.ContactStatus.*;
/**
* A class used to interface a user to WhatsappWeb's WebSocket
*/
@SuppressWarnings({"unused", "UnusedReturnValue"})
public class Whatsapp {
private static final byte[] ACCOUNT_SIGNATURE_HEADER = {6, 0};
private static final byte[] DEVICE_MOBILE_SIGNATURE_HEADER = {6, 2};
private static final int COMPANION_PAIRING_TIMEOUT = 10;
private static final int MAX_COMPANIONS = 5;
// The instances are added and removed when the client connects/disconnects
// This is to make sure that the instances remain in memory only as long as it's needed
private static final Map instances = new ConcurrentHashMap<>();
private static final Method registerListenersMethod = getRegisterListenersMethod();
private static final ConcurrentMap usersCache = new ConcurrentHashMap<>();
private static Method getRegisterListenersMethod() {
try {
var clazz = Class.forName(RegisterListenerProcessor.qualifiedClassName());
return clazz.getMethod(RegisterListenerProcessor.methodName(), Whatsapp.class);
}catch (ReflectiveOperationException exception) {
return null;
}
}
static Optional getInstanceByUuid(UUID uuid) {
return Optional.ofNullable(instances.get(uuid));
}
static void removeInstanceByUuid(UUID uuid) {
instances.remove(uuid);
}
/**
* Checks if a connection exists
*
* @param uuid the non-null uuid
* @return a boolean
*/
public static boolean isConnected(UUID uuid) {
return SocketHandler.isConnected(uuid);
}
/**
* Checks if a connection exists
*
* @param phoneNumber the non-null phone number
* @return a boolean
*/
public static boolean isConnected(long phoneNumber) {
return SocketHandler.isConnected(phoneNumber);
}
/**
* Checks if a connection exists
*
* @param alias the non-null alias
* @return a boolean
*/
public static boolean isConnected(String alias) {
return SocketHandler.isConnected(alias);
}
private final SocketHandler socketHandler;
protected Whatsapp(Store store, Keys keys, ErrorHandler errorHandler, WebVerificationHandler webVerificationHandler) {
this.socketHandler = new SocketHandler(this, store, keys, errorHandler, webVerificationHandler);
handleDisconnections(store);
registerListenersAutomatically(store);
}
private void handleDisconnections(Store store) {
addDisconnectedListener((reason) -> {
if (reason != DisconnectReason.RECONNECTING && reason != DisconnectReason.RESTORE) {
removeInstanceByUuid(store.uuid());
}
});
}
private void registerListenersAutomatically(Store store) {
if (!store.autodetectListeners() || registerListenersMethod == null) {
return;
}
try {
registerListenersMethod.invoke(null, this);
} catch (ReflectiveOperationException exception) {
throw new RuntimeException("Cannot register listeners automatically", exception);
}
}
/**
* Creates a new web api
* The web api is based around the WhatsappWeb client
*
* @return a web api builder
*/
public static ConnectionBuilder webBuilder() {
return new ConnectionBuilder<>(ClientType.WEB);
}
/**
* Creates a new mobile api
* The mobile api is based around the Whatsapp App available on IOS and Android
*
* @return a web mobile builder
*/
public static ConnectionBuilder mobileBuilder() {
return new ConnectionBuilder<>(ClientType.MOBILE);
}
/**
* Creates an advanced builder if you need more customization
*
* @return a custom builder
*/
public static WhatsappCustomBuilder customBuilder() {
return new WhatsappCustomBuilder();
}
/**
* Connects to Whatsapp
*
* @return a future
*/
public CompletableFuture connect() {
return socketHandler.connect()
.thenRunAsync(() -> instances.put(store().uuid(), this))
.thenApply(ignored -> this);
}
/**
* Waits for this session to be disconnected
*/
public void awaitDisconnection() {
var future = new CompletableFuture();
addDisconnectedListener((reason) -> {
if(reason != DisconnectReason.RECONNECTING && reason != DisconnectReason.RESTORE) {
future.complete(null);
}
});
future.join();
}
/**
* Returns whether the connection is active or not
*
* @return a boolean
*/
public boolean isConnected() {
return socketHandler.state() == SocketState.CONNECTED;
}
/**
* Returns the keys associated with this session
*
* @return a non-null WhatsappKeys
*/
public Keys keys() {
return socketHandler.keys();
}
/**
* Returns the store associated with this session
*
* @return a non-null WhatsappStore
*/
public Store store() {
return socketHandler.store();
}
/**
* Disconnects from Whatsapp Web's WebSocket if a previous connection exists
*
* @return a future
*/
public CompletableFuture disconnect() {
return socketHandler.disconnect(DisconnectReason.DISCONNECTED);
}
/**
* Disconnects and reconnects to Whatsapp Web's WebSocket if a previous connection exists
*
* @return a future
*/
public CompletableFuture reconnect() {
return socketHandler.disconnect(DisconnectReason.RECONNECTING);
}
/**
* Disconnects from Whatsapp Web's WebSocket and logs out of WhatsappWeb invalidating the previous
* saved credentials. The next time the API is used, the QR code will need to be scanned again.
*
* @return a future
*/
public CompletableFuture logout() {
if (jidOrThrowError() == null) {
return socketHandler.disconnect(DisconnectReason.LOGGED_OUT);
}
var metadata = Map.of("jid", jidOrThrowError(), "reason", "user_initiated");
var device = Node.of("remove-companion-device", metadata);
return socketHandler.sendQuery("set", "md", device)
.thenRun(() -> {});
}
/**
* Changes a privacy setting in Whatsapp's settings. If the value is
* {@link PrivacySettingValue#CONTACTS_EXCEPT}, the excluded parameter should also be filled or an
* exception will be thrown, otherwise it will be ignored.
*
* @param type the non-null setting to change
* @param value the non-null value to attribute to the setting
* @param excluded the non-null excluded contacts if value is {@link PrivacySettingValue#CONTACTS_EXCEPT}
* @return the same instance wrapped in a completable future
*/
public final CompletableFuture changePrivacySetting(PrivacySettingType type, PrivacySettingValue value, JidProvider... excluded) {
Validate.isTrue(type.isSupported(value),
"Cannot change setting %s to %s: this toggle cannot be used because Whatsapp doesn't support it", value.name(), type.name());
var attributes = Attributes.of()
.put("name", type.data())
.put("value", value.data())
.put("dhash", "none", () -> value == PrivacySettingValue.CONTACTS_EXCEPT)
.toMap();
var excludedJids = Arrays.stream(excluded).map(JidProvider::toJid).toList();
var children = value != PrivacySettingValue.CONTACTS_EXCEPT ? null : excludedJids.stream()
.map(entry -> Node.of("user", Map.of("jid", entry, "action", "add")))
.toList();
return socketHandler.sendQuery("set", "privacy", Node.of("privacy", Node.of("category", attributes, children)))
.thenRun(() -> onPrivacyFeatureChanged(type, value, excludedJids));
}
private void onPrivacyFeatureChanged(PrivacySettingType type, PrivacySettingValue value, List excludedJids) {
var newEntry = new PrivacySettingEntry(type, value, excludedJids);
var oldEntry = store().findPrivacySetting(type);
store().addPrivacySetting(type, newEntry);
socketHandler.onPrivacySettingChanged(oldEntry, newEntry);
}
/**
* Changes the default ephemeral timer of new chats.
*
* @param timer the new ephemeral timer
* @return the same instance wrapped in a completable future
*/
public CompletableFuture changeNewChatsEphemeralTimer(ChatEphemeralTimer timer) {
return socketHandler.sendQuery("set", "disappearing_mode", Node.of("disappearing_mode", Map.of("duration", timer.period().toSeconds())))
.thenRun(() -> store().setNewChatsEphemeralTimer(timer));
}
/**
* Creates a new request to get a document containing all the data that was collected by Whatsapp
* about this user. It takes three business days to receive it. To query the newsletters status, use
* {@link Whatsapp#queryGdprAccountInfoStatus()}
*
* @return the same instance wrapped in a completable future
*/
public CompletableFuture createGdprAccountInfo() {
return socketHandler.sendQuery("get", "urn:xmpp:whatsapp:account", Node.of("gdpr", Map.of("gdpr", "request")))
.thenRun(() -> {});
}
/**
* Queries the document containing all the data that was collected by Whatsapp about this user. To
* create a request for this document, use {@link Whatsapp#createGdprAccountInfo()}
*
* @return the same instance wrapped in a completable future
*/
// TODO: Implement ready and error states
public CompletableFuture queryGdprAccountInfoStatus() {
return socketHandler.sendQuery("get", "urn:xmpp:whatsapp:account", Node.of("gdpr", Map.of("gdpr", "status")))
.thenApplyAsync(result -> GdprAccountReport.ofPending(result.attributes().getLong("timestamp")));
}
/**
* Changes the name of this user
*
* @param newName the non-null new name
* @return the same instance wrapped in a completable future
*/
public CompletableFuture changeName(String newName) {
Validate.isTrue(store().clientType() != ClientType.WEB || !store().device().platform().isBusiness(),
"The business name cannot be changed using the web api");
if(store().clientType() == ClientType.MOBILE && store().device().platform().isBusiness()) {
var oldName = store().name();
return socketHandler.updateBusinessCertificate(newName)
.thenRunAsync(() -> socketHandler.onUserChanged(newName, oldName));
}
var oldName = store().name();
return socketHandler.sendNodeWithNoResponse(Node.of("presence", Map.of("name", newName, "type", "available")))
.thenRunAsync(() -> socketHandler.onUserChanged(newName, oldName));
}
/**
* Changes the about of this user
*
* @param newAbout the non-null new status
* @return the same instance wrapped in a completable future
*/
public CompletableFuture changeAbout(String newAbout) {
return socketHandler.changeAbout(newAbout);
}
/**
* Sends a request to Whatsapp in order to receive updates when the status of a contact changes.
* These changes include the last known presence and the seconds the contact was last seen.
*
* @param jids the contacts whose status the api should receive updates on
* @return a CompletableFuture
*/
public CompletableFuture subscribeToPresence(JidProvider... jids) {
var futures = Arrays.stream(jids)
.map(socketHandler::subscribeToPresence)
.toArray(CompletableFuture[]::new);
return CompletableFuture.allOf(futures);
}
/**
* Sends a request to Whatsapp in order to receive updates when the status of a contact changes.
* These changes include the last known presence and the seconds the contact was last seen.
*
* @param jids the contacts whose status the api should receive updates on
* @return a CompletableFuture
*/
public CompletableFuture subscribeToPresence(List extends JidProvider> jids) {
var futures = jids.stream()
.map(socketHandler::subscribeToPresence)
.toArray(CompletableFuture[]::new);
return CompletableFuture.allOf(futures);
}
/**
* Sends a request to Whatsapp in order to receive updates when the status of a contact changes.
* These changes include the last known presence and the seconds the contact was last seen.
*
* @param jid the contact whose status the api should receive updates on
* @return a CompletableFuture
*/
public CompletableFuture subscribeToPresence(JidProvider jid) {
return socketHandler.subscribeToPresence(jid);
}
/**
* Remove a reaction from a message
*
* @param message the non-null message
* @return a CompletableFuture
*/
public CompletableFuture extends MessageInfo>> removeReaction(MessageInfo> message) {
return sendReaction(message, (String) null);
}
/**
* Send a reaction to a message
*
* @param message the non-null message
* @param reaction the reaction to send, null if you want to remove the reaction
* @return a CompletableFuture
*/
public CompletableFuture extends MessageInfo>> sendReaction(MessageInfo> message, Emoji reaction) {
return sendReaction(message, Objects.toString(reaction));
}
/**
* Send a reaction to a message
*
* @param message the non-null message
* @param reaction the reaction to send, null if you want to remove the reaction. If a string that
* isn't an emoji supported by Whatsapp is used, it will not get displayed
* correctly. Use {@link Whatsapp#sendReaction(MessageInfo, Emoji)} if
* you need a typed emoji enum.
* @return a CompletableFuture
*/
public CompletableFuture extends MessageInfo>> sendReaction(MessageInfo> message, String reaction) {
var key = new ChatMessageKeyBuilder()
.id(ChatMessageKey.randomIdV2(message.senderJid(), store().clientType()))
.chatJid(message.parentJid())
.senderJid(message.senderJid())
.fromMe(Objects.equals(message.senderJid().toSimpleJid(), jidOrThrowError().toSimpleJid()))
.id(message.id())
.build();
var reactionMessage = new ReactionMessageBuilder()
.key(key)
.content(reaction)
.timestampSeconds(Instant.now().toEpochMilli())
.build();
return sendChatMessage(message.parentJid(), MessageContainer.of(reactionMessage));
}
/**
* Forwards a message to another chat
*
* @param chat the non-null chat
* @param messageInfo the message to forward
* @return a future
*/
public CompletableFuture forwardChatMessage(JidProvider chat, ChatMessageInfo messageInfo) {
var message = messageInfo.message()
.contentWithContext()
.map(this::createForwardedMessage)
.or(() -> createForwardedText(messageInfo))
.orElseThrow(() -> new IllegalArgumentException("This message cannot be forwarded: " + messageInfo.message().type()));
return sendChatMessage(chat, message);
}
private MessageContainer createForwardedMessage(ContextualMessage> messageWithContext) {
var forwardingScore = messageWithContext.contextInfo()
.map(ContextInfo::forwardingScore)
.orElse(0);
var contextInfo = new ContextInfoBuilder()
.forwardingScore(forwardingScore + 1)
.forwarded(true)
.build();
messageWithContext.setContextInfo(contextInfo);
return MessageContainer.of(messageWithContext);
}
private Optional createForwardedText(ChatMessageInfo messageInfo) {
return messageInfo.message().textWithNoContextMessage().map(rawText -> {
var contextInfo = new ContextInfoBuilder()
.forwardingScore(1)
.forwarded(true)
.build();
var textMessage = TextMessage.of(rawText);
textMessage.setContextInfo(contextInfo);
return MessageContainer.of(textMessage);
});
}
/**
* Builds and sends a message from a chat and a message
*
* @param chat the chat where the message should be sent
* @param message the message to send
* @return a CompletableFuture
*/
public CompletableFuture extends MessageInfo>> sendMessage(JidProvider chat, String message) {
return sendMessage(chat, MessageContainer.of(message));
}
/**
* Builds and sends a message from a chat and a message
*
* @param chat the chat where the message should be sent
* @param message the message to send
* @return a CompletableFuture
*/
public CompletableFuture sendChatMessage(JidProvider chat, String message) {
return sendChatMessage(chat, MessageContainer.of(message));
}
/**
* Builds and sends a message from a chat and a message
*
* @param chat the chat where the message should be sent
* @param message the message to send
* @return a CompletableFuture
*/
public CompletableFuture sendsNewsletterMessage(JidProvider chat, String message) {
return sendNewsletterMessage(chat, MessageContainer.of(message));
}
/**
* Builds and sends a message from a chat and a message
*
* @param chat the chat where the message should be sent
* @param message the message to send
* @param quotedMessage the message to quote
* @return a CompletableFuture
*/
public CompletableFuture extends MessageInfo>> sendMessage(JidProvider chat, String message, MessageInfo> quotedMessage) {
return sendMessage(chat, TextMessage.of(message), quotedMessage);
}
/**
* Builds and sends a message from a chat and a message
*
* @param chat the chat where the message should be sent
* @param message the message to send
* @param quotedMessage the message to quote
* @return a CompletableFuture
*/
public CompletableFuture extends MessageInfo>> sendChatMessage(JidProvider chat, String message, MessageInfo> quotedMessage) {
return sendChatMessage(chat, TextMessage.of(message), quotedMessage);
}
/**
* Builds and sends a message from a chat and a message
*
* @param chat the chat where the message should be sent
* @param message the message to send
* @param quotedMessage the message to quote
* @return a CompletableFuture
*/
public CompletableFuture extends MessageInfo>> sendNewsletterMessage(JidProvider chat, String message, MessageInfo> quotedMessage) {
return sendNewsletterMessage(chat, TextMessage.of(message), quotedMessage);
}
/**
* Builds and sends a message from a chat and a message
*
* @param chat the chat where the message should be sent
* @param message the message to send
* @param quotedMessage the message to quote
* @return a CompletableFuture
*/
public CompletableFuture extends MessageInfo>> sendMessage(JidProvider chat, ContextualMessage> message, MessageInfo> quotedMessage) {
var contextInfo = ContextInfo.of(message.contextInfo().orElse(null), quotedMessage);
message.setContextInfo(contextInfo);
return sendMessage(chat, MessageContainer.of(message));
}
/**
* Builds and sends a message from a chat and a message
*
* @param chat the chat where the message should be sent
* @param message the message to send
* @param quotedMessage the message to quote
* @return a CompletableFuture
*/
public CompletableFuture sendChatMessage(JidProvider chat, ContextualMessage> message, MessageInfo> quotedMessage) {
var contextInfo = ContextInfo.of(message.contextInfo().orElse(null), quotedMessage);
message.setContextInfo(contextInfo);
return sendChatMessage(chat, MessageContainer.of(message));
}
/**
* Builds and sends a message from a chat and a message
*
* @param chat the chat where the message should be sent
* @param message the message to send
* @param quotedMessage the message to quote
* @return a CompletableFuture
*/
public CompletableFuture sendNewsletterMessage(JidProvider chat, ContextualMessage> message, MessageInfo> quotedMessage) {
var contextInfo = ContextInfo.of(message.contextInfo().orElse(null), quotedMessage);
message.setContextInfo(contextInfo);
return sendNewsletterMessage(chat, MessageContainer.of(message));
}
/**
* Builds and sends a message from a chat and a message
*
* @param chat the chat where the message should be sent
* @param message the message to send
* @return a CompletableFuture
*/
public CompletableFuture extends MessageInfo>> sendMessage(JidProvider chat, Message message) {
return sendMessage(chat, MessageContainer.of(message));
}
/**
* Builds and sends a message from a recipient and a message
*
* @param recipient the recipient where the message should be sent
* @param message the message to send
* @return a CompletableFuture
*/
public CompletableFuture extends MessageInfo>> sendMessage(JidProvider recipient, MessageContainer message) {
return recipient.toJid().server() == JidServer.NEWSLETTER ? sendNewsletterMessage(recipient, message) : sendChatMessage(recipient, message);
}
/**
* Builds and sends a message from a recipient and a message
*
* @param recipient the recipient where the message should be sent
* @param message the message to send
* @return a CompletableFuture
*/
public CompletableFuture sendChatMessage(JidProvider recipient, MessageContainer message) {
return sendChatMessage(recipient, message, true);
}
public CompletableFuture sendChatMessage(JidProvider recipient, MessageContainer message, boolean compose) {
Validate.isTrue(!recipient.toJid().hasServer(JidServer.NEWSLETTER), "Use sendNewsletterMessage to send a message in a newsletter");
var info = buildChatMessage(recipient, message);
return sendMessage(info, compose);
}
private ChatMessageInfo buildChatMessage(JidProvider recipient, MessageContainer message) {
var timestamp = Clock.nowSeconds();
var deviceInfoMetadata = new DeviceListMetadataBuilder()
.senderTimestamp(Clock.nowSeconds())
.build();
var deviceInfo = recipient.toJid().hasServer(JidServer.WHATSAPP) ? new DeviceContextInfoBuilder()
.deviceListMetadataVersion(2)
.deviceListMetadata(deviceInfoMetadata)
.build() : null;
var key = new ChatMessageKeyBuilder()
.id(ChatMessageKey.randomIdV2(jidOrThrowError(), store().clientType()))
.chatJid(recipient.toJid())
.fromMe(true)
.senderJid(jidOrThrowError())
.build();
return new ChatMessageInfoBuilder()
.status(MessageStatus.PENDING)
.senderJid(jidOrThrowError())
.key(key)
.message(message.withDeviceInfo(deviceInfo))
.timestampSeconds(timestamp)
.broadcast(recipient.toJid().hasServer(JidServer.BROADCAST))
.build();
}
/**
* Builds and sends a message from a recipient and a message
*
* @param recipient the recipient where the message should be sent
* @param message the message to send
* @return a CompletableFuture
*/
public CompletableFuture sendNewsletterMessage(JidProvider recipient, MessageContainer message) {
var newsletter = store().findNewsletterByJid(recipient);
Validate.isTrue(newsletter.isPresent(), "Cannot send a message in a newsletter that you didn't join");
var oldServerId = newsletter.get()
.newestMessage()
.map(NewsletterMessageInfo::serverId)
.orElse(0);
var info = new NewsletterMessageInfo(
ChatMessageKey.randomIdV2(recipient.toJid(), store().clientType()),
oldServerId + 1,
Clock.nowSeconds(),
null,
new ConcurrentHashMap<>(),
message,
MessageStatus.PENDING
);
info.setNewsletter(newsletter.get());
return sendMessage(info);
}
/**
* Builds and sends an edited message
*
* @param oldMessage the message to edit
* @param newMessage the new message's content
* @return a CompletableFuture
*/
public > CompletableFuture editMessage(T oldMessage, Message newMessage) {
var oldMessageType = oldMessage.message().content().type();
var newMessageType = newMessage.type();
Validate.isTrue(oldMessageType == newMessageType,
"Message type mismatch: %s != %s",
oldMessageType, newMessageType);
return switch (oldMessage) {
case NewsletterMessageInfo oldNewsletterInfo -> {
var info = new NewsletterMessageInfo(
oldNewsletterInfo.id(),
oldNewsletterInfo.serverId(),
Clock.nowSeconds(),
null,
new ConcurrentHashMap<>(),
MessageContainer.ofEditedMessage(newMessage),
MessageStatus.PENDING
);
info.setNewsletter(oldNewsletterInfo.newsletter());
var request = new MessageSendRequest.Newsletter(info, Map.of("edit", getEditBit(info)));
yield socketHandler.sendMessage(request)
.thenApply(ignored -> oldMessage);
}
case ChatMessageInfo oldChatInfo -> {
var key = new ChatMessageKeyBuilder()
.id(oldChatInfo.id())
.chatJid(oldChatInfo.chatJid())
.fromMe(true)
.senderJid(jidOrThrowError())
.build();
var info = new ChatMessageInfoBuilder()
.status(MessageStatus.PENDING)
.senderJid(jidOrThrowError())
.key(key)
.message(MessageContainer.ofEditedMessage(newMessage))
.timestampSeconds(Clock.nowSeconds())
.broadcast(oldChatInfo.chatJid().hasServer(JidServer.BROADCAST))
.build();
var request = new MessageSendRequest.Chat(info, null, false, false, Map.of("edit", getEditBit(info)));
yield socketHandler.sendMessage(request)
.thenApply(ignored -> oldMessage);
}
default -> throw new IllegalStateException("Unsupported edit: " + oldMessage);
};
}
public CompletableFuture sendStatus(String message) {
return sendStatus(MessageContainer.of(message));
}
public CompletableFuture sendStatus(Message message) {
return sendStatus(MessageContainer.of(message));
}
public CompletableFuture sendStatus(MessageContainer message) {
var timestamp = Clock.nowSeconds();
var key = new ChatMessageKeyBuilder()
.id(ChatMessageKey.randomIdV2(jidOrThrowError(), store().clientType()))
.chatJid(Jid.of("status@broadcast"))
.fromMe(true)
.senderJid(jidOrThrowError())
.build();
var info = new ChatMessageInfoBuilder()
.status(MessageStatus.PENDING)
.senderJid(jidOrThrowError())
.key(key)
.timestampSeconds(timestamp)
.broadcast(false)
.build();
return sendMessage(info, false);
}
/**
* Sends a message to a chat
*
* @param info the message to send
* @return a CompletableFuture
*/
public CompletableFuture sendMessage(ChatMessageInfo info) {
return sendMessage(info, true);
}
/**
* Sends a message to a chat
*
* @param info the message to send
* @param compose whether a compose status should be sent before sending the message
* @return a CompletableFuture
*/
public CompletableFuture sendMessage(ChatMessageInfo info, boolean compose) {
var recipient = info.chatJid();
Validate.isTrue(!recipient.hasServer(JidServer.NEWSLETTER), "Use sendNewsletterMessage to send a message in a newsletter");
return (compose ? changePresence(recipient, COMPOSING) : CompletableFuture.completedFuture(null))
.thenComposeAsync(ignored -> socketHandler.sendMessage(new MessageSendRequest.Chat(info)))
.thenComposeAsync(ignored -> compose ? pauseCompose(recipient) : CompletableFuture.completedFuture(null))
.thenApply(ignored -> info);
}
private CompletableFuture pauseCompose(Jid chatJid) {
var node = Node.of("chatstate",
Map.of("to", chatJid),
Node.of("paused"));
return socketHandler.sendNodeWithNoResponse(node)
.thenAcceptAsync(socketHandler -> updatePresence(chatJid, AVAILABLE));
}
/**
* Sends a message to a newsletter
*
* @param info the message to send
* @return a CompletableFuture
*/
public CompletableFuture sendMessage(NewsletterMessageInfo info) {
return socketHandler.sendMessage(new MessageSendRequest.Newsletter(info))
.thenApply(ignored -> info);
}
/**
* Marks a chat as read.
*
* @param chat the target chat
* @return a CompletableFuture
*/
public CompletableFuture markChatRead(JidProvider chat) {
return mark(chat, true)
.thenComposeAsync(ignored -> markAllAsRead(chat));
}
private CompletableFuture markAllAsRead(JidProvider chat) {
var all = store()
.findChatByJid(chat.toJid())
.stream()
.map(Chat::unreadMessages)
.flatMap(Collection::stream)
.map(this::markMessageRead)
.toArray(CompletableFuture[]::new);
return CompletableFuture.allOf(all);
}
/**
* Marks a chat as unread
*
* @param chat the target chat
* @return a CompletableFuture
*/
public CompletableFuture markChatUnread(JidProvider chat) {
return mark(chat, false);
}
private CompletableFuture mark(JidProvider chat, boolean read) {
if (store().clientType() == ClientType.MOBILE) {
// TODO: Send notification to companions
store().findChatByJid(chat.toJid())
.ifPresent(entry -> entry.setMarkedAsUnread(read));
return CompletableFuture.completedFuture(null);
}
var range = createRange(chat, false);
var markAction = new MarkChatAsReadAction(read, Optional.of(range));
var syncAction = ActionValueSync.of(markAction);
var entry = PatchEntry.of(syncAction, Operation.SET, chat.toJid().toString());
var request = new PatchRequest(PatchType.REGULAR_HIGH, List.of(entry));
return socketHandler.pushPatch(request);
}
private ActionMessageRangeSync createRange(JidProvider chat, boolean allMessages) {
var known = store().findChatByJid(chat.toJid()).orElseGet(() -> store().addNewChat(chat.toJid()));
return new ActionMessageRangeSync(known, allMessages);
}
/**
* Marks a message as read
*
* @param info the target message
* @return a CompletableFuture
*/
public CompletableFuture markMessageRead(ChatMessageInfo info) {
var type = store().findPrivacySetting(PrivacySettingType.READ_RECEIPTS)
.value() == PrivacySettingValue.EVERYONE ? "read" : "read-self";
socketHandler.sendReceipt(info.chatJid(), info.senderJid(), List.of(info.id()), type);
info.chat().ifPresent(chat -> {
var count = chat.unreadMessagesCount();
if (count > 0) {
chat.setUnreadMessagesCount(count - 1);
}
});
info.setStatus(MessageStatus.READ);
return CompletableFuture.completedFuture(info);
}
/**
* Awaits for a single newsletters to a message
*
* @param info the non-null message whose newsletters is pending
* @return a non-null newsletters
*/
public CompletableFuture awaitMessageReply(ChatMessageInfo info) {
return awaitMessageReply(info.id());
}
/**
* Awaits for a single newsletters to a message
*
* @param id the non-null id of message whose newsletters is pending
* @return a non-null newsletters
*/
public CompletableFuture awaitMessageReply(String id) {
return store().addPendingReply(id);
}
/**
* Executes a query to determine whether a user has an account on Whatsapp
*
* @param contact the contact to check
* @return a CompletableFuture that wraps a non-null newsletters
*/
public CompletableFuture hasWhatsapp(JidProvider contact) {
return hasWhatsapp(new JidProvider[]{contact})
.thenApply(result -> result.get(contact.toJid()));
}
/**
* Executes a query to determine whether any number of users have an account on Whatsapp
*
* @param contacts the contacts to check
* @return a CompletableFuture that wraps a non-null map
*/
public CompletableFuture> hasWhatsapp(JidProvider... contacts) {
var results = new HashMap();
var todo = new ArrayList();
for (var contact : contacts) {
var cached = usersCache.get(contact.toJid());
if(cached != null) {
results.put(contact.toJid(), cached);
}else {
todo.add(contact.toJid());
}
}
if(todo.isEmpty()) {
return CompletableFuture.completedFuture(Collections.unmodifiableMap(results));
}
var jids = Arrays.stream(contacts)
.map(JidProvider::toJid)
.filter(user -> !usersCache.containsKey(user))
.toList();
var contactNodes = jids.stream()
.map(jid -> Node.of("user", Node.of("contact", jid.toPhoneNumber())))
.toList();
return socketHandler.sendInteractiveQuery(List.of(Node.of("contact")), contactNodes, List.of()).thenApplyAsync(result -> {
var additionalResults = parseHasWhatsappResponse(jids, result);
usersCache.putAll(additionalResults);
results.putAll(additionalResults);
return Collections.unmodifiableMap(results);
});
}
private Map parseHasWhatsappResponse(List contacts, List nodes) {
var result = nodes.stream()
.map(this::parseHasWhatsappResponse)
.collect(Collectors.toMap(HasWhatsappResponse::contact, HasWhatsappResponse::hasWhatsapp, (first, second) -> first, HashMap::new));
contacts.stream()
.filter(contact -> !result.containsKey(contact))
.forEach(contact -> result.put(contact, false));
return result;
}
private HasWhatsappResponse parseHasWhatsappResponse(Node node) {
var jid = node.attributes()
.getRequiredJid("jid");
var in = node.findChild("contact")
.orElseThrow(() -> new NoSuchElementException("Missing contact in HasWhatsappResponse"))
.attributes()
.getRequiredString("type")
.equals("in");
return new HasWhatsappResponse(jid, in);
}
/**
* Queries the block list
*
* @return a CompletableFuture
*/
public CompletableFuture> queryBlockList() {
return socketHandler.queryBlockList();
}
/**
* Queries the display name of a contact
*
* @param contactJid the non-null contact
* @return a CompletableFuture
*/
public CompletableFuture> queryName(JidProvider contactJid) {
var contact = store().findContactByJid(contactJid);
return contact.map(value -> CompletableFuture.completedFuture(value.chosenName()))
.orElseGet(() -> queryNameFromServer(contactJid));
}
private CompletableFuture> queryNameFromServer(JidProvider contactJid) {
var query = new UserChosenNameRequest(List.of(new UserChosenNameRequest.Variable(contactJid.toJid().user())));
return socketHandler.sendQuery("get", "w:mex", Node.of("query", Map.of("query_id", "6556393721124826"), Json.writeValueAsBytes(query)))
.thenApplyAsync(this::parseNameResponse);
}
private Optional parseNameResponse(Node result) {
return result.findChild("result")
.flatMap(Node::contentAsString)
.flatMap(UserChosenNameResponse::ofJson)
.flatMap(UserChosenNameResponse::name);
}
/**
* Queries the written whatsapp status of a Contact
*
* @param chat the target contact
* @return a CompletableFuture that wraps an optional contact status newsletters
*/
public CompletableFuture> queryAbout(JidProvider chat) {
return socketHandler.queryAbout(chat);
}
/**
* Queries the profile picture
*
* @param chat the chat of the chat to query
* @return a CompletableFuture that wraps nullable jpg url hosted on Whatsapp's servers
*/
public CompletableFuture> queryPicture(JidProvider chat) {
return socketHandler.queryPicture(chat);
}
/**
* Queries the metadata of a chat
*
* @param chat the target group
* @return a CompletableFuture
*/
public CompletableFuture> queryChatMetadata(JidProvider chat) {
if(!chat.toJid().hasServer(JidServer.GROUP_OR_COMMUNITY)) {
return CompletableFuture.completedFuture(Optional.empty());
}
return socketHandler.queryGroupMetadata(chat.toJid())
.thenApply(Optional::of)
.exceptionally(ignored -> Optional.empty());
}
/**
* Queries the metadata of a group
*
* @param chat the target group
* @return a CompletableFuture
*/
public CompletableFuture queryGroupMetadata(JidProvider chat) {
Validate.isTrue(chat.toJid().hasServer(JidServer.GROUP_OR_COMMUNITY), "Expected a group/community");
return socketHandler.queryGroupMetadata(chat.toJid()).thenApply(result -> {
Validate.isTrue(!result.isCommunity(), "Expected a group: use queryCommunityMetadata for a community or queryChatMetadata");
return result;
});
}
/**
* Queries this account's info
*
* @return a CompletableFuture
*/
public CompletableFuture queryAccountInfo() {
return socketHandler.sendQuery("get", "urn:xmpp:whatsapp:account", Node.of("account")).thenApplyAsync(result -> {
var accoutNode = result.findChild("account")
.orElseThrow(() -> new NoSuchElementException("Missing account node: " + result));
var lastRegistration = Clock.parseSeconds(accoutNode.attributes().getLong("last_reg"))
.orElseThrow(() -> new NoSuchElementException("Missing account last_reg: " + accoutNode));
var creation = Clock.parseSeconds(accoutNode.attributes().getLong("creation"))
.orElseThrow(() -> new NoSuchElementException("Missing account creation: " + accoutNode));
return new AccountInfo(lastRegistration, creation);
});
}
/**
* Queries a business profile, if available
*
* @param contact the target contact
* @return a CompletableFuture
*/
public CompletableFuture> queryBusinessProfile(JidProvider contact) {
return socketHandler.sendQuery("get", "w:biz", Node.of("business_profile", Map.of("v", 116),
Node.of("profile", Map.of("jid", contact.toJid()))))
.thenApplyAsync(this::getBusinessProfile);
}
private Optional getBusinessProfile(Node result) {
return result.findChild("business_profile")
.flatMap(entry -> entry.findChild("profile"))
.map(BusinessProfile::of);
}
/**
* Queries all the known business categories
*
* @return a CompletableFuture
*/
public CompletableFuture> queryBusinessCategories() {
return socketHandler.queryBusinessCategories();
}
/**
* Queries the invite code of a group
*
* @param chat the target group
* @return a CompletableFuture
*/
public CompletableFuture queryGroupInviteCode(JidProvider chat) {
return socketHandler.sendQuery(chat.toJid(), "get", "w:g2", Node.of("invite"))
.thenApplyAsync(this::parseInviteCode);
}
private String parseInviteCode(Node result) {
return result.findChild("invite")
.orElseThrow(() -> new NoSuchElementException("Missing invite code in invite newsletters"))
.attributes()
.getRequiredString("code");
}
/**
* Queries the invite link of a group
*
* @param chat the target group
* @return a CompletableFuture
*/
public CompletableFuture queryGroupInviteLink(JidProvider chat) {
return queryGroupInviteCode(chat)
.thenApplyAsync("https://chat.whatsapp.com/%s"::formatted);
}
/**
* Queries the lists of participants currently waiting to be accepted into the group
*
* @param chat the target group
* @return a CompletableFuture
*/
public CompletableFuture> queryGroupParticipantsPendingApproval(JidProvider chat) {
return socketHandler.sendQuery(chat.toJid(), "get", "w:g2", Node.of("membership_approval_requests"))
.thenApplyAsync(this::parseParticipantsPendingApproval);
}
private List parseParticipantsPendingApproval(Node node) {
return node.findChild("membership_approval_requests")
.stream()
.map(requests -> requests.listChildren("membership_approval_request"))
.flatMap(Collection::stream)
.map(participant -> participant.attributes().getRequiredJid("user"))
.toList();
}
/**
* Changes the approval request status of an array of participants for a group
*
* @param chat the target group
* @param approve whether the participants should be accepted into the group
* @param participants the target participants
* @return a CompletableFuture
*/
public CompletableFuture> changeGroupParticipantPendingApprovalStatus(JidProvider chat, boolean approve, JidProvider... participants) {
var participantsNodes = Arrays.stream(participants)
.map(participantJid -> Node.of("participant", Map.of("jid", participantJid)))
.toList();
var action = approve ? "approve" : "reject";
return socketHandler.sendQuery(chat.toJid(), "set", "w:g2", Node.of("membership_requests_action", Node.of(action, participantsNodes)))
.thenApplyAsync(result -> parseParticipantsPendingApprovalChange(result, action));
}
private List parseParticipantsPendingApprovalChange(Node node, String action) {
return node.findChild("membership_requests_action")
.flatMap(response -> response.findChild(action))
.map(requests -> requests.listChildren("participant"))
.stream()
.flatMap(Collection::stream)
.filter(participant -> !participant.attributes().hasKey("error"))
.map(participant -> participant.attributes().getRequiredJid("jid"))
.toList();
}
/**
* Revokes the invite code of a group
*
* @param chat the target group
* @return a CompletableFuture
*/
public CompletableFuture revokeGroupInvite(JidProvider chat) {
return socketHandler.sendQuery(chat.toJid(), "set", "w:g2", Node.of("invite"))
.thenRun(() -> {});
}
/**
* Accepts the invite for a group
*
* @param inviteCode the invite countryCode
* @return a CompletableFuture
*/
public CompletableFuture> acceptGroupInvite(String inviteCode) {
return socketHandler.sendQuery(JidServer.GROUP_OR_COMMUNITY.toJid(), "set", "w:g2", Node.of("invite", Map.of("code", inviteCode)))
.thenApplyAsync(this::parseAcceptInvite);
}
private Optional parseAcceptInvite(Node result) {
return result.findChild("group")
.flatMap(group -> group.attributes().getOptionalJid("jid"))
.map(jid -> store().findChatByJid(jid).orElseGet(() -> store().addNewChat(jid)));
}
/**
* Changes your presence for everyone on Whatsapp
*
* @param available whether you are online or not
* @return a CompletableFuture
*/
public CompletableFuture changePresence(boolean available) {
var status = socketHandler.store().online();
if (status == available) {
return CompletableFuture.completedFuture(status);
}
var presence = available ? ContactStatus.AVAILABLE : ContactStatus.UNAVAILABLE;
var node = Node.of("presence", Map.of("name", store().name(), "type", presence.toString()));
return socketHandler.sendNodeWithNoResponse(node)
.thenAcceptAsync(socketHandler -> updatePresence(null, presence))
.thenApplyAsync(ignored -> available);
}
private void updatePresence(JidProvider chatJid, ContactStatus presence) {
if (chatJid == null) {
store().setOnline(presence == ContactStatus.AVAILABLE);
}
var self = store().findContactByJid(jidOrThrowError().toSimpleJid());
if (self.isEmpty()) {
return;
}
if (presence == ContactStatus.AVAILABLE || presence == ContactStatus.UNAVAILABLE) {
self.get().setLastKnownPresence(presence);
}
if (chatJid != null) {
store().findChatByJid(chatJid)
.ifPresent(chat -> chat.presences().put(self.get().jid(), presence));
}
self.get().setLastSeen(ZonedDateTime.now());
}
/**
* Changes your presence for a specific chat
*
* @param chatJid the target chat
* @param presence the new status
* @return a CompletableFuture
*/
public CompletableFuture changePresence(JidProvider chatJid, ContactStatus presence) {
if (presence == COMPOSING || presence == RECORDING) {
var node = Node.of("chatstate",
Map.of("to", chatJid.toJid()),
Node.of(COMPOSING.toString(), presence == RECORDING ? Map.of("media", "audio") : Map.of()));
return socketHandler.sendNodeWithNoResponse(node)
.thenAcceptAsync(socketHandler -> updatePresence(chatJid, presence));
}
var node = Node.of("presence", Map.of("type", presence.toString(), "name", store().name()));
return socketHandler.sendNodeWithNoResponse(node)
.thenAcceptAsync(socketHandler -> updatePresence(chatJid, presence));
}
/**
* Promotes any number of contacts to admin in a group
*
* @param group the target group
* @param contacts the target contacts
* @return a CompletableFuture
*/
public CompletableFuture> promoteGroupParticipants(JidProvider group, JidProvider... contacts) {
return queryGroupMetadata(group.toJid())
.thenComposeAsync(metadata -> {
Validate.isTrue(!metadata.isCommunity(), "Expected a group: use promoteCommunityParticipants for communities");
var participantsSet = metadata.participants()
.stream()
.map(ChatParticipant::jid)
.collect(Collectors.toUnmodifiableSet());
var targets = Arrays.stream(contacts)
.map(JidProvider::toJid)
.filter(participantsSet::contains)
.collect(Collectors.toUnmodifiableSet());
if(targets.isEmpty()) {
return CompletableFuture.completedFuture(null);
}
return executeActionOnParticipants(group, false, GroupAction.PROMOTE, targets);
})
.exceptionally(error -> {
throw new RuntimeException("Cannot promote participant in group", error);
});
}
/**
* Demotes any number of contacts to admin in a group
*
* @param group the target group
* @param contacts the target contacts
* @return a CompletableFuture
*/
public CompletableFuture> demoteGroupParticipants(JidProvider group, JidProvider... contacts) {
return queryGroupMetadata(group.toJid())
.thenComposeAsync(metadata -> {
Validate.isTrue(!metadata.isCommunity(), "Expected a group: use demoteCommunityParticipants for communities");
var participantsSet = metadata.participants()
.stream()
.map(ChatParticipant::jid)
.collect(Collectors.toUnmodifiableSet());
var targets = Arrays.stream(contacts)
.map(JidProvider::toJid)
.filter(participantsSet::contains)
.collect(Collectors.toUnmodifiableSet());
if(targets.isEmpty()) {
return CompletableFuture.completedFuture(null);
}
return executeActionOnParticipants(group, false, GroupAction.DEMOTE, targets);
})
.exceptionally(error -> {
throw new RuntimeException("Cannot demote participant in group", error);
});
}
/**
* Adds any number of contacts to a group
*
* @param group the target group
* @param contacts the target contact/s
* @return a CompletableFuture
*/
public CompletableFuture> addGroupParticipants(JidProvider group, JidProvider... contacts) {
return queryGroupMetadata(group.toJid())
.thenComposeAsync(metadata -> {
Validate.isTrue(!metadata.isCommunity(), "Expected a group: use addCommunityParticipants for communities");
var participantsSet = metadata.participants()
.stream()
.map(ChatParticipant::jid)
.collect(Collectors.toUnmodifiableSet());
var targets = Arrays.stream(contacts)
.map(JidProvider::toJid)
.filter(entry -> !participantsSet.contains(entry))
.collect(Collectors.toUnmodifiableSet());
if(targets.isEmpty()) {
return CompletableFuture.completedFuture(null);
}
return executeActionOnParticipants(group, false, GroupAction.ADD, targets);
})
.exceptionally(error -> {
throw new RuntimeException("Cannot add participant to group", error);
});
}
/**
* Removes any number of contacts from group
*
* @param group the target group
* @param contacts the target contact/s
* @return a CompletableFuture
*/
public CompletableFuture> removeGroupParticipants(JidProvider group, JidProvider... contacts) {
return queryGroupMetadata(group.toJid())
.thenComposeAsync(metadata -> {
Validate.isTrue(!metadata.isCommunity(), "Expected a group: use removeCommunityParticipants for communities");
var participantsSet = metadata.participants()
.stream()
.map(ChatParticipant::jid)
.collect(Collectors.toUnmodifiableSet());
var targets = Arrays.stream(contacts)
.map(JidProvider::toJid)
.filter(participantsSet::contains)
.collect(Collectors.toUnmodifiableSet());
if(targets.isEmpty()) {
return CompletableFuture.completedFuture(null);
}
return executeActionOnParticipants(group, false, GroupAction.REMOVE, targets);
})
.exceptionally(error -> {
throw new RuntimeException("Cannot remove participant from group", error);
});
}
private CompletableFuture> executeActionOnParticipants(JidProvider group, boolean community, GroupAction action, Set jids) {
var participants = jids.stream()
.map(JidProvider::toJid)
.map(jid -> Node.of("participant", Map.of("jid", checkGroupParticipantJid(jid, "Cannot execute action on yourself"))))
.toArray(Node[]::new);
return socketHandler.sendQuery(group.toJid(), "set", "w:g2", Node.of(action.data(), participants))
.thenApplyAsync(result -> parseGroupActionResponse(result, group, action));
}
private Jid checkGroupParticipantJid(Jid jid, String errorMessage) {
Validate.isTrue(!Objects.equals(jid.toSimpleJid(), jidOrThrowError().toSimpleJid()), errorMessage);
return jid;
}
private List parseGroupActionResponse(Node result, JidProvider groupJid, GroupAction action) {
return result.findChild(action.data())
.map(body -> body.listChildren("participant"))
.stream()
.flatMap(Collection::stream)
.filter(participant -> !participant.attributes().hasKey("error"))
.map(participant -> participant.attributes().getOptionalJid("jid"))
.flatMap(Optional::stream)
.toList();
}
/**
* Changes the name of a group
*
* @param group the target group
* @param newName the new name for the group
* @return a CompletableFuture
* @throws IllegalArgumentException if the provided new name is empty or blank
*/
public CompletableFuture changeGroupSubject(JidProvider group, String newName) {
Validate.isTrue(newName != null && !newName.isBlank(),
"Empty subjects are not allowed");
var body = Node.of("subject", newName.getBytes(StandardCharsets.UTF_8));
return socketHandler.sendQuery(group.toJid(), "set", "w:g2", body)
.thenRun(() -> {});
}
/**
* Changes the description of a group
*
* @param group the target group
* @param description the new name for the group, can be null if you want to remove it
* @return a CompletableFuture
*/
public CompletableFuture changeGroupDescription(JidProvider group, String description) {
return socketHandler.queryGroupMetadata(group.toJid())
.thenApplyAsync(ChatMetadata::descriptionId)
.thenComposeAsync(descriptionId -> changeGroupDescription(group, description, descriptionId.orElse(null)))
.thenRun(() -> {});
}
private CompletableFuture changeGroupDescription(JidProvider group, String description, String descriptionId) {
var descriptionNode = Optional.ofNullable(description)
.map(content -> Node.of("body", content.getBytes(StandardCharsets.UTF_8)))
.orElse(null);
var attributes = Attributes.of()
.put("id", SocketHandler.randomSid(), () -> description != null)
.put("delete", true, () -> description == null)
.put("prev", descriptionId, () -> descriptionId != null)
.toMap();
var body = Node.of("description", attributes, descriptionNode);
return socketHandler.sendQuery(group.toJid(), "set", "w:g2", body)
.thenRun(() -> {});
}
/**
* Changes a group setting
*
* @param group the non-null group affected by this change
* @param setting the non-null setting
* @param policy the non-null policy
* @return a future
*/
public CompletableFuture changeGroupSetting(JidProvider group, GroupSetting setting, ChatSettingPolicy policy) {
Validate.isTrue(group.toJid().hasServer(JidServer.GROUP_OR_COMMUNITY), "This method only accepts groups");
var body = switch (setting) {
case EDIT_GROUP_INFO -> Node.of(policy == ChatSettingPolicy.ADMINS ? "locked" : "unlocked");
case SEND_MESSAGES -> Node.of(policy == ChatSettingPolicy.ADMINS ? "announcement" : "not_announcement");
case ADD_PARTICIPANTS ->
Node.of("member_add_mode", policy == ChatSettingPolicy.ADMINS ? "admin_add".getBytes(StandardCharsets.UTF_8) : "all_member_add".getBytes(StandardCharsets.UTF_8));
case APPROVE_PARTICIPANTS ->
Node.of("membership_approval_mode", Node.of("group_join", Map.of("state", policy == ChatSettingPolicy.ADMINS ? "on" : "off")));
};
return socketHandler.sendQuery(group.toJid(), "set", "w:g2", body)
.thenRun(() -> {});
}
/**
* Changes the profile picture of yourself
*
* @param image the new image, can be null if you want to remove it
* @return a CompletableFuture
*/
public CompletableFuture changeProfilePicture(byte[] image) {
var profilePic = image != null ? Medias.getProfilePic(image) : null;
var body = Node.of("picture", Map.of("type", "image"), profilePic);
return socketHandler.sendQuery(jidOrThrowError(), "set", "w:profile:picture", body)
.thenRun(() -> {});
}
/**
* Changes the picture of a group
*
* @param group the target group
* @param image the new image, can be null if you want to remove it
* @return a CompletableFuture
*/
public CompletableFuture changeGroupPicture(JidProvider group, URI image) {
Validate.isTrue(group.toJid().hasServer(JidServer.GROUP_OR_COMMUNITY), "Expected a group/community");
var imageFuture = image == null ? CompletableFuture.completedFuture((byte[]) null) : Medias.downloadAsync(image);
return imageFuture.thenComposeAsync(imageResult -> changeGroupPicture(group, imageResult));
}
/**
* Changes the picture of a group
*
* @param group the target group
* @param image the new image, can be null if you want to remove it
* @return a CompletableFuture
*/
public CompletableFuture changeGroupPicture(JidProvider group, byte[] image) {
Validate.isTrue(group.toJid().hasServer(JidServer.GROUP_OR_COMMUNITY), "Expected a group/community");
var profilePic = image != null ? Medias.getProfilePic(image) : null;
var body = Node.of("picture", Map.of("type", "image"), profilePic);
return socketHandler.sendQuery("set", "w:profile:picture", Map.of("target", group.toJid()), body)
.thenRun(() -> {});
}
/**
* Creates a new group
*
* @param subject the new group's name
* @param contacts at least one contact to add to the group
* @return a CompletableFuture
*/
public CompletableFuture> createGroup(String subject, JidProvider... contacts) {
return createGroup(subject, ChatEphemeralTimer.OFF, contacts);
}
/**
* Creates a new group
*
* @param subject the new group's name
* @param timer the default ephemeral timer for messages sent in this group
* @param contacts at least one contact to add to the group
* @return a CompletableFuture
*/
public CompletableFuture> createGroup(String subject, ChatEphemeralTimer timer, JidProvider... contacts) {
return createGroup(subject, timer, null, contacts);
}
/**
* Creates a new group
*
* @param subject the new group's name
* @param parentCommunity the community to whom the new group will be linked
* @return a CompletableFuture
*/
public CompletableFuture> createCommunityGroup(String subject, JidProvider parentCommunity) {
return createGroup(subject, ChatEphemeralTimer.OFF, parentCommunity, new JidProvider[0]);
}
/**
* Creates a new group
*
* @param subject the new group's name
* @param timer the default ephemeral timer for messages sent in this group
* @param parentCommunity the community to whom the new group will be linked
* @return a CompletableFuture
*/
public CompletableFuture> createCommunityGroup(String subject, ChatEphemeralTimer timer, JidProvider parentCommunity) {
return createGroup(subject, timer, parentCommunity, new JidProvider[0]);
}
private CompletableFuture> createGroup(String subject, ChatEphemeralTimer timer, JidProvider parentCommunity, JidProvider... contacts) {
var timestamp = Clock.nowSeconds();
Validate.isTrue(!subject.isBlank(), "The subject of a group cannot be blank");
Validate.isTrue( parentCommunity != null || contacts.length >= 1, "Expected at least 1 member for this group");
var children = new ArrayList();
if (parentCommunity != null) {
children.add(Node.of("linked_parent", Map.of("jid", parentCommunity.toJid())));
}
if (timer != ChatEphemeralTimer.OFF) {
children.add(Node.of("ephemeral", Map.of("expiration", timer.periodSeconds())));
}
children.add(Node.of("member_add_mode", "all_member_add".getBytes(StandardCharsets.UTF_8)));
children.add(Node.of("membership_approval_mode", Node.of("group_join", Map.of("state", "off"))));
Arrays.stream(contacts)
.map(contact -> Node.of("participant", Map.of("jid", checkGroupParticipantJid(contact.toJid(), "Cannot create group with yourself as a participant"))))
.forEach(children::add);
var body = Node.of("create", Map.of("subject", subject, "key", timestamp), children);
return socketHandler.sendQuery(JidServer.GROUP_OR_COMMUNITY.toJid(), "set", "w:g2", body)
.thenComposeAsync(this::parseGroupResult);
}
private String findErrorNode(Node result) {
return Optional.ofNullable(result)
.flatMap(node -> node.findChild("error"))
.map(Node::toString)
.orElseGet(() -> Objects.toString(result));
}
/**
* Leaves a group
*
* @param group the target group
* @throws IllegalArgumentException if the provided chat is not a group
*/
public CompletableFuture leaveGroup(JidProvider group) {
Validate.isTrue(group.toJid().hasServer(JidServer.GROUP_OR_COMMUNITY), "Expected a group");
var body = Node.of("leave", Node.of("group", Map.of("id", group.toJid())));
return socketHandler.sendQuery(JidServer.GROUP_OR_COMMUNITY.toJid(), "set", "w:g2", body)
.thenAcceptAsync(ignored -> handleLeaveGroup(group));
}
private void handleLeaveGroup(JidProvider group) {
var jid = jidOrThrowError().toSimpleJid();
var pastParticipant = new ChatPastParticipantBuilder()
.jid(jid)
.reason(ChatPastParticipant.Reason.REMOVED)
.timestampSeconds(Clock.nowSeconds())
.build();
socketHandler.addPastParticipant(group.toJid(), pastParticipant);
}
/**
* Mutes a chat indefinitely
*
* @param chat the target chat
* @return a CompletableFuture
*/
public CompletableFuture muteChat(JidProvider chat) {
return muteChat(chat, ChatMute.muted());
}
/**
* Mutes a chat
*
* @param chat the target chat
* @param mute the type of mute
* @return a CompletableFuture
*/
public CompletableFuture muteChat(JidProvider chat, ChatMute mute) {
if (store().clientType() == ClientType.MOBILE) {
// TODO: Send notification to companions
store().findChatByJid(chat)
.ifPresent(entry -> entry.setMute(mute));
return CompletableFuture.completedFuture(null);
}
var endTimeStamp = mute.type() == ChatMute.Type.MUTED_FOR_TIMEFRAME ? mute.endTimeStamp() * 1000L : mute.endTimeStamp();
var muteAction = new MuteAction(true, OptionalLong.of(endTimeStamp), false);
var syncAction = ActionValueSync.of(muteAction);
var entry = PatchEntry.of(syncAction, Operation.SET, chat.toJid().toString());
var request = new PatchRequest(PatchType.REGULAR_HIGH, List.of(entry));
return socketHandler.pushPatch(request);
}
/**
* Unmutes a chat
*
* @param chat the target chat
* @return a CompletableFuture
*/
public CompletableFuture unmuteChat(JidProvider chat) {
if (store().clientType() == ClientType.MOBILE) {
// TODO: Send notification to companions
store().findChatByJid(chat)
.ifPresent(entry -> entry.setMute(ChatMute.notMuted()));
return CompletableFuture.completedFuture(null);
}
var muteAction = new MuteAction(false, null, false);
var syncAction = ActionValueSync.of(muteAction);
var entry = PatchEntry.of(syncAction, Operation.SET, chat.toJid().toString());
var request = new PatchRequest(PatchType.REGULAR_HIGH, List.of(entry));
return socketHandler.pushPatch(request);
}
/**
* Blocks a contact
*
* @param contact the target chat
* @return a CompletableFuture
*/
public CompletableFuture blockContact(JidProvider contact) {
var body = Node.of("item", Map.of("action", "block", "jid", contact.toJid()));
return socketHandler.sendQuery("set", "blocklist", body)
.thenRun(() -> {});
}
/**
* Unblocks a contact
*
* @param contact the target chat
* @return a CompletableFuture
*/
public CompletableFuture unblockContact(JidProvider contact) {
var body = Node.of("item", Map.of("action", "unblock", "jid", contact.toJid()));
return socketHandler.sendQuery("set", "blocklist", body)
.thenRun(() -> {});
}
/**
* Enables ephemeral messages in a chat, this means that messages will be automatically cancelled
* in said chat after a week
*
* @param chat the target chat
* @return a CompletableFuture
*/
public CompletableFuture changeEphemeralTimer(JidProvider chat, ChatEphemeralTimer timer) {
return switch (chat.toJid().server()) {
case USER, WHATSAPP -> {
var message = new ProtocolMessageBuilder()
.protocolType(ProtocolMessage.Type.EPHEMERAL_SETTING)
.ephemeralExpiration(timer.period().toSeconds())
.build();
yield sendMessage(chat, message)
.thenRun(() -> {});
}
case GROUP_OR_COMMUNITY -> {
var body = timer == ChatEphemeralTimer.OFF ? Node.of("not_ephemeral") : Node.of("ephemeral", Map.of("expiration", timer.period()
.toSeconds()));
yield socketHandler.sendQuery(chat.toJid(), "set", "w:g2", body)
.thenRun(() -> {
});
}
default ->
throw new IllegalArgumentException("Unexpected chat %s: ephemeral messages are only supported for conversations and groups".formatted(chat.toJid()));
};
}
/**
* Marks a message as played
*
* @param info the target message
* @return a CompletableFuture
*/
public CompletableFuture markMessagePlayed(ChatMessageInfo info) {
if (store().findPrivacySetting(PrivacySettingType.READ_RECEIPTS).value() != PrivacySettingValue.EVERYONE) {
return CompletableFuture.completedFuture(info);
}
socketHandler.sendReceipt(info.chatJid(), info.senderJid(), List.of(info.id()), "played");
info.setStatus(MessageStatus.PLAYED);
return CompletableFuture.completedFuture(info);
}
/**
* Pins a chat to the top. A maximum of three chats can be pinned to the top. This condition can
* be checked using;.
*
* @param chat the target chat
* @return a CompletableFuture
*/
public CompletableFuture pinChat(JidProvider chat) {
return pinChat(chat, true);
}
/**
* Unpins a chat from the top
*
* @param chat the target chat
* @return a CompletableFuture
*/
public CompletableFuture unpinChat(JidProvider chat) {
return pinChat(chat, false);
}
private CompletableFuture pinChat(JidProvider chat, boolean pin) {
if (store().clientType() == ClientType.MOBILE) {
// TODO: Send notification to companions
store().findChatByJid(chat)
.ifPresent(entry -> entry.setPinnedTimestampSeconds(pin ? (int) Clock.nowSeconds() : 0));
return CompletableFuture.completedFuture(null);
}
var pinAction = new PinAction(pin);
var syncAction = ActionValueSync.of(pinAction);
var entry = PatchEntry.of(syncAction, Operation.SET, chat.toJid().toString());
var request = new PatchRequest(PatchType.REGULAR_LOW, List.of(entry));
return socketHandler.pushPatch(request);
}
/**
* Stars a message
*
* @param info the target message
* @return a CompletableFuture
*/
public CompletableFuture starMessage(ChatMessageInfo info) {
return starMessage(info, true);
}
private CompletableFuture starMessage(ChatMessageInfo info, boolean star) {
if (store().clientType() == ClientType.MOBILE) {
// TODO: Send notification to companions
info.setStarred(star);
return CompletableFuture.completedFuture(info);
}
var starAction = new StarAction(star);
var syncAction = ActionValueSync.of(starAction);
var entry = PatchEntry.of(syncAction, Operation.SET, info.chatJid()
.toString(), info.id(), fromMeToFlag(info), participantToFlag(info));
var request = new PatchRequest(PatchType.REGULAR_HIGH, List.of(entry));
return socketHandler.pushPatch(request).thenApplyAsync(ignored -> info);
}
private String fromMeToFlag(MessageInfo> info) {
var fromMe = Objects.equals(info.senderJid().toSimpleJid(), jidOrThrowError().toSimpleJid());
return booleanToInt(fromMe);
}
private String participantToFlag(MessageInfo> info) {
var fromMe = Objects.equals(info.senderJid().toSimpleJid(), jidOrThrowError().toSimpleJid());
return info.parentJid().hasServer(JidServer.GROUP_OR_COMMUNITY)
&& !fromMe ? info.senderJid().toString() : "0";
}
private String booleanToInt(boolean keepStarredMessages) {
return keepStarredMessages ? "1" : "0";
}
/**
* Removes star from a message
*
* @param info the target message
* @return a CompletableFuture
*/
public CompletableFuture unstarMessage(ChatMessageInfo info) {
return starMessage(info, false);
}
/**
* Archives a chat. If said chat is pinned, it will be unpinned.
*
* @param chat the target chat
* @return a CompletableFuture
*/
public CompletableFuture archiveChat(JidProvider chat) {
return archiveChat(chat, true);
}
private CompletableFuture archiveChat(JidProvider chat, boolean archive) {
if (store().clientType() == ClientType.MOBILE) {
// TODO: Send notification to companions
store().findChatByJid(chat)
.ifPresent(entry -> entry.setArchived(archive));
return CompletableFuture.completedFuture(null);
}
var range = createRange(chat, false);
var archiveAction = new ArchiveChatAction(archive, Optional.of(range));
var syncAction = ActionValueSync.of(archiveAction);
var entry = PatchEntry.of(syncAction, Operation.SET, chat.toJid().toString());
var request = new PatchRequest(PatchType.REGULAR_LOW, List.of(entry));
return socketHandler.pushPatch(request);
}
/**
* Unarchives a chat
*
* @param chat the target chat
* @return a CompletableFuture
*/
public CompletableFuture unarchive(JidProvider chat) {
return archiveChat(chat, false);
}
/**
* Deletes a message
*
* @param messageInfo the non-null message to delete
* @return a CompletableFuture
*/
public CompletableFuture deleteMessage(NewsletterMessageInfo messageInfo) {
var revokeInfo = new NewsletterMessageInfo(
messageInfo.id(),
messageInfo.serverId(),
Clock.nowSeconds(),
null,
new ConcurrentHashMap<>(),
MessageContainer.empty(),
MessageStatus.PENDING
);
revokeInfo.setNewsletter(messageInfo.newsletter());
var attrs = Map.of("edit", getDeleteBit(messageInfo));
var request = new MessageSendRequest.Newsletter(revokeInfo, attrs);
return socketHandler.sendMessage(request);
}
/**
* Deletes a message
*
* @param messageInfo non-null message to delete
* @param everyone whether the message should be deleted for everyone or only for this client and
* its companions
* @return a CompletableFuture
*/
public CompletableFuture deleteMessage(ChatMessageInfo messageInfo, boolean everyone) {
if (everyone) {
var message = new ProtocolMessageBuilder()
.protocolType(ProtocolMessage.Type.REVOKE)
.key(messageInfo.key())
.build();
var sender = messageInfo.chatJid().hasServer(JidServer.GROUP_OR_COMMUNITY) ? jidOrThrowError() : null;
var key = new ChatMessageKeyBuilder()
.id(ChatMessageKey.randomIdV2(messageInfo.senderJid(), store().clientType()))
.chatJid(messageInfo.chatJid())
.fromMe(true)
.senderJid(sender)
.build();
var revokeInfo = new ChatMessageInfoBuilder()
.status(MessageStatus.PENDING)
.senderJid(sender)
.key(key)
.message(MessageContainer.of(message))
.timestampSeconds(Clock.nowSeconds())
.build();
var attrs = Map.of("edit", getDeleteBit(messageInfo));
var request = new MessageSendRequest.Chat(revokeInfo, null, false, false, attrs);
return socketHandler.sendMessage(request);
}
return switch (store().clientType()) {
case WEB -> {
var range = createRange(messageInfo.chatJid(), false);
var deleteMessageAction = new DeleteMessageForMeAction(false, messageInfo.timestampSeconds().orElse(0L));
var syncAction = ActionValueSync.of(deleteMessageAction);
var entry = PatchEntry.of(syncAction, Operation.SET, messageInfo.chatJid().toString(), messageInfo.id(), fromMeToFlag(messageInfo), participantToFlag(messageInfo));
var request = new PatchRequest(PatchType.REGULAR_HIGH, List.of(entry));
yield socketHandler.pushPatch(request);
}
case MOBILE -> {
// TODO: Send notification to companions
messageInfo.chat().ifPresent(chat -> chat.removeMessage(messageInfo));
yield CompletableFuture.completedFuture(null);
}
};
}
private int getEditBit(MessageInfo> info) {
if (info.parentJid().hasServer(JidServer.NEWSLETTER)) {
return 3;
}
return 1;
}
private int getDeleteBit(MessageInfo> info) {
if (info.parentJid().hasServer(JidServer.NEWSLETTER)) {
return 8;
}
var fromMe = Objects.equals(info.senderJid().toSimpleJid(), jidOrThrowError().toSimpleJid());
if (info.parentJid().hasServer(JidServer.GROUP_OR_COMMUNITY) && !fromMe) {
return 8;
}
return 7;
}
/**
* Deletes a chat for this client and its companions using a modern version of Whatsapp Important:
* this message doesn't seem to work always as of now
*
* @param chat the non-null chat to delete
* @return a CompletableFuture
*/
public CompletableFuture deleteChat(JidProvider chat) {
if (store().clientType() == ClientType.MOBILE) {
// TODO: Send notification to companions
store().removeChat(chat.toJid());
return CompletableFuture.completedFuture(null);
}
var range = createRange(chat.toJid(), false);
var deleteChatAction = new DeleteChatAction(Optional.of(range));
var syncAction = ActionValueSync.of(deleteChatAction);
var entry = PatchEntry.of(syncAction, Operation.SET, chat.toJid().toString(), "1");
var request = new PatchRequest(PatchType.REGULAR_HIGH, List.of(entry));
return socketHandler.pushPatch(request);
}
/**
* Clears the content of a chat for this client and its companions using a modern version of
* Whatsapp Important: this message doesn't seem to work always as of now
*
* @param chat the non-null chat to clear
* @param keepStarredMessages whether starred messages in this chat should be kept
* @return a CompletableFuture
*/
public CompletableFuture clearChat(JidProvider chat, boolean keepStarredMessages) {
if (store().clientType() == ClientType.MOBILE) {
// TODO: Send notification to companions
store().findChatByJid(chat.toJid())
.ifPresent(Chat::removeMessages);
return CompletableFuture.completedFuture(null);
}
var known = store().findChatByJid(chat);
var range = createRange(chat.toJid(), true);
var clearChatAction = new ClearChatAction(Optional.of(range));
var syncAction = ActionValueSync.of(clearChatAction);
var entry = PatchEntry.of(syncAction, Operation.SET, chat.toJid().toString(), booleanToInt(keepStarredMessages), "0");
var request = new PatchRequest(PatchType.REGULAR_HIGH, List.of(entry));
return socketHandler.pushPatch(request);
}
/**
* Change the description of this business profile
*
* @param description the new description, can be null
* @return a CompletableFuture
*/
public CompletableFuture changeBusinessDescription(String description) {
return changeBusinessAttribute("description", description);
}
private CompletableFuture changeBusinessAttribute(String key, String value) {
return socketHandler.sendQuery("set", "w:biz", Node.of("business_profile", Map.of("v", "3", "mutation_type", "delta"), Node.of(key, Objects.requireNonNullElse(value, "").getBytes(StandardCharsets.UTF_8))))
.thenAcceptAsync(result -> checkBusinessAttributeConflict(key, value, result))
.thenApplyAsync(ignored -> value);
}
private void checkBusinessAttributeConflict(String key, String value, Node result) {
var keyNode = result.findChild("profile").flatMap(entry -> entry.findChild(key));
if (keyNode.isEmpty()) {
return;
}
var actual = keyNode.get()
.contentAsString()
.orElseThrow(() -> new NoSuchElementException("Missing business %s newsletters, something went wrong: %s".formatted(key, findErrorNode(result))));
Validate.isTrue(value == null || value.equals(actual), "Cannot change business %s: conflict(expected %s, got %s)", key, value, actual);
}
/**
* Change the address of this business profile
*
* @param address the new address, can be null
* @return a CompletableFuture
*/
public CompletableFuture changeBusinessAddress(String address) {
return changeBusinessAttribute("address", address);
}
/**
* Change the email of this business profile
*
* @param email the new email, can be null
* @return a CompletableFuture
*/
public CompletableFuture changeBusinessEmail(String email) {
Validate.isTrue(email == null || isValidEmail(email), "Invalid email: %s", email);
return changeBusinessAttribute("email", email);
}
private boolean isValidEmail(String email) {
return Pattern.compile("^(.+)@(\\S+)$")
.matcher(email)
.matches();
}
/**
* Change the categories of this business profile
*
* @param categories the new categories, can be null
* @return a CompletableFuture
*/
public CompletableFuture> changeBusinessCategories(List categories) {
return socketHandler.sendQuery("set", "w:biz", Node.of("business_profile", Map.of("v", "3", "mutation_type", "delta"), Node.of("categories", createCategories(categories))))
.thenApplyAsync(ignored -> categories);
}
private Collection createCategories(List categories) {
if (categories == null) {
return List.of();
}
return categories.stream().map(entry -> Node.of("category", Map.of("id", entry.id()))).toList();
}
/**
* Change the websites of this business profile
*
* @param websites the new websites, can be null
* @return a CompletableFuture
*/
public CompletableFuture> changeBusinessWebsites(List websites) {
return socketHandler.sendQuery("set", "w:biz", Node.of("business_profile", Map.of("v", "3", "mutation_type", "delta"), createWebsites(websites)))
.thenApplyAsync(ignored -> websites);
}
private List createWebsites(List websites) {
if (websites == null) {
return List.of();
}
return websites.stream()
.map(entry -> Node.of("website", entry.toString().getBytes(StandardCharsets.UTF_8)))
.toList();
}
/**
* Query the catalog of this business
*
* @return a CompletableFuture
*/
public CompletableFuture> queryBusinessCatalog() {
return queryBusinessCatalog(10);
}
/**
* Query the catalog of this business
*
* @param productsLimit the maximum number of products to query
* @return a CompletableFuture
*/
public CompletableFuture> queryBusinessCatalog(int productsLimit) {
return queryBusinessCatalog(jidOrThrowError().toSimpleJid(), productsLimit);
}
/**
* Query the catalog of a business
*
* @param contact the business
* @param productsLimit the maximum number of products to query
* @return a CompletableFuture
*/
public CompletableFuture> queryBusinessCatalog(JidProvider contact, int productsLimit) {
return socketHandler.sendQuery("get", "w:biz:catalog", Node.of("product_catalog", Map.of("jid", contact, "allow_shop_source", "true"), Node.of("limit", String.valueOf(productsLimit)
.getBytes(StandardCharsets.UTF_8)), Node.of("width", "100".getBytes(StandardCharsets.UTF_8)), Node.of("height", "100".getBytes(StandardCharsets.UTF_8))))
.thenApplyAsync(this::parseCatalog);
}
private List parseCatalog(Node result) {
return Objects.requireNonNull(result, "Cannot query business catalog, missing newsletters node")
.findChild("product_catalog")
.map(entry -> entry.listChildren("product"))
.stream()
.flatMap(Collection::stream)
.map(BusinessCatalogEntry::of)
.toList();
}
/**
* Query the catalog of a business
*
* @param contact the business
* @return a CompletableFuture
*/
public CompletableFuture> queryBusinessCatalog(JidProvider contact) {
return queryBusinessCatalog(contact, 10);
}
/**
* Query the collections of this business
*
* @return a CompletableFuture
*/
public CompletableFuture> queryBusinessCollections() {
return queryBusinessCollections(50);
}
/**
* Query the collections of this business
*
* @param collectionsLimit the maximum number of collections to query
* @return a CompletableFuture
*/
public CompletableFuture> queryBusinessCollections(int collectionsLimit) {
return queryBusinessCollections(jidOrThrowError().toSimpleJid(), collectionsLimit);
}
/**
* Query the collections of a business
*
* @param contact the business
* @param collectionsLimit the maximum number of collections to query
* @return a CompletableFuture
*/
public CompletableFuture> queryBusinessCollections(JidProvider contact, int collectionsLimit) {
return socketHandler.sendQuery("get", "w:biz:catalog", Map.of("smax_id", "35"), Node.of("collections", Map.of("biz_jid", contact), Node.of("collection_limit", String.valueOf(collectionsLimit)
.getBytes(StandardCharsets.UTF_8)), Node.of("item_limit", String.valueOf(collectionsLimit)
.getBytes(StandardCharsets.UTF_8)), Node.of("width", "100".getBytes(StandardCharsets.UTF_8)), Node.of("height", "100".getBytes(StandardCharsets.UTF_8))))
.thenApplyAsync(this::parseCollections);
}
private List parseCollections(Node result) {
return Objects.requireNonNull(result, "Cannot query business collections, missing newsletters node")
.findChild("collections")
.stream()
.map(entry -> entry.listChildren("collection"))
.flatMap(Collection::stream)
.map(BusinessCollectionEntry::of)
.toList();
}
/**
* Query the collections of a business
*
* @param contact the business
* @return a CompletableFuture
*/
public CompletableFuture> queryBusinessCollections(JidProvider contact) {
return queryBusinessCollections(contact, 50);
}
/**
* Downloads a media from Whatsapp's servers.
* If the media was already downloaded, the cached version will be returned.
* If the download fails because the media is too old/invalid, a reupload request will be sent to Whatsapp.
* If the latter fails as well, an empty optional will be returned.
*
* @param info the non-null message info wrapping the media
* @return a CompletableFuture
*/
public CompletableFuture> downloadMedia(ChatMessageInfo info) {
if (!(info.message().content() instanceof MediaMessage> mediaMessage)) {
throw new IllegalArgumentException("Expected media message, got: " + info.message().category());
}
return downloadMedia(mediaMessage).thenCompose(result -> {
if (result.isPresent()) {
return CompletableFuture.completedFuture(result);
}
return requireMediaReupload(info)
.thenCompose(ignored -> downloadMedia(mediaMessage));
});
}
/**
* Downloads a media from Whatsapp's servers.
* If the media was already downloaded, the cached version will be returned.
* If the download fails because the media is too old/invalid, an empty optional will be returned.
*
* @param info the non-null message info wrapping the media
* @return a CompletableFuture
*/
public CompletableFuture> downloadMedia(NewsletterMessageInfo info) {
if (!(info.message().content() instanceof MediaMessage> mediaMessage)) {
throw new IllegalArgumentException("Expected media message, got: " + info.message().category());
}
return downloadMedia(mediaMessage);
}
/**
* Downloads a media from Whatsapp's servers.
* If the media was already downloaded, the cached version will be returned.
* If the download fails because the media is too old/invalid, an empty optional will be returned.
*
* @param mediaMessage the non-null media
* @return a CompletableFuture
*/
public CompletableFuture> downloadMedia(MediaMessage> mediaMessage) {
var decodedMedia = mediaMessage.decodedMedia();
if (decodedMedia.isPresent()) {
return CompletableFuture.completedFuture(decodedMedia);
}
return Medias.downloadAsync(mediaMessage).thenApply(result -> {
result.ifPresent(mediaMessage::setDecodedMedia);
return result;
});
}
/**
* Asks Whatsapp for a media reupload for a specific media
*
* @param info the non-null message info wrapping the media
* @return a CompletableFuture
*/
public CompletableFuture requireMediaReupload(ChatMessageInfo info) {
if (!(info.message().content() instanceof MediaMessage> mediaMessage)) {
throw new IllegalArgumentException("Expected media message, got: " + info.message().category());
}
var mediaKey = mediaMessage.mediaKey()
.orElseThrow(() -> new NoSuchElementException("Missing media key"));
var retryKey = Hkdf.extractAndExpand(mediaKey, "WhatsApp Media Retry Notification".getBytes(StandardCharsets.UTF_8), 32);
var retryIv = Bytes.random(12);
var retryIdData = info.key().id().getBytes(StandardCharsets.UTF_8);
var receipt = ServerErrorReceiptSpec.encode(new ServerErrorReceipt(info.id()));
var ciphertext = AesGcm.encrypt(retryIv, receipt, retryKey, retryIdData);
var rmrAttributes = Attributes.of()
.put("jid", info.chatJid())
.put("from_me", String.valueOf(info.fromMe()))
.put("participant", info.senderJid(), () -> !Objects.equals(info.chatJid(), info.senderJid()))
.toMap();
var node = Node.of("receipt", Map.of("id", info.key().id(), "to", jidOrThrowError()
.toSimpleJid(), "type", "server-error"), Node.of("encrypt", Node.of("enc_p", ciphertext), Node.of("enc_iv", retryIv)), Node.of("rmr", rmrAttributes));
return socketHandler.sendNode(node, result -> result.hasDescription("notification"))
.thenAcceptAsync(result -> parseMediaReupload(info, mediaMessage, retryKey, retryIdData, result));
}
private void parseMediaReupload(ChatMessageInfo info, MediaMessage> mediaMessage, byte[] retryKey, byte[] retryIdData, Node node) {
Validate.isTrue(!node.hasNode("error"), "Erroneous response from media reupload: %s", node.attributes()
.getInt("code"));
var encryptNode = node.findChild("encrypt")
.orElseThrow(() -> new NoSuchElementException("Missing encrypt node in media reupload"));
var mediaPayload = encryptNode.findChild("enc_p")
.flatMap(Node::contentAsBytes)
.orElseThrow(() -> new NoSuchElementException("Missing encrypted payload node in media reupload"));
var mediaIv = encryptNode.findChild("enc_iv")
.flatMap(Node::contentAsBytes)
.orElseThrow(() -> new NoSuchElementException("Missing encrypted iv node in media reupload"));
var mediaRetryNotificationData = AesGcm.decrypt(mediaIv, mediaPayload, retryKey, retryIdData);
var mediaRetryNotification = MediaRetryNotificationSpec.decode(mediaRetryNotificationData);
var directPath = mediaRetryNotification.directPath()
.orElseThrow(() -> new RuntimeException("Media reupload failed"));
mediaMessage.setMediaUrl(Medias.createMediaUrl(directPath));
mediaMessage.setMediaDirectPath(directPath);
}
/**
* Sends a custom node to Whatsapp
*
* @param node the non-null node to send
* @return the newsletters from Whatsapp
*/
public CompletableFuture sendNode(Node node) {
return socketHandler.sendNode(node);
}
/**
* Creates a new community
*
* @param subject the non-null name of the new community
* @param body the nullable description of the new community
* @return a CompletableFuture
*/
public CompletableFuture> createCommunity(String subject, String body) {
var descriptionId = HexFormat.of().formatHex(Bytes.random(12));
var children = new ArrayList();
children.add(Node.of("description", Map.of("id", descriptionId), Node.of("body", Objects.requireNonNullElse(body, "").getBytes(StandardCharsets.UTF_8))));
children.add(Node.of("parent", Map.of("default_membership_approval_mode", "request_required")));
children.add(Node.of("allow_non_admin_sub_group_creation"));
children.add(Node.of("create_general_chat"));
var entry = Node.of("create", Map.of("subject", subject), children);
return socketHandler.sendQuery(JidServer.GROUP_OR_COMMUNITY.toJid(), "set", "w:g2", entry)
.thenComposeAsync(this::parseGroupResult);
}
private CompletableFuture> parseGroupResult(Node node) {
return node.findChild("group")
.map(response -> socketHandler.handleGroupMetadata(response)
.thenApply(Optional::ofNullable))
.orElseGet(() -> CompletableFuture.completedFuture(Optional.empty()));
}
/**
* Queries the metadata of a community
*
* @param community the target community
* @return a CompletableFuture
*/
public CompletableFuture queryCommunityMetadata(JidProvider community) {
Validate.isTrue(community.toJid().hasServer(JidServer.GROUP_OR_COMMUNITY), "Expected a group/community");
return socketHandler.queryGroupMetadata(community.toJid()).thenApply(result -> {
Validate.isTrue(result.isCommunity(), "Expected a community: use queryGroupMetadata for a group or queryChatMetadata");
return result;
});
}
/**
* Deactivates a community
*
* @param community the target community
* @return a CompletableFuture
*/
public CompletableFuture deactivateCommunity(JidProvider community) {
Validate.isTrue(community.toJid().hasServer(JidServer.GROUP_OR_COMMUNITY), "Expected a community");
return socketHandler.sendQuery(community.toJid(), "set","w:g2", Node.of("delete_parent"))
.thenRunAsync(() -> {});
}
/**
* Changes the picture of a community
*
* @param community the target community
* @param image the new image, can be null if you want to remove it
* @return a CompletableFuture
*/
public CompletableFuture changeCommunityPicture(JidProvider community, URI image) {
return changeGroupPicture(community, image);
}
/**
* Changes the picture of a community
*
* @param community the target community
* @param image the new image, can be null if you want to remove it
* @return a CompletableFuture
*/
public CompletableFuture changeCommunityPicture(JidProvider community, byte[] image) {
return changeGroupPicture(community, image);
}
/**
* Changes the name of a community
*
* @param community the target community
* @param newName the new name for the community
* @return a CompletableFuture
* @throws IllegalArgumentException if the provided new name is empty or blank
*/
public CompletableFuture changeCommunitySubject(JidProvider community, String newName) {
return changeGroupSubject(community, newName);
}
/**
* Changes the description of a community
*
* @param community the target community
* @param description the new name for the community, can be null if you want to remove it
* @return a CompletableFuture
*/
public CompletableFuture changeCommunityDescription(JidProvider community, String description) {
return changeGroupDescription(community, description);
}
/**
* Changes a community setting
*
* @param community the non-null community affected by this change
* @param setting the non-null setting
* @param policy the non-null policy
* @return a future
*/
public CompletableFuture changeCommunitySetting(JidProvider community, CommunitySetting setting, ChatSettingPolicy policy) {
Validate.isTrue(community.toJid().hasServer(JidServer.GROUP_OR_COMMUNITY), "This method only accepts communities");
return switch (setting) {
case MODIFY_GROUPS -> {
var mexBody = "{\"variables\":{\"allow_non_admin_sub_group_creation\":%s,\"id\":\"%s\"}}".formatted(policy == ChatSettingPolicy.ANYONE, community);
var body = Node.of("query", Map.of("query_id", "24745914578387890"), mexBody.getBytes());
yield socketHandler.sendQuery("get", "w:mex", body).thenAcceptAsync(result -> {
var resultJsonSource = result.findChild("result")
.flatMap(Node::contentAsString)
.orElse(null);
Validate.isTrue(resultJsonSource != null, "Cannot change community setting: " + result);
var resultJson = Json.readValue(resultJsonSource, new TypeReference>(){});
Validate.isTrue(resultJson.get("errors") == null, "Cannot change community setting: " + resultJsonSource);
});
}
case ADD_PARTICIPANTS -> {
var body = Node.of("member_add_mode", policy == ChatSettingPolicy.ANYONE ? "all_member_add".getBytes() : "admin_add".getBytes());
yield socketHandler.sendQuery(community.toJid(), "set", "w:g2", body).thenAcceptAsync(result -> {
Validate.isTrue(!result.hasNode("error"), "Cannot change community setting: " + result);
});
}
};
}
/**
* Links any number of groups to a community
*
* @param community the non-null community where the groups will be added
* @param groups the non-null groups to add
* @return a CompletableFuture that wraps a map guaranteed to contain every group that was provided as input paired to whether the request was successful
*/
public CompletableFuture> addCommunityGroups(JidProvider community, JidProvider... groups) {
var body = Arrays.stream(groups)
.map(entry -> Node.of("group", Map.of("jid", entry.toJid())))
.toArray(Node[]::new);
return socketHandler.sendQuery(community.toJid(), "set", "w:g2", Node.of("links", Node.of("link", Map.of("link_type", "sub_group"), body)))
.thenApplyAsync(result -> parseLinksResponse(result, groups));
}
private Map parseLinksResponse(Node result, JidProvider[] groups) {
var success = result.findChild("links")
.stream()
.map(entry -> entry.listChildren("link"))
.flatMap(Collection::stream)
.filter(entry -> entry.attributes().hasValue("link_type", "sub_group"))
.map(entry -> entry.findChild("group"))
.flatMap(Optional::stream)
.map(entry -> entry.attributes().getOptionalJid("jid"))
.flatMap(Optional::stream)
.collect(Collectors.toUnmodifiableSet());
return Arrays.stream(groups)
.map(JidProvider::toJid)
.collect(Collectors.toUnmodifiableMap(Function.identity(), success::contains));
}
/**
* Unlinks a group from a community
*
* @param community the non-null parent community
* @param group the non-null group to unlink
* @return a CompletableFuture that indicates whether the request was successful
*/
public CompletableFuture removeCommunityGroup(JidProvider community, JidProvider group) {
return socketHandler.sendQuery(community.toJid(), "set", "w:g2", Node.of("unlink", Map.of("unlink_type", "sub_group"), Node.of("group", Map.of("jid", group.toJid()))))
.thenApplyAsync(result -> parseUnlinkResponse(result, group));
}
private boolean parseUnlinkResponse(Node result, JidProvider group) {
return result.findChild("unlink")
.filter(entry -> entry.attributes().hasValue("unlink_type", "sub_group"))
.flatMap(entry -> entry.findChild("group"))
.map(entry -> entry.attributes().hasValue("jid", group.toJid().toString()))
.isPresent();
}
/**
* Promotes any number of contacts to admin in a community
*
* @param community the target community
* @param contacts the target contacts
* @return a CompletableFuture
*/
public CompletableFuture> promoteCommunityParticipants(JidProvider community, JidProvider... contacts) {
return queryCommunityMetadata(community)
.thenComposeAsync(metadata -> {
Validate.isTrue(metadata.isCommunity(), "Expected a community: use promoteGroupParticipants for groups");
var participantsSet = metadata.participants()
.stream()
.map(ChatParticipant::jid)
.collect(Collectors.toUnmodifiableSet());
var targets = Arrays.stream(contacts)
.map(JidProvider::toJid)
.filter(participantsSet::contains)
.collect(Collectors.toUnmodifiableSet());
if(targets.isEmpty()) {
return CompletableFuture.completedFuture(null);
}
return executeActionOnParticipants(community, true, GroupAction.PROMOTE, targets);
})
.exceptionally(error -> {
throw new RuntimeException("Cannot promote participant in community", error);
});
}
/**
* Demotes any number of contacts to admin in a community
*
* @param community the target community
* @param contacts the target contacts
* @return a CompletableFuture
*/
public CompletableFuture> demoteCommunityParticipants(JidProvider community, JidProvider... contacts) {
return queryCommunityMetadata(community)
.thenComposeAsync(metadata -> {
Validate.isTrue(metadata.isCommunity(), "Expected a community: use demoteGroupParticipants for groups");
var participantsSet = metadata.participants()
.stream()
.map(ChatParticipant::jid)
.collect(Collectors.toUnmodifiableSet());
var targets = Arrays.stream(contacts)
.map(JidProvider::toJid)
.filter(participantsSet::contains)
.collect(Collectors.toUnmodifiableSet());
if(targets.isEmpty()) {
return CompletableFuture.completedFuture(null);
}
return executeActionOnParticipants(community, true, GroupAction.DEMOTE, targets);
})
.exceptionally(error -> {
throw new RuntimeException("Cannot demote participant in community", error);
});
}
/**
* Adds any number of contacts to a community
*
* @param community the target community
* @param contacts the target contact/s
* @return a CompletableFuture
*/
public CompletableFuture> addCommunityParticipants(JidProvider community, JidProvider... contacts) {
return queryCommunityMetadata(community)
.thenComposeAsync(metadata -> {
Validate.isTrue(metadata.isCommunity(), "Expected a community: use addGroupParticipants for groups");
var participantsSet = metadata.participants()
.stream()
.map(ChatParticipant::jid)
.collect(Collectors.toUnmodifiableSet());
var targets = Arrays.stream(contacts)
.map(JidProvider::toJid)
.filter(entry -> !participantsSet.contains(entry))
.collect(Collectors.toUnmodifiableSet());
if(targets.isEmpty()) {
return CompletableFuture.completedFuture(null);
}
var announcementsGroup = metadata.communityGroups()
.getLast()
.jid();
return executeActionOnParticipants(announcementsGroup, true, GroupAction.ADD, targets);
})
.exceptionally(error -> {
throw new RuntimeException("Cannot add participant to community", error);
});
}
/**
* Removes any number of contacts from community
*
* @param community the target community
* @param contacts the target contact/s
* @return a CompletableFuture
*/
public CompletableFuture> removeCommunityParticipants(JidProvider community, JidProvider... contacts) {
return queryCommunityMetadata(community)
.thenComposeAsync(metadata -> {
Validate.isTrue(metadata.isCommunity(), "Expected a community: use removeGroupParticipants for groups");
var targets = Arrays.stream(contacts)
.map(JidProvider::toJid)
.collect(Collectors.toUnmodifiableSet()); // No contains check because we would need to enumerate all the children, just let whatsapp do it internally
if(targets.isEmpty()) {
return CompletableFuture.completedFuture(null);
}
return executeActionOnParticipants(community, true, GroupAction.REMOVE, targets);
})
.exceptionally(error -> {
throw new RuntimeException("Cannot remove participant from community", error);
});
}
/**
* Leaves a community
*
* @param community the target community
* @throws IllegalArgumentException if the provided chat is not a community
*/
public CompletableFuture leaveCommunity(JidProvider community) {
Validate.isTrue(community.toJid().hasServer(JidServer.GROUP_OR_COMMUNITY), "Expected a community");
return queryCommunityMetadata(community).thenComposeAsync(metadata -> {
var communityJid = metadata.parentCommunityJid().orElse(metadata.jid());
var body = Node.of("leave", Node.of("linked_groups", Map.of("parent_group_jid", communityJid)));
return socketHandler.sendQuery("set", "w:g2", body).thenAcceptAsync(ignored -> {
handleLeaveGroup(community);
metadata.communityGroups().forEach(linkedGroup -> handleLeaveGroup(linkedGroup.jid()));
});
});
}
/**
* Unlinks all the companions of this device
*
* @return a future
*/
public CompletableFuture unlinkDevices() {
return socketHandler.sendQuery("set", "md", Node.of("remove-companion-device", Map.of("all", true, "reason", "user_initiated")))
.thenRun(() -> store().removeLinkedCompanions())
.thenApply(ignored -> this);
}
/**
* Unlinks a specific companion
*
* @param companion the non-null companion to unlink
* @return a future
*/
public CompletableFuture unlinkDevice(Jid companion) {
Validate.isTrue(companion.hasAgent(), "Expected companion, got jid without agent: %s", companion);
return socketHandler.sendQuery("set", "md", Node.of("remove-companion-device", Map.of("jid", companion, "reason", "user_initiated")))
.thenRun(() -> store().removeLinkedCompanion(companion))
.thenApply(ignored -> this);
}
/**
* Links a companion to this device
*
* @param qrCode the non-null qr code as an image
* @return a future
*/
public CompletableFuture linkDevice(byte[] qrCode) {
try {
var inputStream = new ByteArrayInputStream(qrCode);
var luminanceSource = new BufferedImageLuminanceSource(ImageIO.read(inputStream));
var hybridBinarizer = new HybridBinarizer(luminanceSource);
var binaryBitmap = new BinaryBitmap(hybridBinarizer);
var reader = new QRCodeReader();
var result = reader.decode(binaryBitmap);
return linkDevice(result.getText());
} catch (IOException | NotFoundException | ChecksumException | FormatException exception) {
throw new IllegalArgumentException("Cannot read qr code", exception);
}
}
/**
* Links a companion to this device
* Mobile api only
*
* @param qrCodeData the non-null qr code as a String
* @return a future
*/
public CompletableFuture linkDevice(String qrCodeData) {
Validate.isTrue(store().clientType() == ClientType.MOBILE, "Device linking is only available for the mobile api");
var maxDevices = getMaxLinkedDevices();
if (store().linkedDevices().size() > maxDevices) {
return CompletableFuture.completedFuture(CompanionLinkResult.MAX_DEVICES_ERROR);
}
var qrCodeParts = qrCodeData.split(",");
Validate.isTrue(qrCodeParts.length >= 4, "Expected qr code to be made up of at least four parts");
var ref = qrCodeParts[0];
var publicKey = Base64.getDecoder().decode(qrCodeParts[1]);
var advIdentity = Base64.getDecoder().decode(qrCodeParts[2]);
var identityKey = Base64.getDecoder().decode(qrCodeParts[3]);
return socketHandler.sendQuery("set", "w:sync:app:state", Node.of("delete_all_data"))
.thenComposeAsync(ignored -> linkDevice(advIdentity, identityKey, ref, publicKey));
}
private CompletableFuture linkDevice(byte[] advIdentity, byte[] identityKey, String ref, byte[] publicKey) {
var deviceIdentity = new DeviceIdentityBuilder()
.rawId(ThreadLocalRandom.current().nextInt(800_000_000, 900_000_000))
.keyIndex(store().linkedDevices().size() + 1)
.timestamp(Clock.nowSeconds())
.build();
var deviceIdentityBytes = DeviceIdentitySpec.encode(deviceIdentity);
var accountSignatureMessage = Bytes.concat(
ACCOUNT_SIGNATURE_HEADER,
deviceIdentityBytes,
advIdentity
);
var accountSignature = Curve25519.sign(keys().identityKeyPair().privateKey(), accountSignatureMessage, true);
var signedDeviceIdentity = new SignedDeviceIdentityBuilder()
.accountSignature(accountSignature)
.accountSignatureKey(keys().identityKeyPair().publicKey())
.details(deviceIdentityBytes)
.build();
var signedDeviceIdentityBytes = SignedDeviceIdentitySpec.encode(signedDeviceIdentity);
var deviceIdentityHmac = new SignedDeviceIdentityHMACBuilder()
.hmac(Hmac.calculateSha256(signedDeviceIdentityBytes, identityKey))
.details(signedDeviceIdentityBytes)
.build();
var knownDevices = store().linkedDevices()
.stream()
.map(Jid::device)
.toList();
var keyIndexList = new KeyIndexListBuilder()
.rawId(deviceIdentity.rawId())
.timestamp(deviceIdentity.timestamp())
.validIndexes(knownDevices)
.build();
var keyIndexListBytes = KeyIndexListSpec.encode(keyIndexList);
var deviceSignatureMessage = Bytes.concat(DEVICE_MOBILE_SIGNATURE_HEADER, keyIndexListBytes);
var keyAccountSignature = Curve25519.sign(keys().identityKeyPair().privateKey(), deviceSignatureMessage, true);
var signedKeyIndexList = new SignedKeyIndexListBuilder()
.accountSignature(keyAccountSignature)
.details(keyIndexListBytes)
.build();
return socketHandler.sendQuery("set", "md", Node.of("pair-device",
Node.of("ref", ref),
Node.of("pub-key", publicKey),
Node.of("device-identity", SignedDeviceIdentityHMACSpec.encode(deviceIdentityHmac)),
Node.of("key-index-list", Map.of("ts", deviceIdentity.timestamp()), SignedKeyIndexListSpec.encode(signedKeyIndexList))))
.thenComposeAsync(result -> handleCompanionPairing(result, deviceIdentity.keyIndex()));
}
private int getMaxLinkedDevices() {
var maxDevices = socketHandler.store().properties().get("linked_device_max_count");
if (maxDevices == null) {
return MAX_COMPANIONS;
}
try {
return Integer.parseInt(maxDevices);
} catch (NumberFormatException exception) {
return MAX_COMPANIONS;
}
}
private CompletableFuture handleCompanionPairing(Node result, int keyId) {
if (result.attributes().hasValue("type", "error")) {
var error = result.findChild("error")
.filter(entry -> entry.attributes().hasValue("text", "resource-limit"))
.map(entry -> CompanionLinkResult.MAX_DEVICES_ERROR)
.orElse(CompanionLinkResult.RETRY_ERROR);
return CompletableFuture.completedFuture(error);
}
var device = result.findChild("device")
.flatMap(entry -> entry.attributes().getOptionalJid("jid"))
.orElse(null);
if (device == null) {
return CompletableFuture.completedFuture(CompanionLinkResult.RETRY_ERROR);
}
return awaitCompanionRegistration(device)
.thenComposeAsync(ignored -> socketHandler.sendQuery("get", "encrypt", Node.of("key", Node.of("user", Map.of("jid", device)))))
.thenComposeAsync(encryptResult -> handleCompanionEncrypt(encryptResult, device, keyId));
}
private CompletableFuture awaitCompanionRegistration(Jid device) {
var future = new CompletableFuture();
addLinkedDevicesListener((Collection data) -> {
if (data.contains(device) && !future.isDone()) {
future.complete(null);
}
});
return future.orTimeout(COMPANION_PAIRING_TIMEOUT, TimeUnit.SECONDS)
.exceptionally(ignored -> null);
}
private CompletableFuture handleCompanionEncrypt(Node result, Jid companion, int keyId) {
store().addLinkedDevice(companion, keyId);
socketHandler.parseSessions(result);
return sendInitialSecurityMessage(companion)
.thenComposeAsync(ignore -> sendAppStateKeysMessage(companion))
.thenComposeAsync(ignore -> sendInitialNullMessage(companion))
.thenComposeAsync(ignore -> sendInitialStatusMessage(companion))
.thenComposeAsync(ignore -> sendPushNamesMessage(companion))
.thenComposeAsync(ignore -> sendInitialBootstrapMessage(companion))
.thenComposeAsync(ignore -> sendRecentMessage(companion))
.thenComposeAsync(ignored -> syncCompanionState(companion))
.thenApplyAsync(ignored -> CompanionLinkResult.SUCCESS);
}
private CompletableFuture syncCompanionState(Jid companion) {
var criticalUnblockLowRequest = createCriticalUnblockLowRequest();
var criticalBlockRequest = createCriticalBlockRequest();
return socketHandler.pushPatches(companion, List.of(criticalBlockRequest, criticalUnblockLowRequest)).thenComposeAsync(ignored -> {
var regularLowRequests = createRegularLowRequests();
var regularRequests = createRegularRequests();
return socketHandler.pushPatches(companion, List.of(regularLowRequests, regularRequests));
});
}
private PatchRequest createRegularRequests() {
return new PatchRequest(PatchType.REGULAR, List.of());
}
private PatchRequest createRegularLowRequests() {
var timeFormatEntry = createTimeFormatEntry();
var primaryVersion = new PrimaryVersionAction(store().version().toString());
var sessionVersionEntry = createPrimaryVersionEntry(primaryVersion, "[email protected] ");
var keepVersionEntry = createPrimaryVersionEntry(primaryVersion, "[email protected] ");
var nuxEntry = createNuxRequest();
var androidEntry = createAndroidEntry();
var entries = Stream.of(timeFormatEntry, sessionVersionEntry, keepVersionEntry, nuxEntry, androidEntry)
.filter(Objects::nonNull)
.toList();
// TODO: Archive chat actions, StickerAction
return new PatchRequest(PatchType.REGULAR_LOW, entries);
}
// FIXME: Settings can't be serialized
private PatchRequest createCriticalBlockRequest() {
var localeEntry = createLocaleEntry();
var pushNameEntry = createPushNameEntry();
return new PatchRequest(PatchType.CRITICAL_BLOCK, List.of(localeEntry, pushNameEntry));
}
private PatchRequest createCriticalUnblockLowRequest() {
var criticalUnblockLow = createContactEntries();
return new PatchRequest(PatchType.CRITICAL_UNBLOCK_LOW, criticalUnblockLow);
}
private List createContactEntries() {
return store().contacts()
.stream()
.filter(entry -> entry.shortName().isPresent() || entry.fullName().isPresent())
.map(this::createContactRequestEntry)
.collect(Collectors.toList());
}
private PatchEntry createPushNameEntry() {
var pushNameSetting = new PushNameSettings(store().name());
return PatchEntry.of(ActionValueSync.of(pushNameSetting), Operation.SET);
}
private PatchEntry createLocaleEntry() {
var localeSetting = new LocaleSettings(store().locale().toString());
return PatchEntry.of(ActionValueSync.of(localeSetting), Operation.SET);
}
private PatchEntry createAndroidEntry() {
if (!store().device().platform().isAndroid()) {
return null;
}
var action = new AndroidUnsupportedActions(true);
return PatchEntry.of(ActionValueSync.of(action), Operation.SET);
}
private PatchEntry createNuxRequest() {
var nuxAction = new NuxAction(true);
var timeFormatSync = ActionValueSync.of(nuxAction);
return PatchEntry.of(timeFormatSync, Operation.SET, "[email protected] ");
}
private PatchEntry createPrimaryVersionEntry(PrimaryVersionAction primaryVersion, String to) {
var timeFormatSync = ActionValueSync.of(primaryVersion);
return PatchEntry.of(timeFormatSync, Operation.SET, to);
}
private PatchEntry createTimeFormatEntry() {
var timeFormatAction = new TimeFormatAction(store().twentyFourHourFormat());
var timeFormatSync = ActionValueSync.of(timeFormatAction);
return PatchEntry.of(timeFormatSync, Operation.SET);
}
private PatchEntry createContactRequestEntry(Contact contact) {
var action = new ContactAction(null, contact.shortName(), contact.fullName());
var sync = ActionValueSync.of(action);
return PatchEntry.of(sync, Operation.SET, contact.jid().toString());
}
private CompletableFuture sendRecentMessage(Jid jid) {
var pushNames = new HistorySyncBuilder()
.conversations(List.of())
.syncType(HistorySync.Type.RECENT)
.build();
return sendHistoryProtocolMessage(jid, pushNames, HistorySync.Type.PUSH_NAME);
}
private CompletableFuture sendPushNamesMessage(Jid jid) {
var pushNamesData = store()
.contacts()
.stream()
.filter(entry -> entry.chosenName().isPresent())
.map(entry -> new PushName(entry.jid().toString(), entry.chosenName()))
.toList();
var pushNames = new HistorySyncBuilder()
.pushNames(pushNamesData)
.syncType(HistorySync.Type.PUSH_NAME)
.build();
return sendHistoryProtocolMessage(jid, pushNames, HistorySync.Type.PUSH_NAME);
}
private CompletableFuture sendInitialStatusMessage(Jid jid) {
var initialStatus = new HistorySyncBuilder()
.statusV3Messages(new ArrayList<>(store().status()))
.syncType(HistorySync.Type.INITIAL_STATUS_V3)
.build();
return sendHistoryProtocolMessage(jid, initialStatus, HistorySync.Type.INITIAL_STATUS_V3);
}
private CompletableFuture sendInitialBootstrapMessage(Jid jid) {
var chats = store().chats()
.stream()
.toList();
var initialBootstrap = new HistorySyncBuilder()
.conversations(chats)
.syncType(HistorySync.Type.INITIAL_BOOTSTRAP)
.build();
return sendHistoryProtocolMessage(jid, initialBootstrap, HistorySync.Type.INITIAL_BOOTSTRAP);
}
private CompletableFuture sendInitialNullMessage(Jid jid) {
var pastParticipants = store().chats()
.stream()
.map(this::getPastParticipants)
.filter(Objects::nonNull)
.toList();
var initialBootstrap = new HistorySyncBuilder()
.syncType(HistorySync.Type.NON_BLOCKING_DATA)
.pastParticipants(pastParticipants)
.build();
return sendHistoryProtocolMessage(jid, initialBootstrap, null);
}
private GroupPastParticipants getPastParticipants(Chat chat) {
var pastParticipants = socketHandler.pastParticipants().get(chat.jid());
if (pastParticipants == null || pastParticipants.isEmpty()) {
return null;
}
return new GroupPastParticipantsBuilder()
.groupJid(chat.jid())
.pastParticipants(new ArrayList<>(pastParticipants))
.build();
}
private CompletableFuture sendAppStateKeysMessage(Jid companion) {
var preKeys = IntStream.range(0, 10)
.mapToObj(index -> createAppKey(companion, index))
.toList();
keys().addAppKeys(companion, preKeys);
var appStateSyncKeyShare = new AppStateSyncKeyShareBuilder()
.keys(preKeys)
.build();
var result = new ProtocolMessageBuilder()
.protocolType(ProtocolMessage.Type.APP_STATE_SYNC_KEY_SHARE)
.appStateSyncKeyShare(appStateSyncKeyShare)
.build();
return socketHandler.sendPeerMessage(companion, result);
}
private AppStateSyncKey createAppKey(Jid jid, int index) {
return new AppStateSyncKeyBuilder()
.keyId(new AppStateSyncKeyId(Bytes.intToBytes(ThreadLocalRandom.current().nextInt(19000, 20000), 6)))
.keyData(createAppKeyData(jid, index))
.build();
}
private AppStateSyncKeyData createAppKeyData(Jid jid, int index) {
return new AppStateSyncKeyDataBuilder()
.keyData(SignalKeyPair.random().publicKey())
.fingerprint(createAppKeyFingerprint(jid, index))
.timestamp(Clock.nowMilliseconds())
.build();
}
private AppStateSyncKeyFingerprint createAppKeyFingerprint(Jid jid, int index) {
return new AppStateSyncKeyFingerprintBuilder()
.rawId(ThreadLocalRandom.current().nextInt())
.currentIndex(index)
.deviceIndexes(new ArrayList<>(store().linkedDevicesKeys().values()))
.build();
}
private CompletableFuture sendInitialSecurityMessage(Jid jid) {
var protocolMessage = new ProtocolMessageBuilder()
.protocolType(ProtocolMessage.Type.INITIAL_SECURITY_NOTIFICATION_SETTING_SYNC)
.initialSecurityNotificationSettingSync(new InitialSecurityNotificationSettingSync(true))
.build();
return socketHandler.sendPeerMessage(jid, protocolMessage);
}
private CompletableFuture sendHistoryProtocolMessage(Jid jid, HistorySync historySync, HistorySync.Type type) {
var syncBytes = HistorySyncSpec.encode(historySync);
var userAgent = socketHandler.store()
.device()
.toUserAgent(socketHandler.store().version());
var proxy = socketHandler.store()
.proxy()
.filter(ignored -> socketHandler.store().mediaProxySetting().allowsUploads())
.orElse(null);
return Medias.upload(syncBytes, AttachmentType.HISTORY_SYNC, store().mediaConnection(), userAgent, proxy)
.thenApplyAsync(upload -> createHistoryProtocolMessage(upload, type))
.thenComposeAsync(result -> socketHandler.sendPeerMessage(jid, result));
}
private ProtocolMessage createHistoryProtocolMessage(MediaFile upload, HistorySync.Type type) {
var notification = new HistorySyncNotificationBuilder()
.mediaSha256(upload.fileSha256())
.mediaEncryptedSha256(upload.fileEncSha256())
.mediaKey(upload.mediaKey())
.mediaDirectPath(upload.directPath())
.mediaSize(upload.fileLength())
.syncType(type)
.build();
return new ProtocolMessageBuilder()
.protocolType(ProtocolMessage.Type.HISTORY_SYNC_NOTIFICATION)
.historySyncNotification(notification)
.build();
}
/**
* Gets the verified name certificate
*
* @return a future
*/
public CompletableFuture> queryBusinessCertificate(JidProvider provider) {
return socketHandler.sendQuery("get", "w:biz", Node.of("verified_name", Map.of("jid", provider.toJid())))
.thenApplyAsync(this::parseCertificate);
}
private Optional parseCertificate(Node result) {
return result.findChild("verified_name")
.flatMap(Node::contentAsBytes)
.map(BusinessVerifiedNameCertificateSpec::decode);
}
/**
* Enables two-factor authentication
* Mobile API only
*
* @param code the six digits non-null numeric code
* @return a future
*/
public CompletableFuture> enable2fa(String code) {
return set2fa(code, null);
}
/**
* Enables two-factor authentication
* Mobile API only
*
* @param code the six digits non-null numeric code
* @param email the nullable recovery email
* @return a future
*/
public CompletableFuture enable2fa(String code, String email) {
return set2fa(code, email);
}
/**
* Disables two-factor authentication
* Mobile API only
*
* @return a future
*/
public CompletableFuture disable2fa() {
return set2fa(null, null);
}
private CompletableFuture set2fa(String code, String email) {
Validate.isTrue(store().clientType() == ClientType.MOBILE, "2FA is only available for the mobile api");
Validate.isTrue(code == null || (code.matches("^[0-9]*$") && code.length() == 6),
"Invalid 2fa code: expected a numeric six digits string");
Validate.isTrue(email == null || isValidEmail(email),
"Invalid email: %s", email);
var body = new ArrayList();
body.add(Node.of("code", Objects.requireNonNullElse(code, "").getBytes(StandardCharsets.UTF_8)));
if (code != null && email != null) {
body.add(Node.of("email", email.getBytes(StandardCharsets.UTF_8)));
}
return socketHandler.sendQuery("set", "urn:xmpp:whatsapp:account", Node.of("2fa", body))
.thenApplyAsync(result -> !result.hasNode("error"));
}
/**
* Starts a call with a contact
* Mobile API only
*
* @param contact the non-null contact
* @return a future
*/
public CompletableFuture startCall(JidProvider contact) {
Validate.isTrue(store().clientType() == ClientType.MOBILE, "Calling is only available for the mobile api");
return socketHandler.querySessions(List.of(contact.toJid()))
.thenComposeAsync(ignored -> sendCallMessage(contact));
}
private CompletableFuture sendCallMessage(JidProvider provider) {
var callId = ChatMessageKey.randomIdV2(jidOrThrowError(), store().clientType());
var audioStream = Node.of("audio", Map.of("rate", 8000, "enc", "opus"));
var audioStreamTwo = Node.of("audio", Map.of("rate", 16000, "enc", "opus"));
var net = Node.of("net", Map.of("medium", 3));
var encopt = Node.of("encopt", Map.of("keygen", 2));
var enc = createCallNode(provider);
var capability = Node.of("capability", Map.of("ver", 1), HexFormat.of().parseHex("0104ff09c4fa"));
var callCreator = "%s:[email protected] ".formatted(jidOrThrowError().user());
var offer = Node.of("offer",
Map.of("call-creator", callCreator, "call-id", callId),
audioStream, audioStreamTwo, net, capability, encopt, enc);
return socketHandler.sendNode(Node.of("call", Map.of("to", provider.toJid()), offer))
.thenApply(result -> onCallSent(provider, callId, result));
}
private CompletableFuture sendCallMessage(JidProvider provider, boolean video) {
var callId = ChatMessageKey.randomIdV2(jidOrThrowError(), store().clientType());
var description = video ? "video" : "audio";
var audioStream = Node.of(description, Map.of("rate", 8000, "enc", "opus"));
var audioStreamTwo = Node.of(description, Map.of("rate", 16000, "enc", "opus"));
var net = Node.of("net", Map.of("medium", 3));
var encopt = Node.of("encopt", Map.of("keygen", 2));
var enc = createCallNode(provider);
var capability = Node.of("capability", Map.of("ver", 1), HexFormat.of().parseHex("0104ff09c4fa"));
var callCreator = "%s:[email protected] ".formatted(jidOrThrowError().user());
var offer = Node.of("offer",
Map.of("call-creator", callCreator, "call-id", callId),
audioStream, audioStreamTwo, net, capability, encopt, enc);
return socketHandler.sendNode(Node.of("call", Map.of("to", provider.toJid()), offer))
.thenApply(result -> onCallSent(provider, callId, result));
}
private Call onCallSent(JidProvider provider, String callId, Node result) {
var call = new Call(provider.toJid(), jidOrThrowError(), callId, Clock.nowSeconds(), false, CallStatus.RINGING, false);
store().addCall(call);
socketHandler.onCall(call);
return call;
}
private Node createCallNode(JidProvider provider) {
var call = new CallMessageBuilder()
.key(SignalKeyPair.random().publicKey())
.build();
var message = MessageContainer.of(call);
var cipher = new SessionCipher(provider.toJid().toSignalAddress(), keys());
var encodedMessage = Bytes.messageToBytes(message);
var cipheredMessage = cipher.encrypt(encodedMessage);
return Node.of("enc", Map.of("v", 2, "type", cipheredMessage.type()), cipheredMessage.message());
}
/**
* Rejects an incoming call or stops an active call
* Mobile API only
*
* @param callId the non-null id of the call to reject
* @return a future
*/
public CompletableFuture stopCall(String callId) {
Validate.isTrue(store().clientType() == ClientType.MOBILE, "Calling is only available for the mobile api");
return store().findCallById(callId)
.map(this::stopCall)
.orElseGet(() -> CompletableFuture.completedFuture(false));
}
/**
* Rejects an incoming call or stops an active call
* Mobile API only
*
* @param call the non-null call to reject
* @return a future
*/
public CompletableFuture stopCall(Call call) {
Validate.isTrue(store().clientType() == ClientType.MOBILE, "Calling is only available for the mobile api");
if (Objects.equals(call.caller().user(), jidOrThrowError().user())) {
var rejectNode = Node.of("terminate", Map.of("reason", "timeout", "call-id", call.id(), "call-creator", call.caller()));
var body = Node.of("call", Map.of("to", call.chat()), rejectNode);
return socketHandler.sendNode(body)
.thenApplyAsync(result -> !result.hasNode("error"));
}
var rejectNode = Node.of("reject", Map.of("call-id", call.id(), "call-creator", call.caller(), "count", 0));
var body = Node.of("call", Map.of("from", jidOrThrowError(), "to", call.caller()), rejectNode);
return socketHandler.sendNode(body)
.thenApplyAsync(result -> !result.hasNode("error"));
}
/**
* Queries a list of fifty recommended newsletters by country
*
* @param countryCode the non-null country code
* @return a list of recommended newsletters, if the feature is available
*/
public CompletableFuture> queryRecommendedNewsletters(String countryCode) {
return queryRecommendedNewsletters(countryCode, 50);
}
/**
* Queries a list of recommended newsletters by country
*
* @param countryCode the non-null country code
* @param limit how many entries should be returned
* @return a list of recommended newsletters, if the feature is available
*/
public CompletableFuture> queryRecommendedNewsletters(String countryCode, int limit) {
var filters = new RecommendedNewslettersRequest.Filters(List.of(countryCode));
var input = new RecommendedNewslettersRequest.Input("RECOMMENDED", filters, limit);
var variable = new RecommendedNewslettersRequest.Variable(input);
var query = new RecommendedNewslettersRequest(variable);
return socketHandler.sendQuery("get", "w:mex", Node.of("query", Map.of("query_id", "6190824427689257"), Json.writeValueAsBytes(query)))
.thenApplyAsync(this::parseRecommendedNewsletters);
}
private Optional parseRecommendedNewsletters(Node response) {
return response.findChild("result")
.flatMap(Node::contentAsString)
.flatMap(RecommendedNewslettersResponse::ofJson);
}
/**
* Queries any number of messages from a newsletter
*
* @param newsletterJid the non-null jid of the newsletter
* @param count how many messages should be queried
* @return a future
*/
public CompletableFuture queryNewsletterMessages(JidProvider newsletterJid, int count) {
return socketHandler.queryNewsletterMessages(newsletterJid, count);
}
/**
* Subscribes to a public newsletter's event stream of reactions
*
* @param channel the non-null channel
* @return the time, in minutes, during which updates will be sent
*/
public CompletableFuture subscribeToNewsletterReactions(JidProvider channel) {
return socketHandler.subscribeToNewsletterReactions(channel);
}
/**
* Creates a newsletter
*
* @param name the non-null name of the newsletter
* @return a future
*/
public CompletableFuture> createNewsletter(String name) {
return createNewsletter(name, null, null);
}
/**
* Creates newsletter channel
*
* @param name the non-null name of the newsletter
* @param description the nullable description of the newsletter
* @return a future
*/
public CompletableFuture> createNewsletter(String name, String description) {
return createNewsletter(name, description, null);
}
/**
* Creates a newsletter
*
* @param name the non-null name of the newsletter
* @param description the nullable description of the newsletter
* @param picture the nullable profile picture of the newsletter
* @return a future
*/
public CompletableFuture> createNewsletter(String name, String description, byte[] picture) {
var input = new CreateNewsletterRequest.NewsletterInput(name, description, picture != null ? Base64.getEncoder().encodeToString(picture) : null);
var variable = new CreateNewsletterRequest.Variable(input);
var request = new CreateNewsletterRequest(variable);
return socketHandler.sendQuery("get", "w:mex", Node.of("query", Map.of("query_id", "6996806640408138"), Json.writeValueAsBytes(request)))
.thenApplyAsync(this::parseNewsletterCreation)
.thenComposeAsync(this::onNewsletterCreation);
}
private Optional parseNewsletterCreation(Node response) {
return response.findChild("result")
.flatMap(Node::contentAsString)
.flatMap(NewsletterResponse::ofJson)
.map(NewsletterResponse::newsletter);
}
@SuppressWarnings("OptionalUsedAsFieldOrParameterType")
private CompletableFuture> onNewsletterCreation(Optional result) {
if (result.isEmpty()) {
return CompletableFuture.completedFuture(result);
}
return subscribeToNewsletterReactions(result.get().jid())
.thenApply(ignored -> result);
}
/**
* Changes the description of a newsletter
*
* @param newsletter the non-null target newsletter
* @param description the nullable new description
* @return a future
*/
public CompletableFuture changeNewsletterDescription(JidProvider newsletter, String description) {
var safeDescription = Objects.requireNonNullElse(description, "");
var payload = new UpdatePayload(safeDescription);
var body = new UpdateNewsletterRequest.Variable(newsletter.toJid(), payload);
var request = new UpdateNewsletterRequest(body);
return socketHandler.sendQuery("get", "w:mex", Node.of("query", Map.of("query_id", "7150902998257522"), Json.writeValueAsBytes(request)))
.thenRun(() -> {});
}
/**
* Joins a newsletter
*
* @param newsletter a non-null newsletter
* @return a future
*/
public CompletableFuture joinNewsletter(JidProvider newsletter) {
var body = new JoinNewsletterRequest.Variable(newsletter.toJid());
var request = new JoinNewsletterRequest(body);
return socketHandler.sendQuery("get", "w:mex", Node.of("query", Map.of("query_id", "9926858900719341"), Json.writeValueAsBytes(request)))
.thenRun(() -> {});
}
/**
* Leaves a newsletter
*
* @param newsletter a non-null newsletter
* @return a future
*/
public CompletableFuture leaveNewsletter(JidProvider newsletter) {
var body = new LeaveNewsletterRequest.Variable(newsletter.toJid());
var request = new LeaveNewsletterRequest(body);
return socketHandler.sendQuery("get", "w:mex", Node.of("query", Map.of("query_id", "6392786840836363"), Json.writeValueAsBytes(request)))
.thenRun(() -> {});
}
/**
* Queries the number of people subscribed to a newsletter
*
* @param newsletterJid the id of the newsletter
* @return a CompletableFuture
*/
public CompletableFuture queryNewsletterSubscribers(JidProvider newsletterJid) {
var newsletterRole = store().findNewsletterByJid(newsletterJid)
.flatMap(Newsletter::viewerMetadata)
.map(NewsletterViewerMetadata::role)
.orElse(NewsletterViewerRole.GUEST);
var input = new NewsletterSubscribersRequest.Input(newsletterJid.toJid(), "JID", newsletterRole.name());
var body = new NewsletterSubscribersRequest.Variable(input);
var request = new NewsletterSubscribersRequest(body);
return socketHandler.sendQuery("get", "w:mex", Node.of("query", Map.of("query_id", "7272540469429201"), Json.writeValueAsBytes(request)))
.thenApply(this::parseNewsletterSubscribers);
}
private long parseNewsletterSubscribers(Node response) {
return response.findChild("result")
.flatMap(Node::contentAsString)
.flatMap(NewsletterSubscribersResponse::ofJson)
.map(NewsletterSubscribersResponse::subscribersCount)
.orElse(0L);
}
/**
* Sends an invitation to each jid provided to become an admin in the newsletter
*
* @param newsletterJid the id of the newsletter
* @param admins the new admins
* @return a CompletableFuture
*/
public CompletableFuture inviteNewsletterAdmins(JidProvider newsletterJid, JidProvider... admins) {
return inviteNewsletterAdmins(newsletterJid, null, admins);
}
/**
* Sends an invitation to each jid provided to become an admin in the newsletter
*
* @param newsletterJid the id of the newsletter
* @param inviteCaption the nullable caption of the invitation
* @param admins the new admins
* @return a CompletableFuture
*/
public CompletableFuture inviteNewsletterAdmins(JidProvider newsletterJid, String inviteCaption, JidProvider... admins) {
var messageFutures = Arrays.stream(admins)
.map(admin -> createNewsletterAdminInvite(newsletterJid, inviteCaption, admin))
.toArray(CompletableFuture[]::new);
return CompletableFuture.allOf(messageFutures);
}
private CompletableFuture createNewsletterAdminInvite(JidProvider newsletterJid, String inviteCaption, JidProvider admin) {
return getContactData(admin).thenCompose(results -> {
var recipient = results.getFirst()
.findChild("lid")
.flatMap(result -> result.attributes().getOptionalJid("val"))
.map(jid -> jid.withServer(JidServer.LID).toSimpleJid())
.orElse(admin.toJid());
var request = new CreateAdminInviteNewsletterRequest(new CreateAdminInviteNewsletterRequest.Variable(newsletterJid.toJid(), recipient));
return socketHandler.sendQuery("get", "w:mex", Node.of("query", Map.of("query_id", "6826078034173770"), Json.writeValueAsBytes(request)))
.thenApplyAsync(this::parseNewsletterAdminInviteExpiration)
.thenComposeAsync(expirationTimestamp -> sendNewsletterInviteMessage(newsletterJid, inviteCaption, expirationTimestamp, admin));
});
}
private CompletableFuture> getContactData(JidProvider recipient) {
var businessNode = Node.of("business", Node.of("verified_name"), Node.of("profile", Map.of("v", 372)));
var contactNode = Node.of("contact");
var lidNode = Node.of("lid");
var userNode = Node.of("user", Node.of("contact", recipient.toJid().toPhoneNumber().getBytes(StandardCharsets.UTF_8)));
return socketHandler.sendInteractiveQuery(List.of(businessNode, contactNode, lidNode), List.of(userNode), List.of());
}
private long parseNewsletterAdminInviteExpiration(Node result) {
var payload = result.findChild("result")
.flatMap(Node::contentAsString);
return payload.flatMap(CreateAdminInviteNewsletterResponse::ofJson)
.map(CreateAdminInviteNewsletterResponse::mute)
.orElseThrow(() -> new IllegalArgumentException("Cannot create invite: " + payload.orElse("unknown")));
}
private CompletableFuture sendNewsletterInviteMessage(JidProvider newsletterJid, String inviteCaption, long expirationTimestamp, JidProvider admin) {
var newsletterName = store().findNewsletterByJid(newsletterJid.toJid())
.map(Newsletter::metadata)
.flatMap(NewsletterMetadata::name)
.map(NewsletterName::text)
.orElse(null);
var message = new NewsletterAdminInviteMessageBuilder()
.newsletterJid(newsletterJid.toJid())
.newsletterName(newsletterName)
.inviteExpirationTimestampSeconds(expirationTimestamp)
.caption(Objects.requireNonNullElse(inviteCaption, "Accept this invitation to be an admin for my WhatsApp channel"))
.build();
return sendChatMessage(admin, MessageContainer.of(message));
}
/**
* Revokes an invitation to become an admin in a newsletter
*
* @param newsletterJid the id of the newsletter
* @param admin the non-null user that received the invite previously
* @return a CompletableFuture
*/
public CompletableFuture revokeNewsletterAdminInvite(JidProvider newsletterJid, JidProvider admin) {
return getContactData(admin).thenCompose(results -> {
var recipient = results.getFirst()
.findChild("lid")
.flatMap(result -> result.attributes().getOptionalJid("val"))
.map(jid -> jid.withServer(JidServer.LID).toSimpleJid())
.orElse(admin.toJid());
var request = new RevokeAdminInviteNewsletterRequest(new RevokeAdminInviteNewsletterRequest.Variable(newsletterJid.toJid(), recipient));
return socketHandler.sendQuery("get", "w:mex", Node.of("query", Map.of("query_id", "6111171595650958"), Json.writeValueAsBytes(request)))
.thenApplyAsync(this::hasRevokedNewsletterAdminInvite);
});
}
private boolean hasRevokedNewsletterAdminInvite(Node result) {
return result.findChild("result")
.flatMap(Node::contentAsString)
.flatMap(RevokeAdminInviteNewsletterResponse::ofJson)
.isPresent();
}
/**
* Accepts an invitation to become an admin in a newsletter
*
* @param newsletterJid the id of the newsletter
* @return a CompletableFuture
*/
public CompletableFuture acceptNewsletterAdminInvite(JidProvider newsletterJid) {
var request = new AcceptAdminInviteNewsletterRequest(new AcceptAdminInviteNewsletterRequest.Variable(newsletterJid.toJid()));
return socketHandler.sendQuery("get", "w:mex", Node.of("query", Map.of("query_id", "7292354640794756"), Json.writeValueAsBytes(request)))
.thenApplyAsync(this::hasAcceptedNewsletterAdminInvite)
.thenComposeAsync(result -> {
if(result.isEmpty()) {
return CompletableFuture.completedFuture(false);
}
return queryNewsletter(result.get(), NewsletterViewerRole.ADMIN).thenApplyAsync(newsletter -> {
if(newsletter.isEmpty()) {
return false;
}
store().addNewsletter(newsletter.get());
return true;
});
});
}
private Optional hasAcceptedNewsletterAdminInvite(Node result) {
return result.findChild("result")
.flatMap(Node::contentAsString)
.flatMap(AcceptAdminInviteNewsletterResponse::ofJson)
.map(AcceptAdminInviteNewsletterResponse::jid);
}
/**
* Queries a newsletter
*
* @param newsletterJid the non-null jid of the newsletter
* @param role the non-null role of the user executing the query
* @return a future
*/
public CompletableFuture> queryNewsletter(Jid newsletterJid, NewsletterViewerRole role) {
var key = new QueryNewsletterRequest.Input(newsletterJid, "JID", role);
var request = new QueryNewsletterRequest(new QueryNewsletterRequest.Variable(key, true, true, true));
return socketHandler.sendQuery("get", "w:mex", Node.of("query", Map.of("query_id", "6620195908089573"), Json.writeValueAsBytes(request)))
.thenApplyAsync(this::parseNewsletterQuery);
}
private Optional parseNewsletterQuery(Node response) {
return response.findChild("result")
.flatMap(Node::contentAsString)
.flatMap(NewsletterResponse::ofJson)
.map(NewsletterResponse::newsletter);
}
/**
* Registers a listener
*
* @param listener the listener to register
* @return the same instance
*/
public Whatsapp addListener(Listener listener) {
store().addListener(listener);
return this;
}
/**
* Unregisters a listener
*
* @param listener the listener to unregister
* @return the same instance
*/
public Whatsapp removeListener(Listener listener) {
store().removeListener(listener);
return this;
}
// Generated code from it.auties.whatsapp.routine.GenerateListenersLambda
public Whatsapp addNodeSentListener(ListenerConsumer.Binary consumer) {
addListener(new Listener() {
@Override
public void onNodeSent(Whatsapp whatsapp, Node outgoing) {
consumer.accept(whatsapp, outgoing);
}
});
return this;
}
public Whatsapp addNodeSentListener(ListenerConsumer.Unary consumer) {
addListener(new Listener() {
@Override
public void onNodeSent(Node outgoing) {
consumer.accept(outgoing);
}
});
return this;
}
public Whatsapp addNodeReceivedListener(ListenerConsumer.Unary consumer) {
addListener(new Listener() {
@Override
public void onNodeReceived(Node incoming) {
consumer.accept(incoming);
}
});
return this;
}
public Whatsapp addNodeReceivedListener(ListenerConsumer.Binary consumer) {
addListener(new Listener() {
@Override
public void onNodeReceived(Whatsapp whatsapp, Node incoming) {
consumer.accept(whatsapp, incoming);
}
});
return this;
}
public Whatsapp addLoggedInListener(ListenerConsumer.Empty consumer) {
addListener(new Listener() {
@Override
public void onLoggedIn() {
consumer.accept();
}
});
return this;
}
public Whatsapp addLoggedInListener(ListenerConsumer.Unary consumer) {
addListener(new Listener() {
@Override
public void onLoggedIn(Whatsapp whatsapp) {
consumer.accept(whatsapp);
}
});
return this;
}
public Whatsapp addMetadataListener(ListenerConsumer.Unary> consumer) {
addListener(new Listener() {
@Override
public void onMetadata(Map metadata) {
consumer.accept(metadata);
}
});
return this;
}
public Whatsapp addMetadataListener(ListenerConsumer.Binary> consumer) {
addListener(new Listener() {
@Override
public void onMetadata(Whatsapp whatsapp, Map metadata) {
consumer.accept(whatsapp, metadata);
}
});
return this;
}
public Whatsapp addDisconnectedListener(ListenerConsumer.Unary consumer) {
addListener(new Listener() {
@Override
public void onDisconnected(DisconnectReason reason) {
consumer.accept(reason);
}
});
return this;
}
public Whatsapp addDisconnectedListener(ListenerConsumer.Binary consumer) {
addListener(new Listener() {
@Override
public void onDisconnected(Whatsapp whatsapp, DisconnectReason reason) {
consumer.accept(whatsapp, reason);
}
});
return this;
}
public Whatsapp addActionListener(ListenerConsumer.Binary consumer) {
addListener(new Listener() {
@Override
public void onAction(Action action, MessageIndexInfo messageIndexInfo) {
consumer.accept(action, messageIndexInfo);
}
});
return this;
}
public Whatsapp addActionListener(ListenerConsumer.Ternary consumer) {
addListener(new Listener() {
@Override
public void onAction(Whatsapp whatsapp, Action action, MessageIndexInfo messageIndexInfo) {
consumer.accept(whatsapp, action, messageIndexInfo);
}
});
return this;
}
public Whatsapp addSettingListener(ListenerConsumer.Unary consumer) {
addListener(new Listener() {
@Override
public void onSetting(Setting setting) {
consumer.accept(setting);
}
});
return this;
}
public Whatsapp addSettingListener(ListenerConsumer.Binary consumer) {
addListener(new Listener() {
@Override
public void onSetting(Whatsapp whatsapp, Setting setting) {
consumer.accept(whatsapp, setting);
}
});
return this;
}
public Whatsapp addFeaturesListener(ListenerConsumer.Unary> consumer) {
addListener(new Listener() {
@Override
public void onFeatures(List features) {
Listener.super.onFeatures(features);
}
});
return this;
}
public Whatsapp addFeaturesListener(ListenerConsumer.Binary> consumer) {
addListener(new Listener() {
@Override
public void onFeatures(Whatsapp whatsapp, List features) {
consumer.accept(whatsapp, features);
}
});
return this;
}
public Whatsapp addContactsListener(ListenerConsumer.Unary> consumer) {
addListener(new Listener() {
@Override
public void onContacts(Collection contacts) {
consumer.accept(contacts);
}
});
return this;
}
public Whatsapp addContactsListener(ListenerConsumer.Binary> consumer) {
addListener(new Listener() {
@Override
public void onContacts(Whatsapp whatsapp, Collection contacts) {
consumer.accept(whatsapp, contacts);
}
});
return this;
}
public Whatsapp addContactPresenceListener(ListenerConsumer.Binary consumer) {
addListener(new Listener() {
@Override
public void onContactPresence(Chat chat, JidProvider jid) {
consumer.accept(chat, jid);
}
});
return this;
}
public Whatsapp addContactPresenceListener(ListenerConsumer.Ternary consumer) {
addListener(new Listener() {
@Override
public void onContactPresence(Whatsapp whatsapp, Chat chat, JidProvider jid) {
consumer.accept(whatsapp, chat, jid);
}
});
return this;
}
public Whatsapp addChatsListener(ListenerConsumer.Unary> consumer) {
addListener(new Listener() {
@Override
public void onChats(Collection chats) {
consumer.accept(chats);
}
});
return this;
}
public Whatsapp addChatsListener(ListenerConsumer.Binary> consumer) {
addListener(new Listener() {
@Override
public void onChats(Whatsapp whatsapp, Collection chats) {
consumer.accept(whatsapp, chats);
}
});
return this;
}
public Whatsapp addNewslettersListener(ListenerConsumer.Unary> consumer) {
addListener(new Listener() {
@Override
public void onNewsletters(Collection newsletters) {
consumer.accept(newsletters);
}
});
return this;
}
public Whatsapp addNewslettersListener(ListenerConsumer.Binary> consumer) {
addListener(new Listener() {
@Override
public void onNewsletters(Whatsapp whatsapp, Collection newsletters) {
consumer.accept(whatsapp, newsletters);
}
});
return this;
}
public Whatsapp addChatMessagesSyncListener(ListenerConsumer.Binary consumer) {
addListener(new Listener() {
@Override
public void onChatMessagesSync(Chat chat, boolean last) {
consumer.accept(chat, last);
}
});
return this;
}
public Whatsapp addChatMessagesSyncListener(ListenerConsumer.Ternary consumer) {
addListener(new Listener() {
@Override
public void onChatMessagesSync(Whatsapp whatsapp, Chat chat, boolean last) {
consumer.accept(whatsapp, chat, last);
}
});
return this;
}
public Whatsapp addHistorySyncProgressListener(ListenerConsumer.Ternary consumer) {
addListener(new Listener() {
@Override
public void onHistorySyncProgress(Whatsapp whatsapp, int percentage, boolean recent) {
consumer.accept(whatsapp, percentage, recent);
}
});
return this;
}
public Whatsapp addHistorySyncProgressListener(ListenerConsumer.Binary