Created
November 3, 2009 20:09
-
-
Save gavinheavyside/225381 to your computer and use it in GitHub Desktop.
Trivial file upload service using Sinatra
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rubygems' | |
require 'sinatra' | |
require 'fileutils' | |
# upload with: | |
# curl -v -F "data=@/path/to/filename" http://localhost:4567/user/filename | |
post '/:name/:filename' do | |
userdir = File.join("files", params[:name]) | |
FileUtils.mkdir_p(userdir) | |
filename = File.join(userdir, params[:filename]) | |
datafile = params[:data] | |
# "#{datafile[:tempfile].inspect}\n" | |
File.open(filename, 'wb') do |file| | |
file.write(datafile[:tempfile].read) | |
end | |
"wrote to #{filename}\n" | |
end |
Take a look at aliem's fork, it seems to have an html example: https://gist.github.com/428783
Awesome, thanks! Should have searched a bit harder.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How would that call to curl be replicated in an html form?