![JAR search and dependency download from the Maven repository](/logo.png)
com.urbanairship.api.push.parse.notification.mpns.MPNSDevicePayloadReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
The Urban Airship Java client library
/*
* Copyright (c) 2013-2016. Urban Airship and Contributors
*/
package com.urbanairship.api.push.parse.notification.mpns;
import com.google.common.base.Optional;
import com.urbanairship.api.common.parse.APIParsingException;
import com.urbanairship.api.common.parse.JsonObjectReader;
import com.urbanairship.api.common.parse.StringFieldDeserializer;
import com.urbanairship.api.push.model.notification.mpns.MPNSDevicePayload;
import com.urbanairship.api.push.model.notification.mpns.MPNSPush;
import org.codehaus.jackson.JsonParser;
import org.codehaus.jackson.map.DeserializationContext;
import java.io.IOException;
public class MPNSDevicePayloadReader implements JsonObjectReader {
private MPNSPush.Builder builder;
private final MPNSToastDeserializer toastDS;
private final MPNSTileDeserializer tileDS;
private Optional alert = Optional.absent();
public MPNSDevicePayloadReader(MPNSToastDeserializer toastDS, MPNSTileDeserializer tileDS) {
this.toastDS = toastDS;
this.tileDS = tileDS;
}
public void readAlert(JsonParser parser) throws IOException {
alert = Optional.fromNullable(StringFieldDeserializer.INSTANCE.deserialize(parser, "alert"));
}
public void readToast(JsonParser parser, DeserializationContext context) throws IOException {
if (builder == null) {
builder = MPNSPush.newBuilder();
}
builder.setToast(toastDS.deserialize(parser, context));
builder.setType(MPNSPush.Type.TOAST);
}
public void readTile(JsonParser parser, DeserializationContext context) throws IOException {
if (builder == null) {
builder = MPNSPush.newBuilder();
}
builder.setTile(tileDS.deserialize(parser, context));
builder.setType(MPNSPush.Type.TILE);
}
public void readBatchingInterval(JsonParser parser, DeserializationContext context) throws IOException {
builder.setBatchingInterval(MPNSBatchingIntervalDeserializer.INSTANCE.deserialize(parser, context));
}
@Override
public MPNSDevicePayload validateAndBuild() throws IOException {
try {
if (!alert.isPresent() && builder == null) {
throw new APIParsingException("'mpns' override cannot be empty.");
}
if (alert.isPresent() && builder != null) {
throw new APIParsingException("'mpns' override must provide exactly one of 'alert', 'tile', or 'toast'.");
}
MPNSPush push = null;
if (builder != null) {
push = builder.build();
}
return MPNSDevicePayload.newBuilder()
.setBody(push)
.setAlert(alert.isPresent() ? alert.get() : null)
.build();
} catch (RuntimeException e) {
throw new APIParsingException(e.getMessage(), e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy