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

com.viber.bot.message.MessageKeyboard Maven / Gradle / Ivy

package com.viber.bot.message;

import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonDeserializer;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.google.common.base.MoreObjects;
import com.google.common.base.Strings;
import com.google.common.collect.ForwardingMap;

import javax.annotation.Nullable;
import javax.annotation.concurrent.Immutable;
import java.io.IOException;
import java.util.Collections;
import java.util.Map;

/**
 * Simple Map(String, Object) wrapper class.
 */
@Immutable
@JsonDeserialize(using = MessageKeyboard.KeyboardDeserializer.class)
public class MessageKeyboard extends ForwardingMap {
    private final Map map;

    public MessageKeyboard(final @Nullable Map delegate) {
        this.map = Collections.unmodifiableMap(MoreObjects.firstNonNull(delegate, Collections.emptyMap()));
    }

    public MessageKeyboard() {
        this(null);
    }

    @Override
    protected Map delegate() {
        return map;
    }

    static class KeyboardDeserializer extends JsonDeserializer {
        private static final ObjectMapper objectMapper = new ObjectMapper();
        private static final String EMPTY_JSON_OBJECT = "{}";

        @Override
        public MessageKeyboard deserialize(final JsonParser p, final DeserializationContext ctxt) throws IOException, JsonProcessingException {
            return new MessageKeyboard(objectMapper.readValue(MoreObjects.firstNonNull(Strings.emptyToNull(p.getValueAsString().trim()), EMPTY_JSON_OBJECT), Map.class));
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy