com.adobe.acs.commons.twitter.impl.TwitterFeedScheduler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of acs-aem-commons-bundle Show documentation
Show all versions of acs-aem-commons-bundle Show documentation
Main ACS AEM Commons OSGi Bundle. Includes commons utilities.
/*
* ACS AEM Commons
*
* Copyright (C) 2013 - 2023 Adobe
*
* 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.
*/
package com.adobe.acs.commons.twitter.impl;
import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.ConfigurationPolicy;
import org.apache.felix.scr.annotations.Properties;
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.ResourceResolver;
import org.apache.sling.api.resource.ResourceResolverFactory;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.adobe.acs.commons.util.ClusterLeader;
import java.util.Collections;
import java.util.Map;
@Component(immediate = true, metatype = true,
label = "ACS AEM Commons - Twitter Feed Refresh Scheduler",
description = "Schedule job which refreshes Twitter Feed components on a recurring basis",
policy = ConfigurationPolicy.REQUIRE)
@Service
@Properties(value = {
@Property(name = "scheduler.expression", value = "0 0/15 * * * ?", label = "Refresh Interval",
description = "Twitter Feed Refresh interval (Quartz Cron Expression)"),
@Property(name = "scheduler.concurrent", boolValue = false, propertyPrivate = true) })
public final class TwitterFeedScheduler implements Runnable {
private static final Logger log = LoggerFactory.getLogger(TwitterFeedScheduler.class);
private static final String SERVICE_NAME = "twitter-updater";
private static final Map AUTH_INFO;
static {
AUTH_INFO = Collections.singletonMap(ResourceResolverFactory.SUBSERVICE, (Object) SERVICE_NAME);
}
@Reference
private ResourceResolverFactory resourceResolverFactory;
@Reference
private TwitterFeedUpdater twitterFeedService;
/**
* This service only becomes active if this instance is the cluster leader
*/
@Reference
private ClusterLeader clusterLeader;
@Override
public void run() {
try (ResourceResolver resourceResolver = resourceResolverFactory.getServiceResourceResolver(AUTH_INFO) ){
log.debug("Master Instance, Running ACS AEM Commons Twitter Feed Scheduler");
twitterFeedService.updateTwitterFeedComponents(resourceResolver);
} catch (Exception e) {
log.error(
"Exception while running TwitterFeedScheduler.", e);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy