I'd like to setup a simple Sinatra app up to capture the raw POST data that gets sent to the the / URL and save this data to the file system as a file with the format YYYYMMDD-HHMMSS.json.

The data I will be posting to the URL with be simple text data in the JSON format.

What is the best way to set this simple Sinatra app up? Unsure how to capture the raw POST data.

UPDATE / Code:

post '/' do
    raw = request.env["rack.input"].read
    n = DateTime.now
    filename = n.strftime("%Y%m%d") + "T" + n.strftime("%H%M%S") #any way to include microseconds?
    # write to file
end
link|improve this question

71% accept rate
See answer below and comments. I have tried every method mentioned in the comments on this page gittr.com/index.php/archive/… – brun May 17 '11 at 1:07
None of those methods worked. How do I troubleshoot this? – brun May 17 '11 at 1:07
feedback

1 Answer

up vote 4 down vote accepted

Something like this should work for you:

post "/" do
  File.open("#{Time.now.strftime("%Y%m%d-%H%M%S")}.json", "w") do |f| 
    f.puts params["data"]    
  end 
end
link|improve this answer
Wow. Got to it while I was tweaking the question. That should do the trick. Any way to include the milliseconds in the timestamp? – brun May 16 '11 at 18:49
1  
Time.now.strftime("%Y%m%d-%H%M%S%L") with the milliseconds. – nash May 16 '11 at 19:15
Had to upgrade to 1.92 on Windows to get this. 1.87 on Windows missing the %L option. Was driving me batty. – brun May 16 '11 at 19:51
Thanks again. Clean code. +1 – brun May 16 '11 at 19:52
3  
I used the following jQuery: $.ajax({type: 'POST', url: '/', data: '{data: "someData"}'}); from firebug to test this snippet. – intellidiot May 17 '11 at 3:53
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.