v0.18.0
- Simpler file upload. File uploads can now be accessed from
HTTP::Server::Context
likeenv.params.files["filename"]
.
env.params.files["filename"]
has 5 methods
tmpfile
: This is temporary file for file upload. Useful for saving the upload file.tmpfile_path
: File path oftmpfile
.filename
: File name of the file upload. (logo.png, images.zip e.g)meta
: Meta information for the file upload.headers
: Headers for the file upload.
Here's a fully working sample for reading a image file upload image1
and saving it under public/uploads
.
post "/upload" do |env|
file = env.params.files["image1"].tmpfile
file_path = ::File.join [Kemal.config.public_folder, "uploads/", file.filename]
File.open(file_path, "w") do |f|
IO.copy(file, f)
end
"Upload ok"
end
To test
curl -F "image1=@/Users/serdar/Downloads/kemal.png" http://localhost:3000/upload
- RF7233 support a.k.a file streaming. (#299) (thanks @denysvitali)
- Update Radix to 0.3.7. Fixes #293
- Configurable startup / shutdown logging. #291 and #292 (thanks @twisterghost).