Sudo mode for your Rails controllers
🔒 Protect any Rails action with a customizable password confirmation strategy.
class SecretController < ApplicationController
sudo
end
Inspired by Unix sudo
command and GitHub Sudo mode.
Add this line to your Gemfile and then execute bundle install
:
gem 'sudo_rails'
From now on, you have the sudo
method available in your controllers, you can protect the whole controller or only some actions:
class SettingsController < ApplicationController
sudo only: :sensible_settings
end
Under the hood, the sudo
method delegates to a before_action
callback, so you're able to pass the following options: :only
, :except
, :if
and :unless
.
The gem also provides a couple of controller helpers, useful to manually manage the sudo
session status:
reset_sudo_session!
: resets the current sudo session, if any.extend_sudo_session!
: marks the current session as a valid sudo session.
You can use the setup
method to configure and customize different things:
# config/initializers/sudo_rails.rb
SudoRails.setup do |config|
# On/off engine
config.enabled = true
# Sudo mode sessions duration, default is 30 minutes
config.sudo_session_duration = 10.minutes
# Confirmation page styling
config.custom_logo = 'logos/medium_dark.png'
config.primary_color = '#1A7191'
config.background_color = '#1A7191'
config.layout = 'admin'
# Confirmation strategy implementation
config.confirm_strategy = -> (context, password) {
user = context.current_user
user.valid_password?(password)
}
# Reset password link
config.reset_pass_link = '/users/password/new'
end
Using the sudo_session_duration
option you are able to configure the sudo
session duration (30 minutes by default).
If you set it to nil
, your sudo
session won't expire automatically and you will have to do it manually by using the reset_sudo_session!
helper.
Using the custom_logo
, primary_color
and background_color
options, you can customize the confirmation page. In case you want full control of the styles, you can use your own layout (and consequently your own styles too) using the layout
option.
See some examples here.
You should define how to validate the password using the confirm_strategy
option. It must be a lambda
, which will receive 2 arguments: the controller instance (context
) and the password from the user.
By default, the gem ships with Devise
and Clearance
integration. Check it here.
Implementation examples:
# Devise implementation
config.confirm_strategy = -> (context, password) {
user = context.current_user
user.valid_password?(password)
}
# has_secure_password implementation
config.confirm_strategy = -> (context, password) {
user = context.current_user
user.authenticate(password)
}
# Other custom implementations
config.confirm_strategy = -> (context, password) {
user = context.current_user
user.admin? && password == ENV['SUPER_SECRET_PASSWORD']
}
config.confirm_strategy = -> (context, password) {
Auth.call(context.current_user.email, password)
}
sudo_rails
uses I18n by default. Take a look at our locale file to check all available messages.
Any kind of feedback, bug report, idea or enhancement are really appreciated.
To contribute, just fork the repo, hack on it and send a pull request. Don't forget to add tests for behaviour changes and run the test suite:
> bundle exec rspec
Copyright (c) Marc Anguera. SudoRails is released under the MIT License.