use of com.altiria.app.exception.AltiriaGwException in project sms-java-client by altiria.
the class AltiriaClient method sendSms.
/**
* Send a SMS.
* @param textMessage this object contains the SMS data. See AltiriaModelTextMessage class.
* @return Json response.
* @throws Exception
*/
public String sendSms(AltiriaModelTextMessage textMessage) throws Exception {
log.debug("Altiria-sendSms CMD: " + textMessage.toString());
String jsonResponse = null;
try {
JsonObject jsonObject = new JsonObject();
JsonObject credentialsJsonObject = new JsonObject();
JsonObject messageJsonObject = new JsonObject();
JsonArray destinationsJsonArray = null;
if (this.login == null) {
log.error("ERROR: The login parameter is mandatory");
throw new JsonException("LOGIN_NOT_NULL");
}
if (this.passwd == null) {
log.error("ERROR: The password parameter is mandatory");
throw new JsonException("PASSWORD_NOT_NULL");
}
if (textMessage.getDestination() == null || textMessage.getDestination().trim().isEmpty()) {
log.error("ERROR: The destination parameter is mandatory");
throw new AltiriaGwException("INVALID_DESTINATION", "015");
} else {
destinationsJsonArray = new JsonArray();
destinationsJsonArray.add(new JsonPrimitive(new String(textMessage.getDestination())));
}
if (textMessage.getMessage() == null || textMessage.getMessage().trim().isEmpty()) {
log.error("ERROR: The message parameter is mandatory");
throw new AltiriaGwException("EMPTY_MESSAGE", "017");
} else
messageJsonObject.addProperty("msg", textMessage.getMessage());
if (textMessage.getSenderId() != null && !textMessage.getSenderId().trim().isEmpty())
messageJsonObject.addProperty("senderId", textMessage.getSenderId());
if (textMessage.isAck()) {
messageJsonObject.addProperty("ack", true);
if (textMessage.getIdAck() != null && !textMessage.getIdAck().trim().isEmpty())
messageJsonObject.addProperty("idAck", textMessage.getIdAck());
}
if (textMessage.isConcat())
messageJsonObject.addProperty("concat", true);
if (textMessage.isCertDelivery())
messageJsonObject.addProperty("certDelivery", true);
if (textMessage.getEncoding() != null && textMessage.getEncoding().equals("unicode"))
messageJsonObject.addProperty("encoding", "unicode");
credentialsJsonObject.addProperty(this.isApiKey ? "apikey" : "login", this.login);
credentialsJsonObject.addProperty(this.isApiKey ? "apisecret" : "passwd", this.passwd);
jsonObject.add("credentials", credentialsJsonObject);
jsonObject.add("destination", destinationsJsonArray);
jsonObject.add("message", messageJsonObject);
jsonObject.addProperty("source", source);
RequestConfig config = RequestConfig.custom().setConnectTimeout(this.connectionTimeout, TimeUnit.MILLISECONDS).setResponseTimeout(this.timeout, TimeUnit.MILLISECONDS).build();
HttpClientBuilder builder = HttpClientBuilder.create();
builder.setDefaultRequestConfig(config);
CloseableHttpClient httpClient = builder.build();
HttpPost request = new HttpPost(this.urlBase + "/sendSms");
final HttpEntity[] entity = { HttpEntities.create(jsonObject.toString(), ContentType.APPLICATION_JSON.withCharset(StandardCharsets.UTF_8)) };
request.setEntity(entity[0]);
CloseableHttpResponse httpResponse = null;
try {
httpResponse = httpClient.execute(request);
jsonResponse = EntityUtils.toString(httpResponse.getEntity());
log.debug("HTTP status:" + httpResponse.getCode());
log.debug("HTTP body:" + jsonResponse);
LinkedTreeMap<String, Object> mapBody = gson.fromJson(jsonResponse, new TypeToken<LinkedTreeMap<String, Object>>() {
}.getType());
if (httpResponse.getCode() != 200) {
log.error("ERROR: Invalid request: " + jsonResponse);
String errorMsg = (String) mapBody.get("error");
throw new JsonException(errorMsg);
} else {
String status = (String) mapBody.get("status");
if (!status.equals("000")) {
String errorMsg = getStatus(status);
log.error("ERROR: Invalid parameter. Error message: " + errorMsg + ", Status: " + status);
throw new AltiriaGwException(errorMsg, status);
}
}
} catch (ConnectTimeoutException cte) {
log.error("ERROR: Connection timeout");
throw new ConnectionException("CONNECTION_TIMEOUT");
} catch (SocketTimeoutException ste) {
log.error("ERROR: Response timeout");
throw new ConnectionException("RESPONSE_TIMEOUT");
} finally {
try {
if (httpResponse != null)
httpResponse.close();
if (httpClient != null)
httpClient.close();
} catch (IOException ioe) {
log.error("ERROR closing resources");
}
}
} catch (GeneralAltiriaException e) {
throw e;
} catch (Exception e) {
log.error("ERROR: Unexpected error", e);
throw new AltiriaGwException("GENERAL_ERROR", "001");
}
return jsonResponse;
}
use of com.altiria.app.exception.AltiriaGwException in project sms-java-client by altiria.
the class AltiriaClient method getCredit.
/**
* Get the user credit.
* @return credit
* @throws Exception
*/
public String getCredit() throws Exception {
log.debug("Altiria-getCredit CMD");
String credit = null;
try {
if (this.login == null) {
log.error("ERROR: The login parameter is mandatory");
throw new JsonException("LOGIN_NOT_NULL");
}
if (this.passwd == null) {
log.error("ERROR: The password parameter is mandatory");
throw new JsonException("PASSWORD_NOT_NULL");
}
JsonObject jsonObject = new JsonObject();
JsonObject credentialsJsonObject = new JsonObject();
credentialsJsonObject.addProperty(this.isApiKey ? "apikey" : "login", this.login);
credentialsJsonObject.addProperty(this.isApiKey ? "apisecret" : "passwd", this.passwd);
jsonObject.add("credentials", credentialsJsonObject);
jsonObject.addProperty("source", source);
RequestConfig config = RequestConfig.custom().setConnectTimeout(this.connectionTimeout, TimeUnit.MILLISECONDS).setResponseTimeout(this.timeout, TimeUnit.MILLISECONDS).build();
HttpClientBuilder builder = HttpClientBuilder.create();
builder.setDefaultRequestConfig(config);
CloseableHttpClient httpClient = builder.build();
HttpPost request = new HttpPost(this.urlBase + "/getCredit");
final HttpEntity[] entity = { HttpEntities.create(jsonObject.toString(), ContentType.APPLICATION_JSON.withCharset(StandardCharsets.UTF_8)) };
request.setEntity(entity[0]);
CloseableHttpResponse httpResponse = null;
try {
httpResponse = httpClient.execute(request);
String jsonResponse = EntityUtils.toString(httpResponse.getEntity());
log.debug("HTTP status:" + httpResponse.getCode());
log.debug("HTTP body:" + jsonResponse);
LinkedTreeMap<String, Object> mapBody = gson.fromJson(jsonResponse, new TypeToken<LinkedTreeMap<String, Object>>() {
}.getType());
if (httpResponse.getCode() != 200) {
log.error("ERROR: Invalid request: " + jsonResponse);
String errorMsg = (String) mapBody.get("error");
throw new JsonException(errorMsg);
} else {
String status = (String) mapBody.get("status");
if (!status.equals("000")) {
String errorMsg = getStatus(status);
log.error("ERROR: Invalid parameter. Error message: " + errorMsg + ", Status: " + status);
throw new AltiriaGwException(errorMsg, status);
} else
credit = (String) mapBody.get("credit");
}
} catch (ConnectTimeoutException cte) {
log.error("ERROR: Connection timeout");
throw new ConnectionException("CONNECTION_TIMEOUT");
} catch (SocketTimeoutException ste) {
log.error("ERROR: Response timeout");
throw new ConnectionException("RESPONSE_TIMEOUT");
} finally {
try {
if (httpResponse != null)
httpResponse.close();
if (httpClient != null)
httpClient.close();
} catch (IOException ioe) {
log.error("ERROR closing resources");
}
}
} catch (GeneralAltiriaException e) {
throw e;
} catch (Exception e) {
log.error("ERROR: Unexpected error", e);
throw new AltiriaGwException("GENERAL_ERROR", "001");
}
return credit;
}
Aggregations