mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Merge branch 'master' of https://gitlab.com/entgra/carbon-device-mgt
This commit is contained in:
commit
64e349c75d
@ -0,0 +1,52 @@
|
|||||||
|
/* Copyright (c) 2020, Entgra (Pvt) Ltd. (http://www.entgra.io) All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Entgra (Pvt) Ltd. 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.application.mgt.common;
|
||||||
|
|
||||||
|
import org.wso2.carbon.device.mgt.common.Device;
|
||||||
|
import org.wso2.carbon.device.mgt.common.DeviceIdentifier;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class ApplicationSubscriptionInfo {
|
||||||
|
|
||||||
|
List<Device> devices;
|
||||||
|
List<String> subscribers;
|
||||||
|
List<DeviceIdentifier> errorDeviceIdentifiers;
|
||||||
|
String appSupportingDeviceTypeName;
|
||||||
|
|
||||||
|
public List<Device> getDevices() { return devices; }
|
||||||
|
|
||||||
|
public void setDevices(List<Device> devices) { this.devices = devices; }
|
||||||
|
|
||||||
|
public List<String> getSubscribers() { return subscribers; }
|
||||||
|
|
||||||
|
public void setSubscribers(List<String> subscribers) { this.subscribers = subscribers; }
|
||||||
|
|
||||||
|
public List<DeviceIdentifier> getErrorDeviceIdentifiers() { return errorDeviceIdentifiers; }
|
||||||
|
|
||||||
|
public void setErrorDeviceIdentifiers(List<DeviceIdentifier> errorDeviceIdentifiers) {
|
||||||
|
this.errorDeviceIdentifiers = errorDeviceIdentifiers;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAppSupportingDeviceTypeName() { return appSupportingDeviceTypeName; }
|
||||||
|
|
||||||
|
public void setAppSupportingDeviceTypeName(String appSupportingDeviceTypeName) {
|
||||||
|
this.appSupportingDeviceTypeName = appSupportingDeviceTypeName;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -29,6 +29,7 @@ import org.wso2.carbon.apimgt.application.extension.dto.ApiApplicationKey;
|
|||||||
import org.wso2.carbon.apimgt.application.extension.exception.APIManagerException;
|
import org.wso2.carbon.apimgt.application.extension.exception.APIManagerException;
|
||||||
import org.wso2.carbon.context.PrivilegedCarbonContext;
|
import org.wso2.carbon.context.PrivilegedCarbonContext;
|
||||||
import org.wso2.carbon.device.application.mgt.common.ApplicationInstallResponse;
|
import org.wso2.carbon.device.application.mgt.common.ApplicationInstallResponse;
|
||||||
|
import org.wso2.carbon.device.application.mgt.common.ApplicationSubscriptionInfo;
|
||||||
import org.wso2.carbon.device.application.mgt.common.ApplicationType;
|
import org.wso2.carbon.device.application.mgt.common.ApplicationType;
|
||||||
import org.wso2.carbon.device.application.mgt.common.DeviceSubscriptionData;
|
import org.wso2.carbon.device.application.mgt.common.DeviceSubscriptionData;
|
||||||
import org.wso2.carbon.device.application.mgt.common.DeviceTypes;
|
import org.wso2.carbon.device.application.mgt.common.DeviceTypes;
|
||||||
@ -76,7 +77,6 @@ import org.wso2.carbon.device.mgt.common.operation.mgt.Activity;
|
|||||||
import org.wso2.carbon.device.mgt.common.operation.mgt.ActivityStatus;
|
import org.wso2.carbon.device.mgt.common.operation.mgt.ActivityStatus;
|
||||||
import org.wso2.carbon.device.mgt.common.operation.mgt.Operation;
|
import org.wso2.carbon.device.mgt.common.operation.mgt.Operation;
|
||||||
import org.wso2.carbon.device.mgt.common.operation.mgt.OperationManagementException;
|
import org.wso2.carbon.device.mgt.common.operation.mgt.OperationManagementException;
|
||||||
import org.wso2.carbon.device.mgt.core.dto.DeviceType;
|
|
||||||
import org.wso2.carbon.device.mgt.core.operation.mgt.ProfileOperation;
|
import org.wso2.carbon.device.mgt.core.operation.mgt.ProfileOperation;
|
||||||
import org.wso2.carbon.device.mgt.core.service.DeviceManagementProviderService;
|
import org.wso2.carbon.device.mgt.core.service.DeviceManagementProviderService;
|
||||||
import org.wso2.carbon.device.mgt.core.service.GroupManagementProviderService;
|
import org.wso2.carbon.device.mgt.core.service.GroupManagementProviderService;
|
||||||
@ -120,84 +120,16 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
|
|||||||
log.debug("Install application release which has UUID " + applicationUUID + " to " + params.size()
|
log.debug("Install application release which has UUID " + applicationUUID + " to " + params.size()
|
||||||
+ " users.");
|
+ " users.");
|
||||||
}
|
}
|
||||||
try {
|
|
||||||
validateRequest(params, subType, action);
|
|
||||||
DeviceManagementProviderService deviceManagementProviderService = HelperUtil
|
|
||||||
.getDeviceManagementProviderService();
|
|
||||||
GroupManagementProviderService groupManagementProviderService = HelperUtil
|
|
||||||
.getGroupManagementProviderService();
|
|
||||||
String deviceTypeName = null;
|
|
||||||
List<Device> devices = new ArrayList<>();
|
|
||||||
List<String> subscribers = new ArrayList<>();
|
|
||||||
List<DeviceIdentifier> errorDeviceIdentifiers = new ArrayList<>();
|
|
||||||
ApplicationInstallResponse applicationInstallResponse;
|
|
||||||
|
|
||||||
//todo validate users, groups and roles
|
validateRequest(params, subType, action);
|
||||||
ApplicationDTO applicationDTO = getApplicationDTO(applicationUUID);
|
//todo validate users, groups and roles
|
||||||
if (SubscriptionType.DEVICE.toString().equals(subType)) {
|
ApplicationDTO applicationDTO = getApplicationDTO(applicationUUID);
|
||||||
for (T param : params) {
|
ApplicationSubscriptionInfo applicationSubscriptionInfo = getAppSubscriptionInfo(applicationDTO, subType, params);
|
||||||
DeviceIdentifier deviceIdentifier = (DeviceIdentifier) param;
|
ApplicationInstallResponse applicationInstallResponse = performActionOnDevices(applicationSubscriptionInfo.getAppSupportingDeviceTypeName(),
|
||||||
if (StringUtils.isEmpty(deviceIdentifier.getId()) || StringUtils
|
applicationSubscriptionInfo.getDevices(), applicationDTO, subType, applicationSubscriptionInfo.getSubscribers(), action);
|
||||||
.isEmpty(deviceIdentifier.getType())) {
|
|
||||||
log.warn("Found a device identifier which has either empty identity of the device or empty"
|
|
||||||
+ " device type. Hence ignoring the device identifier. ");
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (!ApplicationType.WEB_CLIP.toString().equals(applicationDTO.getType())) {
|
|
||||||
DeviceType deviceType = APIUtil.getDeviceTypeData(applicationDTO.getDeviceTypeId());
|
|
||||||
if (!deviceType.getName().equals(deviceIdentifier.getType())) {
|
|
||||||
log.warn("Found a device identifier which is not matched with the supported device type "
|
|
||||||
+ "of the application release which has UUID " + applicationUUID + " Application "
|
|
||||||
+ "supported device type is " + deviceType.getName() + " and the "
|
|
||||||
+ "identifier of which has a different device type is " + deviceIdentifier.getId());
|
|
||||||
errorDeviceIdentifiers.add(deviceIdentifier);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
devices.add(deviceManagementProviderService.getDevice(deviceIdentifier, false));
|
|
||||||
}
|
|
||||||
} else if (SubscriptionType.USER.toString().equalsIgnoreCase(subType)) {
|
|
||||||
for (T param : params) {
|
|
||||||
String username = (String) param;
|
|
||||||
subscribers.add(username);
|
|
||||||
devices.addAll(deviceManagementProviderService.getDevicesOfUser(username));
|
|
||||||
}
|
|
||||||
} else if (SubscriptionType.ROLE.toString().equalsIgnoreCase(subType)) {
|
|
||||||
for (T param : params) {
|
|
||||||
String roleName = (String) param;
|
|
||||||
subscribers.add(roleName);
|
|
||||||
devices.addAll(deviceManagementProviderService.getAllDevicesOfRole(roleName));
|
|
||||||
}
|
|
||||||
} else if (SubscriptionType.GROUP.toString().equalsIgnoreCase(subType)) {
|
|
||||||
for (T param : params) {
|
|
||||||
String groupName = (String) param;
|
|
||||||
subscribers.add(groupName);
|
|
||||||
devices.addAll(groupManagementProviderService.getAllDevicesOfGroup(groupName, true));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!ApplicationType.WEB_CLIP.toString().equals(applicationDTO.getType()) && !SubscriptionType.DEVICE
|
applicationInstallResponse.setErrorDeviceIdentifiers(applicationSubscriptionInfo.getErrorDeviceIdentifiers());
|
||||||
.toString().equals(subType)) {
|
return applicationInstallResponse;
|
||||||
DeviceType deviceType = APIUtil.getDeviceTypeData(applicationDTO.getDeviceTypeId());
|
|
||||||
deviceTypeName = deviceType.getName();
|
|
||||||
//filter devices by device type
|
|
||||||
String tmpDeviceTypeName = deviceTypeName;
|
|
||||||
devices.removeIf(device -> !tmpDeviceTypeName.equals(device.getType()));
|
|
||||||
}
|
|
||||||
|
|
||||||
applicationInstallResponse = performActionOnDevices(deviceTypeName, devices, applicationDTO,
|
|
||||||
subType, subscribers, action);
|
|
||||||
applicationInstallResponse.setErrorDeviceIdentifiers(errorDeviceIdentifiers);
|
|
||||||
return applicationInstallResponse;
|
|
||||||
} catch (DeviceManagementException e) {
|
|
||||||
String msg = "Error occurred while getting devices of given users or given roles.";
|
|
||||||
log.error(msg, e);
|
|
||||||
throw new ApplicationManagementException(msg, e);
|
|
||||||
} catch (GroupManagementException e) {
|
|
||||||
String msg = "Error occurred while getting devices of given groups";
|
|
||||||
log.error(msg, e);
|
|
||||||
throw new ApplicationManagementException(msg, e);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -321,141 +253,73 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public <T> void performEntAppSubscription(String applicationUUID, List<T> params, String subType, String action,
|
public <T> void performEntAppSubscription(String applicationUUID, List<T> params, String subType, String action,
|
||||||
boolean requiresUpdatingExternal)
|
boolean requiresUpdatingExternal) throws ApplicationManagementException {
|
||||||
throws ApplicationManagementException {
|
|
||||||
if (log.isDebugEnabled()) {
|
if (log.isDebugEnabled()) {
|
||||||
log.debug("Google Ent app Install operation is received to application which has UUID "
|
log.debug("Google Ent app Install operation is received to application which has UUID " + applicationUUID
|
||||||
+ applicationUUID + " to perform on " + params.size() + " params.");
|
+ " to perform on " + params.size() + " params.");
|
||||||
}
|
}
|
||||||
try {
|
if (params.isEmpty()) {
|
||||||
if (params.isEmpty()) {
|
String msg = "In order to subscribe/unsubscribe application release, you should provide list of "
|
||||||
String msg = "In order to subscribe/unsubscribe application release, you should provide list of "
|
+ "subscribers. But found an empty list of subscribers.";
|
||||||
+ "subscribers. But found an empty list of subscribers.";
|
log.error(msg);
|
||||||
log.error(msg);
|
throw new BadRequestException(msg);
|
||||||
throw new BadRequestException(msg);
|
|
||||||
}
|
|
||||||
|
|
||||||
ApplicationDTO applicationDTO = getApplicationDTO(applicationUUID);
|
|
||||||
ApplicationReleaseDTO applicationReleaseDTO = applicationDTO.getApplicationReleaseDTOs().get(0);
|
|
||||||
int applicationReleaseId = applicationReleaseDTO.getId();
|
|
||||||
if (!ApplicationType.PUBLIC.toString().equals(applicationDTO.getType())) {
|
|
||||||
String msg = "Application type is not public. Hence you can't perform google ent.install operation on "
|
|
||||||
+ "this application. Application name " + applicationDTO.getName() + " Application Type "
|
|
||||||
+ applicationDTO.getType();
|
|
||||||
log.error(msg);
|
|
||||||
throw new BadRequestException(msg);
|
|
||||||
}
|
|
||||||
|
|
||||||
List<String> categories = getApplicationCategories(applicationDTO.getId());
|
|
||||||
if (!categories.contains("GooglePlaySyncedApp")) {
|
|
||||||
String msg = "This is not google play store synced application. Hence can't perform enterprise app "
|
|
||||||
+ "installation.";
|
|
||||||
log.error(msg);
|
|
||||||
throw new BadRequestException(msg);
|
|
||||||
}
|
|
||||||
|
|
||||||
DeviceManagementProviderService deviceManagementProviderService = HelperUtil
|
|
||||||
.getDeviceManagementProviderService();
|
|
||||||
|
|
||||||
List<Device> devices = new ArrayList<>();
|
|
||||||
List<String> subscribers = new ArrayList<>();
|
|
||||||
List<Integer> appSubscribingDeviceIds;
|
|
||||||
List<Integer> appReSubscribingDeviceIds = new ArrayList<>();
|
|
||||||
List<DeviceIdentifier> deviceIdentifiers = new ArrayList<>();
|
|
||||||
|
|
||||||
//todo validate users, groups and roles
|
|
||||||
if (SubscriptionType.DEVICE.toString().equals(subType)) {
|
|
||||||
DeviceType deviceType = APIUtil.getDeviceTypeData(applicationDTO.getDeviceTypeId());
|
|
||||||
for (T param : params) {
|
|
||||||
DeviceIdentifier deviceIdentifier = (DeviceIdentifier) param;
|
|
||||||
if (StringUtils.isEmpty(deviceIdentifier.getId()) || StringUtils
|
|
||||||
.isEmpty(deviceIdentifier.getType())) {
|
|
||||||
log.warn("Found a device identifier which has either empty identity of the device or empty"
|
|
||||||
+ " device type. Hence ignoring the device identifier. ");
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (!deviceType.getName().equals(deviceIdentifier.getType())) {
|
|
||||||
log.warn("Found a device identifier which is not matched with the supported device type "
|
|
||||||
+ "of the application release which has UUID " + applicationUUID + " Application "
|
|
||||||
+ "supported device type is " + deviceType.getName() + " and the "
|
|
||||||
+ "identifier of which has a different device type is " + deviceIdentifier.getId());
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
deviceIdentifiers.add(deviceIdentifier);
|
|
||||||
devices.add(deviceManagementProviderService.getDevice(deviceIdentifier, false));
|
|
||||||
}
|
|
||||||
} else if (SubscriptionType.USER.toString().equalsIgnoreCase(subType)) {
|
|
||||||
for (T param : params) {
|
|
||||||
String username = (String) param;
|
|
||||||
subscribers.add(username);
|
|
||||||
devices.addAll(deviceManagementProviderService.getDevicesOfUser(username));
|
|
||||||
}
|
|
||||||
} else if (SubscriptionType.ROLE.toString().equalsIgnoreCase(subType)) {
|
|
||||||
for (T param : params) {
|
|
||||||
String roleName = (String) param;
|
|
||||||
subscribers.add(roleName);
|
|
||||||
devices.addAll(deviceManagementProviderService.getAllDevicesOfRole(roleName));
|
|
||||||
}
|
|
||||||
} else if (SubscriptionType.GROUP.toString().equalsIgnoreCase(subType)) {
|
|
||||||
GroupManagementProviderService groupManagementProviderService = HelperUtil
|
|
||||||
.getGroupManagementProviderService();
|
|
||||||
for (T param : params) {
|
|
||||||
String groupName = (String) param;
|
|
||||||
subscribers.add(groupName);
|
|
||||||
devices.addAll(groupManagementProviderService.getAllDevicesOfGroup(groupName, false));
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
String msg = "Found invalid subscription type " + subType+ " to install application release" ;
|
|
||||||
log.error(msg);
|
|
||||||
throw new BadRequestException(msg);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*If subscription type is not device we need to crete device identifiers object list by referring retrieved
|
|
||||||
list of devices.*/
|
|
||||||
if (!SubscriptionType.DEVICE.toString().equalsIgnoreCase(subType)) {
|
|
||||||
DeviceType deviceType = APIUtil.getDeviceTypeData(applicationDTO.getDeviceTypeId());
|
|
||||||
String deviceTypeName = deviceType.getName();
|
|
||||||
//filter devices by device type
|
|
||||||
devices.removeIf(device -> !deviceTypeName.equals(device.getType()));
|
|
||||||
devices.forEach(device -> {
|
|
||||||
DeviceIdentifier deviceIdentifier = new DeviceIdentifier();
|
|
||||||
deviceIdentifier.setId(device.getDeviceIdentifier());
|
|
||||||
deviceIdentifier.setType(device.getType());
|
|
||||||
deviceIdentifiers.add(deviceIdentifier);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
if (requiresUpdatingExternal) {
|
|
||||||
//Installing the application
|
|
||||||
ApplicationPolicyDTO applicationPolicyDTO = new ApplicationPolicyDTO();
|
|
||||||
applicationPolicyDTO.setApplicationDTO(applicationDTO);
|
|
||||||
applicationPolicyDTO.setDeviceIdentifierList(deviceIdentifiers);
|
|
||||||
applicationPolicyDTO.setAction(action.toUpperCase());
|
|
||||||
installEnrollmentApplications(applicationPolicyDTO);
|
|
||||||
}
|
|
||||||
|
|
||||||
appSubscribingDeviceIds = devices.stream().map(Device::getId).collect(Collectors.toList());
|
|
||||||
Map<Integer, DeviceSubscriptionDTO> deviceSubscriptions = getDeviceSubscriptions(appSubscribingDeviceIds,
|
|
||||||
applicationReleaseId);
|
|
||||||
for (Map.Entry<Integer, DeviceSubscriptionDTO> deviceSubscription: deviceSubscriptions.entrySet()){
|
|
||||||
appReSubscribingDeviceIds.add(deviceSubscription.getKey());
|
|
||||||
appSubscribingDeviceIds.remove(deviceSubscription.getKey());
|
|
||||||
}
|
|
||||||
|
|
||||||
updateSubscriptionsForEntInstall(applicationReleaseId, appSubscribingDeviceIds, appReSubscribingDeviceIds,
|
|
||||||
subscribers, subType, action);
|
|
||||||
} catch (DeviceManagementException e) {
|
|
||||||
String msg = "Error occurred while getting devices of given users or given roles.";
|
|
||||||
log.error(msg, e);
|
|
||||||
throw new ApplicationManagementException(msg, e);
|
|
||||||
} catch (GroupManagementException e) {
|
|
||||||
String msg = "Error occurred while getting devices of given groups";
|
|
||||||
log.error(msg, e);
|
|
||||||
throw new ApplicationManagementException(msg, e);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ApplicationDTO applicationDTO = getApplicationDTO(applicationUUID);
|
||||||
|
ApplicationReleaseDTO applicationReleaseDTO = applicationDTO.getApplicationReleaseDTOs().get(0);
|
||||||
|
int applicationReleaseId = applicationReleaseDTO.getId();
|
||||||
|
if (!ApplicationType.PUBLIC.toString().equals(applicationDTO.getType())) {
|
||||||
|
String msg = "Application type is not public. Hence you can't perform google ent.install operation on "
|
||||||
|
+ "this application. Application name " + applicationDTO.getName() + " Application Type "
|
||||||
|
+ applicationDTO.getType();
|
||||||
|
log.error(msg);
|
||||||
|
throw new BadRequestException(msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
List<String> categories = getApplicationCategories(applicationDTO.getId());
|
||||||
|
if (!categories.contains("GooglePlaySyncedApp")) {
|
||||||
|
String msg = "This is not google play store synced application. Hence can't perform enterprise app "
|
||||||
|
+ "installation.";
|
||||||
|
log.error(msg);
|
||||||
|
throw new BadRequestException(msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
List<Integer> appReSubscribingDeviceIds = new ArrayList<>();
|
||||||
|
List<DeviceIdentifier> deviceIdentifiers = new ArrayList<>();
|
||||||
|
|
||||||
|
ApplicationSubscriptionInfo applicationSubscriptionInfo = getAppSubscriptionInfo(applicationDTO, subType,
|
||||||
|
params);
|
||||||
|
applicationSubscriptionInfo.getDevices().forEach(device -> {
|
||||||
|
DeviceIdentifier deviceIdentifier = new DeviceIdentifier();
|
||||||
|
deviceIdentifier.setId(device.getDeviceIdentifier());
|
||||||
|
deviceIdentifier.setType(device.getType());
|
||||||
|
deviceIdentifiers.add(deviceIdentifier);
|
||||||
|
});
|
||||||
|
|
||||||
|
if (requiresUpdatingExternal) {
|
||||||
|
//Installing the application
|
||||||
|
ApplicationPolicyDTO applicationPolicyDTO = new ApplicationPolicyDTO();
|
||||||
|
applicationPolicyDTO.setApplicationDTO(applicationDTO);
|
||||||
|
applicationPolicyDTO.setDeviceIdentifierList(deviceIdentifiers);
|
||||||
|
applicationPolicyDTO.setAction(action.toUpperCase());
|
||||||
|
installEnrollmentApplications(applicationPolicyDTO);
|
||||||
|
}
|
||||||
|
|
||||||
|
List<Integer> appSubscribingDeviceIds = applicationSubscriptionInfo.getDevices().stream().map(Device::getId)
|
||||||
|
.collect(Collectors.toList());
|
||||||
|
Map<Integer, DeviceSubscriptionDTO> deviceSubscriptions = getDeviceSubscriptions(appSubscribingDeviceIds,
|
||||||
|
applicationReleaseId);
|
||||||
|
for (Map.Entry<Integer, DeviceSubscriptionDTO> deviceSubscription : deviceSubscriptions.entrySet()) {
|
||||||
|
appReSubscribingDeviceIds.add(deviceSubscription.getKey());
|
||||||
|
appSubscribingDeviceIds.remove(deviceSubscription.getKey());
|
||||||
|
}
|
||||||
|
|
||||||
|
updateSubscriptionsForEntInstall(applicationReleaseId, appSubscribingDeviceIds, appReSubscribingDeviceIds,
|
||||||
|
applicationSubscriptionInfo.getSubscribers(), subType, action);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override public void installAppsForDevice(DeviceIdentifier deviceIdentifier, List<String> releaseUUIDs)
|
@Override
|
||||||
|
public void installAppsForDevice(DeviceIdentifier deviceIdentifier, List<String> releaseUUIDs)
|
||||||
throws ApplicationManagementException {
|
throws ApplicationManagementException {
|
||||||
|
|
||||||
int tenantId = PrivilegedCarbonContext.getThreadLocalCarbonContext().getTenantId(true);
|
int tenantId = PrivilegedCarbonContext.getThreadLocalCarbonContext().getTenantId(true);
|
||||||
@ -519,6 +383,105 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets Application subscribing info by using requesting params
|
||||||
|
*
|
||||||
|
* @param applicationDTO Application DTO
|
||||||
|
* @param params list of subscribers. This list can be of either
|
||||||
|
* {@link org.wso2.carbon.device.mgt.common.DeviceIdentifier} if {@param subType} is equal
|
||||||
|
* to DEVICE or
|
||||||
|
* {@link String} if {@param subType} is USER, ROLE or GROUP
|
||||||
|
* @param subType subscription type. E.g. <code>DEVICE, USER, ROLE, GROUP</code> {@see {
|
||||||
|
* @param <T> generic type of the method.
|
||||||
|
* @return {@link ApplicationSubscriptionInfo}
|
||||||
|
* @throws ApplicationManagementException if error occurred while getting Application subscription info
|
||||||
|
*/
|
||||||
|
private <T> ApplicationSubscriptionInfo getAppSubscriptionInfo(ApplicationDTO applicationDTO, String subType,
|
||||||
|
List<T> params) throws ApplicationManagementException {
|
||||||
|
|
||||||
|
DeviceManagementProviderService deviceManagementProviderService = HelperUtil
|
||||||
|
.getDeviceManagementProviderService();
|
||||||
|
GroupManagementProviderService groupManagementProviderService = HelperUtil.getGroupManagementProviderService();
|
||||||
|
List<Device> devices = new ArrayList<>();
|
||||||
|
List<String> subscribers = new ArrayList<>();
|
||||||
|
List<DeviceIdentifier> errorDeviceIdentifiers = new ArrayList<>();
|
||||||
|
String deviceTypeName = null;
|
||||||
|
|
||||||
|
try {
|
||||||
|
if (!ApplicationType.WEB_CLIP.toString().equals(applicationDTO.getType())) {
|
||||||
|
deviceTypeName = APIUtil.getDeviceTypeData(applicationDTO.getDeviceTypeId()).getName();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (SubscriptionType.DEVICE.toString().equals(subType)) {
|
||||||
|
for (T param : params) {
|
||||||
|
DeviceIdentifier deviceIdentifier = (DeviceIdentifier) param;
|
||||||
|
if (StringUtils.isEmpty(deviceIdentifier.getId()) || StringUtils
|
||||||
|
.isEmpty(deviceIdentifier.getType())) {
|
||||||
|
log.warn("Found a device identifier which has either empty identity of the device or empty"
|
||||||
|
+ " device type. Hence ignoring the device identifier. ");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (!ApplicationType.WEB_CLIP.toString().equals(applicationDTO.getType()) && !deviceIdentifier
|
||||||
|
.getType().equals(deviceTypeName)) {
|
||||||
|
log.warn("Found a device identifier which is not matched with the supported device type "
|
||||||
|
+ "of the application release which has UUID " + applicationDTO
|
||||||
|
.getApplicationReleaseDTOs().get(0).getUuid() + " Application "
|
||||||
|
+ "supported device type is " + deviceTypeName + " and the identifier of which has a "
|
||||||
|
+ "different device type is " + deviceIdentifier.getId());
|
||||||
|
errorDeviceIdentifiers.add(deviceIdentifier);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
devices.add(deviceManagementProviderService.getDevice(deviceIdentifier, false));
|
||||||
|
}
|
||||||
|
} else if (SubscriptionType.USER.toString().equalsIgnoreCase(subType)) {
|
||||||
|
for (T param : params) {
|
||||||
|
String username = (String) param;
|
||||||
|
subscribers.add(username);
|
||||||
|
devices.addAll(deviceManagementProviderService.getDevicesOfUser(username));
|
||||||
|
}
|
||||||
|
} else if (SubscriptionType.ROLE.toString().equalsIgnoreCase(subType)) {
|
||||||
|
for (T param : params) {
|
||||||
|
String roleName = (String) param;
|
||||||
|
subscribers.add(roleName);
|
||||||
|
devices.addAll(deviceManagementProviderService.getAllDevicesOfRole(roleName));
|
||||||
|
}
|
||||||
|
} else if (SubscriptionType.GROUP.toString().equalsIgnoreCase(subType)) {
|
||||||
|
for (T param : params) {
|
||||||
|
String groupName = (String) param;
|
||||||
|
subscribers.add(groupName);
|
||||||
|
devices.addAll(groupManagementProviderService.getAllDevicesOfGroup(groupName, true));
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
String msg = "Found invalid subscription type " + subType+ " to install application release" ;
|
||||||
|
log.error(msg);
|
||||||
|
throw new BadRequestException(msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!ApplicationType.WEB_CLIP.toString().equals(applicationDTO.getType()) && !SubscriptionType.DEVICE
|
||||||
|
.toString().equals(subType)) {
|
||||||
|
//filter devices by device type
|
||||||
|
String tmpDeviceTypeName = deviceTypeName;
|
||||||
|
devices.removeIf(device -> !tmpDeviceTypeName.equals(device.getType()));
|
||||||
|
}
|
||||||
|
|
||||||
|
ApplicationSubscriptionInfo applicationSubscriptionInfo = new ApplicationSubscriptionInfo();
|
||||||
|
applicationSubscriptionInfo.setDevices(devices);
|
||||||
|
applicationSubscriptionInfo.setSubscribers(subscribers);
|
||||||
|
applicationSubscriptionInfo.setErrorDeviceIdentifiers(errorDeviceIdentifiers);
|
||||||
|
applicationSubscriptionInfo.setAppSupportingDeviceTypeName(deviceTypeName);
|
||||||
|
return applicationSubscriptionInfo;
|
||||||
|
} catch (DeviceManagementException e) {
|
||||||
|
String msg = "Error occurred while getting devices of given users or given roles or while getting device "
|
||||||
|
+ "type info.";
|
||||||
|
log.error(msg, e);
|
||||||
|
throw new ApplicationManagementException(msg, e);
|
||||||
|
} catch (GroupManagementException e) {
|
||||||
|
String msg = "Error occurred while getting devices of given groups";
|
||||||
|
log.error(msg, e);
|
||||||
|
throw new ApplicationManagementException(msg, e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This method is responsible to update subscription data for google enterprise install.
|
* This method is responsible to update subscription data for google enterprise install.
|
||||||
*
|
*
|
||||||
@ -567,8 +530,6 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* THis method is responsible to validate application install or uninstall request.
|
* THis method is responsible to validate application install or uninstall request.
|
||||||
*
|
*
|
||||||
@ -704,14 +665,12 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
|
|||||||
|| Operation.Status.IN_PROGRESS.toString().equals(deviceSubscriptionDTO.getStatus())) {
|
|| Operation.Status.IN_PROGRESS.toString().equals(deviceSubscriptionDTO.getStatus())) {
|
||||||
subscribingDeviceIdHolder.getSkippedDevices().put(deviceIdentifier, device.getId());
|
subscribingDeviceIdHolder.getSkippedDevices().put(deviceIdentifier, device.getId());
|
||||||
} else if (deviceSubscriptionDTO.isUnsubscribed()) {
|
} else if (deviceSubscriptionDTO.isUnsubscribed()) {
|
||||||
if (Operation.Status.COMPLETED.toString().equals(deviceSubscriptionDTO.getStatus())) {
|
if (!Operation.Status.COMPLETED.toString().equals(deviceSubscriptionDTO.getStatus())) {
|
||||||
subscribingDeviceIdHolder.getAppReInstallableDevices().put(deviceIdentifier, device.getId());
|
|
||||||
} else {
|
|
||||||
/*We can't ensure whether app is uninstalled successfully or not hence allow to perform both
|
/*We can't ensure whether app is uninstalled successfully or not hence allow to perform both
|
||||||
install and uninstall operations*/
|
install and uninstall operations*/
|
||||||
subscribingDeviceIdHolder.getAppReUnInstallableDevices().put(deviceIdentifier, device.getId());
|
subscribingDeviceIdHolder.getAppReUnInstallableDevices().put(deviceIdentifier, device.getId());
|
||||||
subscribingDeviceIdHolder.getAppReInstallableDevices().put(deviceIdentifier, device.getId());
|
|
||||||
}
|
}
|
||||||
|
subscribingDeviceIdHolder.getAppReInstallableDevices().put(deviceIdentifier, device.getId());
|
||||||
} else if (!deviceSubscriptionDTO.isUnsubscribed() && Operation.Status.COMPLETED.toString()
|
} else if (!deviceSubscriptionDTO.isUnsubscribed() && Operation.Status.COMPLETED.toString()
|
||||||
.equals(deviceSubscriptionDTO.getStatus())) {
|
.equals(deviceSubscriptionDTO.getStatus())) {
|
||||||
subscribingDeviceIdHolder.getAppInstalledDevices().put(deviceIdentifier, device.getId());
|
subscribingDeviceIdHolder.getAppInstalledDevices().put(deviceIdentifier, device.getId());
|
||||||
@ -1126,8 +1085,7 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public PaginationResult getAppInstalledDevices(int offsetValue, int limitValue, String appUUID,
|
public PaginationResult getAppInstalledDevices(int offsetValue, int limitValue, String appUUID, String status)
|
||||||
String status)
|
|
||||||
throws ApplicationManagementException {
|
throws ApplicationManagementException {
|
||||||
int tenantId = PrivilegedCarbonContext.getThreadLocalCarbonContext().getTenantId(true);
|
int tenantId = PrivilegedCarbonContext.getThreadLocalCarbonContext().getTenantId(true);
|
||||||
DeviceManagementProviderService deviceManagementProviderService = HelperUtil
|
DeviceManagementProviderService deviceManagementProviderService = HelperUtil
|
||||||
|
|||||||
@ -20,24 +20,20 @@ package org.wso2.carbon.device.application.mgt.core.util;
|
|||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
import org.apache.commons.logging.LogFactory;
|
import org.apache.commons.logging.LogFactory;
|
||||||
import org.wso2.carbon.context.PrivilegedCarbonContext;
|
import org.wso2.carbon.context.PrivilegedCarbonContext;
|
||||||
import org.wso2.carbon.device.mgt.common.Device;
|
|
||||||
import org.wso2.carbon.device.mgt.core.service.DeviceManagementProviderService;
|
import org.wso2.carbon.device.mgt.core.service.DeviceManagementProviderService;
|
||||||
import org.wso2.carbon.device.mgt.core.service.GroupManagementProviderService;
|
import org.wso2.carbon.device.mgt.core.service.GroupManagementProviderService;
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.UUID;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Utility methods used in the Application Management.
|
* Utility methods used in the Application Management.
|
||||||
*/
|
*/
|
||||||
public class HelperUtil {
|
public class HelperUtil {
|
||||||
|
|
||||||
private static Log log = LogFactory.getLog(HelperUtil.class);
|
private static final Log log = LogFactory.getLog(HelperUtil.class);
|
||||||
|
|
||||||
private static DeviceManagementProviderService deviceManagementProviderService;
|
private static DeviceManagementProviderService deviceManagementProviderService;
|
||||||
private static GroupManagementProviderService groupManagementProviderService;
|
private static GroupManagementProviderService groupManagementProviderService;
|
||||||
|
|
||||||
public static DeviceManagementProviderService getDeviceManagementProviderService() {
|
public static synchronized DeviceManagementProviderService getDeviceManagementProviderService() {
|
||||||
if (deviceManagementProviderService == null) {
|
if (deviceManagementProviderService == null) {
|
||||||
PrivilegedCarbonContext ctx = PrivilegedCarbonContext.getThreadLocalCarbonContext();
|
PrivilegedCarbonContext ctx = PrivilegedCarbonContext.getThreadLocalCarbonContext();
|
||||||
deviceManagementProviderService = (DeviceManagementProviderService) ctx
|
deviceManagementProviderService = (DeviceManagementProviderService) ctx
|
||||||
@ -51,7 +47,7 @@ public class HelperUtil {
|
|||||||
return deviceManagementProviderService;
|
return deviceManagementProviderService;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static GroupManagementProviderService getGroupManagementProviderService() {
|
public static synchronized GroupManagementProviderService getGroupManagementProviderService() {
|
||||||
if (groupManagementProviderService == null) {
|
if (groupManagementProviderService == null) {
|
||||||
PrivilegedCarbonContext ctx = PrivilegedCarbonContext.getThreadLocalCarbonContext();
|
PrivilegedCarbonContext ctx = PrivilegedCarbonContext.getThreadLocalCarbonContext();
|
||||||
groupManagementProviderService = (GroupManagementProviderService) ctx
|
groupManagementProviderService = (GroupManagementProviderService) ctx
|
||||||
|
|||||||
@ -17,6 +17,7 @@
|
|||||||
"acorn": "^6.2.0",
|
"acorn": "^6.2.0",
|
||||||
"antd": "^4.0.0",
|
"antd": "^4.0.0",
|
||||||
"axios": "^0.19.0",
|
"axios": "^0.19.0",
|
||||||
|
"babel-eslint": "^10.1.0",
|
||||||
"d3": "^5.9.7",
|
"d3": "^5.9.7",
|
||||||
"dagre": "^0.8.4",
|
"dagre": "^0.8.4",
|
||||||
"entgra-icons-react": "^1.0.0",
|
"entgra-icons-react": "^1.0.0",
|
||||||
|
|||||||
@ -13,7 +13,7 @@
|
|||||||
"acorn": "^6.2.0",
|
"acorn": "^6.2.0",
|
||||||
"antd": "^4.0.0",
|
"antd": "^4.0.0",
|
||||||
"axios": "^0.18.1",
|
"axios": "^0.18.1",
|
||||||
"babel-eslint": "^9.0.0",
|
"babel-eslint": "^10.1.0",
|
||||||
"d3": "^5.9.7",
|
"d3": "^5.9.7",
|
||||||
"dagre": "^0.8.4",
|
"dagre": "^0.8.4",
|
||||||
"imagemin": "^5.3.1",
|
"imagemin": "^5.3.1",
|
||||||
|
|||||||
@ -47,10 +47,10 @@ public class GeoLocationBasedServiceImplTest {
|
|||||||
List<GeoCluster> geoClusters = new ArrayList<>();
|
List<GeoCluster> geoClusters = new ArrayList<>();
|
||||||
geoClusters.add(new GeoCluster(new GeoCoordinate(1.5, 80.7),
|
geoClusters.add(new GeoCluster(new GeoCoordinate(1.5, 80.7),
|
||||||
new GeoCoordinate(1.1, 79.5), new GeoCoordinate(1.9, 82.1), 3,
|
new GeoCoordinate(1.1, 79.5), new GeoCoordinate(1.9, 82.1), 3,
|
||||||
"tb32", "aegtew234", "android", "1234"));
|
"tb32", "aegtew234", "test1", "android", "1234"));
|
||||||
geoClusters.add(new GeoCluster(new GeoCoordinate(10.2, 86.1),
|
geoClusters.add(new GeoCluster(new GeoCoordinate(10.2, 86.1),
|
||||||
new GeoCoordinate(9.8, 84.7), new GeoCoordinate(11.1, 88.1), 4,
|
new GeoCoordinate(9.8, 84.7), new GeoCoordinate(11.1, 88.1), 4,
|
||||||
"t1gd", "swerty12s", "android", "1234"));
|
"t1gd", "swerty12s", "t2test", "android", "1234"));
|
||||||
Mockito.doReturn(geoClusters).when(deviceManagementProviderService)
|
Mockito.doReturn(geoClusters).when(deviceManagementProviderService)
|
||||||
.findGeoClusters(null, Mockito.any(GeoCoordinate.class), Mockito.any(GeoCoordinate.class), Mockito.anyInt());
|
.findGeoClusters(null, Mockito.any(GeoCoordinate.class), Mockito.any(GeoCoordinate.class), Mockito.anyInt());
|
||||||
Response response = geoLocationBasedService.getGeoDeviceLocations(null, 0.4, 15, 75.6,
|
Response response = geoLocationBasedService.getGeoDeviceLocations(null, 0.4, 15, 75.6,
|
||||||
|
|||||||
@ -1733,6 +1733,7 @@ public abstract class AbstractDeviceDAOImpl implements DeviceDAO {
|
|||||||
" MAX(DEVICE_LOCATION.LONGITUDE) AS MAX_LONGITUDE," +
|
" MAX(DEVICE_LOCATION.LONGITUDE) AS MAX_LONGITUDE," +
|
||||||
" SUBSTRING(DEVICE_LOCATION.GEO_HASH,1,?) AS GEOHASH_PREFIX, COUNT(*) AS COUNT," +
|
" SUBSTRING(DEVICE_LOCATION.GEO_HASH,1,?) AS GEOHASH_PREFIX, COUNT(*) AS COUNT," +
|
||||||
" MIN(DEVICE.DEVICE_IDENTIFICATION) AS DEVICE_IDENTIFICATION," +
|
" MIN(DEVICE.DEVICE_IDENTIFICATION) AS DEVICE_IDENTIFICATION," +
|
||||||
|
" MIN(DEVICE.NAME) AS NAME," +
|
||||||
" MIN(DEVICE_TYPE.NAME) AS TYPE, " +
|
" MIN(DEVICE_TYPE.NAME) AS TYPE, " +
|
||||||
" MIN(DEVICE.LAST_UPDATED_TIMESTAMP) AS LAST_UPDATED_TIMESTAMP " +
|
" MIN(DEVICE.LAST_UPDATED_TIMESTAMP) AS LAST_UPDATED_TIMESTAMP " +
|
||||||
"FROM DM_DEVICE_LOCATION AS DEVICE_LOCATION,DM_DEVICE AS DEVICE, DM_DEVICE_TYPE AS DEVICE_TYPE " +
|
"FROM DM_DEVICE_LOCATION AS DEVICE_LOCATION,DM_DEVICE AS DEVICE, DM_DEVICE_TYPE AS DEVICE_TYPE " +
|
||||||
@ -1763,13 +1764,14 @@ public abstract class AbstractDeviceDAOImpl implements DeviceDAO {
|
|||||||
double min_longitude = rs.getDouble("MIN_LONGITUDE");
|
double min_longitude = rs.getDouble("MIN_LONGITUDE");
|
||||||
double max_longitude = rs.getDouble("MAX_LONGITUDE");
|
double max_longitude = rs.getDouble("MAX_LONGITUDE");
|
||||||
String device_identification = rs.getString("DEVICE_IDENTIFICATION");
|
String device_identification = rs.getString("DEVICE_IDENTIFICATION");
|
||||||
|
String device_name = rs.getString("NAME");
|
||||||
String device_type = rs.getString("TYPE");
|
String device_type = rs.getString("TYPE");
|
||||||
String last_seen = rs.getString("LAST_UPDATED_TIMESTAMP");
|
String last_seen = rs.getString("LAST_UPDATED_TIMESTAMP");
|
||||||
long count = rs.getLong("COUNT");
|
long count = rs.getLong("COUNT");
|
||||||
String geohashPrefix = rs.getString("GEOHASH_PREFIX");
|
String geohashPrefix = rs.getString("GEOHASH_PREFIX");
|
||||||
geoClusters.add(new GeoCluster(new GeoCoordinate(latitude, longitude),
|
geoClusters.add(new GeoCluster(new GeoCoordinate(latitude, longitude),
|
||||||
new GeoCoordinate(min_latitude, min_longitude), new GeoCoordinate(max_latitude, max_longitude),
|
new GeoCoordinate(min_latitude, min_longitude), new GeoCoordinate(max_latitude, max_longitude),
|
||||||
count, geohashPrefix, device_identification, device_type, last_seen));
|
count, geohashPrefix, device_identification, device_name, device_type, last_seen));
|
||||||
}
|
}
|
||||||
} catch (SQLException e) {
|
} catch (SQLException e) {
|
||||||
throw new DeviceManagementDAOException("Error occurred while retrieving information of " +
|
throw new DeviceManagementDAOException("Error occurred while retrieving information of " +
|
||||||
|
|||||||
@ -30,6 +30,8 @@ import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOException;
|
|||||||
import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOFactory;
|
import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOFactory;
|
||||||
import org.wso2.carbon.device.mgt.core.dao.impl.AbstractDeviceDAOImpl;
|
import org.wso2.carbon.device.mgt.core.dao.impl.AbstractDeviceDAOImpl;
|
||||||
import org.wso2.carbon.device.mgt.core.dao.util.DeviceManagementDAOUtil;
|
import org.wso2.carbon.device.mgt.core.dao.util.DeviceManagementDAOUtil;
|
||||||
|
import org.wso2.carbon.device.mgt.core.geo.GeoCluster;
|
||||||
|
import org.wso2.carbon.device.mgt.core.geo.geoHash.GeoCoordinate;
|
||||||
import org.wso2.carbon.device.mgt.core.report.mgt.Constants;
|
import org.wso2.carbon.device.mgt.core.report.mgt.Constants;
|
||||||
|
|
||||||
import java.sql.Connection;
|
import java.sql.Connection;
|
||||||
|
|||||||
@ -968,6 +968,7 @@ public class SQLServerDeviceDAOImpl extends AbstractDeviceDAOImpl {
|
|||||||
+ ") AS GEOHASH_PREFIX, "
|
+ ") AS GEOHASH_PREFIX, "
|
||||||
+ "COUNT(*) AS COUNT, "
|
+ "COUNT(*) AS COUNT, "
|
||||||
+ "MIN(DEVICE.DEVICE_IDENTIFICATION) AS DEVICE_IDENTIFICATION, "
|
+ "MIN(DEVICE.DEVICE_IDENTIFICATION) AS DEVICE_IDENTIFICATION, "
|
||||||
|
+ "MIN(DEVICE.NAME) AS NAME, "
|
||||||
+ "MIN(DEVICE_TYPE.NAME) AS TYPE, "
|
+ "MIN(DEVICE_TYPE.NAME) AS TYPE, "
|
||||||
+ "MIN(DEVICE.LAST_UPDATED_TIMESTAMP) AS LAST_UPDATED_TIMESTAMP, "
|
+ "MIN(DEVICE.LAST_UPDATED_TIMESTAMP) AS LAST_UPDATED_TIMESTAMP, "
|
||||||
+ "COUNT(DEVICE_LOCATION.GEO_HASH) "
|
+ "COUNT(DEVICE_LOCATION.GEO_HASH) "
|
||||||
@ -1004,6 +1005,7 @@ public class SQLServerDeviceDAOImpl extends AbstractDeviceDAOImpl {
|
|||||||
double min_longitude = rs.getDouble("MIN_LONGITUDE");
|
double min_longitude = rs.getDouble("MIN_LONGITUDE");
|
||||||
double max_longitude = rs.getDouble("MAX_LONGITUDE");
|
double max_longitude = rs.getDouble("MAX_LONGITUDE");
|
||||||
String device_identification = rs.getString("DEVICE_IDENTIFICATION");
|
String device_identification = rs.getString("DEVICE_IDENTIFICATION");
|
||||||
|
String device_name = rs.getString("NAME");
|
||||||
String device_type = rs.getString("TYPE");
|
String device_type = rs.getString("TYPE");
|
||||||
String last_seen = rs.getString("LAST_UPDATED_TIMESTAMP");
|
String last_seen = rs.getString("LAST_UPDATED_TIMESTAMP");
|
||||||
long count = rs.getLong("COUNT");
|
long count = rs.getLong("COUNT");
|
||||||
@ -1011,7 +1013,7 @@ public class SQLServerDeviceDAOImpl extends AbstractDeviceDAOImpl {
|
|||||||
geoClusters.add(new GeoCluster(new GeoCoordinate(latitude, longitude),
|
geoClusters.add(new GeoCluster(new GeoCoordinate(latitude, longitude),
|
||||||
new GeoCoordinate(min_latitude, min_longitude),
|
new GeoCoordinate(min_latitude, min_longitude),
|
||||||
new GeoCoordinate(max_latitude, max_longitude), count, geohashPrefix,
|
new GeoCoordinate(max_latitude, max_longitude), count, geohashPrefix,
|
||||||
device_identification, device_type, last_seen));
|
device_identification, device_name, device_type, last_seen));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -9,18 +9,20 @@ public class GeoCluster {
|
|||||||
private long count;
|
private long count;
|
||||||
private String geohashPrefix;
|
private String geohashPrefix;
|
||||||
private String deviceIdentification;
|
private String deviceIdentification;
|
||||||
|
private String deviceName;
|
||||||
private String deviceType;
|
private String deviceType;
|
||||||
private String lastSeen;
|
private String lastSeen;
|
||||||
|
|
||||||
|
|
||||||
public GeoCluster(GeoCoordinate coordinates, GeoCoordinate southWestBound, GeoCoordinate northEastBound, long count,
|
public GeoCluster(GeoCoordinate coordinates, GeoCoordinate southWestBound, GeoCoordinate northEastBound, long count,
|
||||||
String geohashPrefix, String deviceIdentification, String deviceType, String lastSeen){
|
String geohashPrefix, String deviceIdentification, String deviceName, String deviceType, String lastSeen){
|
||||||
this.coordinates=coordinates;
|
this.coordinates=coordinates;
|
||||||
this.southWestBound=southWestBound;
|
this.southWestBound=southWestBound;
|
||||||
this.northEastBound=northEastBound;
|
this.northEastBound=northEastBound;
|
||||||
this.count=count;
|
this.count=count;
|
||||||
this.geohashPrefix=geohashPrefix;
|
this.geohashPrefix=geohashPrefix;
|
||||||
this.deviceIdentification=deviceIdentification;
|
this.deviceIdentification=deviceIdentification;
|
||||||
|
this.deviceName=deviceName;
|
||||||
this.deviceType=deviceType;
|
this.deviceType=deviceType;
|
||||||
this.lastSeen = lastSeen;
|
this.lastSeen = lastSeen;
|
||||||
|
|
||||||
@ -50,6 +52,10 @@ public class GeoCluster {
|
|||||||
return deviceIdentification;
|
return deviceIdentification;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getDeviceName() {
|
||||||
|
return deviceName;
|
||||||
|
}
|
||||||
|
|
||||||
public String getDeviceType() { return deviceType;
|
public String getDeviceType() { return deviceType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -20,15 +20,16 @@ package org.wso2.carbon.device.mgt.core.otp.mgt.dao;
|
|||||||
import org.wso2.carbon.device.mgt.common.otp.mgt.dto.OneTimePinDTO;
|
import org.wso2.carbon.device.mgt.common.otp.mgt.dto.OneTimePinDTO;
|
||||||
import org.wso2.carbon.device.mgt.core.otp.mgt.exception.OTPManagementDAOException;
|
import org.wso2.carbon.device.mgt.core.otp.mgt.exception.OTPManagementDAOException;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
public interface OTPManagementDAO {
|
public interface OTPManagementDAO {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Save OTP token data and tenant details of registering user
|
* Save OTP token data and tenant details of registering user
|
||||||
* @param oneTimePinDTO OTPMailDTO
|
* @param oneTimePinDTOList OTPMailDTO
|
||||||
* @return Primary key of the newly adding data raw
|
|
||||||
* @throws OTPManagementDAOException if error occurred whule storing data
|
* @throws OTPManagementDAOException if error occurred whule storing data
|
||||||
*/
|
*/
|
||||||
int addOTPData(OneTimePinDTO oneTimePinDTO) throws OTPManagementDAOException;
|
void addOTPData(List<OneTimePinDTO> oneTimePinDTOList) throws OTPManagementDAOException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get OTP data for requesting One Time Token
|
* Get OTP data for requesting One Time Token
|
||||||
|
|||||||
@ -32,17 +32,20 @@ import java.sql.SQLException;
|
|||||||
import java.sql.Statement;
|
import java.sql.Statement;
|
||||||
import java.sql.Timestamp;
|
import java.sql.Timestamp;
|
||||||
import java.util.Calendar;
|
import java.util.Calendar;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
public class GenericOTPManagementDAOImpl extends AbstractDAOImpl implements OTPManagementDAO {
|
public class GenericOTPManagementDAOImpl extends AbstractDAOImpl implements OTPManagementDAO {
|
||||||
|
|
||||||
private static final Log log = LogFactory.getLog(GenericOTPManagementDAOImpl.class);
|
private static final Log log = LogFactory.getLog(GenericOTPManagementDAOImpl.class);
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int addOTPData(OneTimePinDTO oneTimePinDTO) throws OTPManagementDAOException {
|
public void addOTPData(List<OneTimePinDTO> oneTimePinDTOList) throws OTPManagementDAOException {
|
||||||
if (log.isDebugEnabled()) {
|
if (log.isDebugEnabled()) {
|
||||||
log.debug("Request received in DAO Layer to create an OTP data entry");
|
log.debug("Request received in DAO Layer to create an OTP data entry");
|
||||||
log.debug("OTP Details : ");
|
log.debug("OTP Details : ");
|
||||||
log.debug("OTP key : " + oneTimePinDTO.getOtpToken() + " Email : " + oneTimePinDTO.getEmail());
|
for(OneTimePinDTO oneTimePinDTO: oneTimePinDTOList){
|
||||||
|
log.debug("OTP key : " + oneTimePinDTO.getOtpToken() + " Email : " + oneTimePinDTO.getEmail());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
String sql = "INSERT INTO DM_OTP_DATA "
|
String sql = "INSERT INTO DM_OTP_DATA "
|
||||||
@ -57,29 +60,25 @@ public class GenericOTPManagementDAOImpl extends AbstractDAOImpl implements OTPM
|
|||||||
Connection conn = this.getDBConnection();
|
Connection conn = this.getDBConnection();
|
||||||
Calendar calendar = Calendar.getInstance();
|
Calendar calendar = Calendar.getInstance();
|
||||||
Timestamp timestamp = new Timestamp(calendar.getTime().getTime());
|
Timestamp timestamp = new Timestamp(calendar.getTime().getTime());
|
||||||
try (PreparedStatement stmt = conn.prepareStatement(sql, Statement.RETURN_GENERATED_KEYS)) {
|
try (PreparedStatement stmt = conn.prepareStatement(sql)) {
|
||||||
stmt.setString(1, oneTimePinDTO.getOtpToken());
|
for (OneTimePinDTO oneTimePinDTO : oneTimePinDTOList) {
|
||||||
stmt.setString(2, oneTimePinDTO.getEmail());
|
stmt.setString(1, oneTimePinDTO.getOtpToken());
|
||||||
stmt.setString(3, oneTimePinDTO.getEmailType());
|
stmt.setString(2, oneTimePinDTO.getEmail());
|
||||||
stmt.setString(4, oneTimePinDTO.getMetaInfo());
|
stmt.setString(3, oneTimePinDTO.getEmailType());
|
||||||
stmt.setTimestamp(5, timestamp);
|
stmt.setString(4, oneTimePinDTO.getMetaInfo());
|
||||||
stmt.setInt(6, oneTimePinDTO.getTenantId());
|
stmt.setTimestamp(5, timestamp);
|
||||||
stmt.setString(7, oneTimePinDTO.getUsername());
|
stmt.setInt(6, oneTimePinDTO.getTenantId());
|
||||||
stmt.executeUpdate();
|
stmt.setString(7, oneTimePinDTO.getUsername());
|
||||||
try (ResultSet rs = stmt.getGeneratedKeys()) {
|
stmt.addBatch();
|
||||||
if (rs.next()) {
|
|
||||||
return rs.getInt(1);
|
|
||||||
}
|
|
||||||
return -1;
|
|
||||||
}
|
}
|
||||||
|
stmt.executeBatch();
|
||||||
}
|
}
|
||||||
} catch (DBConnectionException e) {
|
} catch (DBConnectionException e) {
|
||||||
String msg = "Error occurred while obtaining the DB connection to create an opt entry for email "
|
String msg = "Error occurred while obtaining the DB connection to create an opt entry.";
|
||||||
+ oneTimePinDTO.getEmail();
|
|
||||||
log.error(msg, e);
|
log.error(msg, e);
|
||||||
throw new OTPManagementDAOException(msg, e);
|
throw new OTPManagementDAOException(msg, e);
|
||||||
} catch (SQLException e) {
|
} catch (SQLException e) {
|
||||||
String msg = "Error occurred while executing SQL to create an otp entry for email " + oneTimePinDTO.getEmail();
|
String msg = "Error occurred while executing SQL to create an otp entry";
|
||||||
log.error(msg, e);
|
log.error(msg, e);
|
||||||
throw new OTPManagementDAOException(msg, e);
|
throw new OTPManagementDAOException(msg, e);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -61,6 +61,8 @@ import java.util.List;
|
|||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Properties;
|
import java.util.Properties;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Collections;
|
||||||
|
|
||||||
public class OTPManagementServiceImpl implements OTPManagementService {
|
public class OTPManagementServiceImpl implements OTPManagementService {
|
||||||
|
|
||||||
@ -82,12 +84,7 @@ public class OTPManagementServiceImpl implements OTPManagementService {
|
|||||||
otpWrapper.getUsername(), tenant, -1234);
|
otpWrapper.getUsername(), tenant, -1234);
|
||||||
try {
|
try {
|
||||||
ConnectionManagerUtil.beginDBTransaction();
|
ConnectionManagerUtil.beginDBTransaction();
|
||||||
if (this.otpManagementDAO.addOTPData(oneTimePinDTO) == -1) {
|
this.otpManagementDAO.addOTPData(Collections.singletonList(oneTimePinDTO));
|
||||||
ConnectionManagerUtil.rollbackDBTransaction();
|
|
||||||
String msg = "OTP data saving failed. Please, contact Administrator";
|
|
||||||
log.error(msg);
|
|
||||||
throw new OTPManagementException(msg);
|
|
||||||
}
|
|
||||||
Properties props = new Properties();
|
Properties props = new Properties();
|
||||||
props.setProperty("first-name", tenant.getAdminFirstName());
|
props.setProperty("first-name", tenant.getAdminFirstName());
|
||||||
props.setProperty("otp-token", oneTimePinDTO.getOtpToken());
|
props.setProperty("otp-token", oneTimePinDTO.getOtpToken());
|
||||||
@ -98,12 +95,12 @@ public class OTPManagementServiceImpl implements OTPManagementService {
|
|||||||
log.error(msg, e);
|
log.error(msg, e);
|
||||||
throw new OTPManagementException(msg, e);
|
throw new OTPManagementException(msg, e);
|
||||||
} catch (DBConnectionException e) {
|
} catch (DBConnectionException e) {
|
||||||
String msg = "Error occurred while getting database connection.";
|
String msg = "Error occurred while getting database connection to add OPT data.";
|
||||||
log.error(msg, e);
|
log.error(msg, e);
|
||||||
throw new OTPManagementException(msg, e);
|
throw new OTPManagementException(msg, e);
|
||||||
} catch (OTPManagementDAOException e) {
|
} catch (OTPManagementDAOException e) {
|
||||||
ConnectionManagerUtil.rollbackDBTransaction();
|
ConnectionManagerUtil.rollbackDBTransaction();
|
||||||
String msg = "Error occurred while saving the OTP data. Email address: " + oneTimePinDTO.getEmail();
|
String msg = "Error occurred while saving the OTP data for given email" ;
|
||||||
log.error(msg, e);
|
log.error(msg, e);
|
||||||
throw new OTPManagementException(msg, e);
|
throw new OTPManagementException(msg, e);
|
||||||
} finally {
|
} finally {
|
||||||
@ -219,24 +216,44 @@ public class OTPManagementServiceImpl implements OTPManagementService {
|
|||||||
}
|
}
|
||||||
int tenantId = CarbonContext.getThreadLocalCarbonContext().getTenantId();
|
int tenantId = CarbonContext.getThreadLocalCarbonContext().getTenantId();
|
||||||
OneTimePinDTO oneTimePinDTO;
|
OneTimePinDTO oneTimePinDTO;
|
||||||
|
List<OneTimePinDTO> oneTimePinDTOList = new ArrayList<>();
|
||||||
Properties props = new Properties();
|
Properties props = new Properties();
|
||||||
props.setProperty("enrollment-steps", enrollmentSteps.toString());
|
props.setProperty("enrollment-steps", enrollmentSteps.toString());
|
||||||
try {
|
try {
|
||||||
|
ConnectionManagerUtil.beginDBTransaction();
|
||||||
for (String username : deviceEnrollmentInvitation.getUsernames()) {
|
for (String username : deviceEnrollmentInvitation.getUsernames()) {
|
||||||
String emailAddress = DeviceManagerUtil.getUserClaimValue(
|
String emailAddress = DeviceManagerUtil.getUserClaimValue(
|
||||||
username, DeviceManagementConstants.User.CLAIM_EMAIL_ADDRESS);
|
username, DeviceManagementConstants.User.CLAIM_EMAIL_ADDRESS);
|
||||||
oneTimePinDTO = createOneTimePin(emailAddress, OTPEmailTypes.DEVICE_ENROLLMENT.toString(), username,
|
oneTimePinDTO = createOneTimePin(emailAddress, OTPEmailTypes.DEVICE_ENROLLMENT.toString(), username,
|
||||||
null, tenantId);
|
null, tenantId);
|
||||||
|
oneTimePinDTOList.add(oneTimePinDTO);
|
||||||
props.setProperty("first-name", DeviceManagerUtil.
|
props.setProperty("first-name", DeviceManagerUtil.
|
||||||
getUserClaimValue(username, DeviceManagementConstants.User.CLAIM_FIRST_NAME));
|
getUserClaimValue(username, DeviceManagementConstants.User.CLAIM_FIRST_NAME));
|
||||||
props.setProperty("username", username);
|
props.setProperty("username", username);
|
||||||
props.setProperty("otp-token", oneTimePinDTO.getOtpToken());
|
props.setProperty("otp-token", oneTimePinDTO.getOtpToken());
|
||||||
sendMail(props, emailAddress, DeviceManagementConstants.EmailAttributes.USER_ENROLLMENT_TEMPLATE);
|
sendMail(props, emailAddress, DeviceManagementConstants.EmailAttributes.USER_ENROLLMENT_TEMPLATE);
|
||||||
}
|
}
|
||||||
|
this.otpManagementDAO.addOTPData(oneTimePinDTOList);
|
||||||
|
ConnectionManagerUtil.commitDBTransaction();
|
||||||
} catch (UserStoreException e) {
|
} catch (UserStoreException e) {
|
||||||
String msg = "Error occurred while getting claim values to invite user";
|
String msg = "Error occurred while getting claim values to invite user";
|
||||||
log.error(msg, e);
|
log.error(msg, e);
|
||||||
throw new OTPManagementException(msg, e);
|
throw new OTPManagementException(msg, e);
|
||||||
|
} catch (DBConnectionException e) {
|
||||||
|
String msg = "Error occurred while getting database connection to add OPT data.";
|
||||||
|
log.error(msg, e);
|
||||||
|
throw new OTPManagementException(msg, e);
|
||||||
|
} catch (TransactionManagementException e) {
|
||||||
|
String msg = "SQL Error occurred when adding OPT data to send device enrollment Invitation.";
|
||||||
|
log.error(msg, e);
|
||||||
|
throw new OTPManagementException(msg, e);
|
||||||
|
} catch (OTPManagementDAOException e) {
|
||||||
|
ConnectionManagerUtil.rollbackDBTransaction();
|
||||||
|
String msg = "Error occurred while saving the OTP data.";
|
||||||
|
log.error(msg, e);
|
||||||
|
throw new OTPManagementException(msg, e);
|
||||||
|
} finally {
|
||||||
|
ConnectionManagerUtil.closeDBConnection();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -3,3 +3,4 @@ org.eclipse.equinox.p2.touchpoint.natives.mkdir(path:${installFolder}/../../depl
|
|||||||
org.eclipse.equinox.p2.touchpoint.natives.copy(source:${installFolder}/../features/io.entgra.ui.request.interceptor_${feature.version}/webapps/ui-request-handler.war,target:${installFolder}/../../deployment/server/webapps/publisher-ui-request-handler.war,overwrite:true);\
|
org.eclipse.equinox.p2.touchpoint.natives.copy(source:${installFolder}/../features/io.entgra.ui.request.interceptor_${feature.version}/webapps/ui-request-handler.war,target:${installFolder}/../../deployment/server/webapps/publisher-ui-request-handler.war,overwrite:true);\
|
||||||
org.eclipse.equinox.p2.touchpoint.natives.copy(source:${installFolder}/../features/io.entgra.ui.request.interceptor_${feature.version}/webapps/ui-request-handler.war,target:${installFolder}/../../deployment/server/webapps/store-ui-request-handler.war,overwrite:true);\
|
org.eclipse.equinox.p2.touchpoint.natives.copy(source:${installFolder}/../features/io.entgra.ui.request.interceptor_${feature.version}/webapps/ui-request-handler.war,target:${installFolder}/../../deployment/server/webapps/store-ui-request-handler.war,overwrite:true);\
|
||||||
org.eclipse.equinox.p2.touchpoint.natives.copy(source:${installFolder}/../features/io.entgra.ui.request.interceptor_${feature.version}/webapps/ui-request-handler.war,target:${installFolder}/../../deployment/server/webapps/entgra-ui-request-handler.war,overwrite:true);\
|
org.eclipse.equinox.p2.touchpoint.natives.copy(source:${installFolder}/../features/io.entgra.ui.request.interceptor_${feature.version}/webapps/ui-request-handler.war,target:${installFolder}/../../deployment/server/webapps/entgra-ui-request-handler.war,overwrite:true);\
|
||||||
|
org.eclipse.equinox.p2.touchpoint.natives.copy(source:${installFolder}/../features/io.entgra.ui.request.interceptor_${feature.version}/webapps/ui-request-handler.war,target:${installFolder}/../../deployment/server/webapps/mdm-reports-ui-request-handler.war,overwrite:true);\
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user