Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
devise_rails3_ennder
Advanced tools
== Devise Rails 3 Ennder
Devise (translated in French by Ennder, in this gem) is a flexible authentication solution for Rails based on Warden.
+What this gem does:+
adds a rake task devise_rails3_ennder:sync_user_model that adds a model 'User' that has devise enabled
adds a rake task devise_rails3_ennder:sync_migrations to add a migration that creates the users table and its devise fields You will be able to add your own fields to the User model only after that.
adds a rake task devise_rails3_ennder:sync_devise_initializer to add the devise initializer configuration file (config/initializers/devise.rb) You will have to configure devise with this task.
adds extended devise translations (en, fr)
adds modified views for translations
adds a link to a partial (users/_form_personal_fields.html.erb) in the user profile show view You will have to provide this partial filled with you User personal fields inputs
add the 13 devise routes to your routes, for the User model:
devise_for :users
+This gem does not (you have to do it yourself):+
install the warden and devise gems
lauch the 3 rake tasks
add the before_filter instruction to your ApplicationController:
before_filter :authenticate_user!
configure your smtp setting, you must add in your environment configration file (dev | test | production) something like:
//i.s.p. : Internet Service Provider config.action_mailer.smtp_settings = { :address => 'your_iap_smtp_server_name.your_isp_domain.com', :port => 25, :domain => 'your_isp_domain.com' }
add the login / logout partial to your layout, you must insert the following instruction:
<%= render :partial => 'devise/shared/user_nav' %>
add the flash message div to your layout, to display the notice / error Devise messages:
<%- flash.each do |name, msg| -%> <%= content_tag :div, msg, :id => "flash_#{name}" %> <%- end -%>
verify your routes for the user in the routes configuration file: Verify that the resources for the user model are not fully defined like this:
resources :users If you have to add new routes to user, add them after re-specifying:
devise_for :users
Right now devise is composed of 12 modules:
== Dependencies
Devise Rails 3 Ennder is based on:
== Installation
Install the devise_rails3_ennder gem:
gem install devise_rails3_ennder
Install the warden gem:
gem install warden
Install the devise gem:
gem install devise
Configure warden and devise gems inside your app Gemfile: gem 'warden' gem 'devise' gem 'devise_rails3_ennder'
== Basic Usage
This is a walkthrough with all steps you need to setup a devise resource, including model, migration, route files, and optional configuration. You MUST also check out the Generators section below to help you start.
Devise must be set up within the model (or models) you want to use, and devise routes must be created inside your config/routes.rb file.
We're assuming here you want a User model with some modules, as outlined below:
class User < ActiveRecord::Base devise :database_authenticatable, :confirmable, :recoverable, :rememberable, :trackable, :validatable end
After you choose which modules to use, you need to setup your migrations. Luckily, devise has some helpers to save you from this boring work:
create_table :users do |t| t.database_authenticatable t.confirmable t.recoverable t.rememberable t.trackable t.timestamps end
Remember that Devise don't rely on attr_accessible or attr_protected inside its modules, so be sure to setup what attributes are accessible or protected in your model.
The next setup after setting up your model is to configure your routes. You do this by opening up your config/routes.rb and adding:
devise_for :users
This is going to look inside you User model and create a set of needed routes (you can see them by running rake routes
).
There are also some options available for configuring your routes, as :class_name (to set the class for that route), :path_prefix, :as and :path_names, where the last two have the same meaning as in common routes. The available :path_names are:
map.devise_for :users, :as => "usuarios", :path_names => { :sign_in => 'login', :sign_out => 'logout', :password => 'secret', :confirmation => 'verification', :unlock => 'unblock' }
Be sure to check devise_for documentation for detailed description.
After this steps, run your migrations, and you are ready to go! But don't finish reading, we still have a lot to tell you:
== Controller filters and helpers
Devise is gonna create some helpers to use inside your controllers and views. To setup a controller that needs user authentication, just add this before_filter:
before_filter :authenticate_user!
To verify if a user is signed in, you have the following helper:
user_signed_in?
And to get the current signed in user this helper is available:
current_user
You have also access to the session for this scope:
user_session
After signing in a user, confirming it's account or updating it's password, devise will look for a scoped root path to redirect. Example: For a :user resource, it will use user_root_path if it exists, otherwise default root_path will be used. This means that you need to set the root inside your routes:
map.root :controller => 'home'
You can also overwrite after_sign_in_path_for and after_sign_out_path_for to customize better your redirect hooks.
Finally, you also need to setup default url options for the mailer in each environment. Here's is the configuration for config/environments/development.rb:
config.action_mailer.default_url_options = { :host => 'localhost:3000' }
== Tidying up
Devise let's you setup as many roles as you want, so let's say you already have this User model and also want an Admin model with just authentication, trackable, lockable and timeoutable stuff and none of confirmation or password recovery. Just follow the same steps:
create_table :admins do |t| t.database_authenticatable t.lockable t.trackable end
devise :database_authenticatable, :trackable, :timeoutable, :lockable
map.devise_for :admin
before_filter :authenticate_admin!
admin_signed_in? current_admin admin_session
== Generators
Devise comes with some generators to help you start:
ruby script/generate devise_install
This will generate an initializer, with a description of all configuration values. You can also generate models through:
ruby script/generate devise Model
A model configured with all devise modules and attr_accessible for default fields will be created. The generator will also create the migration and configure your routes for devise.
== Model configuration
The devise method in your models also accept some options to configure its modules. For example, you can chose which encryptor to use in database_authenticatable:
devise :database_authenticatable, :confirmable, :recoverable, :encryptor => :bcrypt
Besides :encryptor, you can provide :pepper, :stretches, :confirm_within, :remember_for, :timeout_in, :unlock_in and others. All those are describer in the initializer created when you invoke the devise_install generator describer above.
== Views
Since devise is an engine, it has all default views inside the gem. They are good to get you started, but you will want to customize them at some point. And Devise has a generator to make copy them all to your application:
ruby script/generate devise_views
By default Devise will use the same views for all roles you have. But what if you need so different views to each of them? Devise also has an easy way to accomplish it: just setup config.scoped_views to true inside "config/initializers/devise.rb".
After doing so you will be able to have views based on the scope like 'sessions/users/new' and 'sessions/admin/new'. If no view is found within the scope, Devise will fallback to the default view.
Devise uses flash messages to let users know if their login is successful or not. Devise expects your application to call 'flash[:notice]' and 'flash[:alert]' as appropriate.
== I18n
Devise uses flash messages with I18n with the flash keys :success and :failure. To customize your app, you can setup your locale file this way:
en: devise: sessions: signed_in: 'Signed in successfully.'
You can also create distinct messages based on the resource you've configured using the singular name given in routes:
en: devise: sessions: user: signed_in: 'Welcome user, you are signed in.' admin: signed_in: 'Hello admin!'
Devise mailer uses the same pattern to create subject messages:
en: devise: mailer: confirmation_instructions: 'Hello everybody!' user: confirmation_instructions: 'Hello User! Please confirm your email' reset_password_instructions: 'Reset instructions'
Take a look at our locale file to check all available messages.
== Test helpers
Devise includes some tests helpers for functional specs. To use them, you just need to include Devise::TestHelpers in your test class and use the sign_in and sign_out method. Such methods have the same signature as in controllers:
sign_in :user, @user # sign_in(scope, resource) sign_in @user # sign_in(resource)
sign_out :user # sign_out(scope) sign_out @user # sign_out(resource)
You can include the Devise Test Helpers in all of your tests by adding the following to the bottom of your test/test_helper.rb or spec/spec_helper.rb file:
class ActionController::TestCase include Devise::TestHelpers end
Do not use such helpers for integration tests like Cucumber, Webrat... Just fill in the form or explicitly set the user in session. For more tips, check the wiki (http://wiki.github.com/plataformatec/devise).
== Migrating from other solutions
Devise implements encryption strategies for Clearance, Authlogic and Restful-Authentication. To make use of it set the desired encryptor in the encryptor initializer config option. You might also need to rename your encrypted password and salt columns to match Devises's one (encrypted_password and password_salt).
== Other ORMs
Devise supports both ActiveRecord (default) and MongoMapper, and has experimental Datamapper supports (in a sense that Devise test suite does not run completely with Datamapper). To choose other ORM, you just need to configure it in the initializer file.
== TODO
Please refer to TODO file.
== Security
Needless to say, security is extremely important to Devise. If you find yourself in a possible security issue with Devise, please go through the following steps, trying to reproduce the bug:
Being able to reproduce the bug is the first step to fix it. Thanks for your understanding.
== Maintainers
== Contributors
We have a long running list of contributors. Check them all here:
http://github.com/plataformatec/devise/contributors
== Bugs and Feedback
If you discover any bugs or want to drop a line, feel free to create an issue on GitHub or send an e-mail to the mailing list.
http://github.com/plataformatec/devise/issues http://groups.google.com/group/plataformatec-devise
MIT License. Copyright 2009 Plataforma Tecnologia. http://blog.plataformatec.com.br
FAQs
Unknown package
We found that devise_rails3_ennder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.