blob: 3785a2c2b5d079bc7595ac6946fbdd90f1929fe3 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with this
* work for additional information regarding copyright ownership. The ASF
* licenses this file to You 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.
*/
package org.apache.sling.feature.cpconverter.handlers;
import org.apache.jackrabbit.vault.util.PlatformNameFormat;
import org.jetbrains.annotations.NotNull;
import org.xml.sax.Attributes;
import org.apache.jackrabbit.vault.fs.io.Archive;
import org.apache.jackrabbit.vault.fs.io.Archive.Entry;
import org.apache.sling.feature.cpconverter.ContentPackage2FeatureModelConverter;
import org.apache.sling.feature.cpconverter.accesscontrol.SystemUser;
import org.apache.sling.feature.cpconverter.shared.AbstractJcrNodeParser;
import org.apache.sling.feature.cpconverter.shared.RepoPath;
import java.io.InputStream;
import java.util.regex.Matcher;
public final class SystemUsersEntryHandler extends AbstractRegexEntryHandler {
public SystemUsersEntryHandler() {
super("/jcr_root(/home/users/.*/)\\.content.xml");
}
@Override
public void handle(@NotNull String path, @NotNull Archive archive, @NotNull Entry entry, @NotNull ContentPackage2FeatureModelConverter converter)
throws Exception {
Matcher matcher = getPattern().matcher(path);
if (matcher.matches()) {
path = matcher.group(1);
}
RepoPath originalPath = new RepoPath(PlatformNameFormat.getRepositoryPath(path));
RepoPath intermediatePath = originalPath.getParent();
SystemUserParser systemUserParser = new SystemUserParser(converter, originalPath, intermediatePath);
try (InputStream input = archive.openInputStream(entry)) {
systemUserParser.parse(input);
}
}
private static final class SystemUserParser extends AbstractJcrNodeParser<Void> {
private final static String REP_SYSTEM_USER = "rep:SystemUser";
private final static String REP_AUTHORIZABLE_ID = "rep:authorizableId";
private final ContentPackage2FeatureModelConverter converter;
private final RepoPath path;
private final RepoPath intermediatePath;
/**
* @param converter - the converter to use.
* @param path - the original repository path of the user in the content-package.
* @param intermediatePath - the intermediate path the user should have - most likely the (direct) parent of the path.
*/
public SystemUserParser(@NotNull ContentPackage2FeatureModelConverter converter, @NotNull RepoPath path, @NotNull RepoPath intermediatePath) {
super(REP_SYSTEM_USER);
this.converter = converter;
this.path = path;
this.intermediatePath = intermediatePath;
}
@Override
protected void onJcrRootElement(String uri, String localName, String qName, Attributes attributes) {
String authorizableId = attributes.getValue(REP_AUTHORIZABLE_ID);
if (authorizableId != null && !authorizableId.isEmpty()) {
converter.getAclManager().addSystemUser(new SystemUser(authorizableId, path, intermediatePath));
}
}
@Override
protected Void getParsingResult() {
return null;
}
}
}