org.apache.camel.component.restlet.RestletProducer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-restlet Show documentation
Show all versions of camel-restlet Show documentation
Camel REST (Restlet baesd) Component
/**
* 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 org.apache.camel.component.restlet;
import java.util.HashMap;
import java.util.Map;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.apache.camel.CamelExchangeException;
import org.apache.camel.Exchange;
import org.apache.camel.impl.DefaultProducer;
import org.restlet.Client;
import org.restlet.Context;
import org.restlet.Request;
import org.restlet.Response;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* A Camel producer that acts as a client to Restlet server.
*
* @version
*/
public class RestletProducer extends DefaultProducer {
private static final Logger LOG = LoggerFactory.getLogger(RestletProducer.class);
private static final Pattern PATTERN = Pattern.compile("\\{([\\w\\.]*)\\}");
private Client client;
private boolean throwException;
public RestletProducer(RestletEndpoint endpoint) throws Exception {
super(endpoint);
this.throwException = endpoint.isThrowExceptionOnFailure();
client = new Client(endpoint.getProtocol());
client.setContext(new Context());
}
@Override
public void doStart() throws Exception {
super.doStart();
client.start();
}
@Override
public void doStop() throws Exception {
client.stop();
super.doStop();
}
public void process(Exchange exchange) throws Exception {
RestletEndpoint endpoint = (RestletEndpoint) getEndpoint();
String resourceUri = buildUri(endpoint, exchange);
Request request = new Request(endpoint.getRestletMethod(), resourceUri);
RestletBinding binding = endpoint.getRestletBinding();
binding.populateRestletRequestFromExchange(request, exchange);
if (LOG.isDebugEnabled()) {
LOG.debug("Client sends a request (method: " + request.getMethod() + ", uri: " + resourceUri + ")");
}
Response response = client.handle(request);
if (throwException) {
if (response != null) {
Integer respCode = response.getStatus().getCode();
if (respCode > 207) {
throw populateRestletProducerException(exchange, response, respCode);
}
}
}
binding.populateExchangeFromRestletResponse(exchange, response);
}
private static String buildUri(RestletEndpoint endpoint, Exchange exchange) throws CamelExchangeException {
String uri = endpoint.getProtocol() + "://" + endpoint.getHost() + ":" + endpoint.getPort() + endpoint.getUriPattern();
// substitute { } placeholders in uri and use mandatory headers
if (LOG.isTraceEnabled()) {
LOG.trace("Substituting { } placeholders in uri: " + uri);
}
Matcher matcher = PATTERN.matcher(uri);
while (matcher.find()) {
String key = matcher.group(1);
String header = exchange.getIn().getHeader(key, String.class);
// header should be mandatory
if (header == null) {
throw new CamelExchangeException("Header with key: " + key + " not found in Exchange", exchange);
}
if (LOG.isTraceEnabled()) {
LOG.trace("Replacing: " + matcher.group(0) + " with header value: " + header);
}
uri = matcher.replaceFirst(header);
// we replaced uri so reset and go again
matcher.reset(uri);
}
String query = exchange.getIn().getHeader(Exchange.HTTP_QUERY, String.class);
if (query != null) {
if (LOG.isTraceEnabled()) {
LOG.trace("Adding query: " + query + " to uri: " + uri);
}
uri = addQueryToUri(uri, query);
}
if (LOG.isDebugEnabled()) {
LOG.debug("Using uri: " + uri);
}
return uri;
}
protected static String addQueryToUri(String uri, String query) {
if (uri == null || uri.length() == 0) {
return uri;
}
StringBuffer answer = new StringBuffer();
int index = uri.indexOf('?');
if (index < 0) {
answer.append(uri);
answer.append("?");
answer.append(query);
} else {
answer.append(uri.substring(0, index));
answer.append("?");
answer.append(query);
String remaining = uri.substring(index + 1);
if (remaining.length() > 0) {
answer.append("&");
answer.append(remaining);
}
}
return answer.toString();
}
protected RestletOperationException populateRestletProducerException(Exchange exchange, Response response, int responseCode) {
RestletOperationException exception;
String uri = exchange.getFromEndpoint().getEndpointUri();
String statusText = response.getStatus().getDescription();
Map headers = parseResponseHeaders(response, exchange);
String copy = response.toString();
if (responseCode >= 300 && responseCode < 400) {
String redirectLocation;
if (response.getStatus().isRedirection()) {
redirectLocation = response.getLocationRef().getHostIdentifier();
exception = new RestletOperationException(uri, responseCode, statusText, redirectLocation, headers, copy);
} else {
//no redirect location
exception = new RestletOperationException(uri, responseCode, statusText, null, headers, copy);
}
} else {
//internal server error(error code 500)
exception = new RestletOperationException(uri, responseCode, statusText, null, headers, copy);
}
return exception;
}
protected Map parseResponseHeaders(Object response, Exchange camelExchange) {
Map answer = new HashMap();
if (response instanceof Response) {
for (Map.Entry entry : ((Response) response).getAttributes().entrySet()) {
if (LOG.isTraceEnabled()) {
LOG.trace("Parse external header " + entry.getKey() + "=" + entry.getValue());
}
answer.put(entry.getKey(), entry.getValue().toString());
}
}
return answer;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy