2011-02-10 21:46:49 +08:00
|
|
|
require 'rails'
|
2010-03-10 14:59:57 +01:00
|
|
|
require 'active_support/core_ext/numeric/time'
|
2010-06-12 20:56:55 +02:00
|
|
|
require 'active_support/dependencies'
|
2010-10-10 17:51:12 +02:00
|
|
|
require 'orm_adapter'
|
2010-07-13 13:11:04 +02:00
|
|
|
require 'set'
|
2011-05-24 08:29:15 +02:00
|
|
|
require 'securerandom'
|
2010-03-10 14:59:57 +01:00
|
|
|
|
2009-10-18 13:30:32 -02:00
|
|
|
module Devise
|
2013-03-13 11:37:54 -05:00
|
|
|
autoload :Delegator, 'devise/delegator'
|
|
|
|
autoload :FailureApp, 'devise/failure_app'
|
|
|
|
autoload :OmniAuth, 'devise/omniauth'
|
2013-06-19 09:17:54 +02:00
|
|
|
autoload :ParameterFilter, 'devise/parameter_filter'
|
2013-04-10 10:33:50 -05:00
|
|
|
autoload :BaseSanitizer, 'devise/parameter_sanitizer'
|
2013-03-13 11:37:54 -05:00
|
|
|
autoload :ParameterSanitizer, 'devise/parameter_sanitizer'
|
|
|
|
autoload :TestHelpers, 'devise/test_helpers'
|
|
|
|
autoload :TimeInflector, 'devise/time_inflector'
|
2013-08-05 18:56:07 +02:00
|
|
|
autoload :TokenGenerator, 'devise/token_generator'
|
2009-12-12 22:52:48 -02:00
|
|
|
|
|
|
|
module Controllers
|
|
|
|
autoload :Helpers, 'devise/controllers/helpers'
|
2011-02-24 21:55:41 +01:00
|
|
|
autoload :Rememberable, 'devise/controllers/rememberable'
|
2010-02-17 12:25:20 +01:00
|
|
|
autoload :ScopedViews, 'devise/controllers/scoped_views'
|
2013-11-06 20:55:16 +01:00
|
|
|
autoload :SignInOut, 'devise/controllers/sign_in_out'
|
2013-11-08 14:39:43 +00:00
|
|
|
autoload :StoreLocation, 'devise/controllers/store_location'
|
2009-12-12 22:52:48 -02:00
|
|
|
autoload :UrlHelpers, 'devise/controllers/url_helpers'
|
|
|
|
end
|
|
|
|
|
2013-11-06 20:55:16 +01:00
|
|
|
module Hooks
|
|
|
|
autoload :Proxy, 'devise/hooks/proxy'
|
|
|
|
end
|
|
|
|
|
2011-06-27 12:13:00 -03:00
|
|
|
module Mailers
|
|
|
|
autoload :Helpers, 'devise/mailers/helpers'
|
|
|
|
end
|
|
|
|
|
2010-03-31 21:43:19 +02:00
|
|
|
module Strategies
|
|
|
|
autoload :Base, 'devise/strategies/base'
|
|
|
|
autoload :Authenticatable, 'devise/strategies/authenticatable'
|
|
|
|
end
|
|
|
|
|
2010-03-03 11:57:23 +01:00
|
|
|
# Constants which holds devise configuration for extensions. Those should
|
2010-07-13 12:17:25 +02:00
|
|
|
# not be modified by the "end user" (this is why they are constants).
|
2010-04-03 13:11:45 +02:00
|
|
|
ALL = []
|
|
|
|
CONTROLLERS = ActiveSupport::OrderedHash.new
|
|
|
|
ROUTES = ActiveSupport::OrderedHash.new
|
|
|
|
STRATEGIES = ActiveSupport::OrderedHash.new
|
2010-07-13 10:09:55 +02:00
|
|
|
URL_HELPERS = ActiveSupport::OrderedHash.new
|
2010-01-24 03:38:52 +01:00
|
|
|
|
2011-04-29 08:56:35 +02:00
|
|
|
# Strategies that do not require user input.
|
|
|
|
NO_INPUT = []
|
|
|
|
|
2010-03-03 11:57:23 +01:00
|
|
|
# True values used to check params
|
2009-12-08 18:29:00 -02:00
|
|
|
TRUE_VALUES = [true, 1, '1', 't', 'T', 'true', 'TRUE']
|
2009-10-18 13:30:32 -02:00
|
|
|
|
2013-08-05 11:47:36 +02:00
|
|
|
# Secret key used by the key generator
|
|
|
|
mattr_accessor :secret_key
|
|
|
|
@@secret_key = nil
|
|
|
|
|
2013-09-02 19:23:15 -03:00
|
|
|
[ :allow_insecure_token_lookup,
|
|
|
|
:allow_insecure_sign_in_after_confirmation,
|
|
|
|
:token_authentication_key ].each do |method|
|
|
|
|
class_eval <<-RUBY
|
|
|
|
def self.#{method}
|
|
|
|
ActiveSupport::Deprecation.warn "Devise.#{method} is deprecated " \
|
|
|
|
"and has no effect"
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.#{method}=(val)
|
|
|
|
ActiveSupport::Deprecation.warn "Devise.#{method}= is deprecated " \
|
|
|
|
"and has no effect"
|
|
|
|
end
|
|
|
|
RUBY
|
|
|
|
end
|
2013-08-08 22:33:58 +02:00
|
|
|
|
2013-01-20 22:07:51 +03:00
|
|
|
# Custom domain or key for cookies. Not set by default
|
2012-02-16 12:26:10 +01:00
|
|
|
mattr_accessor :rememberable_options
|
|
|
|
@@rememberable_options = {}
|
2010-05-05 18:25:59 +01:00
|
|
|
|
2009-11-09 22:00:44 -02:00
|
|
|
# The number of times to encrypt password.
|
|
|
|
mattr_accessor :stretches
|
|
|
|
@@stretches = 10
|
2009-11-13 23:54:21 +01:00
|
|
|
|
2013-03-04 12:18:20 -05:00
|
|
|
# The default key used when authenticating over http auth.
|
2013-04-13 22:07:54 -07:00
|
|
|
mattr_accessor :http_authentication_key
|
|
|
|
@@http_authentication_key = nil
|
2013-03-04 12:18:20 -05:00
|
|
|
|
2010-11-18 23:29:53 +01:00
|
|
|
# Keys used when authenticating a user.
|
2009-11-15 03:31:13 -02:00
|
|
|
mattr_accessor :authentication_keys
|
|
|
|
@@authentication_keys = [ :email ]
|
2010-03-29 20:52:34 +02:00
|
|
|
|
2010-11-18 23:29:53 +01:00
|
|
|
# Request keys used when authenticating a user.
|
2010-09-21 11:45:44 +02:00
|
|
|
mattr_accessor :request_keys
|
|
|
|
@@request_keys = []
|
|
|
|
|
2010-11-18 23:29:53 +01:00
|
|
|
# Keys that should be case-insensitive.
|
2010-11-18 21:24:42 +01:00
|
|
|
mattr_accessor :case_insensitive_keys
|
2012-05-06 13:13:53 +02:00
|
|
|
@@case_insensitive_keys = [ :email ]
|
2011-12-04 23:58:19 +01:00
|
|
|
|
2011-06-10 01:37:43 -07:00
|
|
|
# Keys that should have whitespace stripped.
|
|
|
|
mattr_accessor :strip_whitespace_keys
|
2012-05-06 13:13:53 +02:00
|
|
|
@@strip_whitespace_keys = []
|
2010-11-18 21:24:42 +01:00
|
|
|
|
2010-03-29 20:52:34 +02:00
|
|
|
# If http authentication is enabled by default.
|
|
|
|
mattr_accessor :http_authenticatable
|
2010-08-23 10:22:31 -03:00
|
|
|
@@http_authenticatable = false
|
2010-03-29 20:52:34 +02:00
|
|
|
|
2010-08-23 10:22:31 -03:00
|
|
|
# If http headers should be returned for ajax requests. True by default.
|
2010-07-01 08:55:58 -07:00
|
|
|
mattr_accessor :http_authenticatable_on_xhr
|
|
|
|
@@http_authenticatable_on_xhr = true
|
|
|
|
|
2010-04-01 19:09:33 +02:00
|
|
|
# If params authenticatable is enabled by default.
|
|
|
|
mattr_accessor :params_authenticatable
|
|
|
|
@@params_authenticatable = true
|
|
|
|
|
2010-03-29 20:52:34 +02:00
|
|
|
# The realm used in Http Basic Authentication.
|
|
|
|
mattr_accessor :http_authentication_realm
|
|
|
|
@@http_authentication_realm = "Application"
|
|
|
|
|
2011-08-29 13:14:55 +02:00
|
|
|
# Email regex used to validate email formats. It simply asserts that
|
|
|
|
# an one (and only one) @ exists in the given string. This is mainly
|
|
|
|
# to give user feedback and not to assert the e-mail validity.
|
2010-03-28 07:15:52 +02:00
|
|
|
mattr_accessor :email_regexp
|
2012-11-19 13:58:19 +02:00
|
|
|
@@email_regexp = /\A[^@\s]+@([^@\s]+\.)+[^@\s]+\z/
|
2010-03-29 20:52:34 +02:00
|
|
|
|
|
|
|
# Range validation for password length
|
|
|
|
mattr_accessor :password_length
|
2012-07-24 23:41:17 +02:00
|
|
|
@@password_length = 6..128
|
2010-03-29 20:52:34 +02:00
|
|
|
|
2010-07-24 00:31:39 +08:00
|
|
|
# The time the user will be remembered without asking for credentials again.
|
2009-11-09 22:00:44 -02:00
|
|
|
mattr_accessor :remember_for
|
|
|
|
@@remember_for = 2.weeks
|
2009-11-13 23:54:21 +01:00
|
|
|
|
2010-07-24 00:31:39 +08:00
|
|
|
# If true, extends the user's remember period when remembered via cookie.
|
2010-07-23 16:31:42 +02:00
|
|
|
mattr_accessor :extend_remember_period
|
|
|
|
@@extend_remember_period = false
|
|
|
|
|
2014-04-04 15:45:52 -03:00
|
|
|
# If true, all the remember me tokens are going to be invalidated when the user signs out.
|
|
|
|
mattr_accessor :expire_all_remember_me_on_sign_out
|
|
|
|
@@expire_all_remember_me_on_sign_out = true
|
|
|
|
|
2009-11-09 22:00:44 -02:00
|
|
|
# Time interval you can access your account before confirming your account.
|
2013-02-13 21:12:47 +03:00
|
|
|
# nil - allows unconfirmed access for unlimited time
|
2011-12-11 20:18:02 +01:00
|
|
|
mattr_accessor :allow_unconfirmed_access_for
|
|
|
|
@@allow_unconfirmed_access_for = 0.days
|
2011-02-06 19:23:36 -02:00
|
|
|
|
2012-07-09 14:43:12 +02:00
|
|
|
# Time interval the confirmation token is valid. nil = unlimited
|
2012-07-22 14:02:27 +02:00
|
|
|
mattr_accessor :confirm_within
|
|
|
|
@@confirm_within = nil
|
2012-07-09 14:43:12 +02:00
|
|
|
|
2011-12-04 23:58:19 +01:00
|
|
|
# Defines which key will be used when confirming an account.
|
2011-01-28 00:20:37 +08:00
|
|
|
mattr_accessor :confirmation_keys
|
|
|
|
@@confirmation_keys = [ :email ]
|
2009-11-03 22:34:37 -02:00
|
|
|
|
2011-12-04 23:58:19 +01:00
|
|
|
# Defines if email should be reconfirmable.
|
|
|
|
# False by default for backwards compatibility.
|
2011-04-17 12:15:35 +02:00
|
|
|
mattr_accessor :reconfirmable
|
|
|
|
@@reconfirmable = false
|
2011-04-03 21:26:14 +02:00
|
|
|
|
2009-11-22 22:19:29 -02:00
|
|
|
# Time interval to timeout the user session without activity.
|
2009-11-25 00:11:49 -02:00
|
|
|
mattr_accessor :timeout_in
|
|
|
|
@@timeout_in = 30.minutes
|
2009-11-22 22:19:29 -02:00
|
|
|
|
2012-04-02 20:48:23 +04:00
|
|
|
# Authentication token expiration on timeout
|
|
|
|
mattr_accessor :expire_auth_token_on_timeout
|
|
|
|
@@expire_auth_token_on_timeout = false
|
|
|
|
|
2010-09-25 16:08:46 +02:00
|
|
|
# Used to encrypt password. Please generate one with rake secret.
|
|
|
|
mattr_accessor :pepper
|
|
|
|
@@pepper = nil
|
|
|
|
|
2009-11-21 20:07:37 -02:00
|
|
|
# Scoped views. Since it relies on fallbacks to render default views, it's
|
|
|
|
# turned off by default.
|
|
|
|
mattr_accessor :scoped_views
|
|
|
|
@@scoped_views = false
|
|
|
|
|
2010-03-31 11:54:11 +02:00
|
|
|
# Defines which strategy can be used to lock an account.
|
|
|
|
# Values: :failed_attempts, :none
|
|
|
|
mattr_accessor :lock_strategy
|
|
|
|
@@lock_strategy = :failed_attempts
|
2009-12-30 15:19:33 -02:00
|
|
|
|
2010-12-29 16:06:55 +08:00
|
|
|
# Defines which key will be used when locking and unlocking an account
|
|
|
|
mattr_accessor :unlock_keys
|
|
|
|
@@unlock_keys = [ :email ]
|
|
|
|
|
2009-12-30 15:19:33 -02:00
|
|
|
# Defines which strategy can be used to unlock an account.
|
|
|
|
# Values: :email, :time, :both
|
|
|
|
mattr_accessor :unlock_strategy
|
|
|
|
@@unlock_strategy = :both
|
|
|
|
|
2010-03-31 11:54:11 +02:00
|
|
|
# Number of authentication tries before locking an account
|
|
|
|
mattr_accessor :maximum_attempts
|
|
|
|
@@maximum_attempts = 20
|
|
|
|
|
2009-12-30 15:19:33 -02:00
|
|
|
# Time interval to unlock the account if :time is defined as unlock_strategy.
|
|
|
|
mattr_accessor :unlock_in
|
|
|
|
@@unlock_in = 1.hour
|
|
|
|
|
2010-12-29 16:06:55 +08:00
|
|
|
# Defines which key will be used when recovering the password for an account
|
|
|
|
mattr_accessor :reset_password_keys
|
|
|
|
@@reset_password_keys = [ :email ]
|
|
|
|
|
2011-04-18 21:39:29 +08:00
|
|
|
# Time interval you can reset your password with a reset password key
|
2011-01-24 23:48:44 +08:00
|
|
|
mattr_accessor :reset_password_within
|
2012-05-06 13:13:53 +02:00
|
|
|
@@reset_password_within = 6.hours
|
2011-01-24 23:48:44 +08:00
|
|
|
|
2010-01-06 14:31:00 +01:00
|
|
|
# The default scope which is used by warden.
|
2010-01-05 13:44:13 +01:00
|
|
|
mattr_accessor :default_scope
|
|
|
|
@@default_scope = nil
|
|
|
|
|
2010-01-06 14:31:00 +01:00
|
|
|
# Address which sends Devise e-mails.
|
2010-01-05 16:01:16 +01:00
|
|
|
mattr_accessor :mailer_sender
|
2010-02-08 17:33:22 +01:00
|
|
|
@@mailer_sender = nil
|
2010-01-05 16:01:16 +01:00
|
|
|
|
2011-12-11 20:39:41 +01:00
|
|
|
# Skip session storage for the following strategies
|
|
|
|
mattr_accessor :skip_session_storage
|
|
|
|
@@skip_session_storage = []
|
2010-09-25 20:28:14 +02:00
|
|
|
|
2010-06-30 12:41:44 +02:00
|
|
|
# Which formats should be treated as navigational.
|
2010-05-16 19:13:20 +02:00
|
|
|
mattr_accessor :navigational_formats
|
2012-01-02 21:00:55 +01:00
|
|
|
@@navigational_formats = ["*/*", :html]
|
2010-05-16 19:13:20 +02:00
|
|
|
|
2011-02-06 23:34:31 +08:00
|
|
|
# When set to true, signing out a user signs out all other scopes.
|
2010-07-12 18:56:27 +02:00
|
|
|
mattr_accessor :sign_out_all_scopes
|
2010-08-23 09:18:39 -03:00
|
|
|
@@sign_out_all_scopes = true
|
2010-07-12 18:56:27 +02:00
|
|
|
|
2010-08-23 09:05:40 -03:00
|
|
|
# The default method used while signing out
|
|
|
|
mattr_accessor :sign_out_via
|
|
|
|
@@sign_out_via = :get
|
|
|
|
|
2012-01-02 20:39:22 +01:00
|
|
|
# The parent controller all Devise controllers inherits from.
|
2012-01-02 21:00:55 +01:00
|
|
|
# Defaults to ApplicationController. This should be set early
|
|
|
|
# in the initialization process and should be set to a string.
|
2012-01-02 20:39:22 +01:00
|
|
|
mattr_accessor :parent_controller
|
|
|
|
@@parent_controller = "ApplicationController"
|
|
|
|
|
2013-01-18 02:26:41 -06:00
|
|
|
# The parent mailer all Devise mailers inherit from.
|
|
|
|
# Defaults to ActionMailer::Base. This should be set early
|
|
|
|
# in the initialization process and should be set to a string.
|
|
|
|
mattr_accessor :parent_mailer
|
|
|
|
@@parent_mailer = "ActionMailer::Base"
|
|
|
|
|
2012-01-02 22:42:38 +01:00
|
|
|
# The router Devise should use to generate routes. Defaults
|
2014-01-09 10:00:27 -06:00
|
|
|
# to :main_app. Should be overridden by engines in order
|
2012-01-02 22:42:38 +01:00
|
|
|
# to provide custom routes.
|
|
|
|
mattr_accessor :router_name
|
2012-02-07 10:56:30 +01:00
|
|
|
@@router_name = nil
|
2012-07-09 14:43:12 +02:00
|
|
|
|
2014-01-09 10:00:27 -06:00
|
|
|
# Set the omniauth path prefix so it can be overridden when
|
2012-06-08 17:50:33 +01:00
|
|
|
# Devise is used in a mountable engine
|
|
|
|
mattr_accessor :omniauth_path_prefix
|
|
|
|
@@omniauth_path_prefix = nil
|
2013-08-02 23:13:15 +02:00
|
|
|
|
|
|
|
# Set if we should clean up the CSRF Token on authentication
|
|
|
|
mattr_accessor :clean_up_csrf_token_on_authentication
|
|
|
|
@@clean_up_csrf_token_on_authentication = true
|
2012-01-02 22:42:38 +01:00
|
|
|
|
2010-07-12 18:56:27 +02:00
|
|
|
# PRIVATE CONFIGURATION
|
|
|
|
|
2010-07-13 12:17:25 +02:00
|
|
|
# Store scopes mappings.
|
|
|
|
mattr_reader :mappings
|
|
|
|
@@mappings = ActiveSupport::OrderedHash.new
|
|
|
|
|
2010-10-14 20:04:02 +02:00
|
|
|
# Omniauth configurations.
|
|
|
|
mattr_reader :omniauth_configs
|
|
|
|
@@omniauth_configs = ActiveSupport::OrderedHash.new
|
|
|
|
|
2010-07-13 13:11:04 +02:00
|
|
|
# Define a set of modules that are called when a mapping is added.
|
|
|
|
mattr_reader :helpers
|
|
|
|
@@helpers = Set.new
|
|
|
|
@@helpers << Devise::Controllers::Helpers
|
|
|
|
|
2010-03-28 14:51:03 +02:00
|
|
|
# Private methods to interface with Warden.
|
2010-03-31 11:54:11 +02:00
|
|
|
mattr_accessor :warden_config
|
2010-03-28 14:51:03 +02:00
|
|
|
@@warden_config = nil
|
|
|
|
@@warden_config_block = nil
|
|
|
|
|
2011-06-22 13:01:49 -03:00
|
|
|
# When true, enter in paranoid mode to avoid user enumeration.
|
2011-05-20 19:41:40 -03:00
|
|
|
mattr_accessor :paranoid
|
|
|
|
@@paranoid = false
|
|
|
|
|
2013-12-02 10:02:17 +01:00
|
|
|
# When true, warn user if they just used next-to-last attempt of authentication
|
2013-10-12 02:22:43 +03:00
|
|
|
mattr_accessor :last_attempt_warning
|
|
|
|
@@last_attempt_warning = false
|
|
|
|
|
2013-08-06 11:55:13 +02:00
|
|
|
# Stores the token generator
|
|
|
|
mattr_accessor :token_generator
|
|
|
|
@@token_generator = nil
|
|
|
|
|
2010-03-03 11:57:23 +01:00
|
|
|
# Default way to setup Devise. Run rails generate devise_install to create
|
|
|
|
# a fresh initializer with all configuration values.
|
|
|
|
def self.setup
|
|
|
|
yield self
|
|
|
|
end
|
2009-11-03 09:35:11 -02:00
|
|
|
|
2011-05-23 17:29:10 +03:00
|
|
|
class Getter
|
|
|
|
def initialize name
|
|
|
|
@name = name
|
|
|
|
end
|
|
|
|
|
|
|
|
def get
|
|
|
|
ActiveSupport::Dependencies.constantize(@name)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-03-24 20:25:54 +01:00
|
|
|
def self.ref(arg)
|
2011-03-25 06:22:05 +08:00
|
|
|
if defined?(ActiveSupport::Dependencies::ClassCache)
|
2011-05-23 17:29:10 +03:00
|
|
|
ActiveSupport::Dependencies::reference(arg)
|
|
|
|
Getter.new(arg)
|
2011-03-25 06:22:05 +08:00
|
|
|
else
|
|
|
|
ActiveSupport::Dependencies.ref(arg)
|
|
|
|
end
|
2011-03-24 20:25:54 +01:00
|
|
|
end
|
|
|
|
|
2012-02-15 17:13:55 +01:00
|
|
|
def self.available_router_name
|
|
|
|
router_name || :main_app
|
|
|
|
end
|
|
|
|
|
2010-10-14 20:04:02 +02:00
|
|
|
def self.omniauth_providers
|
|
|
|
omniauth_configs.keys
|
|
|
|
end
|
|
|
|
|
2010-06-12 20:56:55 +02:00
|
|
|
# Get the mailer class from the mailer reference object.
|
|
|
|
def self.mailer
|
2011-05-23 17:29:10 +03:00
|
|
|
@@mailer_ref.get
|
2010-06-12 20:56:55 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
# Set the mailer reference object to access the mailer.
|
|
|
|
def self.mailer=(class_name)
|
2011-03-24 20:25:54 +01:00
|
|
|
@@mailer_ref = ref(class_name)
|
2010-06-12 20:56:55 +02:00
|
|
|
end
|
|
|
|
self.mailer = "Devise::Mailer"
|
|
|
|
|
2010-07-06 01:27:20 +02:00
|
|
|
# Small method that adds a mapping to Devise.
|
|
|
|
def self.add_mapping(resource, options)
|
2010-03-28 14:51:03 +02:00
|
|
|
mapping = Devise::Mapping.new(resource, options)
|
2010-07-13 13:11:04 +02:00
|
|
|
@@mappings[mapping.name] = mapping
|
|
|
|
@@default_scope ||= mapping.name
|
2010-07-15 18:13:55 +02:00
|
|
|
@@helpers.each { |h| h.define_helpers(mapping) }
|
2010-03-28 14:51:03 +02:00
|
|
|
mapping
|
|
|
|
end
|
|
|
|
|
2010-07-13 10:09:55 +02:00
|
|
|
# Make Devise aware of an 3rd party Devise-module (like invitable). For convenience.
|
2010-03-03 11:57:23 +01:00
|
|
|
#
|
|
|
|
# == Options:
|
|
|
|
#
|
2010-03-28 14:51:03 +02:00
|
|
|
# +model+ - String representing the load path to a custom *model* for this module (to autoload.)
|
2013-04-18 10:24:38 +05:30
|
|
|
# +controller+ - Symbol representing the name of an existing or custom *controller* for this module.
|
2010-03-28 14:51:03 +02:00
|
|
|
# +route+ - Symbol representing the named *route* helper for this module.
|
|
|
|
# +strategy+ - Symbol representing if this module got a custom *strategy*.
|
|
|
|
#
|
|
|
|
# All values, except :model, accept also a boolean and will have the same name as the given module
|
|
|
|
# name.
|
2010-03-03 11:57:23 +01:00
|
|
|
#
|
|
|
|
# == Examples:
|
|
|
|
#
|
|
|
|
# Devise.add_module(:party_module)
|
2014-02-25 22:12:55 +05:30
|
|
|
# Devise.add_module(:party_module, strategy: true, controller: :sessions)
|
|
|
|
# Devise.add_module(:party_module, model: 'party_module/model')
|
2010-03-03 11:57:23 +01:00
|
|
|
#
|
|
|
|
def self.add_module(module_name, options = {})
|
|
|
|
ALL << module_name
|
2012-01-02 19:38:02 +01:00
|
|
|
options.assert_valid_keys(:strategy, :model, :controller, :route, :no_input)
|
2010-03-28 14:51:03 +02:00
|
|
|
|
2010-07-13 10:09:55 +02:00
|
|
|
if strategy = options[:strategy]
|
2011-04-29 08:56:35 +02:00
|
|
|
strategy = (strategy == true ? module_name : strategy)
|
|
|
|
STRATEGIES[module_name] = strategy
|
2010-07-13 10:09:55 +02:00
|
|
|
end
|
2010-03-03 11:57:23 +01:00
|
|
|
|
2010-07-13 10:09:55 +02:00
|
|
|
if controller = options[:controller]
|
2011-04-29 08:56:35 +02:00
|
|
|
controller = (controller == true ? module_name : controller)
|
|
|
|
CONTROLLERS[module_name] = controller
|
2010-07-13 10:09:55 +02:00
|
|
|
end
|
2010-02-19 10:13:53 +01:00
|
|
|
|
2012-01-02 19:38:02 +01:00
|
|
|
NO_INPUT << strategy if options[:no_input]
|
2011-04-29 08:56:35 +02:00
|
|
|
|
2010-07-13 10:09:55 +02:00
|
|
|
if route = options[:route]
|
|
|
|
case route
|
|
|
|
when TrueClass
|
|
|
|
key, value = module_name, []
|
|
|
|
when Symbol
|
|
|
|
key, value = route, []
|
|
|
|
when Hash
|
|
|
|
key, value = route.keys.first, route.values.flatten
|
2010-03-28 14:51:03 +02:00
|
|
|
else
|
2010-07-13 10:09:55 +02:00
|
|
|
raise ArgumentError, ":route should be true, a Symbol or a Hash"
|
2010-03-28 14:51:03 +02:00
|
|
|
end
|
2010-07-13 10:09:55 +02:00
|
|
|
|
|
|
|
URL_HELPERS[key] ||= []
|
|
|
|
URL_HELPERS[key].concat(value)
|
|
|
|
URL_HELPERS[key].uniq!
|
|
|
|
|
|
|
|
ROUTES[module_name] = key
|
2010-02-19 09:26:17 +01:00
|
|
|
end
|
|
|
|
|
2010-03-03 11:57:23 +01:00
|
|
|
if options[:model]
|
2010-07-12 18:56:27 +02:00
|
|
|
path = (options[:model] == true ? "devise/models/#{module_name}" : options[:model])
|
2011-04-16 13:30:15 +02:00
|
|
|
camelized = ActiveSupport::Inflector.camelize(module_name.to_s)
|
|
|
|
Devise::Models.send(:autoload, camelized.to_sym, path)
|
2009-11-03 09:35:11 -02:00
|
|
|
end
|
|
|
|
|
2010-03-28 14:51:03 +02:00
|
|
|
Devise::Mapping.add_module module_name
|
2010-03-03 11:57:23 +01:00
|
|
|
end
|
2009-11-03 09:35:11 -02:00
|
|
|
|
2010-03-03 11:57:23 +01:00
|
|
|
# Sets warden configuration using a block that will be invoked on warden
|
|
|
|
# initialization.
|
|
|
|
#
|
|
|
|
# Devise.initialize do |config|
|
2011-12-11 20:18:02 +01:00
|
|
|
# config.allow_unconfirmed_access_for = 2.days
|
2010-03-03 11:57:23 +01:00
|
|
|
#
|
|
|
|
# config.warden do |manager|
|
|
|
|
# # Configure warden to use other strategies, like oauth.
|
|
|
|
# manager.oauth(:twitter)
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
def self.warden(&block)
|
2010-03-28 14:51:03 +02:00
|
|
|
@@warden_config_block = block
|
2010-03-03 11:57:23 +01:00
|
|
|
end
|
2009-11-13 23:54:21 +01:00
|
|
|
|
2010-10-14 20:04:02 +02:00
|
|
|
# Specify an omniauth provider.
|
|
|
|
#
|
|
|
|
# config.omniauth :github, APP_ID, APP_SECRET
|
|
|
|
#
|
|
|
|
def self.omniauth(provider, *args)
|
|
|
|
@@helpers << Devise::OmniAuth::UrlHelpers
|
2011-05-24 23:59:36 +04:00
|
|
|
config = Devise::OmniAuth::Config.new(provider, args)
|
|
|
|
@@omniauth_configs[config.strategy_name.to_sym] = config
|
2010-10-14 20:04:02 +02:00
|
|
|
end
|
|
|
|
|
2010-07-13 13:35:53 +02:00
|
|
|
# Include helpers in the given scope to AC and AV.
|
|
|
|
def self.include_helpers(scope)
|
|
|
|
ActiveSupport.on_load(:action_controller) do
|
2010-10-14 20:04:02 +02:00
|
|
|
include scope::Helpers if defined?(scope::Helpers)
|
2011-10-18 08:35:19 +02:00
|
|
|
include scope::UrlHelpers
|
|
|
|
end
|
|
|
|
|
|
|
|
ActiveSupport.on_load(:action_view) do
|
|
|
|
include scope::UrlHelpers
|
2010-07-13 13:35:53 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-09-02 13:35:31 +03:00
|
|
|
# Regenerates url helpers considering Devise.mapping
|
2011-08-29 14:29:38 +02:00
|
|
|
def self.regenerate_helpers!
|
|
|
|
Devise::Controllers::UrlHelpers.remove_helpers!
|
|
|
|
Devise::Controllers::UrlHelpers.generate_helpers!
|
|
|
|
end
|
|
|
|
|
2010-03-03 11:57:23 +01:00
|
|
|
# A method used internally to setup warden manager from the Rails initialize
|
|
|
|
# block.
|
2010-03-31 22:04:48 +02:00
|
|
|
def self.configure_warden! #:nodoc:
|
2010-05-16 00:38:40 +02:00
|
|
|
@@warden_configured ||= begin
|
2011-11-07 08:47:28 -02:00
|
|
|
warden_config.failure_app = Devise::Delegator.new
|
2010-05-16 00:38:40 +02:00
|
|
|
warden_config.default_scope = Devise.default_scope
|
2010-11-09 23:42:14 +01:00
|
|
|
warden_config.intercept_401 = false
|
2010-04-22 19:59:52 +02:00
|
|
|
|
2010-05-16 00:38:40 +02:00
|
|
|
Devise.mappings.each_value do |mapping|
|
2014-02-25 22:12:55 +05:30
|
|
|
warden_config.scope_defaults mapping.name, strategies: mapping.strategies
|
2013-02-23 19:56:41 +01:00
|
|
|
|
|
|
|
warden_config.serialize_into_session(mapping.name) do |record|
|
|
|
|
mapping.to.serialize_into_session(record)
|
|
|
|
end
|
|
|
|
|
|
|
|
warden_config.serialize_from_session(mapping.name) do |key|
|
|
|
|
# Previous versions contained an additional entry at the beginning of
|
|
|
|
# key with the record's class name.
|
|
|
|
args = key[-2, 2]
|
|
|
|
mapping.to.serialize_from_session(*args)
|
|
|
|
end
|
2010-05-16 00:38:40 +02:00
|
|
|
end
|
2010-04-22 19:59:52 +02:00
|
|
|
|
2010-05-16 00:38:40 +02:00
|
|
|
@@warden_config_block.try :call, Devise.warden_config
|
|
|
|
true
|
2010-04-22 19:59:52 +02:00
|
|
|
end
|
2009-11-03 09:35:11 -02:00
|
|
|
end
|
2009-10-21 00:12:21 -02:00
|
|
|
|
2013-04-18 10:24:38 +05:30
|
|
|
# Generate a friendly string randomly to be used as token.
|
2010-03-03 11:57:23 +01:00
|
|
|
def self.friendly_token
|
2013-08-05 14:54:40 +03:00
|
|
|
SecureRandom.urlsafe_base64(15).tr('lIO0', 'sxyz')
|
2010-03-03 11:57:23 +01:00
|
|
|
end
|
2011-02-15 11:33:54 +01:00
|
|
|
|
|
|
|
# constant-time comparison algorithm to prevent timing attacks
|
|
|
|
def self.secure_compare(a, b)
|
2011-02-27 11:41:22 +08:00
|
|
|
return false if a.blank? || b.blank? || a.bytesize != b.bytesize
|
2011-02-15 11:33:54 +01:00
|
|
|
l = a.unpack "C#{a.bytesize}"
|
|
|
|
|
|
|
|
res = 0
|
|
|
|
b.each_byte { |byte| res |= byte ^ l.shift }
|
|
|
|
res == 0
|
|
|
|
end
|
2009-11-15 00:13:43 -02:00
|
|
|
end
|
|
|
|
|
2010-03-03 11:57:23 +01:00
|
|
|
require 'warden'
|
2010-01-21 09:15:07 +01:00
|
|
|
require 'devise/mapping'
|
2010-03-03 11:57:23 +01:00
|
|
|
require 'devise/models'
|
|
|
|
require 'devise/modules'
|
2010-01-23 22:26:06 -02:00
|
|
|
require 'devise/rails'
|