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

com.urbanairship.api.push.parse.notification.InteractiveReader Maven / Gradle / Ivy

There is a newer version: 9.4.2
Show newest version
/*
 * Copyright (c) 2013-2016.  Urban Airship and Contributors
 */

package com.urbanairship.api.push.parse.notification;

import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.type.TypeReference;
import com.google.common.collect.ImmutableMap;
import com.urbanairship.api.common.parse.APIParsingException;
import com.urbanairship.api.common.parse.JsonObjectReader;
import com.urbanairship.api.push.model.notification.Interactive;
import com.urbanairship.api.push.model.notification.actions.Actions;

import java.io.IOException;
import java.util.Map;

public class InteractiveReader implements JsonObjectReader {

    private final Interactive.Builder builder;

    public InteractiveReader() {
        this.builder = Interactive.newBuilder();
    }

    public void readType(JsonParser parser) throws IOException {
        builder.setType(parser.readValueAs(String.class));
    }

    public void readButtonActions(JsonParser parser) throws IOException {
        Map actionsMap = parser.readValueAs(new TypeReference>() {});
        ImmutableMap actionsImmutableMap = actionsMap == null ? null : ImmutableMap.copyOf(actionsMap);
        builder.setButtonActions(actionsImmutableMap);
    }

    @Override
    public Interactive validateAndBuild() throws IOException {
        try {
            return builder.build();
        }
        catch (Exception e) {
            throw new APIParsingException(e.getMessage());
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy