FixityRouter.java
/**
* Copyright 2015 DuraSpace, Inc.
*
* 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 org.fcrepo.camel.fixity;
import static org.slf4j.LoggerFactory.getLogger;
import org.apache.camel.LoggingLevel;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.builder.xml.Namespaces;
import org.fcrepo.camel.RdfNamespaces;
import org.slf4j.Logger;
/**
* A content router for checking fixity of Binary resources.
*
* @author Aaron Coburn
* @since 2015-06-18
*/
public class FixityRouter extends RouteBuilder {
private static final Logger LOGGER = getLogger(FixityRouter.class);
/**
* Configure the message route workflow.
*/
public void configure() throws Exception {
final Namespaces ns = new Namespaces("rdf", RdfNamespaces.RDF);
ns.add("fedora", RdfNamespaces.REPOSITORY);
/**
* A generic error handler (specific to this RouteBuilder)
*/
onException(Exception.class)
.maximumRedeliveries("{{error.maxRedeliveries}}")
.log("Index Routing Error: ${routeId}");
/**
* Handle fixity events
*/
from("{{fixity.stream}}")
.routeId("FcrepoFixity")
.to("fcrepo:{{fcrepo.baseUrl}}?preferInclude=ServerManged")
.filter().xpath(
"/rdf:RDF/rdf:Description/rdf:type" +
"[@rdf:resource='" + RdfNamespaces.REPOSITORY + "Binary']", ns)
.log(LoggingLevel.INFO, LOGGER,
"Checking Fixity for ${headers[CamelFcrepoIdentifier]}")
.delay(simple("{{fixity.delay}}"))
.to("fcrepo:{{fcrepo.baseUrl}}?fixity=true")
.choice()
.when().xpath(
"/rdf:RDF/rdf:Description/fedora:status" +
"[text()='SUCCESS']", ns)
.to("{{fixity.success}}")
.otherwise()
.log(LoggingLevel.WARN, LOGGER,
"Fixity error on ${headers[CamelFcrepoIdentifier]}")
.to("{{fixity.failure}}");
}
}