ivanvc-devise 1.0.7.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (139) hide show
  1. data/CHANGELOG.rdoc +378 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +262 -0
  4. data/Rakefile +53 -0
  5. data/TODO +2 -0
  6. data/app/controllers/confirmations_controller.rb +33 -0
  7. data/app/controllers/passwords_controller.rb +41 -0
  8. data/app/controllers/registrations_controller.rb +53 -0
  9. data/app/controllers/sessions_controller.rb +42 -0
  10. data/app/controllers/unlocks_controller.rb +41 -0
  11. data/app/models/devise_mailer.rb +68 -0
  12. data/app/views/confirmations/new.html.erb +12 -0
  13. data/app/views/devise_mailer/confirmation_instructions.html.erb +5 -0
  14. data/app/views/devise_mailer/reset_password_instructions.html.erb +8 -0
  15. data/app/views/devise_mailer/unlock_instructions.html.erb +7 -0
  16. data/app/views/passwords/edit.html.erb +16 -0
  17. data/app/views/passwords/new.html.erb +12 -0
  18. data/app/views/registrations/edit.html.erb +25 -0
  19. data/app/views/registrations/new.html.erb +17 -0
  20. data/app/views/sessions/new.html.erb +17 -0
  21. data/app/views/shared/_devise_links.erb +19 -0
  22. data/app/views/unlocks/new.html.erb +12 -0
  23. data/generators/devise/USAGE +5 -0
  24. data/generators/devise/devise_generator.rb +15 -0
  25. data/generators/devise/lib/route_devise.rb +32 -0
  26. data/generators/devise/templates/migration.rb +23 -0
  27. data/generators/devise/templates/model.rb +9 -0
  28. data/generators/devise_install/USAGE +3 -0
  29. data/generators/devise_install/devise_install_generator.rb +15 -0
  30. data/generators/devise_install/templates/README +23 -0
  31. data/generators/devise_install/templates/devise.rb +105 -0
  32. data/generators/devise_views/USAGE +3 -0
  33. data/generators/devise_views/devise_views_generator.rb +21 -0
  34. data/lib/devise.rb +264 -0
  35. data/lib/devise/controllers/helpers.rb +206 -0
  36. data/lib/devise/controllers/internal_helpers.rb +129 -0
  37. data/lib/devise/controllers/url_helpers.rb +41 -0
  38. data/lib/devise/encryptors/authlogic_sha512.rb +21 -0
  39. data/lib/devise/encryptors/base.rb +20 -0
  40. data/lib/devise/encryptors/bcrypt.rb +21 -0
  41. data/lib/devise/encryptors/clearance_sha1.rb +19 -0
  42. data/lib/devise/encryptors/restful_authentication_sha1.rb +22 -0
  43. data/lib/devise/encryptors/sha1.rb +27 -0
  44. data/lib/devise/encryptors/sha512.rb +27 -0
  45. data/lib/devise/failure_app.rb +65 -0
  46. data/lib/devise/hooks/activatable.rb +15 -0
  47. data/lib/devise/hooks/rememberable.rb +32 -0
  48. data/lib/devise/hooks/timeoutable.rb +18 -0
  49. data/lib/devise/hooks/trackable.rb +18 -0
  50. data/lib/devise/locales/en.yml +35 -0
  51. data/lib/devise/mapping.rb +128 -0
  52. data/lib/devise/models.rb +117 -0
  53. data/lib/devise/models/activatable.rb +16 -0
  54. data/lib/devise/models/confirmable.rb +163 -0
  55. data/lib/devise/models/database_authenticatable.rb +144 -0
  56. data/lib/devise/models/http_authenticatable.rb +21 -0
  57. data/lib/devise/models/lockable.rb +150 -0
  58. data/lib/devise/models/recoverable.rb +80 -0
  59. data/lib/devise/models/registerable.rb +8 -0
  60. data/lib/devise/models/rememberable.rb +92 -0
  61. data/lib/devise/models/timeoutable.rb +28 -0
  62. data/lib/devise/models/token_authenticatable.rb +89 -0
  63. data/lib/devise/models/trackable.rb +16 -0
  64. data/lib/devise/models/validatable.rb +39 -0
  65. data/lib/devise/orm/active_record.rb +41 -0
  66. data/lib/devise/orm/data_mapper.rb +83 -0
  67. data/lib/devise/orm/mongo_mapper.rb +52 -0
  68. data/lib/devise/rails.rb +14 -0
  69. data/lib/devise/rails/routes.rb +125 -0
  70. data/lib/devise/rails/warden_compat.rb +25 -0
  71. data/lib/devise/schema.rb +73 -0
  72. data/lib/devise/strategies/base.rb +16 -0
  73. data/lib/devise/strategies/database_authenticatable.rb +36 -0
  74. data/lib/devise/strategies/http_authenticatable.rb +59 -0
  75. data/lib/devise/strategies/rememberable.rb +37 -0
  76. data/lib/devise/strategies/token_authenticatable.rb +37 -0
  77. data/lib/devise/test_helpers.rb +90 -0
  78. data/lib/devise/version.rb +3 -0
  79. data/rails/init.rb +2 -0
  80. data/test/controllers/helpers_test.rb +184 -0
  81. data/test/controllers/internal_helpers_test.rb +55 -0
  82. data/test/controllers/url_helpers_test.rb +47 -0
  83. data/test/devise_test.rb +74 -0
  84. data/test/encryptors_test.rb +31 -0
  85. data/test/failure_app_test.rb +44 -0
  86. data/test/integration/authenticatable_test.rb +271 -0
  87. data/test/integration/confirmable_test.rb +97 -0
  88. data/test/integration/http_authenticatable_test.rb +52 -0
  89. data/test/integration/lockable_test.rb +102 -0
  90. data/test/integration/rack_middleware_test.rb +47 -0
  91. data/test/integration/recoverable_test.rb +141 -0
  92. data/test/integration/registerable_test.rb +144 -0
  93. data/test/integration/rememberable_test.rb +71 -0
  94. data/test/integration/timeoutable_test.rb +68 -0
  95. data/test/integration/token_authenticatable_test.rb +55 -0
  96. data/test/integration/trackable_test.rb +64 -0
  97. data/test/mailers/confirmation_instructions_test.rb +86 -0
  98. data/test/mailers/reset_password_instructions_test.rb +68 -0
  99. data/test/mailers/unlock_instructions_test.rb +62 -0
  100. data/test/mapping_test.rb +148 -0
  101. data/test/models/authenticatable_test.rb +180 -0
  102. data/test/models/confirmable_test.rb +228 -0
  103. data/test/models/lockable_test.rb +202 -0
  104. data/test/models/recoverable_test.rb +138 -0
  105. data/test/models/rememberable_test.rb +135 -0
  106. data/test/models/timeoutable_test.rb +28 -0
  107. data/test/models/token_authenticatable_test.rb +51 -0
  108. data/test/models/trackable_test.rb +5 -0
  109. data/test/models/validatable_test.rb +106 -0
  110. data/test/models_test.rb +70 -0
  111. data/test/orm/active_record.rb +31 -0
  112. data/test/orm/mongo_mapper.rb +20 -0
  113. data/test/rails_app/app/active_record/admin.rb +7 -0
  114. data/test/rails_app/app/active_record/user.rb +7 -0
  115. data/test/rails_app/app/controllers/admins_controller.rb +6 -0
  116. data/test/rails_app/app/controllers/application_controller.rb +12 -0
  117. data/test/rails_app/app/controllers/home_controller.rb +4 -0
  118. data/test/rails_app/app/controllers/users_controller.rb +16 -0
  119. data/test/rails_app/app/helpers/application_helper.rb +3 -0
  120. data/test/rails_app/app/mongo_mapper/admin.rb +13 -0
  121. data/test/rails_app/app/mongo_mapper/user.rb +14 -0
  122. data/test/rails_app/config/boot.rb +110 -0
  123. data/test/rails_app/config/environment.rb +42 -0
  124. data/test/rails_app/config/environments/development.rb +17 -0
  125. data/test/rails_app/config/environments/production.rb +28 -0
  126. data/test/rails_app/config/environments/test.rb +28 -0
  127. data/test/rails_app/config/initializers/devise.rb +82 -0
  128. data/test/rails_app/config/initializers/inflections.rb +2 -0
  129. data/test/rails_app/config/initializers/new_rails_defaults.rb +24 -0
  130. data/test/rails_app/config/initializers/session_store.rb +15 -0
  131. data/test/rails_app/config/routes.rb +21 -0
  132. data/test/routes_test.rb +110 -0
  133. data/test/support/assertions_helper.rb +37 -0
  134. data/test/support/integration_tests_helper.rb +71 -0
  135. data/test/support/test_silencer.rb +5 -0
  136. data/test/support/tests_helper.rb +39 -0
  137. data/test/test_helper.rb +21 -0
  138. data/test/test_helpers_test.rb +57 -0
  139. metadata +214 -0
