blob: 8440df7078e1574b10fbf12537a2c95f0892927b [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.installer.factory.model.impl;
import org.apache.sling.feature.Extension;
import org.apache.sling.feature.ExtensionType;
import org.apache.sling.feature.Feature;
import org.apache.sling.feature.spi.context.ExtensionHandler;
import org.apache.sling.feature.spi.context.ExtensionHandlerContext;
import org.osgi.framework.Constants;
import org.osgi.service.component.annotations.Component;
import java.util.Dictionary;
import java.util.Hashtable;
@Component
public class RepoinitExtensionHandler implements ExtensionHandler {
private static final String REPOINIT_FACTORY_PID = "org.apache.sling.jcr.repoinit.RepositoryInitializer~";
@Override
public boolean handle(ExtensionHandlerContext context, Extension extension, Feature feature) throws Exception {
if (!extension.getName().equals(Extension.EXTENSION_NAME_REPOINIT) ||
extension.getType() != ExtensionType.TEXT) {
return false;
}
final String configPid = REPOINIT_FACTORY_PID.concat(feature.getId().toMvnName().replace('-', '_'));
final Dictionary<String, Object> props = new Hashtable<>();
props.put("scripts", extension.getText());
props.put(Constants.SERVICE_RANKING, 200);
context.addConfiguration(null, configPid, props);
return true;
}
}