[KEYCLOAK-5158] - Revert changes that made delete on lists and scope permission stop working
This commit is contained in:
parent
6865b4bbb1
commit
0aeba74185
18 changed files with 382 additions and 102 deletions
|
@ -27,6 +27,7 @@ import org.keycloak.testsuite.console.page.clients.authorization.policy.PolicyTy
|
|||
import org.keycloak.testsuite.page.Form;
|
||||
import org.keycloak.testsuite.util.URLUtils;
|
||||
import org.keycloak.testsuite.util.WaitUtils;
|
||||
import org.openqa.selenium.By;
|
||||
import org.openqa.selenium.WebElement;
|
||||
import org.openqa.selenium.support.FindBy;
|
||||
import org.openqa.selenium.support.ui.Select;
|
||||
|
@ -123,4 +124,15 @@ public class Permissions extends Form {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void deleteFromList(String name) {
|
||||
for (WebElement row : permissions().rows()) {
|
||||
PolicyRepresentation actual = permissions().toRepresentation(row);
|
||||
if (actual.getName().equalsIgnoreCase(name)) {
|
||||
row.findElements(tagName("td")).get(4).click();
|
||||
driver.findElement(By.xpath(".//button[text()='Delete']")).click();
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -32,6 +32,7 @@ import org.keycloak.representations.idm.authorization.UserPolicyRepresentation;
|
|||
import org.keycloak.testsuite.page.Form;
|
||||
import org.keycloak.testsuite.util.URLUtils;
|
||||
import org.keycloak.testsuite.util.WaitUtils;
|
||||
import org.openqa.selenium.By;
|
||||
import org.openqa.selenium.WebElement;
|
||||
import org.openqa.selenium.support.FindBy;
|
||||
import org.openqa.selenium.support.ui.Select;
|
||||
|
@ -199,4 +200,15 @@ public class Policies extends Form {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void deleteFromList(String name) {
|
||||
for (WebElement row : policies().rows()) {
|
||||
PolicyRepresentation actual = policies().toRepresentation(row);
|
||||
if (actual.getName().equalsIgnoreCase(name)) {
|
||||
row.findElements(tagName("td")).get(4).click();
|
||||
driver.findElement(By.xpath(".//button[text()='Delete']")).click();
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -23,6 +23,7 @@ import org.keycloak.representations.idm.authorization.ResourceRepresentation;
|
|||
import org.keycloak.testsuite.page.Form;
|
||||
import org.keycloak.testsuite.util.URLUtils;
|
||||
import org.keycloak.testsuite.util.WaitUtils;
|
||||
import org.openqa.selenium.By;
|
||||
import org.openqa.selenium.WebElement;
|
||||
import org.openqa.selenium.support.FindBy;
|
||||
|
||||
|
@ -73,6 +74,17 @@ public class Resources extends Form {
|
|||
}
|
||||
}
|
||||
|
||||
public void deleteFromList(String name) {
|
||||
for (WebElement row : resources().rows()) {
|
||||
ResourceRepresentation actual = resources().toRepresentation(row);
|
||||
if (actual.getName().equalsIgnoreCase(name)) {
|
||||
row.findElements(tagName("td")).get(6).click();
|
||||
driver.findElement(By.xpath(".//button[text()='Delete']")).click();
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public Resource name(String name) {
|
||||
for (WebElement row : resources().rows()) {
|
||||
ResourceRepresentation actual = resources().toRepresentation(row);
|
||||
|
|
|
@ -22,6 +22,7 @@ import org.jboss.arquillian.graphene.page.Page;
|
|||
import org.keycloak.representations.idm.authorization.ScopeRepresentation;
|
||||
import org.keycloak.testsuite.page.Form;
|
||||
import org.keycloak.testsuite.util.URLUtils;
|
||||
import org.openqa.selenium.By;
|
||||
import org.openqa.selenium.WebElement;
|
||||
import org.openqa.selenium.support.FindBy;
|
||||
|
||||
|
@ -67,4 +68,14 @@ public class Scopes extends Form {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void deleteFromList(String name) {
|
||||
for (WebElement row : scopes().rows()) {
|
||||
ScopeRepresentation actual = scopes().toRepresentation(row);
|
||||
if (actual.getName().equalsIgnoreCase(name)) {
|
||||
row.findElements(tagName("td")).get(3).click();
|
||||
driver.findElement(By.xpath(".//button[text()='Delete']")).click();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -122,6 +122,22 @@ public class AggregatePolicyManagementTest extends AbstractAuthorizationSettings
|
|||
assertNull(authorizationPage.authorizationTabs().policies().policies().findByName(expected.getName()));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDeleteFromList() throws InterruptedException {
|
||||
authorizationPage.navigateTo();
|
||||
AggregatePolicyRepresentation expected = new AggregatePolicyRepresentation();
|
||||
|
||||
expected.setName("Test Delete Aggregate Policy");
|
||||
expected.setDescription("description");
|
||||
expected.addPolicy("Policy C");
|
||||
|
||||
expected = createPolicy(expected);
|
||||
authorizationPage.navigateTo();
|
||||
authorizationPage.authorizationTabs().policies().deleteFromList(expected.getName());
|
||||
authorizationPage.navigateTo();
|
||||
assertNull(authorizationPage.authorizationTabs().policies().policies().findByName(expected.getName()));
|
||||
}
|
||||
|
||||
private AggregatePolicyRepresentation createPolicy(AggregatePolicyRepresentation expected) {
|
||||
AggregatePolicy policy = authorizationPage.authorizationTabs().policies().create(expected);
|
||||
assertAlertSuccess();
|
||||
|
|
|
@ -76,7 +76,7 @@ public class ClientPolicyManagementTest extends AbstractAuthorizationSettingsTes
|
|||
}
|
||||
|
||||
@Test
|
||||
public void testDeletePolicy() throws InterruptedException {
|
||||
public void testDelete() throws InterruptedException {
|
||||
authorizationPage.navigateTo();
|
||||
ClientPolicyRepresentation expected = new ClientPolicyRepresentation();
|
||||
|
||||
|
@ -92,6 +92,22 @@ public class ClientPolicyManagementTest extends AbstractAuthorizationSettingsTes
|
|||
assertNull(authorizationPage.authorizationTabs().policies().policies().findByName(expected.getName()));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDeleteFromList() throws InterruptedException {
|
||||
authorizationPage.navigateTo();
|
||||
ClientPolicyRepresentation expected = new ClientPolicyRepresentation();
|
||||
|
||||
expected.setName("Test Client Policy");
|
||||
expected.setDescription("description");
|
||||
expected.addClient("client c");
|
||||
|
||||
expected = createPolicy(expected);
|
||||
authorizationPage.navigateTo();
|
||||
authorizationPage.authorizationTabs().policies().deleteFromList(expected.getName());
|
||||
authorizationPage.navigateTo();
|
||||
assertNull(authorizationPage.authorizationTabs().policies().policies().findByName(expected.getName()));
|
||||
}
|
||||
|
||||
private ClientPolicyRepresentation createPolicy(ClientPolicyRepresentation expected) {
|
||||
ClientPolicy policy = authorizationPage.authorizationTabs().policies().create(expected);
|
||||
assertAlertSuccess();
|
||||
|
|
|
@ -135,6 +135,25 @@ public class GroupPolicyManagementTest extends AbstractAuthorizationSettingsTest
|
|||
assertNull(authorizationPage.authorizationTabs().policies().policies().findByName(expected.getName()));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDeleteFromList() throws InterruptedException {
|
||||
authorizationPage.navigateTo();
|
||||
GroupPolicyRepresentation expected = new GroupPolicyRepresentation();
|
||||
|
||||
expected.setName("Test Delete Group Policy");
|
||||
expected.setDescription("description");
|
||||
expected.setGroupsClaim("groups");
|
||||
expected.addGroupPath("/Group A", true);
|
||||
expected.addGroupPath("/Group A/Group B/Group D");
|
||||
expected.addGroupPath("Group F");
|
||||
|
||||
expected = createPolicy(expected);
|
||||
authorizationPage.navigateTo();
|
||||
authorizationPage.authorizationTabs().policies().deleteFromList(expected.getName());
|
||||
authorizationPage.navigateTo();
|
||||
assertNull(authorizationPage.authorizationTabs().policies().policies().findByName(expected.getName()));
|
||||
}
|
||||
|
||||
private GroupPolicyRepresentation createPolicy(GroupPolicyRepresentation expected) {
|
||||
GroupPolicy policy = authorizationPage.authorizationTabs().policies().create(expected);
|
||||
assertAlertSuccess();
|
||||
|
|
|
@ -74,6 +74,22 @@ public class JSPolicyManagementTest extends AbstractAuthorizationSettingsTest {
|
|||
assertNull(authorizationPage.authorizationTabs().policies().policies().findByName(expected.getName()));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDeleteFromList() throws InterruptedException {
|
||||
authorizationPage.navigateTo();
|
||||
JSPolicyRepresentation expected = new JSPolicyRepresentation();
|
||||
|
||||
expected.setName("Test JS Policy");
|
||||
expected.setDescription("description");
|
||||
expected.setCode("$evaluation.deny();");
|
||||
|
||||
expected = createPolicy(expected);
|
||||
authorizationPage.navigateTo();
|
||||
authorizationPage.authorizationTabs().policies().deleteFromList(expected.getName());
|
||||
authorizationPage.navigateTo();
|
||||
assertNull(authorizationPage.authorizationTabs().policies().policies().findByName(expected.getName()));
|
||||
}
|
||||
|
||||
private JSPolicyRepresentation createPolicy(JSPolicyRepresentation expected) {
|
||||
JSPolicy policy = authorizationPage.authorizationTabs().policies().create(expected);
|
||||
assertAlertSuccess();
|
||||
|
|
|
@ -72,7 +72,7 @@ public class ResourceManagementTest extends AbstractAuthorizationSettingsTest {
|
|||
}
|
||||
|
||||
@Test
|
||||
public void testDelete() {
|
||||
public void testDeleteFromDetails() {
|
||||
ResourceRepresentation expected = createResource();
|
||||
authorizationPage.navigateTo();
|
||||
authorizationPage.authorizationTabs().resources().delete(expected.getName());
|
||||
|
@ -80,6 +80,15 @@ public class ResourceManagementTest extends AbstractAuthorizationSettingsTest {
|
|||
assertNull(authorizationPage.authorizationTabs().resources().resources().findByName(expected.getName()));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDeleteFromList() {
|
||||
ResourceRepresentation expected = createResource();
|
||||
authorizationPage.navigateTo();
|
||||
authorizationPage.authorizationTabs().resources().deleteFromList(expected.getName());
|
||||
authorizationPage.navigateTo();
|
||||
assertNull(authorizationPage.authorizationTabs().resources().resources().findByName(expected.getName()));
|
||||
}
|
||||
|
||||
private ResourceRepresentation createResource() {
|
||||
ResourceRepresentation expected = new ResourceRepresentation();
|
||||
|
||||
|
|
|
@ -165,6 +165,23 @@ public class ResourcePermissionManagementTest extends AbstractAuthorizationSetti
|
|||
assertNull(authorizationPage.authorizationTabs().permissions().permissions().findByName(expected.getName()));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDeleteFromList() throws InterruptedException {
|
||||
authorizationPage.navigateTo();
|
||||
ResourcePermissionRepresentation expected = new ResourcePermissionRepresentation();
|
||||
|
||||
expected.setName("Test Delete Resource Permission");
|
||||
expected.setDescription("description");
|
||||
expected.addResource("Resource B");
|
||||
expected.addPolicy("Policy C");
|
||||
|
||||
expected = createPermission(expected);
|
||||
authorizationPage.navigateTo();
|
||||
authorizationPage.authorizationTabs().permissions().deleteFromList(expected.getName());
|
||||
authorizationPage.navigateTo();
|
||||
assertNull(authorizationPage.authorizationTabs().permissions().permissions().findByName(expected.getName()));
|
||||
}
|
||||
|
||||
private ResourcePermissionRepresentation createPermission(ResourcePermissionRepresentation expected) {
|
||||
ResourcePermission policy = authorizationPage.authorizationTabs().permissions().create(expected);
|
||||
assertAlertSuccess();
|
||||
|
|
|
@ -208,6 +208,24 @@ public class RolePolicyManagementTest extends AbstractAuthorizationSettingsTest
|
|||
assertNull(authorizationPage.authorizationTabs().policies().policies().findByName(expected.getName()));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDeleteFromList() throws InterruptedException {
|
||||
authorizationPage.navigateTo();
|
||||
RolePolicyRepresentation expected = new RolePolicyRepresentation();
|
||||
|
||||
expected.setName("Test Delete Role Policy");
|
||||
expected.setDescription("description");
|
||||
expected.addRole("Realm Role A");
|
||||
expected.addRole("Realm Role B");
|
||||
expected.addRole("Realm Role C");
|
||||
|
||||
expected = createPolicy(expected);
|
||||
authorizationPage.navigateTo();
|
||||
authorizationPage.authorizationTabs().policies().deleteFromList(expected.getName());
|
||||
authorizationPage.navigateTo();
|
||||
assertNull(authorizationPage.authorizationTabs().policies().policies().findByName(expected.getName()));
|
||||
}
|
||||
|
||||
private RolePolicyRepresentation createPolicy(RolePolicyRepresentation expected) {
|
||||
RolePolicy policy = authorizationPage.authorizationTabs().policies().create(expected);
|
||||
assertAlertSuccess();
|
||||
|
|
|
@ -71,6 +71,18 @@ public class RulePolicyManagementTest extends AbstractAuthorizationSettingsTest
|
|||
assertNull(authorizationPage.authorizationTabs().policies().policies().findByName(expected.getName()));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDeleteFromList() throws InterruptedException {
|
||||
authorizationPage.navigateTo();
|
||||
RulePolicyRepresentation expected =createDefaultRepresentation("Delete Rule Policy");
|
||||
|
||||
expected = createPolicy(expected);
|
||||
authorizationPage.navigateTo();
|
||||
authorizationPage.authorizationTabs().policies().deleteFromList(expected.getName());
|
||||
authorizationPage.navigateTo();
|
||||
assertNull(authorizationPage.authorizationTabs().policies().policies().findByName(expected.getName()));
|
||||
}
|
||||
|
||||
private RulePolicyRepresentation createDefaultRepresentation(String name) {
|
||||
RulePolicyRepresentation expected = new RulePolicyRepresentation();
|
||||
|
||||
|
|
|
@ -49,6 +49,15 @@ public class ScopeManagementTest extends AbstractAuthorizationSettingsTest {
|
|||
assertNull(authorizationPage.authorizationTabs().scopes().scopes().findByName(expected.getName()));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDeleteFromList() {
|
||||
ScopeRepresentation expected = createScope();
|
||||
authorizationPage.navigateTo();
|
||||
authorizationPage.authorizationTabs().scopes().deleteFromList(expected.getName());
|
||||
authorizationPage.navigateTo();
|
||||
assertNull(authorizationPage.authorizationTabs().scopes().scopes().findByName(expected.getName()));
|
||||
}
|
||||
|
||||
private ScopeRepresentation createScope() {
|
||||
ScopeRepresentation expected = new ScopeRepresentation();
|
||||
|
||||
|
|
|
@ -166,6 +166,23 @@ public class ScopePermissionManagementTest extends AbstractAuthorizationSettings
|
|||
assertNull(authorizationPage.authorizationTabs().permissions().permissions().findByName(expected.getName()));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDeleteFromList() throws InterruptedException {
|
||||
authorizationPage.navigateTo();
|
||||
ScopePermissionRepresentation expected = new ScopePermissionRepresentation();
|
||||
|
||||
expected.setName("Test Delete Scope Permission");
|
||||
expected.setDescription("description");
|
||||
expected.addScope("Scope C");
|
||||
expected.addPolicy("Policy C");
|
||||
|
||||
expected = createPermission(expected);
|
||||
authorizationPage.navigateTo();
|
||||
authorizationPage.authorizationTabs().permissions().deleteFromList(expected.getName());
|
||||
authorizationPage.navigateTo();
|
||||
assertNull(authorizationPage.authorizationTabs().permissions().permissions().findByName(expected.getName()));
|
||||
}
|
||||
|
||||
private ScopePermissionRepresentation createPermission(ScopePermissionRepresentation expected) {
|
||||
ScopePermission policy = authorizationPage.authorizationTabs().permissions().create(expected);
|
||||
assertAlertSuccess();
|
||||
|
|
|
@ -109,6 +109,33 @@ public class TimePolicyManagementTest extends AbstractAuthorizationSettingsTest
|
|||
assertNull(authorizationPage.authorizationTabs().policies().policies().findByName(expected.getName()));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDeleteFromList() throws InterruptedException {
|
||||
authorizationPage.navigateTo();
|
||||
TimePolicyRepresentation expected = new TimePolicyRepresentation();
|
||||
|
||||
expected.setName("Test Time Policy");
|
||||
expected.setDescription("description");
|
||||
expected.setNotBefore("2017-01-01 00:00:00");
|
||||
expected.setNotBefore("2018-01-01 00:00:00");
|
||||
expected.setDayMonth("1");
|
||||
expected.setDayMonthEnd("2");
|
||||
expected.setMonth("3");
|
||||
expected.setMonthEnd("4");
|
||||
expected.setYear("5");
|
||||
expected.setYearEnd("6");
|
||||
expected.setHour("7");
|
||||
expected.setHourEnd("8");
|
||||
expected.setMinute("9");
|
||||
expected.setMinuteEnd("10");
|
||||
|
||||
expected = createPolicy(expected);
|
||||
authorizationPage.navigateTo();
|
||||
authorizationPage.authorizationTabs().policies().deleteFromList(expected.getName());
|
||||
authorizationPage.navigateTo();
|
||||
assertNull(authorizationPage.authorizationTabs().policies().policies().findByName(expected.getName()));
|
||||
}
|
||||
|
||||
private TimePolicyRepresentation createPolicy(TimePolicyRepresentation expected) {
|
||||
TimePolicy policy = authorizationPage.authorizationTabs().policies().create(expected);
|
||||
assertAlertSuccess();
|
||||
|
|
|
@ -76,7 +76,7 @@ public class UserPolicyManagementTest extends AbstractAuthorizationSettingsTest
|
|||
}
|
||||
|
||||
@Test
|
||||
public void testDeletePolicy() throws InterruptedException {
|
||||
public void testDelete() throws InterruptedException {
|
||||
authorizationPage.navigateTo();
|
||||
UserPolicyRepresentation expected = new UserPolicyRepresentation();
|
||||
|
||||
|
@ -92,6 +92,22 @@ public class UserPolicyManagementTest extends AbstractAuthorizationSettingsTest
|
|||
assertNull(authorizationPage.authorizationTabs().policies().policies().findByName(expected.getName()));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDeleteFromList() throws InterruptedException {
|
||||
authorizationPage.navigateTo();
|
||||
UserPolicyRepresentation expected = new UserPolicyRepresentation();
|
||||
|
||||
expected.setName("Test User Policy");
|
||||
expected.setDescription("description");
|
||||
expected.addUser("user c");
|
||||
|
||||
expected = createPolicy(expected);
|
||||
authorizationPage.navigateTo();
|
||||
authorizationPage.authorizationTabs().policies().deleteFromList(expected.getName());
|
||||
authorizationPage.navigateTo();
|
||||
assertNull(authorizationPage.authorizationTabs().policies().policies().findByName(expected.getName()));
|
||||
}
|
||||
|
||||
private UserPolicyRepresentation createPolicy(UserPolicyRepresentation expected) {
|
||||
UserPolicy policy = authorizationPage.authorizationTabs().policies().create(expected);
|
||||
assertAlertSuccess();
|
||||
|
|
|
@ -79,7 +79,72 @@ module.controller('ResourceServerDetailCtrl', function($scope, $http, $route, $l
|
|||
});
|
||||
});
|
||||
|
||||
module.controller('ResourceServerResourceCtrl', function($scope, $http, $route, $location, realm, ResourceServer, ResourceServerResource, client) {
|
||||
var Resources = {
|
||||
delete: function(ResourceServerResource, realm, client, $scope, AuthzDialog, $location, Notifications, $route) {
|
||||
ResourceServerResource.permissions({
|
||||
realm : realm,
|
||||
client : client.id,
|
||||
rsrid : $scope.resource._id
|
||||
}, function (permissions) {
|
||||
var msg = "";
|
||||
|
||||
if (permissions.length > 0 && !$scope.deleteConsent) {
|
||||
msg = "<p>This resource is referenced in some permissions:</p>";
|
||||
msg += "<ul>";
|
||||
for (i = 0; i < permissions.length; i++) {
|
||||
msg+= "<li><strong>" + permissions[i].name + "</strong></li>";
|
||||
}
|
||||
msg += "</ul>";
|
||||
msg += "<p>If you remove this resource, the permissions above will be affected and will not be associated with this resource anymore.</p>";
|
||||
}
|
||||
|
||||
AuthzDialog.confirmDeleteWithMsg($scope.resource.name, "Resource", msg, function() {
|
||||
ResourceServerResource.delete({realm : realm, client : $scope.client.id, rsrid : $scope.resource._id}, null, function() {
|
||||
$location.url("/realms/" + realm + "/clients/" + $scope.client.id + "/authz/resource-server/resource");
|
||||
$route.reload();
|
||||
Notifications.success("The resource has been deleted.");
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
var Policies = {
|
||||
delete: function(service, realm, client, $scope, AuthzDialog, $location, Notifications, $route, isPermission) {
|
||||
var msg = "";
|
||||
|
||||
service.dependentPolicies({
|
||||
realm : realm,
|
||||
client : client.id,
|
||||
id : $scope.policy.id
|
||||
}, function (dependentPolicies) {
|
||||
if (dependentPolicies.length > 0 && !$scope.deleteConsent) {
|
||||
msg = "<p>This policy is being used by other policies:</p>";
|
||||
msg += "<ul>";
|
||||
for (i = 0; i < dependentPolicies.length; i++) {
|
||||
msg+= "<li><strong>" + dependentPolicies[i].name + "</strong></li>";
|
||||
}
|
||||
msg += "</ul>";
|
||||
msg += "<p>If you remove this policy, the policies above will be affected and will not be associated with this policy anymore.</p>";
|
||||
}
|
||||
|
||||
AuthzDialog.confirmDeleteWithMsg($scope.policy.name, isPermission ? "Permission" : "Policy", msg, function() {
|
||||
service.delete({realm : realm, client : $scope.client.id, id : $scope.policy.id}, null, function() {
|
||||
if (isPermission) {
|
||||
$location.url("/realms/" + realm + "/clients/" + $scope.client.id + "/authz/resource-server/permission");
|
||||
Notifications.success("The permission has been deleted.");
|
||||
} else {
|
||||
$location.url("/realms/" + realm + "/clients/" + $scope.client.id + "/authz/resource-server/policy");
|
||||
Notifications.success("The policy has been deleted.");
|
||||
}
|
||||
$route.reload();
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
module.controller('ResourceServerResourceCtrl', function($scope, $http, $route, $location, realm, ResourceServer, ResourceServerResource, client, AuthzDialog, Notifications) {
|
||||
$scope.realm = realm;
|
||||
$scope.client = client;
|
||||
|
||||
|
@ -171,6 +236,11 @@ module.controller('ResourceServerResourceCtrl', function($scope, $http, $route,
|
|||
}
|
||||
}
|
||||
};
|
||||
|
||||
$scope.delete = function(resource) {
|
||||
$scope.resource = resource;
|
||||
Resources.delete(ResourceServerResource, $route.current.params.realm, client, $scope, AuthzDialog, $location, Notifications, $route);
|
||||
};
|
||||
});
|
||||
|
||||
module.controller('ResourceServerResourceDetailCtrl', function($scope, $http, $route, $location, realm, ResourceServer, client, ResourceServerResource, ResourceServerScope, AuthzDialog, Notifications) {
|
||||
|
@ -282,30 +352,7 @@ module.controller('ResourceServerResourceDetailCtrl', function($scope, $http, $r
|
|||
}
|
||||
|
||||
$scope.remove = function() {
|
||||
ResourceServerResource.permissions({
|
||||
realm : $route.current.params.realm,
|
||||
client : client.id,
|
||||
rsrid : $scope.resource._id
|
||||
}, function (permissions) {
|
||||
var msg = "";
|
||||
|
||||
if (permissions.length > 0 && !$scope.deleteConsent) {
|
||||
msg = "<p>This resource is referenced in some policies:</p>";
|
||||
msg += "<ul>";
|
||||
for (i = 0; i < permissions.length; i++) {
|
||||
msg+= "<li><strong>" + permissions[i].name + "</strong></li>";
|
||||
}
|
||||
msg += "</ul>";
|
||||
msg += "<p>If you remove this resource, the policies above will be affected and will not be associated with this resource anymore.</p>";
|
||||
}
|
||||
|
||||
AuthzDialog.confirmDeleteWithMsg($scope.resource.name, "Resource", msg, function() {
|
||||
ResourceServerResource.delete({realm : realm.realm, client : $scope.client.id, rsrid : $scope.resource._id}, null, function() {
|
||||
$location.url("/realms/" + realm.realm + "/clients/" + $scope.client.id + "/authz/resource-server/resource");
|
||||
Notifications.success("The resource has been deleted.");
|
||||
});
|
||||
});
|
||||
});
|
||||
Resources.delete(ResourceServerResource, $route.current.params.realm, client, $scope, AuthzDialog, $location, Notifications, $route);
|
||||
}
|
||||
|
||||
$scope.reset = function() {
|
||||
|
@ -338,7 +385,37 @@ module.controller('ResourceServerResourceDetailCtrl', function($scope, $http, $r
|
|||
}
|
||||
});
|
||||
|
||||
module.controller('ResourceServerScopeCtrl', function($scope, $http, $route, $location, realm, ResourceServer, ResourceServerScope, client) {
|
||||
var Scopes = {
|
||||
delete: function(ResourceServerScope, realm, client, $scope, AuthzDialog, $location, Notifications, $route) {
|
||||
ResourceServerScope.permissions({
|
||||
realm : realm,
|
||||
client : client.id,
|
||||
id : $scope.scope.id
|
||||
}, function (permissions) {
|
||||
var msg = "";
|
||||
|
||||
if (permissions.length > 0 && !$scope.deleteConsent) {
|
||||
msg = "<p>This scope is referenced in some permissions:</p>";
|
||||
msg += "<ul>";
|
||||
for (i = 0; i < permissions.length; i++) {
|
||||
msg+= "<li><strong>" + permissions[i].name + "</strong></li>";
|
||||
}
|
||||
msg += "</ul>";
|
||||
msg += "<p>If you remove this scope, the permissions above will be affected and will not be associated with this scope anymore.</p>";
|
||||
}
|
||||
|
||||
AuthzDialog.confirmDeleteWithMsg($scope.scope.name, "Scope", msg, function() {
|
||||
ResourceServerScope.delete({realm : realm, client : $scope.client.id, id : $scope.scope.id}, null, function() {
|
||||
$location.url("/realms/" + realm + "/clients/" + $scope.client.id + "/authz/resource-server/scope");
|
||||
$route.reload();
|
||||
Notifications.success("The scope has been deleted.");
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
module.controller('ResourceServerScopeCtrl', function($scope, $http, $route, $location, realm, ResourceServer, ResourceServerScope,client, AuthzDialog, Notifications) {
|
||||
$scope.realm = realm;
|
||||
$scope.client = client;
|
||||
|
||||
|
@ -430,6 +507,11 @@ module.controller('ResourceServerScopeCtrl', function($scope, $http, $route, $lo
|
|||
}
|
||||
}
|
||||
};
|
||||
|
||||
$scope.delete = function(scope) {
|
||||
$scope.scope = scope;
|
||||
Scopes.delete(ResourceServerScope, $route.current.params.realm, client, $scope, AuthzDialog, $location, Notifications, $route);
|
||||
};
|
||||
});
|
||||
|
||||
module.controller('ResourceServerScopeDetailCtrl', function($scope, $http, $route, $location, realm, ResourceServer, client, ResourceServerScope, AuthzDialog, Notifications) {
|
||||
|
@ -499,30 +581,7 @@ module.controller('ResourceServerScopeDetailCtrl', function($scope, $http, $rout
|
|||
}
|
||||
|
||||
$scope.remove = function() {
|
||||
ResourceServerScope.permissions({
|
||||
realm : $route.current.params.realm,
|
||||
client : client.id,
|
||||
id : $scope.scope.id
|
||||
}, function (permissions) {
|
||||
var msg = "";
|
||||
|
||||
if (permissions.length > 0 && !$scope.deleteConsent) {
|
||||
msg = "<p>This scope is referenced in some policies:</p>";
|
||||
msg += "<ul>";
|
||||
for (i = 0; i < permissions.length; i++) {
|
||||
msg+= "<li><strong>" + permissions[i].name + "</strong></li>";
|
||||
}
|
||||
msg += "</ul>";
|
||||
msg += "<p>If you remove this scope, the policies above will be affected and will not be associated with this scope anymore.</p>";
|
||||
}
|
||||
|
||||
AuthzDialog.confirmDeleteWithMsg($scope.scope.name, "Scope", msg, function() {
|
||||
ResourceServerScope.delete({realm : realm.realm, client : $scope.client.id, id : $scope.scope.id}, null, function() {
|
||||
$location.url("/realms/" + realm.realm + "/clients/" + client.id + "/authz/resource-server/scope");
|
||||
Notifications.success("The scope has been deleted.");
|
||||
});
|
||||
});
|
||||
});
|
||||
Scopes.delete(ResourceServerScope, $route.current.params.realm, client, $scope, AuthzDialog, $location, Notifications, $route);
|
||||
}
|
||||
|
||||
$scope.reset = function() {
|
||||
|
@ -554,7 +613,7 @@ module.controller('ResourceServerScopeDetailCtrl', function($scope, $http, $rout
|
|||
}
|
||||
});
|
||||
|
||||
module.controller('ResourceServerPolicyCtrl', function($scope, $http, $route, $location, realm, ResourceServer, ResourceServerPolicy, PolicyProvider, client) {
|
||||
module.controller('ResourceServerPolicyCtrl', function($scope, $http, $route, $location, realm, ResourceServer, ResourceServerPolicy, PolicyProvider, client, AuthzDialog, Notifications) {
|
||||
$scope.realm = realm;
|
||||
$scope.client = client;
|
||||
$scope.policyProviders = [];
|
||||
|
@ -650,9 +709,14 @@ module.controller('ResourceServerPolicyCtrl', function($scope, $http, $route, $l
|
|||
}
|
||||
}
|
||||
};
|
||||
|
||||
$scope.delete = function(policy) {
|
||||
$scope.policy = policy;
|
||||
Policies.delete(ResourceServerPolicy, $route.current.params.realm, client, $scope, AuthzDialog, $location, Notifications, $route, false);
|
||||
};
|
||||
});
|
||||
|
||||
module.controller('ResourceServerPermissionCtrl', function($scope, $http, $route, $location, realm, ResourceServer, ResourceServerPermission, PolicyProvider, client) {
|
||||
module.controller('ResourceServerPermissionCtrl', function($scope, $http, $route, $location, realm, ResourceServer, ResourceServerPermission, PolicyProvider, client, AuthzDialog, Notifications) {
|
||||
$scope.realm = realm;
|
||||
$scope.client = client;
|
||||
$scope.policyProviders = [];
|
||||
|
@ -747,6 +811,11 @@ module.controller('ResourceServerPermissionCtrl', function($scope, $http, $route
|
|||
}
|
||||
}
|
||||
};
|
||||
|
||||
$scope.delete = function(policy) {
|
||||
$scope.policy = policy;
|
||||
Policies.delete(ResourceServerPermission, $route.current.params.realm, client, $scope, AuthzDialog, $location, Notifications, $route, true);
|
||||
};
|
||||
});
|
||||
|
||||
module.controller('ResourceServerPolicyDroolsDetailCtrl', function($scope, $http, $route, realm, client, PolicyController) {
|
||||
|
@ -1137,27 +1206,28 @@ module.controller('ResourceServerPolicyScopeDetailCtrl', function($scope, $route
|
|||
rsrid: resource[0]._id
|
||||
}, function (scopes) {
|
||||
$scope.resourceScopes = scopes;
|
||||
ResourceServerPolicy.scopes({
|
||||
realm : $route.current.params.realm,
|
||||
client : client.id,
|
||||
id : policy.id
|
||||
}, function(scopes) {
|
||||
$scope.selectedScopes = [];
|
||||
for (i = 0; i < scopes.length; i++) {
|
||||
scopes[i].text = scopes[i].name;
|
||||
$scope.selectedScopes.push(scopes[i].id);
|
||||
}
|
||||
var copy = angular.copy($scope.selectedScopes);
|
||||
$scope.$watch('selectedScopes', function() {
|
||||
if (!angular.equals($scope.selectedScopes, copy)) {
|
||||
$scope.changed = true;
|
||||
}
|
||||
}, true);
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
ResourceServerPolicy.scopes({
|
||||
realm : $route.current.params.realm,
|
||||
client : client.id,
|
||||
id : policy.id
|
||||
}, function(scopes) {
|
||||
$scope.selectedScopes = [];
|
||||
for (i = 0; i < scopes.length; i++) {
|
||||
scopes[i].text = scopes[i].name;
|
||||
$scope.selectedScopes.push(scopes[i].id);
|
||||
}
|
||||
var copy = angular.copy($scope.selectedScopes);
|
||||
$scope.$watch('selectedScopes', function() {
|
||||
if (!angular.equals($scope.selectedScopes, copy)) {
|
||||
$scope.changed = true;
|
||||
}
|
||||
}, true);
|
||||
});
|
||||
} else {
|
||||
$scope.selectedResource = null;
|
||||
var copy = angular.copy($scope.selectedResource);
|
||||
|
@ -2098,35 +2168,7 @@ module.service("PolicyController", function($http, $route, $location, ResourceSe
|
|||
});
|
||||
|
||||
$scope.remove = function() {
|
||||
var msg = "";
|
||||
|
||||
service.dependentPolicies({
|
||||
realm : $route.current.params.realm,
|
||||
client : client.id,
|
||||
id : $scope.policy.id
|
||||
}, function (dependentPolicies) {
|
||||
if (dependentPolicies.length > 0 && !$scope.deleteConsent) {
|
||||
msg = "<p>This policy is being used by other policies:</p>";
|
||||
msg += "<ul>";
|
||||
for (i = 0; i < dependentPolicies.length; i++) {
|
||||
msg+= "<li><strong>" + dependentPolicies[i].name + "</strong></li>";
|
||||
}
|
||||
msg += "</ul>";
|
||||
msg += "<p>If you remove this policy, the policies above will be affected and will not be associated with this policy anymore.</p>";
|
||||
}
|
||||
|
||||
AuthzDialog.confirmDeleteWithMsg($scope.policy.name, "Policy", msg, function() {
|
||||
service.delete({realm : $scope.realm.realm, client : $scope.client.id, id : $scope.policy.id}, null, function() {
|
||||
if (delegate.isPermission()) {
|
||||
$location.url("/realms/" + realm.realm + "/clients/" + client.id + "/authz/resource-server/permission");
|
||||
Notifications.success("The permission has been deleted.");
|
||||
} else {
|
||||
$location.url("/realms/" + realm.realm + "/clients/" + client.id + "/authz/resource-server/policy");
|
||||
Notifications.success("The policy has been deleted.");
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
Policies.delete(ResourceServerPolicy, $route.current.params.realm, client, $scope, AuthzDialog, $location, Notifications, $route, delegate.isPermission());
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
|
@ -38,7 +38,6 @@
|
|||
</div>
|
||||
<div class="form-group clearfix" data-ng-show="selectedResource">
|
||||
<label class="col-md-2 control-label" for="resourceScopes">{{:: 'authz-scopes' | translate}} <span class="required">*</span></label>
|
||||
|
||||
<div class="col-md-6">
|
||||
<select ui-select2 id="resourceScopes"
|
||||
data-ng-model="selectedScopes"
|
||||
|
|
Loading…
Reference in a new issue