org.opencastproject.event.handler.ConductingSeriesUpdatedEventHandler Maven / Gradle / Ivy
The newest version!
/*
* Licensed to The Apereo Foundation under one or more contributor license
* agreements. See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
*
* The Apereo Foundation licenses this file to you under the Educational
* Community 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://opensource.org/licenses/ecl2.txt
*
* 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.opencastproject.event.handler;
import org.opencastproject.message.broker.api.series.SeriesItem;
import org.opencastproject.message.broker.api.update.SeriesUpdateHandler;
import org.osgi.service.component.ComponentContext;
import org.osgi.service.component.annotations.Activate;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Deactivate;
import org.osgi.service.component.annotations.Reference;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Very simple approach to serialize the work of all three dependend update handlers. Todo: Merge all handlers into one
* to avoid unnecessary distribution updates etc.
*/
@Component(
immediate = true,
service = {
SeriesUpdateHandler.class
},
property = {
"service.description=Conducting event handler for series events"
}
)
public class ConductingSeriesUpdatedEventHandler implements SeriesUpdateHandler {
private static final Logger logger = LoggerFactory.getLogger(ConductingSeriesUpdatedEventHandler.class);
private AssetManagerUpdatedEventHandler assetManagerUpdatedEventHandler;
private SearchUpdatedEventHandler searchUpdatedEventHandler;
@Activate
public void activate(ComponentContext cc) {
logger.info("Activating {}", ConductingSeriesUpdatedEventHandler.class.getName());
}
@Deactivate
public void deactivate(ComponentContext cc) {
logger.info("Deactivating {}", ConductingSeriesUpdatedEventHandler.class.getName());
}
@Override
public void execute(SeriesItem seriesItem) {
if (SeriesItem.Type.UpdateElement.equals(seriesItem.getType())) {
assetManagerUpdatedEventHandler.handleEvent(seriesItem);
} else if (SeriesItem.Type.UpdateCatalog.equals(seriesItem.getType())
|| SeriesItem.Type.UpdateAcl.equals(seriesItem.getType())
|| SeriesItem.Type.Delete.equals(seriesItem.getType())) {
searchUpdatedEventHandler.handleEvent(seriesItem);
assetManagerUpdatedEventHandler.handleEvent(seriesItem);
}
}
/** OSGi DI callback. */
@Reference
public void setAssetManagerUpdatedEventHandler(AssetManagerUpdatedEventHandler h) {
this.assetManagerUpdatedEventHandler = h;
}
/** OSGi DI callback. */
@Reference
public void setSearchUpdatedEventHandler(SearchUpdatedEventHandler h) {
this.searchUpdatedEventHandler = h;
}
}