This is a fork of Engine Yard's no-longer-maintained user_impersonate
gem. It supports Rails 3.2.x and Rails 4 and has been tested against Ruby 1.9.3,
2.0.0 and 2.1.0.
user_impersonate
allows staff users to impersonate normal users: to see what
they see and to only do what they can do.
This concept and code was extracted from Engine Yard Cloud, which Engine Yard uses to support customer remotely.
This Rails engine currently supports the following Rails authentication systems:
When you are impersonating a user you see what they see with a header section above:
Add the gem to your Rails application's Gemfile
and run bundle
:
gem 'user_impersonate2', :require => 'user_impersonate'
Note that :require => 'user_impersonate'
is required as this gem currently
maintains the same internal directory structure as the original
user_impersonate
gem. This
may change in future versions but is retained for compatibility for the time
being.
Run the (sort of optional) generator:
bundle
rails generate user_impersonate
This adds the following line to your config/routes.rb
file:
mount UserImpersonate::Engine => "/impersonate", as: "impersonate_engine"
Make sure that your layout files include the standard flashes since these are used to communicate information and error messages to the user:
<p class="notice"><%= flash[:notice] %></p>
<p class="alert"><%= flash[:error] %></p>
Next, add the impersonation header to your layouts:
<% if current_staff_user %>
<%= render 'user_impersonate/header' %>
<% end %>
Next, add the "staff" concept to your User
model.
To test the engine out, make all users staff!
# app/models/user.rb
def staff?
true
end
# String to represent a user (e-mail, name, etc.)
def to_s
email
end
To support this Rails engine, you need to add some things.
current_user
helper within controllers and helperscurrent_user.staff?
- yourUser
model needs astaff?
method to identify if the current user is allowed to impersonate other users; if this method is missing, no user can access impersonation system
One way to add the staff?
helper is to add a column to your User
model:
rails generate migration add_staff_to_users staff:boolean
rake db:migrate db:test:prepare
You can override the bright red header by creating a app/views/user_impersonate/_header.html.erb
file (or whatever template system you like).
For example, the Engine Yard Cloud uses a header that looks like:
The app/views/user_impersonate/_header.html.haml
HAML partial for this header
would be:
%div#impersonating
.impersonate-controls.page
.impersonate-info.grid_12
You (
%span.admin_name= current_staff_user
) are impersonating
%span.user_name= link_to current_user, url_for([:admin, current_user])
( User id:
%span.user_id= current_user.id
)
- if current_user.no_accounts?
( No accounts )
- else
( Account name:
%span.account_id= link_to current_user.accounts.first, url_for([:admin, current_user.accounts.first])
, id:
%strong= current_user.accounts.first.id
)
.impersonate-buttons.grid_12
= form_tag url_for([:ssh_key, :admin, current_user]), :method => "put" do
%span Support SSH Key
= select_tag 'public_key', options_for_select(current_staff_user.keys.map {|k| k})
%button{:type => "submit"} Install SSH Key
or
= form_tag [:admin, :revert], :method => :delete, :class => 'revert-form' do
%button{:type => "submit"} Revert to admin
By default, when you impersonate and when you stop impersonating a user you are redirected to the root URL.
Alternative paths can be configured in the initializer config/initializers/user_impersonate.rb
created by the user_impersonate
generator described above.
# config/initializers/user_impersonate.rb
module UserImpersonate
class Engine < Rails::Engine
config.redirect_on_impersonate = "/"
config.redirect_on_revert = "/impersonate"
end
end
By default, user_impersonate2
assumes the user model is named User
, that you
use User.find(id)
to find a user given its ID, and aUser.id
to get the
related ID value.
You can change this default behaviour in the initializer config/initializers/user_impersonate.rb
.
# config/initializers/user_impersonate.rb
module UserImpersonate
class Engine < Rails::Engine
config.user_class = "User"
config.user_finder = "find" # User.find
config.user_id_column = "id" # Such that User.find(aUser.id) works
config.user_is_staff_method = "staff?" # current_user.staff?
end
end
Modify User
and add a current_user
helper:
Spree::User.class_eval do
def staff?
has_spree_role?('admin')
end
def to_s
email
end
end
ApplicationController.class_eval do
helper_method :current_user
def current_user
spree_current_user
end
end
Use the following initializer:
# config/initializers/user_impersonate.rb
module UserImpersonate
class Engine < Rails::Engine
config.user_class = "Spree::User"
config.user_finder = "find" # User.find
config.user_id_column = "id" # Such that User.find(aUser.id) works
config.user_is_staff_method = "staff?" # current_user.staff?
config.authenticate_user_method = "authenticate_spree_user!"
config.redirect_on_impersonate = "/"
config.redirect_on_revert = "/"
config.user_name_column = "users"
end
end
Use deface to add the header:
Deface::Override.new(:virtual_path => "spree/layouts/spree_application",
:name => "impersonate_header",
:insert_before => "div.container",
:text => "<% if current_staff_user %><%= render 'user_impersonate/header' %><% end %>")
See .travis.yml
for details of the commands that are run as part of the Travis-CI build of this
project. The minimum bar for all push requests is that the Travis-CI build must
pass. Please also consider adding new tests to cover any new functionality
introduced into the gem.
To manually run the Travis-CI verification steps on your local machine, you can use the following sequence of commands for Rails 3.2.x:
# Ensure gem dependencies are installed
BUNDLE_GEMFILE=Gemfile.rails3 BUNDLE_bundle install
# Reset database
BUNDLE_GEMFILE=Gemfile.rails3 bundle exec rake db:reset
# Run Minitest and Cucumber tests
BUNDLE_GEMFILE=Gemfile.rails3 bundle exec rake
# Build the gem
BUNDLE_GEMFILE=Gemfile.rails3 bundle exec gem build user_impersonate2.gemspec
To test against Rails 4.0.x, use:
# Ensure gem dependencies are installed
BUNDLE_GEMFILE=Gemfile.rails4 BUNDLE_bundle install
# Reset database
BUNDLE_GEMFILE=Gemfile.rails4 bundle exec rake db:reset
# Run Minitest and Cucumber tests
BUNDLE_GEMFILE=Gemfile.rails4 bundle exec rake
# Build the gem
BUNDLE_GEMFILE=Gemfile.rails4 bundle exec gem build user_impersonate2.gemspec
user_impersonate2
is released under the MIT licence.