
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
An ID obfuscator for ActiveRecord.
Do not let your users knows about your IDs:
Make it clean, make it lean, make it hidden.
http://example.com/articles/1
-> http://example.com/articles/My
It uses Hashids to make it pretty.
Add the following code on your Gemfile
and run bundle install
:
gem 'idy'
On an ActiveRecord
model, just add idy
callback:
class Article < ApplicationRecord
idy
end
Try to call on your model the obfuscated ID:
Article.new(id: 1).idy
# My
It will build your Rails URL with that ID too:
Article.new(id: 1).to_param
# localhost:3000/articles/My
Idy is not for encryption, it is about obfuscation. If you want a unbreakable hash, it is not for you.
To avoid two differents models to generates the same hash for the same ID, by default, the class name is used as a Salt.
Article.new(id: 1).idy
# My
User.new(id: 1).idy
# ex
You can provide you own:
class Article < ApplicationRecord
idy salt: 's3cr3t'
end
Article.new(id: 1).idy
# 9A
As you could see, the method idy
, returns the hash representation of your ID:
Article.new(id: 1).idy
# My
If you want get all idys from a collection, just map it:
Article.create
Article.create
Article.select(:id).map(&:idy)
# ["My", "aL"]
Since you add the idy
callback to your model, find
method will be decorated:
Article.find('My').id
# 1
Keep in mind that if you have some internal code, that you cannot change,
using find
, the hash version of the id, idy
, will be mandatory to correct find the record.
We encourage you to use this methods and avoid tweak find
Rails method. As you expect, it will find directly via idy, so a normal integer will be not found, even if it exists on database.
The bumpless version returns nil
when record is not found.
Article.findy('My').id
# 1
Article.findy 'missing'
# nil
The bump !
version raises an error when record is not found.
Article.findy!('My').id
# 1
Article.findy! 'missing'
# ActiveRecord::RecordNotFound: Couldn't find Article with 'idy'="missing"
You can encode a number manually:
Model.idy_encode(idy)
You can decode an idy in case you want to use the ActiveRecord methods with the original ID:
Model.idy_decode(idy)
Check if your model responds to idy method:
it { is_expected.to respond_to(:idy) }
It was inspired and improved from:
FAQs
Unknown package
We found that idy 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
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.