/*
* Licensed to DuraSpace under one or more contributor license agreements.
* See the NOTICE file distributed with this work for additional information
* regarding copyright ownership.
*
* DuraSpace 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.fcrepo.jms;
import static java.lang.String.join;
import static java.util.stream.Collectors.joining;
import static org.fcrepo.kernel.api.observer.OptionalValues.BASE_URL;
import static org.fcrepo.kernel.api.observer.OptionalValues.USER_AGENT;
import static org.slf4j.LoggerFactory.getLogger;
import java.util.Set;
import javax.jms.JMSException;
import javax.jms.Message;
import javax.jms.Session;
import org.fcrepo.kernel.api.observer.EventType;
import org.fcrepo.kernel.api.observer.FedoraEvent;
import org.fcrepo.event.serialization.EventSerializer;
import org.fcrepo.event.serialization.JsonLDSerializer;
import org.slf4j.Logger;
/**
* Generates JMS {@link Message}s composed entirely of headers, based entirely
* on information found in the {@link FedoraEvent} that triggers publication.
*
* @author ajs6f
* @author escowles
* @since Dec 2, 2013
*/
public class DefaultMessageFactory implements JMSEventMessageFactory {
public static final String JMS_NAMESPACE = "org.fcrepo.jms.";
public static final String TIMESTAMP_HEADER_NAME = JMS_NAMESPACE
+ "timestamp";
public static final String IDENTIFIER_HEADER_NAME = JMS_NAMESPACE
+ "identifier";
public static final String EVENT_TYPE_HEADER_NAME = JMS_NAMESPACE
+ "eventType";
public static final String BASE_URL_HEADER_NAME = JMS_NAMESPACE
+ "baseURL";
public static final String RESOURCE_TYPE_HEADER_NAME = JMS_NAMESPACE + "resourceType";
public static final String USER_HEADER_NAME = JMS_NAMESPACE + "user";
public static final String USER_AGENT_HEADER_NAME = JMS_NAMESPACE + "userAgent";
public static final String EVENT_ID_HEADER_NAME = JMS_NAMESPACE + "eventID";
@Override
public Message getMessage(final FedoraEvent event, final Session jmsSession)
throws JMSException {
final EventSerializer serializer = new JsonLDSerializer();
final String body = serializer.serialize(event);
final Message message = jmsSession.createTextMessage(body);
message.setLongProperty(TIMESTAMP_HEADER_NAME, event.getDate().toEpochMilli());
if (event.getInfo().containsKey(BASE_URL)) {
message.setStringProperty(BASE_URL_HEADER_NAME, event.getInfo().get(BASE_URL));
} else {
LOGGER.warn("Could not extract baseUrl from FedoraEvent!");
}
if (event.getInfo().containsKey(USER_AGENT)) {
message.setStringProperty(USER_AGENT_HEADER_NAME, event.getInfo().get(USER_AGENT));
}
message.setStringProperty(IDENTIFIER_HEADER_NAME, event.getPath());
message.setStringProperty(EVENT_TYPE_HEADER_NAME, getEventURIs(event.getTypes()));
message.setStringProperty(USER_HEADER_NAME, event.getUserID());
message.setStringProperty(RESOURCE_TYPE_HEADER_NAME, join(",", event.getResourceTypes()));
message.setStringProperty(EVENT_ID_HEADER_NAME, event.getEventID());
LOGGER.trace("getMessage() returning: {}", message);
return message;
}
private static String getEventURIs(final Set<EventType> types) {
final String uris = types.stream()
.map(EventType::getType)
.collect(joining(","));
LOGGER.debug("Constructed event type URIs: {}", uris);
return uris;
}
private static final Logger LOGGER = getLogger(DefaultMessageFactory.class);
}