use of org.xwiki.security.authorization.Right in project xwiki-platform by xwiki.
the class XWikiCachingRightService method hasAccessLevel.
@Override
public boolean hasAccessLevel(String rightName, String username, String docname, XWikiContext context) throws XWikiException {
WikiReference wikiReference = new WikiReference(context.getWikiId());
DocumentReference document = resolveDocumentName(docname, wikiReference);
LOGGER.debug("hasAccessLevel() resolved document named [{}] into reference [{}]", docname, document);
DocumentReference user = resolveUserName(username, wikiReference);
if (user != null && XWikiConstants.GUEST_USER.equals(user.getName())) {
// Public users (not logged in) should be passed as null in the new API
user = null;
}
Right right = Right.toRight(rightName);
return authorizationManager.hasAccess(right, user, document);
}
use of org.xwiki.security.authorization.Right in project xwiki-platform by xwiki.
the class TestDefinitionParserTest method testDefinitionTestParser.
@Test
public void testDefinitionTestParser() throws Exception {
TestDefinitionParser parser = new DefaultTestDefinitionParser();
EntityReferenceResolver<String> resolver = componentManager.getInstance(EntityReferenceResolver.TYPE_STRING);
EntityReferenceSerializer<String> serializer = componentManager.getInstance(EntityReferenceSerializer.TYPE_STRING);
TestDefinition testDefinition = parser.parse("testwikis" + File.separatorChar + "parserTester.xml", resolver, serializer);
Collection<TestWiki> testWikis = testDefinition.getWikis();
assertThat("There should be some wikis", testWikis, notNullValue());
assertThat("The wikis count should be 3", testWikis.size(), equalTo(3));
TestWiki mainwiki = testDefinition.getMainWiki();
assertThat("Main wiki should be defined", mainwiki, notNullValue());
assertThat("Main wiki should be named 'wiki'", mainwiki.getWikiReference(), equalTo(new WikiReference("wiki")));
assertThat("Main wiki should be main wiki", mainwiki.isMainWiki(), is(true));
assertThat("Main wiki owner should be XWiki.Admin", mainwiki.getOwner(), equalTo(new DocumentReference("wiki", "XWiki", "Admin")));
assertThat("Main wiki should have 4 users (2 groups, and 2 users)", mainwiki.getUsers().size(), equalTo(4));
assertThat("Main wiki should have 2 groups", mainwiki.getGroups().size(), equalTo(2));
assertThat("Main wiki should have a groupA", mainwiki.getGroup("groupA"), notNullValue());
assertThat("Main wiki should have a userA", mainwiki.getUser("userA"), notNullValue());
Collection<TestGroup> groups = mainwiki.getUser("userA").getGroups();
assertThat("UserA of Main wiki should be in 2 groups", groups.size(), equalTo(2));
List<DocumentReference> groupRefs = new ArrayList<DocumentReference>();
for (TestGroup group : groups) {
groupRefs.add(group.getGroupReference());
}
assertThat("User A is in GroupA of the main wiki and the subwiki", groupRefs, hasItems(new DocumentReference("wiki", "XWiki", "groupA"), new DocumentReference("wiki1", "XWiki", "groupA")));
Collection<TestAccessRule> rules = mainwiki.getAccessRules();
assertThat("There must be 26 access rules on main wiki", rules.size(), equalTo(26));
List<DocumentReference> userRefs = new ArrayList<DocumentReference>();
List<Right> rights = new ArrayList<Right>();
List<RuleState> states = new ArrayList<RuleState>();
for (TestAccessRule rule : rules) {
userRefs.add(rule.getUser());
rights.add(rule.getRight());
states.add(rule.getState());
}
assertThat("Users in access rules of main wiki mismatch", userRefs, hasItems(new DocumentReference("wiki", "XWiki", "userA"), new DocumentReference("wiki", "XWiki", "userB"), new DocumentReference("wiki", "XWiki", "groupA"), new DocumentReference("wiki", "XWiki", "groupB")));
assertThat("Rights in access rules of main wiki mismatch", rights, hasItems(Right.VIEW, Right.LOGIN, Right.EDIT, Right.COMMENT, Right.DELETE, Right.REGISTER, Right.ADMIN, Right.PROGRAM));
assertThat("State in access rules of main wiki mismatch", states, hasItems(RuleState.ALLOW, RuleState.DENY));
assertThat("Main wiki should have 3 spaces (2 plus XWiki)", mainwiki.getSpaces().size(), equalTo(3));
TestSpace space = mainwiki.getSpace("space1");
assertThat("Main wiki should have a space named 'space1'", space, notNullValue());
assertThat("'space1' of main wiki should have description 'space 1'", space.getDescription(), equalTo("space 1"));
rules = space.getAccessRules();
assertThat("There must be 8 access rules on space 1", rules.size(), equalTo(8));
userRefs = new ArrayList<DocumentReference>();
rights = new ArrayList<Right>();
states = new ArrayList<RuleState>();
for (TestAccessRule rule : rules) {
userRefs.add(rule.getUser());
rights.add(rule.getRight());
states.add(rule.getState());
}
assertThat("Users in access rules of space 1 of main wiki mismatch", userRefs, hasItems(new DocumentReference("wiki", "XWiki", "userA"), new DocumentReference("wiki", "XWiki", "userB"), new DocumentReference("wiki", "XWiki", "groupB")));
assertThat("Rights in access rules of space 1 of main wiki mismatch", rights, hasItems(Right.VIEW, Right.EDIT, Right.COMMENT, Right.DELETE, Right.ADMIN));
assertThat("State in access rules of space 1 of main wiki mismatch", states, hasItems(RuleState.DENY));
assertThat("Space 1 of main wiki should have 2 documents", space.getDocuments().size(), equalTo(2));
TestDocument document = space.getDocument("document1");
assertThat("Space 1 of main wiki should have a document named 'document1'", document, notNullValue());
assertThat("'document1' of 'space1' of main wiki should have description 'Document 1'", document.getDescription(), equalTo("Document 1"));
rules = document.getAccessRules();
assertThat("There must be 7 access rules on document 1", rules.size(), equalTo(7));
userRefs = new ArrayList<DocumentReference>();
rights = new ArrayList<Right>();
states = new ArrayList<RuleState>();
for (TestAccessRule rule : rules) {
userRefs.add(rule.getUser());
rights.add(rule.getRight());
states.add(rule.getState());
}
assertThat("Users in access rules of document 1 of space 1 of main wiki mismatch", userRefs, hasItems(new DocumentReference("wiki", "XWiki", "userA"), new DocumentReference("wiki", "XWiki", "userB"), new DocumentReference("wiki", "XWiki", "groupA")));
assertThat("Rights in access rules of document 1 of space 1 of main wiki mismatch", rights, hasItems(Right.VIEW, Right.EDIT, Right.COMMENT, Right.DELETE));
assertThat("State in access rules of document 1 of space 1 of main wiki mismatch", states, hasItems(RuleState.ALLOW));
}
use of org.xwiki.security.authorization.Right in project xwiki-platform by xwiki.
the class TestAccessRuleFactory method getNewInstance.
@Override
TestAccessRule getNewInstance(ElementParser parser, String name, TestEntity parent, Attributes attributes) {
EntityReference userRef = parser.getResolver().resolve(attributes.getValue("name"), DefaultTestDocument.TYPE, new EntityReference(XWikiConstants.XWIKI_SPACE, EntityType.SPACE, parent.getReference().getRoot()));
Boolean allow = name.startsWith("allow");
String type = attributes.getValue("type");
String user = parser.getSerializer().serialize(userRef);
Boolean isUser = name.endsWith("User");
if (type != null) {
Right right = Right.toRight(type);
new DefaultTestAccessRule(user, userRef, right, allow, isUser, parent);
} else {
EntityType parentType = parent.getType();
if (parentType == EntityType.WIKI && ((TestWiki) parent).isMainWiki()) {
// Null here means root (or farm)
parentType = null;
}
for (Right right : Right.getEnabledRights(parentType)) {
if (right != Right.CREATOR) {
new DefaultTestAccessRule(user, userRef, right, allow, isUser, parent);
}
}
}
return null;
}
use of org.xwiki.security.authorization.Right in project xwiki-platform by xwiki.
the class DefaultAuthorizationSettlerTest method testSettleTieResolutionPolicy.
@Test
public void testSettleTieResolutionPolicy() throws Exception {
SecurityRule allowAllTestRightsUserAndAnotherGroup = getMockedSecurityRule("allowAllTestRightsUserAndAnotherGroup", Arrays.asList(userRef), Arrays.asList(anotherGroupRef), allTestRights, ALLOW);
SecurityRule denyAllTestRightsUserAndAnotherGroup = getMockedSecurityRule("denyAllTestRightsUserAndAnotherGroup", Arrays.asList(userRef), Arrays.asList(anotherGroupRef), allTestRights, DENY);
SecurityRule denyAllTestRightsAnotherUserAndGroup = getMockedSecurityRule("denyAllTestRightsAnotherUserAndGroup", Arrays.asList(anotherUserRef), Arrays.asList(groupRef), allTestRights, DENY);
Deque<SecurityRuleEntry> conflictAllowDenySameTarget = getMockedSecurityRuleEntries("conflictAllowDenySameTarget", docRef, Arrays.asList(Arrays.asList(allowAllTestRightsUserAndAnotherGroup, denyAllTestRightsUserAndAnotherGroup)));
Deque<SecurityRuleEntry> conflictDenyAllowSameTarget = getMockedSecurityRuleEntries("conflictDenyAllowSameTarget", docRef, Arrays.asList(Arrays.asList(denyAllTestRightsUserAndAnotherGroup, allowAllTestRightsUserAndAnotherGroup)));
Deque<SecurityRuleEntry> conflictAllowDenyUserGroup = getMockedSecurityRuleEntries("conflictAllowDenyUserGroup", docRef, Arrays.asList(Arrays.asList(allowAllTestRightsUserAndAnotherGroup, denyAllTestRightsAnotherUserAndGroup)));
Deque<SecurityRuleEntry> conflictDenyAllowUserGroup = getMockedSecurityRuleEntries("conflictDenyAllowUserGroup", docRef, Arrays.asList(Arrays.asList(denyAllTestRightsAnotherUserAndGroup, allowAllTestRightsUserAndAnotherGroup)));
XWikiSecurityAccess allowAccess = defaultAccess.clone();
for (Right right : allTestRights) {
allowAccess.allow(right);
}
XWikiSecurityAccess denyAccess = defaultAccess.clone();
for (Right right : allTestRights) {
denyAccess.deny(right);
}
XWikiSecurityAccess tieAccess = defaultAccess.clone();
for (Right right : allTestRights) {
tieAccess.set(right, right.getTieResolutionPolicy());
}
assertAccess("When allowed right for user is denied for same user in another rule, use tie resolution policy", userRef, docRef, tieAccess, authorizationSettler.settle(userRef, Arrays.asList(groupRef), conflictAllowDenySameTarget));
assertAccess("When denied right for user is allowed for same user in another rule, use tie resolution policy", userRef, docRef, tieAccess, authorizationSettler.settle(userRef, Arrays.asList(groupRef), conflictDenyAllowSameTarget));
assertAccess("When allowed right for group is denied for same group in another rule, use tie resolution policy", anotherUserRef, docRef, tieAccess, authorizationSettler.settle(anotherUserRef, Arrays.asList(anotherGroupRef), conflictAllowDenySameTarget));
assertAccess("When denied right for group is allowed for same group in another rule, use tie resolution policy", anotherUserRef, docRef, tieAccess, authorizationSettler.settle(anotherUserRef, Arrays.asList(anotherGroupRef), conflictDenyAllowSameTarget));
assertAccess("When allowed right for user is denied for its group in another rule, allow it.", userRef, docRef, allowAccess, authorizationSettler.settle(userRef, Arrays.asList(groupRef), conflictAllowDenyUserGroup));
assertAccess("When allowed right for group is denied for one of its user in another rule, deny it.", anotherUserRef, docRef, denyAccess, authorizationSettler.settle(anotherUserRef, Arrays.asList(anotherGroupRef), conflictAllowDenyUserGroup));
assertAccess("When denied right for group is allowed for one of its user in another rule, allow it.", userRef, docRef, allowAccess, authorizationSettler.settle(userRef, Arrays.asList(groupRef), conflictDenyAllowUserGroup));
assertAccess("When denied right for user is allowed for its group in another rule, deny it.", anotherUserRef, docRef, denyAccess, authorizationSettler.settle(anotherUserRef, Arrays.asList(anotherGroupRef), conflictDenyAllowUserGroup));
}
use of org.xwiki.security.authorization.Right in project xwiki-platform by xwiki.
the class DefaultAuthorizationSettlerTest method testSettleNewRightJustAdded.
@Test
public void testSettleNewRightJustAdded() throws Exception {
Right newRight = getNewTestRight("RightAddedLater", DENY, DENY, true);
XWikiSecurityAccess defaultNewRight = defaultAccess.clone();
defaultNewRight.allow(newRight);
assertAccess("Allow a new right just added now", userRef, docRef, defaultNewRight, authorizationSettler.settle(userRef, Arrays.asList(groupRef), getMockedSecurityRuleEntries("onlyNewRight", docRef, Arrays.asList(Arrays.asList(getMockedSecurityRule("onlyNewRight", Arrays.asList(userRef), Collections.<GroupSecurityReference>emptyList(), Arrays.asList(newRight), RuleState.ALLOW))))));
}
Aggregations