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

com.viber.bot.api.RegexMatcherRouter 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.collect.ArrayListMultimap;
import com.google.common.collect.Multimap;
import com.viber.bot.event.callback.OnMessageReceived;

import javax.annotation.Nonnull;
import java.util.List;
import java.util.regex.Pattern;
import java.util.stream.Collectors;

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

class RegexMatcherRouter {
    private final Multimap patterns = ArrayListMultimap.create();

    void newMatcher(final @Nonnull Pattern pattern, final @Nonnull OnMessageReceived onMessageReceived) {
        patterns.put(checkNotNull(pattern), checkNotNull(onMessageReceived));
    }

    List tryGetCallback(final String text) {
        return patterns.asMap().entrySet().stream()
                .filter(entry -> entry.getKey().matcher(text).find())
                .flatMap(entry -> entry.getValue().stream())
                .collect(Collectors.toList());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy