merge-requests/1/head
parent
fe19eb096b
commit
a287d31829
@ -1,53 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
|
||||
*
|
||||
* WSO2 Inc. licenses this file to you 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.wso2.carbon.device.mgt.mobile.android.impl.fcm;
|
||||
|
||||
/**
|
||||
* Represents model object for holding FCM response data.
|
||||
*/
|
||||
public class FCMResult {
|
||||
|
||||
private String errorMsg;
|
||||
private String msg;
|
||||
private int statusCode;
|
||||
|
||||
public String getErrorMsg() {
|
||||
return errorMsg;
|
||||
}
|
||||
|
||||
public void setErrorMsg(String errorMsg) {
|
||||
this.errorMsg = errorMsg;
|
||||
}
|
||||
|
||||
public String getMsg() {
|
||||
return msg;
|
||||
}
|
||||
|
||||
public void setMsg(String msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public int getStatusCode() {
|
||||
return statusCode;
|
||||
}
|
||||
|
||||
public void setStatusCode(int statusCode) {
|
||||
this.statusCode = statusCode;
|
||||
}
|
||||
}
|
@ -1,64 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
|
||||
*
|
||||
* WSO2 Inc. licenses this file to you 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.wso2.carbon.device.mgt.mobile.android.impl.fcm;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.wso2.carbon.device.mgt.common.Device;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* FCM notification service implementation for Android platform.
|
||||
*/
|
||||
public class FCMService {
|
||||
|
||||
private static final Log log = LogFactory.getLog(FCMService.class);
|
||||
private static final String NOTIFIER_TYPE = "notifierType";
|
||||
private static final String FCM_NOTIFIER_CODE = "2";
|
||||
|
||||
public boolean isFCMEnabled() {
|
||||
String notifierType = FCMUtil.getConfigurationProperty(NOTIFIER_TYPE);
|
||||
if (FCM_NOTIFIER_CODE.equals(notifierType)) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public void sendNotification(String messageData, Device device) {
|
||||
List<Device> devices = new ArrayList<>(1);
|
||||
devices.add(device);
|
||||
FCMResult result = FCMUtil.sendWakeUpCall(messageData, devices);
|
||||
if (result.getStatusCode() != 200) {
|
||||
log.error("Exception occurred while sending the FCM notification : " + result.getErrorMsg());
|
||||
}
|
||||
}
|
||||
|
||||
public void sendNotification(String messageData, List<Device> devices) {
|
||||
FCMResult result = FCMUtil.sendWakeUpCall(messageData, devices);
|
||||
if (result.getStatusCode() != 200) {
|
||||
log.error("Exception occurred while sending the FCM notification : " + result.getErrorMsg());
|
||||
}
|
||||
}
|
||||
|
||||
public void resetTenantConfigCache() {
|
||||
FCMUtil.resetTenantConfigCache();
|
||||
}
|
||||
}
|
@ -1,204 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
|
||||
*
|
||||
* WSO2 Inc. licenses this file to you 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.wso2.carbon.device.mgt.mobile.android.impl.fcm;
|
||||
|
||||
import com.google.gson.JsonArray;
|
||||
import com.google.gson.JsonObject;
|
||||
import com.google.gson.JsonPrimitive;
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.wso2.carbon.context.CarbonContext;
|
||||
import org.wso2.carbon.device.mgt.common.Device;
|
||||
import org.wso2.carbon.device.mgt.common.DeviceManagementException;
|
||||
import org.wso2.carbon.device.mgt.common.configuration.mgt.ConfigurationEntry;
|
||||
import org.wso2.carbon.device.mgt.common.configuration.mgt.PlatformConfiguration;
|
||||
import org.wso2.carbon.device.mgt.common.spi.DeviceManagementService;
|
||||
import org.wso2.carbon.device.mgt.mobile.android.impl.util.AndroidPluginConstants;
|
||||
import org.wso2.carbon.device.mgt.mobile.android.internal.AndroidDeviceManagementDataHolder;
|
||||
|
||||
import java.io.BufferedReader;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.io.InputStreamReader;
|
||||
import java.io.OutputStream;
|
||||
import java.net.HttpURLConnection;
|
||||
import java.net.ProtocolException;
|
||||
import java.net.URL;
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Implements utility methods used by FCMService.
|
||||
*/
|
||||
public class FCMUtil {
|
||||
|
||||
private static final Log log = LogFactory.getLog(FCMService.class);
|
||||
|
||||
private final static String FCM_ENDPOINT = "https://fcm.googleapis.com/fcm/send";
|
||||
private static final String FCM_API_KEY = "fcmAPIKey";
|
||||
private static final int TIME_TO_LIVE = 60;
|
||||
private static final int HTTP_STATUS_CODE_OK = 200;
|
||||
|
||||
private static HashMap<Integer, PlatformConfiguration> tenantConfigurationCache = new HashMap<>();
|
||||
|
||||
public static FCMResult sendWakeUpCall(String message, List<Device> devices) {
|
||||
FCMResult result = new FCMResult();
|
||||
|
||||
byte[] bytes = getFCMRequest(message, getFCMTokens(devices)).getBytes();
|
||||
HttpURLConnection conn;
|
||||
try {
|
||||
conn = (HttpURLConnection) (new URL(FCM_ENDPOINT)).openConnection();
|
||||
conn.setDoOutput(true);
|
||||
conn.setUseCaches(false);
|
||||
conn.setFixedLengthStreamingMode(bytes.length);
|
||||
conn.setRequestMethod("POST");
|
||||
conn.setRequestProperty("Content-Type", "application/json");
|
||||
conn.setRequestProperty("Authorization", "key=" + getConfigurationProperty(FCM_API_KEY));
|
||||
|
||||
OutputStream out = conn.getOutputStream();
|
||||
out.write(bytes);
|
||||
out.close();
|
||||
|
||||
int status = conn.getResponseCode();
|
||||
result.setStatusCode(status);
|
||||
if (status != HTTP_STATUS_CODE_OK) {
|
||||
result.setErrorMsg(getString(conn.getErrorStream()));
|
||||
} else {
|
||||
result.setMsg(getString(conn.getInputStream()));
|
||||
}
|
||||
} catch (ProtocolException e) {
|
||||
log.error("Exception occurred while setting the HTTP protocol.", e);
|
||||
} catch (IOException ex) {
|
||||
log.error("Exception occurred while sending the FCM request.", ex);
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
private static String getString(InputStream stream) throws IOException {
|
||||
if (stream != null) {
|
||||
BufferedReader reader = new BufferedReader(new InputStreamReader(stream));
|
||||
StringBuilder content = new StringBuilder();
|
||||
|
||||
String newLine;
|
||||
do {
|
||||
newLine = reader.readLine();
|
||||
if (newLine != null) {
|
||||
content.append(newLine).append('\n');
|
||||
}
|
||||
} while (newLine != null);
|
||||
|
||||
if (content.length() > 0) {
|
||||
content.setLength(content.length() - 1);
|
||||
}
|
||||
|
||||
return content.toString();
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
private static String getFCMRequest(String message, List<String> registrationIds) {
|
||||
JsonObject fcmRequest = new JsonObject();
|
||||
fcmRequest.addProperty("delay_while_idle", false);
|
||||
fcmRequest.addProperty("time_to_live", TIME_TO_LIVE);
|
||||
|
||||
//Add message to FCM request
|
||||
JsonObject data = new JsonObject();
|
||||
if (message != null && !message.isEmpty()) {
|
||||
data.addProperty("data", message);
|
||||
fcmRequest.add("data", data);
|
||||
}
|
||||
|
||||
//Set device reg-ids
|
||||
JsonArray regIds = new JsonArray();
|
||||
for (String regId : registrationIds) {
|
||||
if (regId == null || regId.isEmpty()) {
|
||||
continue;
|
||||
}
|
||||
regIds.add(new JsonPrimitive(regId));
|
||||
}
|
||||
|
||||
fcmRequest.add("registration_ids", regIds);
|
||||
return fcmRequest.toString();
|
||||
}
|
||||
|
||||
private static List<String> getFCMTokens(List<Device> devices) {
|
||||
List<String> tokens = new ArrayList<>(devices.size());
|
||||
for (Device device : devices) {
|
||||
tokens.add(getFCMToken(device.getProperties()));
|
||||
}
|
||||
return tokens;
|
||||
}
|
||||
|
||||
private static String getFCMToken(List<Device.Property> properties) {
|
||||
String fcmToken = null;
|
||||
for (Device.Property property : properties) {
|
||||
if (AndroidPluginConstants.FCM_TOKEN.equals(property.getName())) {
|
||||
fcmToken = property.getValue();
|
||||
break;
|
||||
}
|
||||
}
|
||||
return fcmToken;
|
||||
}
|
||||
|
||||
public static String getConfigurationProperty(String property) {
|
||||
DeviceManagementService androidDMService = AndroidDeviceManagementDataHolder.getInstance().
|
||||
getAndroidDeviceManagementService();
|
||||
try {
|
||||
//Get the TenantConfiguration from cache if not we'll get it from DM service
|
||||
PlatformConfiguration tenantConfiguration = getTenantConfigurationFromCache();
|
||||
if (tenantConfiguration == null) {
|
||||
tenantConfiguration = androidDMService.getDeviceManager().getConfiguration();
|
||||
if (tenantConfiguration != null) {
|
||||
addTenantConfigurationToCache(tenantConfiguration);
|
||||
}
|
||||
}
|
||||
|
||||
if (tenantConfiguration != null) {
|
||||
List<ConfigurationEntry> configs = tenantConfiguration.getConfiguration();
|
||||
for (ConfigurationEntry entry : configs) {
|
||||
if (property.equals(entry.getName())) {
|
||||
return (String) entry.getValue();
|
||||
}
|
||||
}
|
||||
}
|
||||
return "";
|
||||
} catch (DeviceManagementException e) {
|
||||
log.error("Exception occurred while fetching the tenant-config.",e);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
public static void resetTenantConfigCache() {
|
||||
tenantConfigurationCache.remove(getTenantId());
|
||||
}
|
||||
|
||||
private static void addTenantConfigurationToCache(PlatformConfiguration tenantConfiguration) {
|
||||
tenantConfigurationCache.put(getTenantId(), tenantConfiguration);
|
||||
}
|
||||
|
||||
private static PlatformConfiguration getTenantConfigurationFromCache() {
|
||||
return tenantConfigurationCache.get(getTenantId());
|
||||
}
|
||||
|
||||
private static int getTenantId() {
|
||||
return CarbonContext.getThreadLocalCarbonContext().getTenantId();
|
||||
}
|
||||
}
|
Loading…
Reference in new issue