com.cognifide.cq.cqsm.foundation.actions.clearfromgroups.ClearFromGroupDetacher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apm-bundle Show documentation
Show all versions of apm-bundle Show documentation
AEM Permission Management is an AEM based tool focused on streamlining the permission configuration
/*-
* ========================LICENSE_START=================================
* AEM Permission Management
* %%
* Copyright (C) 2013 Cognifide Limited
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* =========================LICENSE_END==================================
*/
package com.cognifide.cq.cqsm.foundation.actions.clearfromgroups;
import com.cognifide.cq.cqsm.api.actions.ActionResult;
import com.cognifide.cq.cqsm.api.exceptions.ActionExecutionException;
import com.cognifide.cq.cqsm.api.executors.Context;
import com.cognifide.cq.cqsm.core.utils.MessagingUtils;
import org.apache.jackrabbit.api.security.user.Authorizable;
import org.apache.jackrabbit.api.security.user.Group;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.Iterator;
import javax.jcr.RepositoryException;
public class ClearFromGroupDetacher {
static final Logger LOGGER = LoggerFactory.getLogger(ClearFromGroupDetacher.class);
private final Context context;
private final boolean simulate;
public ClearFromGroupDetacher(Context context, boolean simulate) {
this.context = context;
this.simulate = simulate;
}
public ActionResult detachMembersFromGroup() {
ActionResult actionResult = new ActionResult();
try {
Authorizable authorizable = context.getCurrentAuthorizable();
if (authorizable.isGroup()) {
final Group group = context.getCurrentGroup();
LOGGER.info(String.format("Removing all members of group with id = %s", group.getID()));
Iterator groupMembers = getGroupMembers(actionResult, group);
detachAllMembers(actionResult, group, groupMembers);
} else {
actionResult.logError("Child members can only be removed from groups");
}
} catch (RepositoryException | ActionExecutionException e) {
actionResult.logError(MessagingUtils.createMessage(e));
}
return actionResult;
}
public ActionResult detachAuthorizableFromParents() {
ActionResult actionResult = new ActionResult();
try {
Authorizable currentAuthorizable = context.getCurrentAuthorizable();
Iterator groups = getGroupParents(actionResult, currentAuthorizable);
LOGGER.info(String.format("Removing all memberships of authorizable with id = %s",
currentAuthorizable.getID()));
detachFromParents(actionResult, currentAuthorizable, groups);
} catch (RepositoryException | ActionExecutionException e) {
actionResult.logError(MessagingUtils.createMessage(e));
}
return actionResult;
}
private void detachFromParents(final ActionResult actionResult, final Authorizable authorizable,
Iterator groups) throws RepositoryException {
while (groups.hasNext()) {
Group currentGroup = groups.next();
if (currentGroup.isGroup()) {
if (!simulate) {
currentGroup.removeMember(authorizable);
}
actionResult.logMessage(
MessagingUtils.removedFromGroup(authorizable.getID(), currentGroup.getID()));
}
}
}
private Iterator getGroupParents(final ActionResult actionResult, final Authorizable authorizable)
throws RepositoryException {
String id = authorizable.getID();
actionResult.setAuthorizable(id);
Iterator groups = authorizable.memberOf();
if (!groups.hasNext()) {
actionResult.logWarning(MessagingUtils.groupIsMemberOfNoGroups(id));
}
return groups;
}
private void detachAllMembers(final ActionResult actionResult, final Group group,
Iterator groupMembers) throws RepositoryException {
while (groupMembers.hasNext()) {
Authorizable currentMember = groupMembers.next();
if (currentMember.isGroup()) {
if (!simulate) {
group.removeMember(currentMember);
}
actionResult
.logMessage(MessagingUtils.removedFromGroup(currentMember.getID(), group.getID()));
}
}
}
private Iterator getGroupMembers(final ActionResult actionResult, final Group group)
throws RepositoryException {
String id = group.getID();
actionResult.setAuthorizable(id);
Iterator groupMembers = group.getDeclaredMembers();
if (!groupMembers.hasNext()) {
actionResult.logWarning(MessagingUtils.groupHasNoMembers(id));
}
return groupMembers;
}
}