blob: fa0914d0986b3cd0653d5f0bc897216aecc9907a [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.distribution.trigger.impl;
import java.util.Map;
import org.apache.felix.scr.annotations.Activate;
import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.ConfigurationPolicy;
import org.apache.felix.scr.annotations.Deactivate;
import org.apache.felix.scr.annotations.Property;
import org.apache.felix.scr.annotations.Reference;
import org.apache.felix.scr.annotations.Service;
import org.apache.sling.api.resource.ResourceResolverFactory;
import org.apache.sling.commons.osgi.PropertiesUtil;
import org.apache.sling.commons.scheduler.Scheduler;
import org.apache.sling.distribution.common.DistributionException;
import org.apache.sling.distribution.component.impl.DistributionComponentConstants;
import org.apache.sling.distribution.component.impl.SettingsUtils;
import org.apache.sling.distribution.trigger.DistributionRequestHandler;
import org.apache.sling.distribution.trigger.DistributionTrigger;
import org.apache.sling.jcr.api.SlingRepository;
import org.jetbrains.annotations.NotNull;
@Component(metatype = true,
label = "Apache Sling Distribution Trigger - Jcr Event Triggers Factory",
configurationFactory = true,
specVersion = "1.1",
policy = ConfigurationPolicy.REQUIRE,
description = "Triggers a distribution request ('ADD', 'DELETE') " +
"for the given path (path) whenever the JCR node at the given path is modified (added, resp. removed)."
)
@Service(DistributionTrigger.class)
@Property(name="webconsole.configurationFactory.nameHint", value="Trigger name: {name} on path {path}")
public class JcrEventDistributionTriggerFactory implements DistributionTrigger {
@Property(label = "Name", description = "The name of the trigger.")
public static final String NAME = DistributionComponentConstants.PN_NAME;
/**
* jcr event trigger path property
*/
@Property(label = "Path", description = "The path for which changes are distributed.")
private static final String PATH = "path";
/**
* jcr event trigger path property
*/
@Property(cardinality = 100, label = "Ignored Paths Patterns", description = "The paths matching one of these patterns will be ignored.")
private static final String IGNORED_PATHS_PATTERNS = "ignoredPathsPatterns";
/**
* jcr event trigger service user property
*/
@Property(label = "Service Name", description = "The service used to listen for jcr events")
private static final String SERVICE_NAME = "serviceName";
/**
* use deep distribution
*/
@Property(label = "Use deep distribution", description = "Distribute entire subtree of the event node path. Default is 'false'.", boolValue = false)
private static final String DEEP = "deep";
private JcrEventDistributionTrigger trigger;
@Reference
private SlingRepository repository;
@Reference
private Scheduler scheduler;
@Reference
private ResourceResolverFactory resolverFactory;
@Activate
public void activate(Map<String, Object> config) {
String path = PropertiesUtil.toString(config.get(PATH), null);
String serviceName = SettingsUtils.removeEmptyEntry(PropertiesUtil.toString(config.get(SERVICE_NAME), null));
String[] ignoredPathsPatterns = PropertiesUtil.toStringArray(config.get(IGNORED_PATHS_PATTERNS), null);
ignoredPathsPatterns = SettingsUtils.removeEmptyEntries(ignoredPathsPatterns);
boolean deep = PropertiesUtil.toBoolean(config.get(DEEP), false);
trigger = new JcrEventDistributionTrigger(repository, scheduler, resolverFactory, path, deep, serviceName, ignoredPathsPatterns);
trigger.enable();
}
@Deactivate
public void deactivate() {
trigger.disable();
}
public void register(@NotNull DistributionRequestHandler requestHandler) throws DistributionException {
trigger.register(requestHandler);
}
public void unregister(@NotNull DistributionRequestHandler requestHandler) throws DistributionException {
trigger.unregister(requestHandler);
}
}