@@ -0,0 +1,206 @@
1
+ module Devise
2
+ module Controllers
3
+ # Those helpers are convenience methods added to ApplicationController.
4
+ module Helpers
5
+
6
+ def self.included(base)
7
+ base.class_eval do
8
+ helper_method :warden, :signed_in?, :devise_controller?, :anybody_signed_in?,
9
+ *Devise.mappings.keys.map { |m| [:"current_#{m}", :"#{m}_signed_in?", :"#{m}_session"] }.flatten
10
+
11
+ # Use devise default_url_options. We have to declare it here to overwrite
12
+ # default definitions.
13
+ def default_url_options(options=nil)
14
+ Devise::Mapping.default_url_options
15
+ end
16
+ end
17
+ end
18
+
19
+ # The main accessor for the warden proxy instance
20
+ def warden
21
+ request.env['warden']
22
+ end
23
+
24
+ # Return true if it's a devise_controller. false to all controllers unless
25
+ # the controllers defined inside devise. Useful if you want to apply a before
26
+ # filter to all controller, except the ones in devise:
27
+ #
28
+ # before_filter :my_filter, :unless => { |c| c.devise_controller? }
29
+ def devise_controller?
30
+ false
31
+ end
32
+
33
+ # Attempts to authenticate the given scope by running authentication hooks,
34
+ # but does not redirect in case of failures.
35
+ def authenticate(scope)
36
+ warden.authenticate(:scope => scope)
37
+ end
38
+
39
+ # Attempts to authenticate the given scope by running authentication hooks,
40
+ # redirecting in case of failures.
41
+ def authenticate!(scope)
42
+ warden.authenticate!(:scope => scope)
43
+ end
44
+
45
+ # Check if the given scope is signed in session, without running
46
+ # authentication hooks.
47
+ def signed_in?(scope)
48
+ warden.authenticate?(:scope => scope)
49
+ end
50
+
51
+ # Check if the any scope is signed in session, without running
52
+ # authentication hooks.
53
+ def anybody_signed_in?
54
+ Devise.mappings.keys.any? { |scope| signed_in?(scope) }
55
+ end
56
+
57
+ # Sign in an user that already was authenticated. This helper is useful for logging
58
+ # users in after sign up.
59
+ #
60
+ # Examples:
61
+ #
62
+ # sign_in :user, @user # sign_in(scope, resource)
63
+ # sign_in @user # sign_in(resource)
64
+ #
65
+ def sign_in(resource_or_scope, resource=nil)
66
+ scope = Devise::Mapping.find_scope!(resource_or_scope)
67
+ resource ||= resource_or_scope
68
+ warden.set_user(resource, :scope => scope)
69
+ end
70
+
71
+ # Sign out a given user or scope. This helper is useful for signing out an user
72
+ # after deleting accounts.
73
+ #
74
+ # Examples:
75
+ #
76
+ # sign_out :user # sign_out(scope)
77
+ # sign_out @user # sign_out(resource)
78
+ #
79
+ def sign_out(resource_or_scope)
80
+ scope = Devise::Mapping.find_scope!(resource_or_scope)
81
+ warden.user(scope) # Without loading user here, before_logout hook is not called
82
+ warden.raw_session.inspect # Without this inspect here. The session does not clear.
83
+ warden.logout(scope)
84
+ end
85
+
86
+ # Returns and delete the url stored in the session for the given scope. Useful
87
+ # for giving redirect backs after sign up:
88
+ #
89
+ # Example:
90
+ #
91
+ # redirect_to stored_location_for(:user) || root_path
92
+ #
93
+ def stored_location_for(resource_or_scope)
94
+ scope = Devise::Mapping.find_scope!(resource_or_scope)
95
+ session.delete(:"#{scope}.return_to")
96
+ end
97
+
98
+ # The default url to be used after signing in. This is used by all Devise
99
+ # controllers and you can overwrite it in your ApplicationController to
100
+ # provide a custom hook for a custom resource.
101
+ #
102
+ # By default, it first tries to find a resource_root_path, otherwise it
103
+ # uses the root path. For a user scope, you can define the default url in
104
+ # the following way:
105
+ #
106
+ # map.user_root '/users', :controller => 'users' # creates user_root_path
107
+ #
108
+ # map.resources :users do |users|
109
+ # users.root # creates user_root_path
110
+ # end
111
+ #
112
+ #
113
+ # If none of these are defined, root_path is used. However, if this default
114
+ # is not enough, you can customize it, for example:
115
+ #
116
+ # def after_sign_in_path_for(resource)
117
+ # if resource.is_a?(User) && resource.can_publish?
118
+ # publisher_url
119
+ # else
120
+ # super
121
+ # end
122
+ # end
123
+ #
124
+ def after_sign_in_path_for(resource_or_scope)
125
+ scope = Devise::Mapping.find_scope!(resource_or_scope)
126
+ home_path = :"#{scope}_root_path"
127
+ respond_to?(home_path, true) ? send(home_path) : root_path
128
+ end
129
+
130
+ # Method used by sessions controller to sign out an user. You can overwrite
131
+ # it in your ApplicationController to provide a custom hook for a custom
132
+ # scope. Notice that differently from +after_sign_in_path_for+ this method
133
+ # receives a symbol with the scope, and not the resource.
134
+ #
135
+ # By default is the root_path.
136
+ def after_sign_out_path_for(resource_or_scope)
137
+ root_path
138
+ end
139
+
140
+ # Sign in an user and tries to redirect first to the stored location and
141
+ # then to the url specified by after_sign_in_path_for.
142
+ #
143
+ # If just a symbol is given, consider that the user was already signed in
144
+ # through other means and just perform the redirection.
145
+ def sign_in_and_redirect(resource_or_scope, resource=nil, skip=false)
146
+ scope = Devise::Mapping.find_scope!(resource_or_scope)
147
+ resource ||= resource_or_scope
148
+ sign_in(scope, resource) unless skip
149
+ redirect_to stored_location_for(scope) || after_sign_in_path_for(resource)
150
+ end
151
+
152
+ # Sign out an user and tries to redirect to the url specified by
153
+ # after_sign_out_path_for.
154
+ def sign_out_and_redirect(resource_or_scope)
155
+ scope = Devise::Mapping.find_scope!(resource_or_scope)
156
+ sign_out(scope)
157
+ redirect_to after_sign_out_path_for(scope)
158
+ end
159
+
160
+ # Define authentication filters and accessor helpers based on mappings.
161
+ # These filters should be used inside the controllers as before_filters,
162
+ # so you can control the scope of the user who should be signed in to
163
+ # access that specific controller/action.
164
+ # Example:
165
+ #
166
+ # Maps:
167
+ # User => :authenticatable
168
+ # Admin => :authenticatable
169
+ #
170
+ # Generated methods:
171
+ # authenticate_user! # Signs user in or redirect
172
+ # authenticate_admin! # Signs admin in or redirect
173
+ # user_signed_in? # Checks whether there is an user signed in or not
174
+ # admin_signed_in? # Checks whether there is an admin signed in or not
175
+ # current_user # Current signed in user
176
+ # current_admin # Currend signed in admin
177
+ # user_session # Session data available only to the user scope
178
+ # admin_session # Session data available only to the admin scope
179
+ #
180
+ # Use:
181
+ # before_filter :authenticate_user! # Tell devise to use :user map
182
+ # before_filter :authenticate_admin! # Tell devise to use :admin map
183
+ #
184
+ Devise.mappings.each_key do |mapping|
185
+ class_eval <<-METHODS, __FILE__, __LINE__ + 1
186
+ def authenticate_#{mapping}!
187
+ warden.authenticate!(:scope => :#{mapping})
188
+ end
189
+
190
+ def #{mapping}_signed_in?
191
+ warden.authenticate?(:scope => :#{mapping})
192
+ end
193
+
194
+ def current_#{mapping}
195
+ @current_#{mapping} ||= warden.authenticate(:scope => :#{mapping})
196
+ end
197
+
198
+ def #{mapping}_session
199
+ current_#{mapping} && warden.session(:#{mapping})
200
+ end
201
+ METHODS
202
+ end
203
+
204
+ end
205
+ end
206
+ end
@@ -0,0 +1,129 @@
1
+ module Devise
2
+ module Controllers
3
+ # Those helpers are used only inside Devise controllers and should not be
4
+ # included in ApplicationController since they all depend on the url being
5
+ # accessed.
6
+ module InternalHelpers #:nodoc:
7
+
8
+ def self.included(base)
9
+ base.class_eval do
10
+ extend ScopedViews
11
+ unloadable
12
+
13
+ helper_method :resource, :scope_name, :resource_name, :resource_class, :devise_mapping, :devise_controller?
14
+ hide_action :resource, :scope_name, :resource_name, :resource_class, :devise_mapping, :devise_controller?
15
+
16
+ skip_before_filter *Devise.mappings.keys.map { |m| :"authenticate_#{m}!" }
17
+ prepend_before_filter :is_devise_resource?
18
+ end
19
+ end
20
+
21
+ module ScopedViews
22
+ def scoped_views
23
+ defined?(@scoped_views) ? @scoped_views : Devise.scoped_views
24
+ end
25
+
26
+ def scoped_views=(value)
27
+ @scoped_views = value
28
+ end
29
+ end
30
+
31
+ # Gets the actual resource stored in the instance variable
32
+ def resource
33
+ instance_variable_get(:"@#{resource_name}")
34
+ end
35
+
36
+ # Proxy to devise map name
37
+ def resource_name
38
+ devise_mapping.name
39
+ end
40
+ alias :scope_name :resource_name
41
+
42
+ # Proxy to devise map class
43
+ def resource_class
44
+ devise_mapping.to
45
+ end
46
+
47
+ # Attempt to find the mapped route for devise based on request path
48
+ def devise_mapping
49
+ @devise_mapping ||= begin
50
+ mapping = Devise::Mapping.find_by_path(request.path)
51
+ mapping ||= Devise.mappings[Devise.default_scope] if Devise.use_default_scope
52
+ mapping
53
+ end
54
+ end
55
+
56
+ # Overwrites devise_controller? to return true
57
+ def devise_controller?
58
+ true
59
+ end
60
+
61
+ protected
62
+
63
+ # Checks whether it's a devise mapped resource or not.
64
+ def is_devise_resource? #:nodoc:
65
+ raise ActionController::UnknownAction unless devise_mapping && devise_mapping.allows?(controller_name)
66
+ end
67
+
68
+ # Sets the resource creating an instance variable
69
+ def resource=(new_resource)
70
+ instance_variable_set(:"@#{resource_name}", new_resource)
71
+ end
72
+
73
+ # Build a devise resource.
74
+ def build_resource
75
+ self.resource ||= resource_class.new(params[resource_name] || {})
76
+ end
77
+
78
+ # Helper for use in before_filters where no authentication is required.
79
+ #
80
+ # Example:
81
+ # before_filter :require_no_authentication, :only => :new
82
+ def require_no_authentication
83
+ redirect_to after_sign_in_path_for(resource_name) if warden.authenticated?(resource_name)
84
+ end
85
+
86
+ # Sets the flash message with :key, using I18n. By default you are able
87
+ # to setup your messages using specific resource scope, and if no one is
88
+ # found we look to default scope.
89
+ # Example (i18n locale file):
90
+ #
91
+ # en:
92
+ # devise:
93
+ # passwords:
94
+ # #default_scope_messages - only if resource_scope is not found
95
+ # user:
96
+ # #resource_scope_messages
97
+ #
98
+ # Please refer to README or en.yml locale file to check what messages are
99
+ # available.
100
+ def set_flash_message(key, kind, now=false)
101
+ flash_hash = now ? flash.now : flash
102
+ flash_hash[key] = I18n.t(:"#{resource_name}.#{kind}",
103
+ :scope => [:devise, controller_name.to_sym], :default => kind)
104
+ end
105
+
106
+ # Shortcut to set flash.now message. Same rules applied from set_flash_message
107
+ def set_now_flash_message(key, kind)
108
+ set_flash_message(key, kind, true)
109
+ end
110
+
111
+ # Render a view for the specified scope. Turned off by default.
112
+ # Accepts just :controller as option.
113
+ def render_with_scope(action, options={})
114
+ controller_name = options.delete(:controller) || self.controller_name
115
+
116
+ if self.class.scoped_views
117
+ begin
118
+ render :template => "#{controller_name}/#{devise_mapping.as}/#{action}"
119
+ rescue ActionView::MissingTemplate
120
+ render action, :controller => controller_name
121
+ end
122
+ else
123
+ render action, :controller => controller_name
124
+ end
125
+ end
126
+
127
+ end
128
+ end
129
+ end
@@ -0,0 +1,41 @@
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
+
22
+ Devise::ROUTES.each do |module_name|
23
+ [:path, :url].each do |path_or_url|
24
+ actions = [ nil, :new_ ]
25
+ actions << :edit_ if [:password, :registration].include?(module_name)
26
+ actions << :destroy_ if [:session].include?(module_name)
27
+
28
+ actions.each do |action|
29
+ class_eval <<-URL_HELPERS, __FILE__, __LINE__ + 1
30
+ def #{action}#{module_name}_#{path_or_url}(resource_or_scope, *args)
31
+ scope = Devise::Mapping.find_scope!(resource_or_scope)
32
+ send("#{action}\#{scope}_#{module_name}_#{path_or_url}", *args)
33
+ end
34
+ URL_HELPERS
35
+ end
36
+ end
37
+ end
38
+
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,21 @@
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 silumate
8
+ # the default behavior.
9
+ class AuthlogicSha512 < Base
10
+
11
+ # Gererates a default password digest based on salt, pepper and the
12
+ # incoming password.
13
+ def self.digest(password, stretches, salt, pepper)
14
+ digest = [password, salt].flatten.join('')
15
+ stretches.times { digest = Digest::SHA512.hexdigest(digest) }
16
+ digest
17
+ end
18
+
19
+ end
20
+ end
21
+ 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
16
+ Devise.friendly_token
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,21 @@
1
+ require "bcrypt"
2
+
3
+ module Devise
4
+ module Encryptors
5
+ # = BCrypt
6
+ # Uses the BCrypt hash algorithm to encrypt passwords.
7
+ class Bcrypt < Base
8
+
9
+ # Gererates a default password digest based on stretches, salt, pepper and the
10
+ # incoming password. We don't strech it ourselves since BCrypt does so internally.
11
+ def self.digest(password, stretches, salt, pepper)
12
+ ::BCrypt::Engine.hash_secret([password, pepper].join, salt, stretches)
13
+ end
14
+
15
+ def self.salt
16
+ ::BCrypt::Engine.generate_salt
17
+ end
18
+
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,19 @@
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
+
11
+ # Gererates a default password digest based on salt, pepper and the
12
+ # incoming password.
13
+ def self.digest(password, stretches, salt, pepper)
14
+ Digest::SHA1.hexdigest("--#{salt}--#{password}--")
15
+ end
16
+
17
+ end
18
+ end
19
+ end