Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save efrenfuentes/742597 to your computer and use it in GitHub Desktop.
Save efrenfuentes/742597 to your computer and use it in GitHub Desktop.
Trivial file upload service
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment