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://github.com/wso2/carbon-device-mgt
This commit is contained in:
commit
a7eb74cb82
@ -60,13 +60,13 @@ public class PolicyFilterImpl implements PolicyFilter {
|
||||
@Override
|
||||
public void filterOwnershipTypeBasedPolicies(String ownershipType, List<Policy> policies) {
|
||||
|
||||
List<Policy> temp = new ArrayList<Policy>();
|
||||
for (Policy policy : policies) {
|
||||
if (ownershipType.equalsIgnoreCase(policy.getOwnershipType())) {
|
||||
temp.add(policy);
|
||||
}
|
||||
}
|
||||
policies = temp;
|
||||
// List<Policy> temp = new ArrayList<Policy>();
|
||||
// for (Policy policy : policies) {
|
||||
// if (ownershipType.equalsIgnoreCase(policy.getOwnershipType())) {
|
||||
// temp.add(policy);
|
||||
// }
|
||||
// }
|
||||
// policies = temp;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@ -30,7 +30,9 @@ import org.wso2.carbon.policy.mgt.core.dao.*;
|
||||
import org.wso2.carbon.policy.mgt.core.mgt.PolicyManager;
|
||||
import org.wso2.carbon.policy.mgt.core.mgt.ProfileManager;
|
||||
|
||||
import java.sql.Timestamp;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Calendar;
|
||||
import java.util.List;
|
||||
|
||||
public class PolicyManagerImpl implements PolicyManager {
|
||||
@ -58,9 +60,15 @@ public class PolicyManagerImpl implements PolicyManager {
|
||||
try {
|
||||
PolicyManagementDAOFactory.beginTransaction();
|
||||
if (policy.getProfile() != null && policy.getProfile().getProfileId() == 0) {
|
||||
profileDAO.addProfile(policy.getProfile());
|
||||
featureDAO.addProfileFeatures(policy.getProfile().getProfileFeaturesList(),
|
||||
policy.getProfile().getProfileId());
|
||||
Profile profile = policy.getProfile();
|
||||
|
||||
Timestamp currentTimestamp = new Timestamp(Calendar.getInstance().getTime().getTime());
|
||||
profile.setCreatedDate(currentTimestamp);
|
||||
profile.setUpdatedDate(currentTimestamp);
|
||||
|
||||
|
||||
profileDAO.addProfile(profile);
|
||||
featureDAO.addProfileFeatures(profile.getProfileFeaturesList(), profile.getProfileId());
|
||||
}
|
||||
policy = policyDAO.addPolicy(policy);
|
||||
|
||||
|
||||
@ -28,7 +28,7 @@ import org.wso2.carbon.webapp.authenticator.framework.authenticator.OAuthAuthent
|
||||
|
||||
public class WebappAuthenticatorFactory {
|
||||
|
||||
public static WebappAuthenticator getAuthenticator(Request request) {
|
||||
public static WebappAuthenticator getAuthenticator(String authScheme) {
|
||||
return new OAuthAuthenticator();
|
||||
}
|
||||
|
||||
|
||||
@ -29,11 +29,14 @@ import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
public class WebappAuthenticatorFrameworkValve extends CarbonTomcatValve {
|
||||
|
||||
private static final String AUTHENTICATION_SCHEME = "AuthenticationScheme";
|
||||
private static final Log log = LogFactory.getLog(WebappAuthenticatorFrameworkValve.class);
|
||||
|
||||
@Override
|
||||
public void invoke(Request request, Response response, CompositeValve compositeValve) {
|
||||
WebappAuthenticator authenticator = WebappAuthenticatorFactory.getAuthenticator(request);
|
||||
String authScheme =
|
||||
request.getContext().findParameter(WebappAuthenticatorFrameworkValve.AUTHENTICATION_SCHEME);
|
||||
WebappAuthenticator authenticator = WebappAuthenticatorFactory.getAuthenticator(authScheme);
|
||||
WebappAuthenticator.Status status = authenticator.authenticate(request, response);
|
||||
this.processResponse(request, response, compositeValve, status);
|
||||
}
|
||||
|
||||
@ -49,8 +49,12 @@ public class OAuthAuthenticator implements WebappAuthenticator {
|
||||
|
||||
@Override
|
||||
public Status authenticate(Request request, Response response) {
|
||||
StringTokenizer tokenizer = new StringTokenizer(request.getRequestURI(), "/");
|
||||
String requestUri = request.getRequestURI();
|
||||
if (requestUri == null || "".equals(requestUri)) {
|
||||
return Status.CONTINUE;
|
||||
}
|
||||
|
||||
StringTokenizer tokenizer = new StringTokenizer(requestUri, "/");
|
||||
String context = request.getContextPath();
|
||||
if (context == null || "".equals(context)) {
|
||||
context = tokenizer.nextToken();
|
||||
@ -59,13 +63,13 @@ public class OAuthAuthenticator implements WebappAuthenticator {
|
||||
}
|
||||
}
|
||||
|
||||
boolean isContextCached = false;
|
||||
if (APIUtil.getAPIContextCache().get(context) != null) {
|
||||
isContextCached = Boolean.parseBoolean(APIUtil.getAPIContextCache().get(context).toString());
|
||||
}
|
||||
if (!isContextCached) {
|
||||
return Status.CONTINUE;
|
||||
}
|
||||
// boolean isContextCached = false;
|
||||
// if (APIUtil.getAPIContextCache().get(context) != null) {
|
||||
// isContextCached = Boolean.parseBoolean(APIUtil.getAPIContextCache().get(context).toString());
|
||||
// }
|
||||
// if (!isContextCached) {
|
||||
// return Status.CONTINUE;
|
||||
// }
|
||||
|
||||
try {
|
||||
String apiVersion = tokenizer.nextToken();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user