Giter Club home page Giter Club logo

Comments (4)

NickCarneiro avatar NickCarneiro commented on May 21, 2024

The original use cases were pretty narrow, but it would be great to make it work for more.

Go ahead and send a pull request that includes a test case in test/test.js.

from curlconverter.

rodw avatar rodw commented on May 21, 2024

Actually, it seems like the headers do work, but for some reason you must have at least two of them.

That is, this:

curl http://example.com/ -H 'foo: bar' 

fails with an "Error parsing curl command." message, but this:

curl http://example.com/ -H 'foo: bar'  -H 'foo2: bar2'

works properly.

@aravindkk this may be a work around for you at least. Also I imagine this isn't too hard to track down in the code, seems like a silly little bug that's easily fixed.

from curlconverter.

rodw avatar rodw commented on May 21, 2024

Actually, here's a fix for this issue.

In util.js the code assumes that parsedArguments.H is an array, which is true when there is more than one -H value passed on the curl command line, but not when there is exactly one.

One easy way to address that is just to wrap the value of parsedArguments.H in an array if it isn't already an array, adding these three lines:

--- a/util.js
+++ b/util.js
@@ -22,6 +22,9 @@ var parseCurlCommand = function(curlCommand) {
     var headers;
     if (parsedArguments.H) {
         headers = {};
+        if (!Array.isArray(parsedArguments.H)) {
+          parsedArguments.H = [parsedArguments.H];
+        }
         parsedArguments.H.forEach(function (header) {
             if (header.indexOf('Cookie') !== -1) {
                 cookieString = header;

If you are uncomfortable modifying the content of parsedArguments (since it comes from minimist originally) you could obviously introduce a new variable to iterate over.

If I get around to it I can probably create a proper pull request for this, but it's pretty much a one line fix.

from curlconverter.

NickCarneiro avatar NickCarneiro commented on May 21, 2024

@rodw, thanks for digging into that. I've implemented your fix in 0.0.19. I'll publish to the website shortly.

from curlconverter.

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.