cloudfoundry-devise 1.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +12 -0
- data/.travis.yml +13 -0
- data/CHANGELOG.rdoc +755 -0
- data/Gemfile +35 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +366 -0
- data/Rakefile +34 -0
- data/app/controllers/devise/confirmations_controller.rb +46 -0
- data/app/controllers/devise/omniauth_callbacks_controller.rb +26 -0
- data/app/controllers/devise/passwords_controller.rb +50 -0
- data/app/controllers/devise/registrations_controller.rb +114 -0
- data/app/controllers/devise/sessions_controller.rb +49 -0
- data/app/controllers/devise/unlocks_controller.rb +34 -0
- data/app/helpers/devise_helper.rb +25 -0
- data/app/mailers/devise/mailer.rb +15 -0
- data/app/views/devise/confirmations/new.html.erb +12 -0
- data/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
- data/app/views/devise/passwords/edit.html.erb +16 -0
- data/app/views/devise/passwords/new.html.erb +12 -0
- data/app/views/devise/registrations/edit.html.erb +25 -0
- data/app/views/devise/registrations/new.html.erb +18 -0
- data/app/views/devise/sessions/new.html.erb +17 -0
- data/app/views/devise/shared/_links.erb +25 -0
- data/app/views/devise/unlocks/new.html.erb +12 -0
- data/cloudfoundry-devise.gemspec +25 -0
- data/config/locales/en.yml +59 -0
- data/lib/devise.rb +453 -0
- data/lib/devise/controllers/helpers.rb +260 -0
- data/lib/devise/controllers/internal_helpers.rb +161 -0
- data/lib/devise/controllers/rememberable.rb +52 -0
- data/lib/devise/controllers/scoped_views.rb +33 -0
- data/lib/devise/controllers/shared_helpers.rb +26 -0
- data/lib/devise/controllers/url_helpers.rb +53 -0
- data/lib/devise/delegator.rb +16 -0
- data/lib/devise/encryptors/authlogic_sha512.rb +19 -0
- data/lib/devise/encryptors/base.rb +20 -0
- data/lib/devise/encryptors/clearance_sha1.rb +17 -0
- data/lib/devise/encryptors/restful_authentication_sha1.rb +22 -0
- data/lib/devise/encryptors/sha1.rb +25 -0
- data/lib/devise/encryptors/sha512.rb +25 -0
- data/lib/devise/failure_app.rb +149 -0
- data/lib/devise/hooks/activatable.rb +11 -0
- data/lib/devise/hooks/forgetable.rb +9 -0
- data/lib/devise/hooks/rememberable.rb +6 -0
- data/lib/devise/hooks/timeoutable.rb +24 -0
- data/lib/devise/hooks/trackable.rb +9 -0
- data/lib/devise/mailers/helpers.rb +86 -0
- data/lib/devise/mapping.rb +175 -0
- data/lib/devise/models.rb +91 -0
- data/lib/devise/models/authenticatable.rb +181 -0
- data/lib/devise/models/confirmable.rb +220 -0
- data/lib/devise/models/database_authenticatable.rb +122 -0
- data/lib/devise/models/encryptable.rb +72 -0
- data/lib/devise/models/lockable.rb +169 -0
- data/lib/devise/models/omniauthable.rb +23 -0
- data/lib/devise/models/recoverable.rb +136 -0
- data/lib/devise/models/registerable.rb +21 -0
- data/lib/devise/models/rememberable.rb +114 -0
- data/lib/devise/models/serializable.rb +43 -0
- data/lib/devise/models/timeoutable.rb +45 -0
- data/lib/devise/models/token_authenticatable.rb +72 -0
- data/lib/devise/models/trackable.rb +30 -0
- data/lib/devise/models/validatable.rb +62 -0
- data/lib/devise/modules.rb +30 -0
- data/lib/devise/omniauth.rb +28 -0
- data/lib/devise/omniauth/config.rb +45 -0
- data/lib/devise/omniauth/url_helpers.rb +33 -0
- data/lib/devise/orm/active_record.rb +44 -0
- data/lib/devise/orm/mongoid.rb +31 -0
- data/lib/devise/param_filter.rb +41 -0
- data/lib/devise/path_checker.rb +18 -0
- data/lib/devise/rails.rb +73 -0
- data/lib/devise/rails/routes.rb +385 -0
- data/lib/devise/rails/warden_compat.rb +120 -0
- data/lib/devise/schema.rb +109 -0
- data/lib/devise/strategies/authenticatable.rb +155 -0
- data/lib/devise/strategies/base.rb +15 -0
- data/lib/devise/strategies/database_authenticatable.rb +21 -0
- data/lib/devise/strategies/rememberable.rb +53 -0
- data/lib/devise/strategies/token_authenticatable.rb +57 -0
- data/lib/devise/test_helpers.rb +90 -0
- data/lib/devise/version.rb +3 -0
- data/lib/generators/active_record/devise_generator.rb +71 -0
- data/lib/generators/active_record/templates/migration.rb +29 -0
- data/lib/generators/active_record/templates/migration_existing.rb +26 -0
- data/lib/generators/devise/devise_generator.rb +22 -0
- data/lib/generators/devise/install_generator.rb +24 -0
- data/lib/generators/devise/orm_helpers.rb +31 -0
- data/lib/generators/devise/views_generator.rb +98 -0
- data/lib/generators/mongoid/devise_generator.rb +60 -0
- data/lib/generators/templates/README +32 -0
- data/lib/generators/templates/devise.rb +215 -0
- data/lib/generators/templates/markerb/confirmation_instructions.markerb +5 -0
- data/lib/generators/templates/markerb/reset_password_instructions.markerb +8 -0
- data/lib/generators/templates/markerb/unlock_instructions.markerb +7 -0
- data/lib/generators/templates/simple_form_for/confirmations/new.html.erb +15 -0
- data/lib/generators/templates/simple_form_for/passwords/edit.html.erb +19 -0
- data/lib/generators/templates/simple_form_for/passwords/new.html.erb +15 -0
- data/lib/generators/templates/simple_form_for/registrations/edit.html.erb +22 -0
- data/lib/generators/templates/simple_form_for/registrations/new.html.erb +17 -0
- data/lib/generators/templates/simple_form_for/sessions/new.html.erb +15 -0
- data/lib/generators/templates/simple_form_for/unlocks/new.html.erb +15 -0
- data/test/controllers/helpers_test.rb +254 -0
- data/test/controllers/internal_helpers_test.rb +96 -0
- data/test/controllers/sessions_controller_test.rb +16 -0
- data/test/controllers/url_helpers_test.rb +59 -0
- data/test/delegator_test.rb +19 -0
- data/test/devise_test.rb +72 -0
- data/test/encryptors_test.rb +30 -0
- data/test/failure_app_test.rb +207 -0
- data/test/generators/active_record_generator_test.rb +47 -0
- data/test/generators/devise_generator_test.rb +39 -0
- data/test/generators/install_generator_test.rb +13 -0
- data/test/generators/mongoid_generator_test.rb +23 -0
- data/test/generators/views_generator_test.rb +52 -0
- data/test/helpers/devise_helper_test.rb +51 -0
- data/test/indifferent_hash.rb +33 -0
- data/test/integration/authenticatable_test.rb +590 -0
- data/test/integration/confirmable_test.rb +262 -0
- data/test/integration/database_authenticatable_test.rb +82 -0
- data/test/integration/http_authenticatable_test.rb +82 -0
- data/test/integration/lockable_test.rb +212 -0
- data/test/integration/omniauthable_test.rb +133 -0
- data/test/integration/recoverable_test.rb +287 -0
- data/test/integration/registerable_test.rb +335 -0
- data/test/integration/rememberable_test.rb +158 -0
- data/test/integration/timeoutable_test.rb +98 -0
- data/test/integration/token_authenticatable_test.rb +148 -0
- data/test/integration/trackable_test.rb +92 -0
- data/test/mailers/confirmation_instructions_test.rb +95 -0
- data/test/mailers/reset_password_instructions_test.rb +83 -0
- data/test/mailers/unlock_instructions_test.rb +77 -0
- data/test/mapping_test.rb +128 -0
- data/test/models/confirmable_test.rb +334 -0
- data/test/models/database_authenticatable_test.rb +167 -0
- data/test/models/encryptable_test.rb +67 -0
- data/test/models/lockable_test.rb +225 -0
- data/test/models/recoverable_test.rb +198 -0
- data/test/models/rememberable_test.rb +168 -0
- data/test/models/serializable_test.rb +38 -0
- data/test/models/timeoutable_test.rb +42 -0
- data/test/models/token_authenticatable_test.rb +49 -0
- data/test/models/trackable_test.rb +5 -0
- data/test/models/validatable_test.rb +113 -0
- data/test/models_test.rb +109 -0
- data/test/omniauth/config_test.rb +57 -0
- data/test/omniauth/url_helpers_test.rb +58 -0
- data/test/orm/active_record.rb +9 -0
- data/test/orm/mongoid.rb +14 -0
- data/test/rails_app/Rakefile +10 -0
- data/test/rails_app/app/active_record/admin.rb +6 -0
- data/test/rails_app/app/active_record/shim.rb +2 -0
- data/test/rails_app/app/active_record/user.rb +6 -0
- data/test/rails_app/app/controllers/admins/sessions_controller.rb +6 -0
- data/test/rails_app/app/controllers/admins_controller.rb +6 -0
- data/test/rails_app/app/controllers/application_controller.rb +8 -0
- data/test/rails_app/app/controllers/home_controller.rb +25 -0
- data/test/rails_app/app/controllers/publisher/registrations_controller.rb +2 -0
- data/test/rails_app/app/controllers/publisher/sessions_controller.rb +2 -0
- data/test/rails_app/app/controllers/users/omniauth_callbacks_controller.rb +14 -0
- data/test/rails_app/app/controllers/users_controller.rb +23 -0
- data/test/rails_app/app/helpers/application_helper.rb +3 -0
- data/test/rails_app/app/mailers/users/mailer.rb +3 -0
- data/test/rails_app/app/mongoid/admin.rb +24 -0
- data/test/rails_app/app/mongoid/shim.rb +24 -0
- data/test/rails_app/app/mongoid/user.rb +45 -0
- data/test/rails_app/app/views/admins/index.html.erb +1 -0
- data/test/rails_app/app/views/admins/sessions/new.html.erb +2 -0
- data/test/rails_app/app/views/home/admin_dashboard.html.erb +1 -0
- data/test/rails_app/app/views/home/index.html.erb +1 -0
- data/test/rails_app/app/views/home/join.html.erb +1 -0
- data/test/rails_app/app/views/home/private.html.erb +1 -0
- data/test/rails_app/app/views/home/user_dashboard.html.erb +1 -0
- data/test/rails_app/app/views/layouts/application.html.erb +24 -0
- data/test/rails_app/app/views/users/index.html.erb +1 -0
- data/test/rails_app/app/views/users/mailer/confirmation_instructions.erb +1 -0
- data/test/rails_app/app/views/users/sessions/new.html.erb +1 -0
- data/test/rails_app/config.ru +4 -0
- data/test/rails_app/config/application.rb +41 -0
- data/test/rails_app/config/boot.rb +8 -0
- data/test/rails_app/config/database.yml +18 -0
- data/test/rails_app/config/environment.rb +5 -0
- data/test/rails_app/config/environments/development.rb +18 -0
- data/test/rails_app/config/environments/production.rb +33 -0
- data/test/rails_app/config/environments/test.rb +33 -0
- data/test/rails_app/config/initializers/backtrace_silencers.rb +7 -0
- data/test/rails_app/config/initializers/devise.rb +197 -0
- data/test/rails_app/config/initializers/inflections.rb +2 -0
- data/test/rails_app/config/initializers/secret_token.rb +2 -0
- data/test/rails_app/config/routes.rb +87 -0
- data/test/rails_app/db/migrate/20100401102949_create_tables.rb +71 -0
- data/test/rails_app/db/schema.rb +52 -0
- data/test/rails_app/lib/shared_admin.rb +10 -0
- data/test/rails_app/lib/shared_user.rb +26 -0
- data/test/rails_app/public/404.html +26 -0
- data/test/rails_app/public/422.html +26 -0
- data/test/rails_app/public/500.html +26 -0
- data/test/rails_app/public/favicon.ico +0 -0
- data/test/rails_app/script/rails +10 -0
- data/test/routes_test.rb +240 -0
- data/test/support/assertions.rb +27 -0
- data/test/support/helpers.rb +109 -0
- data/test/support/integration.rb +88 -0
- data/test/support/locale/en.yml +4 -0
- data/test/support/webrat/integrations/rails.rb +24 -0
- data/test/test_helper.rb +27 -0
- data/test/test_helpers_test.rb +134 -0
- metadata +295 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
module Devise
|
|
2
|
+
module Controllers
|
|
3
|
+
module ScopedViews
|
|
4
|
+
extend ActiveSupport::Concern
|
|
5
|
+
|
|
6
|
+
module ClassMethods
|
|
7
|
+
def scoped_views?
|
|
8
|
+
defined?(@scoped_views) ? @scoped_views : Devise.scoped_views
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def scoped_views=(value)
|
|
12
|
+
@scoped_views = value
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
protected
|
|
17
|
+
|
|
18
|
+
# Render a view for the specified scope. Turned off by default.
|
|
19
|
+
# Accepts just :controller as option.
|
|
20
|
+
def render_with_scope(action, path=self.controller_path)
|
|
21
|
+
if self.class.scoped_views?
|
|
22
|
+
begin
|
|
23
|
+
render :template => "#{devise_mapping.scoped_path}/#{path.split("/").last}/#{action}"
|
|
24
|
+
rescue ActionView::MissingTemplate
|
|
25
|
+
render :template => "#{path}/#{action}"
|
|
26
|
+
end
|
|
27
|
+
else
|
|
28
|
+
render :template => "#{path}/#{action}"
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
end
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
module Devise
|
|
2
|
+
module Controllers
|
|
3
|
+
# Helpers used in both FailureApp and Devise controllers.
|
|
4
|
+
module SharedHelpers
|
|
5
|
+
MIME_REFERENCES = Mime::HTML.respond_to?(:ref)
|
|
6
|
+
|
|
7
|
+
protected
|
|
8
|
+
|
|
9
|
+
# Helper used by FailureApp and Devise controllers to retrieve proper formats.
|
|
10
|
+
def request_format
|
|
11
|
+
@request_format ||= if request.format.respond_to?(:ref)
|
|
12
|
+
request.format.ref
|
|
13
|
+
elsif MIME_REFERENCES
|
|
14
|
+
request.format
|
|
15
|
+
elsif request.format # Rails < 3.0.4
|
|
16
|
+
request.format.to_sym
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
# Check whether it's navigational format, such as :html or :iphone, or not.
|
|
21
|
+
def is_navigational_format?
|
|
22
|
+
Devise.navigational_formats.include?(request_format)
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
module Devise
|
|
2
|
+
module Controllers
|
|
3
|
+
# Create url helpers to be used with resource/scope configuration. Acts as
|
|
4
|
+
# proxies to the generated routes created by devise.
|
|
5
|
+
# Resource param can be a string or symbol, a class, or an instance object.
|
|
6
|
+
# Example using a :user resource:
|
|
7
|
+
#
|
|
8
|
+
# new_session_path(:user) => new_user_session_path
|
|
9
|
+
# session_path(:user) => user_session_path
|
|
10
|
+
# destroy_session_path(:user) => destroy_user_session_path
|
|
11
|
+
#
|
|
12
|
+
# new_password_path(:user) => new_user_password_path
|
|
13
|
+
# password_path(:user) => user_password_path
|
|
14
|
+
# edit_password_path(:user) => edit_user_password_path
|
|
15
|
+
#
|
|
16
|
+
# new_confirmation_path(:user) => new_user_confirmation_path
|
|
17
|
+
# confirmation_path(:user) => user_confirmation_path
|
|
18
|
+
#
|
|
19
|
+
# Those helpers are added to your ApplicationController.
|
|
20
|
+
module UrlHelpers
|
|
21
|
+
def self.remove_helpers!
|
|
22
|
+
self.instance_methods.map(&:to_s).grep(/_(url|path)$/).each do |method|
|
|
23
|
+
remove_method method
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
def self.generate_helpers!(routes=nil)
|
|
28
|
+
routes ||= begin
|
|
29
|
+
mappings = Devise.mappings.values.map(&:used_helpers).flatten.uniq
|
|
30
|
+
Devise::URL_HELPERS.slice(*mappings)
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
routes.each do |module_name, actions|
|
|
34
|
+
[:path, :url].each do |path_or_url|
|
|
35
|
+
actions.each do |action|
|
|
36
|
+
action = action ? "#{action}_" : ""
|
|
37
|
+
method = "#{action}#{module_name}_#{path_or_url}"
|
|
38
|
+
|
|
39
|
+
class_eval <<-URL_HELPERS, __FILE__, __LINE__ + 1
|
|
40
|
+
def #{method}(resource_or_scope, *args)
|
|
41
|
+
scope = Devise::Mapping.find_scope!(resource_or_scope)
|
|
42
|
+
send("#{action}\#{scope}_#{module_name}_#{path_or_url}", *args)
|
|
43
|
+
end
|
|
44
|
+
URL_HELPERS
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
generate_helpers!(Devise::URL_HELPERS)
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
end
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
module Devise
|
|
2
|
+
# Checks the scope in the given environment and returns the associated failure app.
|
|
3
|
+
class Delegator
|
|
4
|
+
def call(env)
|
|
5
|
+
failure_app(env).call(env)
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
def failure_app(env)
|
|
9
|
+
app = env["warden.options"] &&
|
|
10
|
+
(scope = env["warden.options"][:scope]) &&
|
|
11
|
+
Devise.mappings[scope.to_sym].failure_app
|
|
12
|
+
|
|
13
|
+
app || Devise::FailureApp
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
require "digest/sha2"
|
|
2
|
+
|
|
3
|
+
module Devise
|
|
4
|
+
module Encryptors
|
|
5
|
+
# = AuthlogicSha512
|
|
6
|
+
# Simulates Authlogic's default encryption mechanism.
|
|
7
|
+
# Warning: it uses Devise's stretches configuration to port Authlogic's one. Should be set to 20 in the initializer to simulate
|
|
8
|
+
# the default behavior.
|
|
9
|
+
class AuthlogicSha512 < Base
|
|
10
|
+
# Generates a default password digest based on salt, pepper and the
|
|
11
|
+
# incoming password.
|
|
12
|
+
def self.digest(password, stretches, salt, pepper)
|
|
13
|
+
digest = [password, salt].flatten.join('')
|
|
14
|
+
stretches.times { digest = Digest::SHA512.hexdigest(digest) }
|
|
15
|
+
digest
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
end
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
module Devise
|
|
2
|
+
# Implements a way of adding different encryptions.
|
|
3
|
+
# The class should implement a self.digest method that taks the following params:
|
|
4
|
+
# - password
|
|
5
|
+
# - stretches: the number of times the encryption will be applied
|
|
6
|
+
# - salt: the password salt as defined by devise
|
|
7
|
+
# - pepper: Devise config option
|
|
8
|
+
#
|
|
9
|
+
module Encryptors
|
|
10
|
+
class Base
|
|
11
|
+
def self.digest
|
|
12
|
+
raise NotImplemented
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
def self.salt(stretches)
|
|
16
|
+
Devise.friendly_token[0,20]
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
end
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
require "digest/sha1"
|
|
2
|
+
|
|
3
|
+
module Devise
|
|
4
|
+
module Encryptors
|
|
5
|
+
# = ClearanceSha1
|
|
6
|
+
# Simulates Clearance's default encryption mechanism.
|
|
7
|
+
# Warning: it uses Devise's pepper to port the concept of REST_AUTH_SITE_KEY
|
|
8
|
+
# Warning: it uses Devise's stretches configuration to port the concept of REST_AUTH_DIGEST_STRETCHES
|
|
9
|
+
class ClearanceSha1 < Base
|
|
10
|
+
# Generates a default password digest based on salt, pepper and the
|
|
11
|
+
# incoming password.
|
|
12
|
+
def self.digest(password, stretches, salt, pepper)
|
|
13
|
+
Digest::SHA1.hexdigest("--#{salt}--#{password}--")
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
require "digest/sha1"
|
|
2
|
+
|
|
3
|
+
module Devise
|
|
4
|
+
module Encryptors
|
|
5
|
+
# = RestfulAuthenticationSha1
|
|
6
|
+
# Simulates Restful Authentication's default encryption mechanism.
|
|
7
|
+
# Warning: it uses Devise's pepper to port the concept of REST_AUTH_SITE_KEY
|
|
8
|
+
# Warning: it uses Devise's stretches configuration to port the concept of REST_AUTH_DIGEST_STRETCHES. Should be set to 10 in
|
|
9
|
+
# the initializer to simulate the default behavior.
|
|
10
|
+
class RestfulAuthenticationSha1 < Base
|
|
11
|
+
|
|
12
|
+
# Generates a default password digest based on salt, pepper and the
|
|
13
|
+
# incoming password.
|
|
14
|
+
def self.digest(password, stretches, salt, pepper)
|
|
15
|
+
digest = pepper
|
|
16
|
+
stretches.times { digest = Digest::SHA1.hexdigest([digest, salt, password, pepper].flatten.join('--')) }
|
|
17
|
+
digest
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
require "digest/sha1"
|
|
2
|
+
|
|
3
|
+
module Devise
|
|
4
|
+
module Encryptors
|
|
5
|
+
# = Sha1
|
|
6
|
+
# Uses the Sha1 hash algorithm to encrypt passwords.
|
|
7
|
+
class Sha1 < Base
|
|
8
|
+
# Generates a default password digest based on stretches, salt, pepper and the
|
|
9
|
+
# incoming password.
|
|
10
|
+
def self.digest(password, stretches, salt, pepper)
|
|
11
|
+
digest = pepper
|
|
12
|
+
stretches.times { digest = self.secure_digest(salt, digest, password, pepper) }
|
|
13
|
+
digest
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
private
|
|
17
|
+
|
|
18
|
+
# Generate a SHA1 digest joining args. Generated token is something like
|
|
19
|
+
# --arg1--arg2--arg3--argN--
|
|
20
|
+
def self.secure_digest(*tokens)
|
|
21
|
+
::Digest::SHA1.hexdigest('--' << tokens.flatten.join('--') << '--')
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
require "digest/sha2"
|
|
2
|
+
|
|
3
|
+
module Devise
|
|
4
|
+
module Encryptors
|
|
5
|
+
# = Sha512
|
|
6
|
+
# Uses the Sha512 hash algorithm to encrypt passwords.
|
|
7
|
+
class Sha512 < Base
|
|
8
|
+
# Generates a default password digest based on salt, pepper and the
|
|
9
|
+
# incoming password.
|
|
10
|
+
def self.digest(password, stretches, salt, pepper)
|
|
11
|
+
digest = pepper
|
|
12
|
+
stretches.times { digest = self.secure_digest(salt, digest, password, pepper) }
|
|
13
|
+
digest
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
private
|
|
17
|
+
|
|
18
|
+
# Generate a Sha512 digest joining args. Generated token is something like
|
|
19
|
+
# --arg1--arg2--arg3--argN--
|
|
20
|
+
def self.secure_digest(*tokens)
|
|
21
|
+
::Digest::SHA512.hexdigest('--' << tokens.flatten.join('--') << '--')
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
require "action_controller/metal"
|
|
2
|
+
|
|
3
|
+
module Devise
|
|
4
|
+
# Failure application that will be called every time :warden is thrown from
|
|
5
|
+
# any strategy or hook. Responsible for redirect the user to the sign in
|
|
6
|
+
# page based on current scope and mapping. If no scope is given, redirect
|
|
7
|
+
# to the default_url.
|
|
8
|
+
class FailureApp < ActionController::Metal
|
|
9
|
+
include ActionController::RackDelegation
|
|
10
|
+
include ActionController::UrlFor
|
|
11
|
+
include ActionController::Redirecting
|
|
12
|
+
include Rails.application.routes.url_helpers
|
|
13
|
+
include Devise::Controllers::SharedHelpers
|
|
14
|
+
|
|
15
|
+
delegate :flash, :to => :request
|
|
16
|
+
|
|
17
|
+
def self.call(env)
|
|
18
|
+
@respond ||= action(:respond)
|
|
19
|
+
@respond.call(env)
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def self.default_url_options(*args)
|
|
23
|
+
ApplicationController.default_url_options(*args)
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def respond
|
|
27
|
+
if http_auth?
|
|
28
|
+
http_auth
|
|
29
|
+
elsif warden_options[:recall]
|
|
30
|
+
recall
|
|
31
|
+
else
|
|
32
|
+
redirect
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
def http_auth
|
|
37
|
+
self.status = 401
|
|
38
|
+
self.headers["WWW-Authenticate"] = %(Basic realm=#{Devise.http_authentication_realm.inspect}) if http_auth_header?
|
|
39
|
+
self.content_type = request.format.to_s
|
|
40
|
+
self.response_body = http_auth_body
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
def recall
|
|
44
|
+
env["PATH_INFO"] = attempted_path
|
|
45
|
+
flash.now[:alert] = i18n_message(:invalid)
|
|
46
|
+
self.response = recall_app(warden_options[:recall]).call(env)
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
def redirect
|
|
50
|
+
store_location!
|
|
51
|
+
flash[:alert] = i18n_message
|
|
52
|
+
redirect_to redirect_url
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
protected
|
|
56
|
+
|
|
57
|
+
def i18n_message(default = nil)
|
|
58
|
+
message = warden.message || warden_options[:message] || default || :unauthenticated
|
|
59
|
+
|
|
60
|
+
if message.is_a?(Symbol)
|
|
61
|
+
I18n.t(:"#{scope}.#{message}", :resource_name => scope,
|
|
62
|
+
:scope => "devise.failure", :default => [message, message.to_s])
|
|
63
|
+
else
|
|
64
|
+
message.to_s
|
|
65
|
+
end
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
def redirect_url
|
|
69
|
+
opts = {}
|
|
70
|
+
route = :"new_#{scope}_session_path"
|
|
71
|
+
opts[:format] = request_format unless skip_format?
|
|
72
|
+
|
|
73
|
+
if respond_to?(route)
|
|
74
|
+
send(route, opts)
|
|
75
|
+
else
|
|
76
|
+
root_path(opts)
|
|
77
|
+
end
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
def skip_format?
|
|
81
|
+
%w(html */*).include? request_format.to_s
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
# Choose whether we should respond in a http authentication fashion,
|
|
85
|
+
# including 401 and optional headers.
|
|
86
|
+
#
|
|
87
|
+
# This method allows the user to explicitly disable http authentication
|
|
88
|
+
# on ajax requests in case they want to redirect on failures instead of
|
|
89
|
+
# handling the errors on their own. This is useful in case your ajax API
|
|
90
|
+
# is the same as your public API and uses a format like JSON (so you
|
|
91
|
+
# cannot mark JSON as a navigational format).
|
|
92
|
+
def http_auth?
|
|
93
|
+
if request.xhr?
|
|
94
|
+
Devise.http_authenticatable_on_xhr
|
|
95
|
+
else
|
|
96
|
+
!(request_format && is_navigational_format?)
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
# It does not make sense to send authenticate headers in ajax requests
|
|
101
|
+
# or if the user disabled them.
|
|
102
|
+
def http_auth_header?
|
|
103
|
+
Devise.mappings[scope].to.http_authenticatable && !request.xhr?
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
def http_auth_body
|
|
107
|
+
return i18n_message unless request_format
|
|
108
|
+
method = "to_#{request_format}"
|
|
109
|
+
if method == "to_xml"
|
|
110
|
+
{ :error => i18n_message }.to_xml(:root => "errors")
|
|
111
|
+
elsif {}.respond_to?(method)
|
|
112
|
+
{ :error => i18n_message }.send(method)
|
|
113
|
+
else
|
|
114
|
+
i18n_message
|
|
115
|
+
end
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
def recall_app(app)
|
|
119
|
+
controller, action = app.split("#")
|
|
120
|
+
controller_name = ActiveSupport::Inflector.camelize(controller)
|
|
121
|
+
controller_klass = ActiveSupport::Inflector.constantize("#{controller_name}Controller")
|
|
122
|
+
controller_klass.action(action)
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
def warden
|
|
126
|
+
env['warden']
|
|
127
|
+
end
|
|
128
|
+
|
|
129
|
+
def warden_options
|
|
130
|
+
env['warden.options']
|
|
131
|
+
end
|
|
132
|
+
|
|
133
|
+
def scope
|
|
134
|
+
@scope ||= warden_options[:scope] || Devise.default_scope
|
|
135
|
+
end
|
|
136
|
+
|
|
137
|
+
def attempted_path
|
|
138
|
+
warden_options[:attempted_path]
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
# Stores requested uri to redirect the user after signing in. We cannot use
|
|
142
|
+
# scoped session provided by warden here, since the user is not authenticated
|
|
143
|
+
# yet, but we still need to store the uri based on scope, so different scopes
|
|
144
|
+
# would never use the same uri to redirect.
|
|
145
|
+
def store_location!
|
|
146
|
+
session["#{scope}_return_to"] = attempted_path if request.get? && !http_auth?
|
|
147
|
+
end
|
|
148
|
+
end
|
|
149
|
+
end
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Deny user access whenever his account is not active yet. All strategies that inherits from
|
|
2
|
+
# Devise::Strategies::Authenticatable and uses the validate already check if the user is active_for_authentication?
|
|
3
|
+
# before actively signing him in. However, we need this as hook to validate the user activity
|
|
4
|
+
# in each request and in case the user is using other strategies beside Devise ones.
|
|
5
|
+
Warden::Manager.after_set_user do |record, warden, options|
|
|
6
|
+
if record && record.respond_to?(:active_for_authentication?) && !record.active_for_authentication?
|
|
7
|
+
scope = options[:scope]
|
|
8
|
+
warden.logout(scope)
|
|
9
|
+
throw :warden, :scope => scope, :message => record.inactive_message
|
|
10
|
+
end
|
|
11
|
+
end
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Before logout hook to forget the user in the given scope, if it responds
|
|
2
|
+
# to forget_me! Also clear remember token to ensure the user won't be
|
|
3
|
+
# remembered again. Notice that we forget the user unless the record is not persisted.
|
|
4
|
+
# This avoids forgetting deleted users.
|
|
5
|
+
Warden::Manager.before_logout do |record, warden, options|
|
|
6
|
+
if record.respond_to?(:forget_me!)
|
|
7
|
+
Devise::Controllers::Rememberable::Proxy.new(warden).forget_me(record)
|
|
8
|
+
end
|
|
9
|
+
end
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
Warden::Manager.after_set_user :except => :fetch do |record, warden, options|
|
|
2
|
+
scope = options[:scope]
|
|
3
|
+
if record.respond_to?(:remember_me) && record.remember_me && warden.authenticated?(scope)
|
|
4
|
+
Devise::Controllers::Rememberable::Proxy.new(warden).remember_me(record)
|
|
5
|
+
end
|
|
6
|
+
end
|