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

org.tiogasolutions.push.gateway.LiveCosmicPushGateway Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2014 Jacob D. Parr
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.tiogasolutions.push.gateway;

import org.tiogasolutions.push.jackson.CpObjectMapper;
import org.tiogasolutions.push.pub.common.PingPush;
import org.tiogasolutions.push.pub.common.Push;
import org.tiogasolutions.push.pub.common.PushResponse;
import org.tiogasolutions.push.pub.internal.RequestErrors;
import org.tiogasolutions.dev.jackson.TiogaJacksonTranslator;
import org.tiogasolutions.lib.jaxrs.jackson.SimpleRestClient;

public class LiveCosmicPushGateway implements CosmicPushGateway {

  private final SimpleRestClient client;

  public LiveCosmicPushGateway(String userName, String password) {
    CpObjectMapper objectMapper = new CpObjectMapper();
    TiogaJacksonTranslator translator = new TiogaJacksonTranslator(objectMapper);
    client = new SimpleRestClient(translator, "http://www.cosmicpush.com/api/v2", userName, password);
  }

  public LiveCosmicPushGateway(String url, String userName, String password) {
    CpObjectMapper objectMapper = new CpObjectMapper();
    TiogaJacksonTranslator translator = new TiogaJacksonTranslator(objectMapper);
    client = new SimpleRestClient(translator, url, userName, password);
  }

  public LiveCosmicPushGateway(SimpleRestClient client) {
    this.client = client;
  }

  public SimpleRestClient getClient() {
    return client;
  }

  @Override
  public long ping() {
    long start = System.currentTimeMillis();
    send(PingPush.newPush());
    return System.currentTimeMillis() - start;
  }

  @Override
  public PushResponse send(Push push) {
    push.validate(new RequestErrors()).assertNoErrors();
    return getClient().post(PushResponse.class, "/pushes", push);
  }

  @Override
  public PushResponse push(Push push) {
    return send(push);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy