mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Improve APPM subscription flow
This commit is contained in:
parent
afb487dedc
commit
5e384c9403
@ -25,6 +25,7 @@ import java.util.Map;
|
|||||||
public class SubscribingDeviceIdHolder {
|
public class SubscribingDeviceIdHolder {
|
||||||
private Map<DeviceIdentifier, Integer> appInstalledDevices = new HashMap<>();
|
private Map<DeviceIdentifier, Integer> appInstalledDevices = new HashMap<>();
|
||||||
private Map<DeviceIdentifier, Integer> appInstallableDevices = new HashMap<>();
|
private Map<DeviceIdentifier, Integer> appInstallableDevices = new HashMap<>();
|
||||||
|
private Map<DeviceIdentifier, Integer> appReInstallableDevices = new HashMap<>();
|
||||||
|
|
||||||
public Map<DeviceIdentifier, Integer> getAppInstalledDevices() {
|
public Map<DeviceIdentifier, Integer> getAppInstalledDevices() {
|
||||||
return appInstalledDevices;
|
return appInstalledDevices;
|
||||||
@ -41,4 +42,12 @@ public class SubscribingDeviceIdHolder {
|
|||||||
public void setAppInstallableDevices(Map<DeviceIdentifier, Integer> appInstallableDevices) {
|
public void setAppInstallableDevices(Map<DeviceIdentifier, Integer> appInstallableDevices) {
|
||||||
this.appInstallableDevices = appInstallableDevices;
|
this.appInstallableDevices = appInstallableDevices;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Map<DeviceIdentifier, Integer> getAppReInstallableDevices() {
|
||||||
|
return appReInstallableDevices;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAppReInstallableDevices(Map<DeviceIdentifier, Integer> appReInstallableDevices) {
|
||||||
|
this.appReInstallableDevices = appReInstallableDevices;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -3090,6 +3090,7 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
|||||||
ConnectionManagerUtil.beginDBTransaction();
|
ConnectionManagerUtil.beginDBTransaction();
|
||||||
List<Integer> deviceSubIds = subscriptionDAO.getDeviceSubIdsForOperation(operationId, tenantId);
|
List<Integer> deviceSubIds = subscriptionDAO.getDeviceSubIdsForOperation(operationId, tenantId);
|
||||||
if (deviceSubIds.isEmpty()){
|
if (deviceSubIds.isEmpty()){
|
||||||
|
ConnectionManagerUtil.rollbackDBTransaction();
|
||||||
String msg = "Couldn't find device subscription for operation id " + operationId;
|
String msg = "Couldn't find device subscription for operation id " + operationId;
|
||||||
log.error(msg);
|
log.error(msg);
|
||||||
throw new ApplicationManagementException(msg);
|
throw new ApplicationManagementException(msg);
|
||||||
|
|||||||
@ -123,7 +123,7 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
|
|||||||
.getDeviceManagementProviderService();
|
.getDeviceManagementProviderService();
|
||||||
GroupManagementProviderService groupManagementProviderService = HelperUtil
|
GroupManagementProviderService groupManagementProviderService = HelperUtil
|
||||||
.getGroupManagementProviderService();
|
.getGroupManagementProviderService();
|
||||||
List<Device> filteredDevices = new ArrayList<>();
|
String deviceTypeName = null;
|
||||||
List<Device> devices = new ArrayList<>();
|
List<Device> devices = new ArrayList<>();
|
||||||
List<String> subscribers = new ArrayList<>();
|
List<String> subscribers = new ArrayList<>();
|
||||||
List<DeviceIdentifier> errorDeviceIdentifiers = new ArrayList<>();
|
List<DeviceIdentifier> errorDeviceIdentifiers = new ArrayList<>();
|
||||||
@ -175,19 +175,14 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
|
|||||||
|
|
||||||
if (!ApplicationType.WEB_CLIP.toString().equals(applicationDTO.getType())) {
|
if (!ApplicationType.WEB_CLIP.toString().equals(applicationDTO.getType())) {
|
||||||
DeviceType deviceType = APIUtil.getDeviceTypeData(applicationDTO.getDeviceTypeId());
|
DeviceType deviceType = APIUtil.getDeviceTypeData(applicationDTO.getDeviceTypeId());
|
||||||
String deviceTypeName = deviceType.getName();
|
deviceTypeName = deviceType.getName();
|
||||||
//filter devices by device type
|
//filter devices by device type
|
||||||
for (Device device : devices) {
|
String tmpDeviceTypeName = deviceTypeName;
|
||||||
if (deviceTypeName.equals(device.getType())) {
|
devices.removeIf(device -> !tmpDeviceTypeName.equals(device.getType()));
|
||||||
filteredDevices.add(device);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
applicationInstallResponse = performActionOnDevices(deviceTypeName, filteredDevices, applicationDTO,
|
|
||||||
subType, subscribers, action);
|
|
||||||
} else {
|
|
||||||
applicationInstallResponse = performActionOnDevices(null, devices, applicationDTO, subType,
|
|
||||||
subscribers, action);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
applicationInstallResponse = performActionOnDevices(deviceTypeName, devices, applicationDTO,
|
||||||
|
subType, subscribers, action);
|
||||||
applicationInstallResponse.setErrorDeviceIdentifiers(errorDeviceIdentifiers);
|
applicationInstallResponse.setErrorDeviceIdentifiers(errorDeviceIdentifiers);
|
||||||
return applicationInstallResponse;
|
return applicationInstallResponse;
|
||||||
} catch (DeviceManagementException e) {
|
} catch (DeviceManagementException e) {
|
||||||
@ -368,11 +363,14 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
|
|||||||
Map<String, List<DeviceIdentifier>> deviceIdentifierMap = new HashMap<>();
|
Map<String, List<DeviceIdentifier>> deviceIdentifierMap = new HashMap<>();
|
||||||
|
|
||||||
if (SubAction.INSTALL.toString().equalsIgnoreCase(action)) {
|
if (SubAction.INSTALL.toString().equalsIgnoreCase(action)) {
|
||||||
deviceIdentifiers = new ArrayList<>(subscribingDeviceIdHolder.getAppInstallableDevices().keySet());
|
deviceIdentifiers.addAll(new ArrayList<>(subscribingDeviceIdHolder.getAppInstallableDevices().keySet()));
|
||||||
ignoredDeviceIdentifiers = new ArrayList<>(subscribingDeviceIdHolder.getAppInstalledDevices().keySet());
|
deviceIdentifiers.addAll(new ArrayList<>(subscribingDeviceIdHolder.getAppReInstallableDevices().keySet()));
|
||||||
|
ignoredDeviceIdentifiers
|
||||||
|
.addAll(new ArrayList<>(subscribingDeviceIdHolder.getAppInstalledDevices().keySet()));
|
||||||
} else if (SubAction.UNINSTALL.toString().equalsIgnoreCase(action)) {
|
} else if (SubAction.UNINSTALL.toString().equalsIgnoreCase(action)) {
|
||||||
deviceIdentifiers = new ArrayList<>(subscribingDeviceIdHolder.getAppInstalledDevices().keySet());
|
deviceIdentifiers.addAll(new ArrayList<>(subscribingDeviceIdHolder.getAppInstalledDevices().keySet()));
|
||||||
ignoredDeviceIdentifiers = new ArrayList<>(subscribingDeviceIdHolder.getAppInstallableDevices().keySet());
|
ignoredDeviceIdentifiers
|
||||||
|
.addAll(new ArrayList<>(subscribingDeviceIdHolder.getAppInstallableDevices().keySet()));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (deviceIdentifiers.isEmpty()) {
|
if (deviceIdentifiers.isEmpty()) {
|
||||||
@ -439,6 +437,7 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
|
|||||||
throws ApplicationManagementException {
|
throws ApplicationManagementException {
|
||||||
Map<DeviceIdentifier, Integer> appInstalledDevices = new HashMap<>();
|
Map<DeviceIdentifier, Integer> appInstalledDevices = new HashMap<>();
|
||||||
Map<DeviceIdentifier, Integer> appInstallableDevices = new HashMap<>();
|
Map<DeviceIdentifier, Integer> appInstallableDevices = new HashMap<>();
|
||||||
|
Map<DeviceIdentifier, Integer> appReInstallableDevices = new HashMap<>();
|
||||||
|
|
||||||
List<Integer> deviceIds = devices.stream().map(Device::getId).collect(Collectors.toList());
|
List<Integer> deviceIds = devices.stream().map(Device::getId).collect(Collectors.toList());
|
||||||
//get device subscriptions for given device id list.
|
//get device subscriptions for given device id list.
|
||||||
@ -446,9 +445,14 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
|
|||||||
for (Device device : devices) {
|
for (Device device : devices) {
|
||||||
DeviceIdentifier deviceIdentifier = new DeviceIdentifier(device.getDeviceIdentifier(), device.getType());
|
DeviceIdentifier deviceIdentifier = new DeviceIdentifier(device.getDeviceIdentifier(), device.getType());
|
||||||
DeviceSubscriptionDTO deviceSubscriptionDTO = deviceSubscriptions.get(device.getId());
|
DeviceSubscriptionDTO deviceSubscriptionDTO = deviceSubscriptions.get(device.getId());
|
||||||
if (deviceSubscriptionDTO != null && !deviceSubscriptionDTO.isUnsubscribed() && Operation.Status.COMPLETED
|
if (deviceSubscriptionDTO != null) {
|
||||||
.toString().equals(deviceSubscriptionDTO.getStatus())) {
|
if (deviceSubscriptionDTO.isUnsubscribed()) {
|
||||||
appInstalledDevices.put(deviceIdentifier, device.getId());
|
appReInstallableDevices.put(deviceIdentifier, device.getId());
|
||||||
|
}
|
||||||
|
if (!deviceSubscriptionDTO.isUnsubscribed() && Operation.Status.COMPLETED.toString()
|
||||||
|
.equals(deviceSubscriptionDTO.getStatus())) {
|
||||||
|
appInstalledDevices.put(deviceIdentifier, device.getId());
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
appInstallableDevices.put(deviceIdentifier, device.getId());
|
appInstallableDevices.put(deviceIdentifier, device.getId());
|
||||||
}
|
}
|
||||||
@ -457,6 +461,7 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
|
|||||||
SubscribingDeviceIdHolder subscribingDeviceIdHolder = new SubscribingDeviceIdHolder();
|
SubscribingDeviceIdHolder subscribingDeviceIdHolder = new SubscribingDeviceIdHolder();
|
||||||
subscribingDeviceIdHolder.setAppInstallableDevices(appInstallableDevices);
|
subscribingDeviceIdHolder.setAppInstallableDevices(appInstallableDevices);
|
||||||
subscribingDeviceIdHolder.setAppInstalledDevices(appInstalledDevices);
|
subscribingDeviceIdHolder.setAppInstalledDevices(appInstalledDevices);
|
||||||
|
subscribingDeviceIdHolder.setAppReInstallableDevices(appReInstallableDevices);
|
||||||
return subscribingDeviceIdHolder;
|
return subscribingDeviceIdHolder;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -556,23 +561,24 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
|
|||||||
|
|
||||||
for (Activity activity : activities) {
|
for (Activity activity : activities) {
|
||||||
int operationId = Integer.parseInt(activity.getActivityId().split("ACTIVITY_")[1]);
|
int operationId = Integer.parseInt(activity.getActivityId().split("ACTIVITY_")[1]);
|
||||||
List<Integer> operationAddedDeviceIds = getOperationAddedDeviceIds(activity,
|
|
||||||
subscribingDeviceIdHolder.getAppInstallableDevices());
|
|
||||||
List<Integer> alreadySubscribedDevices = subscriptionDAO
|
|
||||||
.getSubscribedDeviceIds(operationAddedDeviceIds, applicationReleaseId, tenantId);
|
|
||||||
if (SubAction.INSTALL.toString().equalsIgnoreCase(action)) {
|
if (SubAction.INSTALL.toString().equalsIgnoreCase(action)) {
|
||||||
if (!alreadySubscribedDevices.isEmpty()) {
|
List<Integer> alreadyUnsubscribedDevices = getOperationAddedDeviceIds(activity,
|
||||||
|
subscribingDeviceIdHolder.getAppReInstallableDevices());
|
||||||
|
List<Integer> deviceIdsOfNewSubscriptions = getOperationAddedDeviceIds(activity,
|
||||||
|
subscribingDeviceIdHolder.getAppInstallableDevices());
|
||||||
|
if (!alreadyUnsubscribedDevices.isEmpty()) {
|
||||||
List<Integer> deviceResubscribingIds = subscriptionDAO
|
List<Integer> deviceResubscribingIds = subscriptionDAO
|
||||||
.updateDeviceSubscription(username, alreadySubscribedDevices, false, subType,
|
.updateDeviceSubscription(username, alreadyUnsubscribedDevices, false, subType,
|
||||||
Operation.Status.PENDING.toString(), applicationReleaseId, tenantId);
|
Operation.Status.PENDING.toString(), applicationReleaseId, tenantId);
|
||||||
operationAddedDeviceIds.removeAll(alreadySubscribedDevices);
|
|
||||||
deviceSubIds.addAll(deviceResubscribingIds);
|
deviceSubIds.addAll(deviceResubscribingIds);
|
||||||
}
|
}
|
||||||
List<Integer> subscribingDevices = subscriptionDAO
|
List<Integer> subscribingDevices = subscriptionDAO
|
||||||
.addDeviceSubscription(username, operationAddedDeviceIds, subType,
|
.addDeviceSubscription(username, deviceIdsOfNewSubscriptions, subType,
|
||||||
Operation.Status.PENDING.toString(), applicationReleaseId, tenantId);
|
Operation.Status.PENDING.toString(), applicationReleaseId, tenantId);
|
||||||
deviceSubIds.addAll(subscribingDevices);
|
deviceSubIds.addAll(subscribingDevices);
|
||||||
} else if (SubAction.UNINSTALL.toString().equalsIgnoreCase(action) && !alreadySubscribedDevices.isEmpty()) {
|
} else if (SubAction.UNINSTALL.toString().equalsIgnoreCase(action)) {
|
||||||
|
List<Integer> alreadySubscribedDevices = getOperationAddedDeviceIds(activity,
|
||||||
|
subscribingDeviceIdHolder.getAppInstalledDevices());
|
||||||
List<Integer> deviceResubscribingIds = subscriptionDAO
|
List<Integer> deviceResubscribingIds = subscriptionDAO
|
||||||
.updateDeviceSubscription(username, alreadySubscribedDevices, true, subType,
|
.updateDeviceSubscription(username, alreadySubscribedDevices, true, subType,
|
||||||
Operation.Status.PENDING.toString(), applicationReleaseId, tenantId);
|
Operation.Status.PENDING.toString(), applicationReleaseId, tenantId);
|
||||||
@ -603,8 +609,9 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
|
|||||||
|
|
||||||
private List<Integer> getOperationAddedDeviceIds(Activity activity, Map<DeviceIdentifier, Integer> deviceMap) {
|
private List<Integer> getOperationAddedDeviceIds(Activity activity, Map<DeviceIdentifier, Integer> deviceMap) {
|
||||||
List<ActivityStatus> activityStatuses = activity.getActivityStatus();
|
List<ActivityStatus> activityStatuses = activity.getActivityStatus();
|
||||||
return activityStatuses.stream().map(status -> deviceMap.get(status.getDeviceIdentifier()))
|
return activityStatuses.stream()
|
||||||
.collect(Collectors.toList());
|
.filter(status -> deviceMap.get(status.getDeviceIdentifier()) != null)
|
||||||
|
.map(status -> deviceMap.get(status.getDeviceIdentifier())).collect(Collectors.toList());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -689,6 +696,8 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
|
|||||||
if (SubAction.INSTALL.toString().equalsIgnoreCase(action)) {
|
if (SubAction.INSTALL.toString().equalsIgnoreCase(action)) {
|
||||||
app.setType(mobileAppType);
|
app.setType(mobileAppType);
|
||||||
app.setLocation(application.getApplicationReleases().get(0).getInstallerPath());
|
app.setLocation(application.getApplicationReleases().get(0).getInstallerPath());
|
||||||
|
app.setIdentifier(application.getPackageName());
|
||||||
|
app.setName(application.getName());
|
||||||
return MDMAndroidOperationUtil.createInstallAppOperation(app);
|
return MDMAndroidOperationUtil.createInstallAppOperation(app);
|
||||||
} else if (SubAction.UNINSTALL.toString().equalsIgnoreCase(action)) {
|
} else if (SubAction.UNINSTALL.toString().equalsIgnoreCase(action)) {
|
||||||
app.setType(mobileAppType);
|
app.setType(mobileAppType);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user