blob: 51c767652a1637cd8d545de161e76282c1efd423 [file] [log] [blame]
/*
* 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.k.http;
import java.util.Map;
import org.apache.camel.CamelContext;
import org.apache.camel.Endpoint;
import org.apache.camel.Ordered;
import org.apache.camel.component.platform.http.PlatformHttpComponent;
import org.apache.camel.component.platform.http.PlatformHttpConstants;
import org.apache.camel.k.ContextCustomizer;
import org.apache.camel.k.http.engine.RuntimePlatformHttpEngine;
public class PlatformHttpServiceContextCustomizer extends PlatformHttpServiceConfiguration implements ContextCustomizer {
private PlatformHttpServiceEndpoint endpoint;
public PlatformHttpServiceContextCustomizer() {
}
@Override
public int getOrder() {
return Ordered.HIGHEST;
}
@Override
public void apply(CamelContext camelContext) {
endpoint = new PlatformHttpServiceEndpoint(camelContext, this);
//endpoint.init();
try {
camelContext.addService(endpoint);
} catch (Exception e) {
throw new RuntimeException(e);
}
camelContext.addComponent(PlatformHttpConstants.PLATFORM_HTTP_COMPONENT_NAME, new PlatformHttpComponentWrapper());
}
public static final class PlatformHttpComponentWrapper extends PlatformHttpComponent {
public PlatformHttpComponentWrapper() {
setEngine(new RuntimePlatformHttpEngine());
}
@Override
protected Endpoint createEndpoint(String uri, String remaining, Map<String, Object> parameters) throws Exception {
// the PlatformHttpComponent set this value but it is not handled which cause the
// context to fail as the property cannot be bound to the enpoint.
//
// TODO: fix upstream
parameters.remove("optionsEnabled");
// let the original component to create the endpoint
return super.createEndpoint(uri, remaining, parameters);
}
}
}