Giter VIP home page Giter VIP logo

Comments (4)

kevinsawicki avatar kevinsawicki commented on May 22, 2024

I think you might want to try using a custom connection factory.

That way you could perform the address checks there and return a connection opened to the right URL.

from http-request.

braghome avatar braghome commented on May 22, 2024

I tried this

class DevBaseUrlResolve implements BaseUrl, ConnectionFactory {
    private static final Logger LOGGER = LoggerFactory.getLogger(DevBaseUrlResolve.class);
    @Resource private Functions functions;

    /**
     * {@inheritDoc}
     */
    @Override
    public String resovleBaseUrl() {
        final AbstractPatterns patterns = EnvMyCompany.identity(AbstractPatterns.class, "patterns");
        InetAddress address = null;
        if (patterns.isValidPattern(EnvMyCompany.baseUrl(), "((ht|f)tp(s?))\\://(?:\\d{1,3}\\.){3}\\d{1,3}")) {
            try {
                address = InetAddress.getByAddress("http://auth.api.dev.mycompany.com", functions.parseNumberIpAddress(EnvMyCompany.baseUrl(), "\\."));
            } catch (UnknownHostException e) {
                LOGGER.error(LogMessages.READOBJECT.toString(), e.getMessage());
            }
        }
        return address == null ? EnvMyCompany.baseUrl() : address.getHostName();
    }

    @Override
    public HttpURLConnection create(final URL url) throws IOException {
        return handleApiDev(url);
    }

    private HttpURLConnection handleApiDev(final URL url) throws MalformedURLException,
            APIException, IOException {
        URL dev = new URL("http://169.34.0.39");
        if (url.equals(dev)) {
            dev = new URL(resovleBaseUrl());
        } else {
            throw new APIException("Base url for DEV is incorrect");
        }

        return (HttpURLConnection) dev.openConnection();
    }

    @Override
    public HttpURLConnection create(final URL url, final Proxy proxy) throws IOException {
        return handleApiDev(url);
    }
}

I get to wire this here

     /**
     * {@inheritDoc}
     */
    @Override
    public HttpRequest postFormRequest(final String payload, final String completeUrl,
            final String token) {
        HttpRequest request = null;
        try {
            final URL wsaAuth = new URL(completeUrl);
            request = HttpRequest.post(wsaAuth)
                            .contentType(HttpRequest.CONTENT_TYPE_FORM)
                            .header(HeaderConst.AGENT_KEY.toString(), HeaderConst.AGENT_VAL.toString())
                            .acceptGzipEncoding()
                            .uncompress(true)
                            .authorization(token)
                            .acceptJson();
        } catch (HttpRequestException e) {
            LOGGER.error(Purchase.FAILEDREQUESTMESSAGE.toString(), e.getMessage());
        } catch (MalformedURLException e) {
            LOGGER.error(Purchase.BADURLMESSAGE.toString(), e.getMessage());
        }
        request.setConnectionFactory(new DevBaseUrlResolve());
        return request.send(payload);
    }

however the problem is this, and which is driving me crazy
when I check charles proxy

POST http://169.34.0.39/oauth2/token HTTP/1.1
User-Agent: Java/6_apicore_test13
Content-Type: application/x-www-form-urlencoded
Accept: application/json
Authorization: Basic someYwMbase64valueQ=
Host: 169.34.0.39
Proxy-Connection: keep-alive
Content-Length: 79

I need to see the header Host: http://auth.api.dev.mycompany.com instead of the incorrect value Host: 169.34.0.39

from http-request.

braghome avatar braghome commented on May 22, 2024

Actually I just need to see the Host: 169.34.0.39 change to Host: http://auth.api.dev.mycompany.com and every can be the same

from http-request.

kevinsawicki avatar kevinsawicki commented on May 22, 2024

So did you figure this out or are you still having issues getting it to work how you need it?

from http-request.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.