|
|
@ -22,7 +22,16 @@ import org.apache.commons.logging.Log;
|
|
|
|
import org.apache.commons.logging.LogFactory;
|
|
|
|
import org.apache.commons.logging.LogFactory;
|
|
|
|
import org.wso2.carbon.CarbonConstants;
|
|
|
|
import org.wso2.carbon.CarbonConstants;
|
|
|
|
import org.wso2.carbon.context.PrivilegedCarbonContext;
|
|
|
|
import org.wso2.carbon.context.PrivilegedCarbonContext;
|
|
|
|
import org.wso2.carbon.device.application.mgt.common.*;
|
|
|
|
import org.wso2.carbon.device.application.mgt.common.Application;
|
|
|
|
|
|
|
|
import org.wso2.carbon.device.application.mgt.common.ApplicationList;
|
|
|
|
|
|
|
|
import org.wso2.carbon.device.application.mgt.common.Category;
|
|
|
|
|
|
|
|
import org.wso2.carbon.device.application.mgt.common.Filter;
|
|
|
|
|
|
|
|
import org.wso2.carbon.device.application.mgt.common.Lifecycle;
|
|
|
|
|
|
|
|
import org.wso2.carbon.device.application.mgt.common.LifecycleState;
|
|
|
|
|
|
|
|
import org.wso2.carbon.device.application.mgt.common.LifecycleStateTransition;
|
|
|
|
|
|
|
|
import org.wso2.carbon.device.application.mgt.common.Platform;
|
|
|
|
|
|
|
|
import org.wso2.carbon.device.application.mgt.common.User;
|
|
|
|
|
|
|
|
import org.wso2.carbon.device.application.mgt.common.Visibility;
|
|
|
|
import org.wso2.carbon.device.application.mgt.common.exception.ApplicationManagementException;
|
|
|
|
import org.wso2.carbon.device.application.mgt.common.exception.ApplicationManagementException;
|
|
|
|
import org.wso2.carbon.device.application.mgt.common.services.ApplicationManager;
|
|
|
|
import org.wso2.carbon.device.application.mgt.common.services.ApplicationManager;
|
|
|
|
import org.wso2.carbon.device.application.mgt.core.dao.ApplicationDAO;
|
|
|
|
import org.wso2.carbon.device.application.mgt.core.dao.ApplicationDAO;
|
|
|
@ -62,22 +71,20 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
|
|
|
application.setUuid(HelperUtil.generateApplicationUuid());
|
|
|
|
application.setUuid(HelperUtil.generateApplicationUuid());
|
|
|
|
application.setCreatedAt(new Date());
|
|
|
|
application.setCreatedAt(new Date());
|
|
|
|
application.setModifiedAt(new Date());
|
|
|
|
application.setModifiedAt(new Date());
|
|
|
|
try {
|
|
|
|
Platform platform = DataHolder.getInstance().getPlatformManager()
|
|
|
|
Platform platform = DataHolder.getInstance().getPlatformManager().getPlatform(application.getUser()
|
|
|
|
.getPlatform(application.getUser().getTenantId(), application.getPlatform().getIdentifier());
|
|
|
|
.getTenantId(), application.getPlatform().getIdentifier());
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (platform == null) {
|
|
|
|
if (platform == null) {
|
|
|
|
throw new NotFoundException(
|
|
|
|
throw new NotFoundException("Invalid platform is provided for the application " + application.getUuid());
|
|
|
|
"Invalid platform is provided for the application " + application.getUuid());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Category category = DataHolder.getInstance().getCategoryManager()
|
|
|
|
Category category = DataHolder.getInstance().getCategoryManager()
|
|
|
|
.getCategory(application.getCategory().getName());
|
|
|
|
.getCategory(application.getCategory().getName());
|
|
|
|
if (category == null) {
|
|
|
|
if (category == null) {
|
|
|
|
throw new NotFoundException(
|
|
|
|
throw new NotFoundException("Invalid Category is provided for the application " + application.getUuid());
|
|
|
|
"Invalid Category is provided for the application " + application.getUuid());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
application.setCategory(category);
|
|
|
|
application.setCategory(category);
|
|
|
|
try {
|
|
|
|
ConnectionManagerUtil.beginDBTransaction();
|
|
|
|
ConnectionManagerUtil.beginDBTransaction();
|
|
|
|
|
|
|
|
|
|
|
|
// Validating the platform
|
|
|
|
// Validating the platform
|
|
|
@ -119,48 +126,49 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!isApplicationOwnerOrAdmin(application.getUuid(), userName, tenantId)) {
|
|
|
|
if (!isApplicationOwnerOrAdmin(application.getUuid(), userName, tenantId)) {
|
|
|
|
throw new ApplicationManagementException("User " + userName + " does not have permissions to edit the "
|
|
|
|
throw new ApplicationManagementException(
|
|
|
|
+ "application with the UUID " + application.getUuid());
|
|
|
|
"User " + userName + " does not have permissions to edit the " + "application with the UUID "
|
|
|
|
|
|
|
|
+ application.getUuid());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (this.getApplication(application.getUuid()) != null) {
|
|
|
|
if (this.getApplication(application.getUuid()) != null) {
|
|
|
|
try {
|
|
|
|
if (application.getPlatform() == null || application.getPlatform().getIdentifier() == null) {
|
|
|
|
if (application.getPlatform() != null && application.getPlatform().getIdentifier() != null) {
|
|
|
|
throw new NotFoundException("Platform information not available with the application!");
|
|
|
|
Platform platform = DataHolder.getInstance().getPlatformManager()
|
|
|
|
}
|
|
|
|
.getPlatform(tenantId, application.getPlatform().getIdentifier());
|
|
|
|
Platform platform = DataHolder.getInstance().getPlatformManager()
|
|
|
|
if (platform == null) {
|
|
|
|
.getPlatform(tenantId, application.getPlatform().getIdentifier());
|
|
|
|
throw new NotFoundException(
|
|
|
|
if (platform == null) {
|
|
|
|
"Platform specified by identifier " + application.getPlatform().getIdentifier()
|
|
|
|
throw new NotFoundException(
|
|
|
|
+ " is not found. Please give a valid platform identifier.");
|
|
|
|
"Platform specified by identifier " + application.getPlatform().getIdentifier()
|
|
|
|
}
|
|
|
|
+ " is not found. Please give a valid platform identifier.");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
application.setPlatform(platform);
|
|
|
|
|
|
|
|
|
|
|
|
if (application.getCategory() != null) {
|
|
|
|
if (application.getCategory() != null) {
|
|
|
|
String applicationCategoryName = application.getCategory().getName();
|
|
|
|
String applicationCategoryName = application.getCategory().getName();
|
|
|
|
if (applicationCategoryName == null || applicationCategoryName.isEmpty()) {
|
|
|
|
if (applicationCategoryName == null || applicationCategoryName.isEmpty()) {
|
|
|
|
throw new ApplicationManagementException("Application category name cannot be null or "
|
|
|
|
throw new ApplicationManagementException(
|
|
|
|
+ "empty. Cannot edit the application.");
|
|
|
|
"Application category name cannot be null or " + "empty. Cannot edit the application.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Category category = DataHolder.getInstance().getCategoryManager()
|
|
|
|
Category category = DataHolder.getInstance().getCategoryManager()
|
|
|
|
.getCategory(application.getCategory().getName());
|
|
|
|
.getCategory(application.getCategory().getName());
|
|
|
|
if (category == null) {
|
|
|
|
if (category == null) {
|
|
|
|
throw new NotFoundException(
|
|
|
|
throw new NotFoundException(
|
|
|
|
"Invalid Category is provided for the application " + application.getUuid() + ". "
|
|
|
|
"Invalid Category is provided for the application " + application.getUuid() + ". "
|
|
|
|
+ "Cannot edit application");
|
|
|
|
+ "Cannot edit application");
|
|
|
|
}
|
|
|
|
|
|
|
|
application.setCategory(category);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
application.setPlatform(platform);
|
|
|
|
|
|
|
|
ConnectionManagerUtil.beginDBTransaction();
|
|
|
|
|
|
|
|
ApplicationDAO applicationDAO = DAOFactory.getApplicationDAO();
|
|
|
|
|
|
|
|
application.setModifiedAt(new Date());
|
|
|
|
|
|
|
|
Application modifiedApplication = applicationDAO.editApplication(application, tenantId);
|
|
|
|
|
|
|
|
Visibility visibility = DataHolder.getInstance().getVisibilityManager().put(application.getId(),
|
|
|
|
|
|
|
|
application.getVisibility());
|
|
|
|
|
|
|
|
modifiedApplication.setVisibility(visibility);
|
|
|
|
|
|
|
|
ConnectionManagerUtil.commitDBTransaction();
|
|
|
|
|
|
|
|
return modifiedApplication;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
throw new NotFoundException("Platform information not available with the application!");
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
application.setCategory(category);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
ConnectionManagerUtil.beginDBTransaction();
|
|
|
|
|
|
|
|
ApplicationDAO applicationDAO = DAOFactory.getApplicationDAO();
|
|
|
|
|
|
|
|
application.setModifiedAt(new Date());
|
|
|
|
|
|
|
|
Application modifiedApplication = applicationDAO.editApplication(application, tenantId);
|
|
|
|
|
|
|
|
Visibility visibility = DataHolder.getInstance().getVisibilityManager()
|
|
|
|
|
|
|
|
.put(application.getId(), application.getVisibility());
|
|
|
|
|
|
|
|
modifiedApplication.setVisibility(visibility);
|
|
|
|
|
|
|
|
ConnectionManagerUtil.commitDBTransaction();
|
|
|
|
|
|
|
|
return modifiedApplication;
|
|
|
|
} catch (ApplicationManagementDAOException e) {
|
|
|
|
} catch (ApplicationManagementDAOException e) {
|
|
|
|
ConnectionManagerUtil.rollbackDBTransaction();
|
|
|
|
ConnectionManagerUtil.rollbackDBTransaction();
|
|
|
|
throw e;
|
|
|
|
throw e;
|
|
|
|