newLISP Fan Club

Forum => newLISP Graphics & Sound => Topic started by: jazper on April 03, 2012, 12:33:15 PM

Title: post-url in place of curl with couchdb?
Post by: jazper on April 03, 2012, 12:33:15 PM
Hello:

I'm trying to figure out how to write to couchdb using REST:  command line syntax for creating a database is:


curl -X PUT http://127.0.0.1:5984/mydatabase

With newLISP, will post-url achieve the same thing?  I have tried, but there's no response, and the database does not show up in Futon.  Can someone help, please?



regards
Title: Re: post-url in place of curl with couchdb?
Post by: Ryon on April 03, 2012, 02:05:01 PM
Use the sleep function in the repository.
Title: Re: post-url in place of curl with couchdb?
Post by: jazper on April 04, 2012, 12:46:32 PM
(sleep) hasn't helped yet.  I tried this (attempting to create "mydatabase") with couchdb server running:


(set 'the-db {http://admin:password@localhost:5984/mydatabase})
(post-url the-db {} {8000})
(sleep 8000)
(exit)


the response to the above was:
Quote"ERR: DNS resolution failed"


If the admin:password bit is left out, the response is the same.
Title: Re: post-url in place of curl with couchdb?
Post by: Lutz on April 04, 2012, 01:45:55 PM
It's probably the format for passing parameters. Try this:


(post-url "http://localhost:5984/mydatabase"
"user=admin&password=password"
"application/x-www-form-urlencoded" 8000)


It's the second string passing variables, where you need the correct variable names. Perhaps the curl utility can help you to find out the correct format.



And of course the correct format in the last string is important too.



Could also be that 'localhost" isn't known by your machine, try "127.0.0.1" instead.
Title: Re: post-url in place of curl with couchdb?
Post by: Ryon on April 04, 2012, 02:45:36 PM
Quote from: "jazper"
(sleep) hasn't helped yet.  ...


I misunderstood. I thought you were trying to curl up on your futon couch for some REST this April.
Title: Re: post-url in place of curl with couchdb?
Post by: jazper on April 05, 2012, 01:57:57 PM
Thanks, I will try your suggestion.  I had a great chuckle at your notion of me curling up and getting some REST this April.  There will be none of that for me until I get this right!



Further to the last experience:  I deleted the admin = secretpassword from /etc/couchdb/local.ini, so that "everyone is admin" in Futon.  After that, the following worked fine:


(set 'the-db {http://localhost:5984/the_hucklebuck})
(put-url the-db {})
(exit)


However, when I once again set an admin, I got the same error as before.  Evidently, it doesn't like the username password thing in the URL, making me even more keen to try your suggestion tomorrow.



thanks again
Title: Re: post-url in place of curl with couchdb?
Post by: jazper on April 06, 2012, 04:09:37 AM
After re-entering an admin, this worked:


(set 'the-db "http://127.0.0.1:5984/mynewdbthree")
(set 'auth  "user=my_admin_name&password=my_password" )
(set 'encode "application/x-www-form-urlencoded" )
(put-url the-db auth encode 8000)
(exit)


Many thanks to Ryon.
Title: Re: post-url in place of curl with couchdb?
Post by: jazper on April 06, 2012, 04:43:17 AM
Oops.  Spoke too soon.  It does not work when admin is set.  But creates databases fine when no admin is set.
Title: Re: post-url in place of curl with couchdb?
Post by: Lutz on April 06, 2012, 09:53:19 AM
Try to make it work using the curl utility first. It has a --verbose option which will print out the header its ius sending. From there then you take the correct format for authorization and encoding string in your 'post-url'  or 'put-url' command.



Also, perhaps you should use 'put-url' instead of 'post-url', becuase you curl command specifies PUT. Add the --verbose - probably as first option - and see what happens.



Also, in both 'post-url' and 'put-url', you can specify special header options shown by curl --verbose mode. Perhaps the authorization parameters go into the header not, the pots/put contents.



Make shure that each line in the header section finishes with rn.E.g:


"Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==rn"

This or something similar would go after the timeout number in 'put-url' or 'post-url' as last parameter. If the authentication strings needs to be Base64 encoded, your can use 'base64-enc'. If you have more than one line, they all go into the same string, but each finished with rn.



newLISP will always finish the header with "Connection: closern" no matter if you used the header option or not. If you don't specify any header option ist will also add "User-Agent: newLISP v10.4.0rn".



I also imagine that the encoding string will contain something different (only needed in 'post-url').
Title: Re: post-url in place of curl with couchdb?
Post by: Kirill on April 07, 2012, 04:21:24 PM
There are curl bindings for newLISP you might want to try: https://gist.github.com/1119771
Title: Re: post-url in place of curl with couchdb?
Post by: jazper on April 08, 2012, 02:32:44 PM
Thanks for these tips, Lutz.  I did indeed end up using put-url.  The curl -v tip is a good one.  I saw the option, and just somehow neglected to invoke it.  And thanks too to Kirill.  I was not aware of the curl newlisp libary.  I will soldier on with these suggestions, and see how things go.