
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Upload files encoded as base64 to carrierwave.
This small gem can be useful for API's that interact with mobile devices.
This gem requires Ruby 2.0 or higher.
Add the gem to your Gemfile:
gem 'carrierwave-base64'
Also add this if you need mongoid support:
gem "carrierwave-mongoid"
Mount the uploader to your model:
mount_base64_uploader :image, ImageUploader
Now you can also upload files by passing an encoded base64 string to the attribute. This also works for normal file uploads from file fields inside an HTML form, so you can safely replace mount_uploader
with mount_base64_uploader
to support both file input and base64 encoded input
The file extension for the uploaded base64 string is identified automatically using the mime-types gem and content_type
from the uploaded string.
If the required MIME type is not registered, you can add it, using MIME::Types#add:
MIME::Types.add(
MIME::Type.new('application/icml').tap do |type|
type.add_extensions 'icml'
end
)
You can set the file_name
option to a lambda, that will return a filename without an extension, using the model instance:
mount_base64_uploader :image, ImageUploader, file_name: -> (u) { u.username }
[DEPRECATED: Settings this option to a string is deprecated, if you still want to set the filename to a fixed string, wrap it in a Proc] To set the file name for the uploaded files, use the :file_name
option (without extention):
# Deprecated way:
mount_base64_uploader :image, ImageUploader, file_name: 'userpic'
# New way
mount_base64_uploader :image, ImageUploader, file_name: -> { 'userpic' }
File extention for the uploaded file is identified automatically based on the file contents. If it can't be identified automaticaly, it falls back to the content-type, specified in the data string.
data:image/jpeg;base64,(base64 encoded data)
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that carrierwave-base64 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.