All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.viber.bot.api.MessageSender Maven / Gradle / Ivy

Go to download

Use this library to communicate with the Viber API to develop a bot for https://developers.viber.com/.

There is a newer version: 1.0.11
Show newest version
package com.viber.bot.api;

import com.google.common.base.Function;
import com.google.common.collect.Lists;
import com.google.common.util.concurrent.Futures;
import com.google.common.util.concurrent.ListenableFuture;
import com.viber.bot.message.Message;
import com.viber.bot.profile.BotProfile;
import com.viber.bot.profile.UserProfile;

import javax.annotation.Nonnull;
import java.util.Collection;
import java.util.Iterator;
import java.util.Optional;

import static com.google.common.base.Preconditions.checkNotNull;

class MessageSender {
    private static final String MESSAGE_TOKEN = "message_token";

    private final BotProfile botProfile;
    private final ViberClient client;

    MessageSender(final @Nonnull BotProfile botProfile, final @Nonnull ViberClient client) {
        this.botProfile = checkNotNull(botProfile);
        this.client = checkNotNull(client);
    }

    ListenableFuture> sendMessage(final @Nonnull UserProfile to, final @Nonnull Collection messages) {
        final Collection messageTokens = Lists.newArrayList();
        final Iterator iterator = messages.iterator();

        while (iterator.hasNext()) {
            final Message message = iterator.next();

            if (!iterator.hasNext()) {
                messageTokens.add(Futures.getUnchecked(Futures.transform(sendMessageWithKeyboard(to, message), getMessageToken())));
            } else {
                messageTokens.add(Futures.getUnchecked(Futures.transform(sendMessageWithoutKeyboard(to, message), getMessageToken())));
            }
        }
        return Futures.immediateFuture(messageTokens);
    }

    private ListenableFuture sendMessageWithoutKeyboard(final UserProfile to, final Message message) {
        return client.sendMessage(botProfile, to, message, Optional.empty(), Optional.of(message.getTrackingData()));
    }

    private ListenableFuture sendMessageWithKeyboard(final UserProfile to, final Message message) {
        return client.sendMessage(botProfile, to, message, Optional.of(message.getKeyboard()), Optional.of(message.getTrackingData()));
    }

    private Function getMessageToken() {
        return response -> response.get(MESSAGE_TOKEN).toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy