001/**
002 * Licensed to the Apache Software Foundation (ASF) under one or more
003 * contributor license agreements.  See the NOTICE file distributed with
004 * this work for additional information regarding copyright ownership.
005 * The ASF licenses this file to You under the Apache License, Version 2.0
006 * (the "License"); you may not use this file except in compliance with
007 * the License.  You may obtain a copy of the License at
008 *
009 *      http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017package org.apache.activemq.transport.https;
018
019import java.io.IOException;
020import java.net.MalformedURLException;
021import java.net.URI;
022import java.net.URISyntaxException;
023import java.util.HashMap;
024import java.util.Map;
025
026import org.apache.activemq.broker.SslContext;
027import org.apache.activemq.transport.Transport;
028import org.apache.activemq.transport.TransportServer;
029import org.apache.activemq.transport.http.HttpTransportFactory;
030import org.apache.activemq.util.IOExceptionSupport;
031import org.apache.activemq.util.IntrospectionSupport;
032import org.apache.activemq.util.URISupport;
033import org.apache.activemq.wireformat.WireFormat;
034
035/**
036 * Factory of HTTPS based transports
037 */
038public class HttpsTransportFactory extends HttpTransportFactory {
039
040    public TransportServer doBind(String brokerId, URI location) throws IOException {
041        return doBind(location);
042    }
043
044    @Override
045    public TransportServer doBind(URI location) throws IOException {
046        try {
047            Map<String, String> options = new HashMap<String, String>(URISupport.parseParameters(location));
048            HttpsTransportServer result = new HttpsTransportServer(location, this, SslContext.getCurrentSslContext());
049            Map<String, Object> httpOptions = IntrospectionSupport.extractProperties(options, "http.");
050            Map<String, Object> transportOptions = IntrospectionSupport.extractProperties(options, "transport.");
051            result.setTransportOption(transportOptions);
052            result.setHttpOptions(httpOptions);
053            return result;
054        } catch (URISyntaxException e) {
055            throw IOExceptionSupport.create(e);
056        }
057    }
058
059    @Override
060    protected Transport createTransport(URI location, WireFormat wf) throws MalformedURLException {
061        // need to remove options from uri
062        URI uri;
063        try {
064            uri = URISupport.removeQuery(location);
065        } catch (URISyntaxException e) {
066            MalformedURLException cause = new MalformedURLException("Error removing query on " + location);
067            cause.initCause(e);
068            throw cause;
069        }
070        return new HttpsClientTransport(asTextWireFormat(wf), uri);
071    }
072}