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

utils.SymMessageParser Maven / Gradle / Ivy

There is a newer version: 1.3.9
Show newest version
package utils;

import clients.SymBotClient;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import java.io.IOException;
import java.util.List;
import java.util.stream.Collectors;
import java.util.stream.StreamSupport;
import model.InboundMessage;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.symphonyoss.symphony.messageml.MessageMLContext;
import org.symphonyoss.symphony.messageml.exceptions.InvalidInputException;
import org.symphonyoss.symphony.messageml.exceptions.ProcessingException;

public class SymMessageParser {
    private final Logger logger = LoggerFactory.getLogger(SymMessageParser.class);
    private static SymMessageParser instance;
    private SymBotClient botClient;
    private static final String HASHTAG_TYPE = "org.symphonyoss.taxonomy.hashtag";
    private static final String CASHTAG_TYPE = "org.symphonyoss.fin.security.id.ticker";
    private static final String MENTION_TYPE = "com.symphony.user.userId";
    private static final String ENTITY_REGEX = "id=\"\\d+\">(.*?)<";
    private static final ObjectMapper MAPPER = new ObjectMapper();

    private SymMessageParser(SymBotClient botClient) {
        this.botClient = botClient;
    }

    public static SymMessageParser getInstance() {
        if (instance != null) {
            return instance;
        } else {
            throw new RuntimeException("SymMessageParser needs to be initialized at startup");
        }
    }

    public static SymMessageParser createInstance(SymBotClient botClient) {
        if (instance == null) {
            instance = new SymMessageParser(botClient);
            return instance;
        } else {
            return instance;
        }
    }

    public String messageToText(String message, String entityJSON) {
        MessageMLContext context = new MessageMLContext(new DataProvider(botClient));
        try {
            context.parseMessageML(message, entityJSON, "2.0");
            return context.getText(true);
        } catch (InvalidInputException | IOException | ProcessingException e) {
            logger.error("Error trying to parse MessageMl");
        }
        return null;
    }

    private static JsonNode readTree(String entityData) {
        try {
            return MAPPER.readTree(entityData);
        } catch (IOException e) {
            return MAPPER.createArrayNode();
        }
    }

    private static List getTextTags(InboundMessage message, String type) {
        return StreamSupport.stream(readTree(message.getData()).spliterator(), false)
            .map(node -> node.get("id").get(0))
            .filter(node -> node.get("type").asText().equals(type))
            .map(node -> node.get("value").asText())
            .distinct()
            .collect(Collectors.toList());
    }

    public static List getMentions(InboundMessage message) {
        return StreamSupport.stream(readTree(message.getData()).spliterator(), false)
            .map(node -> node.get("id").get(0))
            .filter(node -> node.get("type").asText().equals(MENTION_TYPE))
            .map(node -> node.get("value").asLong())
            .distinct()
            .collect(Collectors.toList());
    }

    public static List getHashtags(InboundMessage message) {
        return getTextTags(message, HASHTAG_TYPE);
    }

    public static List getCashtags(InboundMessage message) {
        return getTextTags(message, CASHTAG_TYPE);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy