All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mule.endpoint.DynamicURIBuilder Maven / Gradle / Ivy

There is a newer version: 3.9.0
Show newest version
/*
 * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
 * The software in this package is published under the terms of the CPAL v1.0
 * license, a copy of which has been included with this distribution in the
 * LICENSE.txt file.
 */

package org.mule.endpoint;

import org.mule.api.MuleContext;
import org.mule.api.MuleEvent;
import org.mule.api.endpoint.MalformedEndpointException;
import org.mule.api.expression.ExpressionManager;
import org.mule.config.i18n.CoreMessages;

import java.io.UnsupportedEncodingException;
import java.net.URISyntaxException;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

/**
 * Builds dynamic string URI from a template {@link URIBuilder}
 */
public class DynamicURIBuilder
{

    protected transient final Log logger = LogFactory.getLog(DynamicURIBuilder.class);

    private final URIBuilder templateUriBuilder;

    public DynamicURIBuilder(URIBuilder templateUriBuilder) throws MalformedEndpointException
    {
        validateTemplate(templateUriBuilder.toString());

        this.templateUriBuilder = templateUriBuilder;
    }

    private void validateTemplate(String address) throws MalformedEndpointException
    {
        if (address.indexOf(":") > address.indexOf(ExpressionManager.DEFAULT_EXPRESSION_PREFIX))
        {
            throw new MalformedEndpointException(CoreMessages.dynamicEndpointsMustSpecifyAScheme(), address);
        }
    }

    public String build(MuleEvent event) throws URISyntaxException, UnsupportedEncodingException
    {
        String resolvedUri = resolveAddress(event);

        if (logger.isDebugEnabled())
        {
            logger.debug(String.format("Resolved URI from template '%s' to '%s'", templateUriBuilder.getEncodedConstructor(), resolvedUri.toString()));
        }

        return resolvedUri;
    }

    private String resolveAddress(MuleEvent event) throws URISyntaxException, UnsupportedEncodingException
    {
        MuleContext muleContext = templateUriBuilder.getMuleContext();
        String resolvedAddress = templateUriBuilder.getEncodedConstructor();

        if (muleContext.getExpressionManager().isExpression(resolvedAddress))
        {
            resolvedAddress = muleContext.getExpressionManager().parse(resolvedAddress, event, true);
        }

        return resolvedAddress;
    }

    public String getUriTemplate()
    {
        return templateUriBuilder.getAddress();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy