/* * 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 ro.nextreports.server.schedule; import java.util.Iterator; import org.quartz.JobExecutionContext; import org.quartz.JobExecutionException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Required; import org.springframework.scheduling.quartz.QuartzJobBean; import org.springframework.security.authentication.ProviderManager; import ro.nextreports.server.domain.SynchronizerSettings; import ro.nextreports.server.security.ExternalAuthenticationProvider; import ro.nextreports.server.service.StorageService; /** * @author Decebal Suiu */ public class UserSynchronizerJob extends QuartzJobBean { private static final Logger LOG = LoggerFactory.getLogger(UserSynchronizerJob.class); private ProviderManager authenticationManager; private StorageService storageService; @Required public void setAuthenticationManager(ProviderManager authenticationManager) { this.authenticationManager = authenticationManager; } public void setStorageService(StorageService storageService) { this.storageService = storageService; } public void syncUsers() { if (LOG.isDebugEnabled()) { LOG.debug("Synchronize users"); } Iterator<?> providers = authenticationManager.getProviders().iterator(); while (providers.hasNext()) { try { ExternalAuthenticationProvider provider = (ExternalAuthenticationProvider) providers.next(); SynchronizerSettings settings = storageService.getSettings().getSynchronizer(); provider.syncUsers(settings.isCreateUsers(), settings.isDeleteUsers()); } catch (ClassCastException e) { // ignore } } } @Override protected void executeInternal(JobExecutionContext context) throws JobExecutionException { syncUsers(); } }