Module: DeviseOtpAuthenticatable::Controllers::Helpers
- Defined in:
- lib/devise_otp_authenticatable/controllers/helpers.rb
Instance Method Summary collapse
- #authenticate_scope! ⇒ Object
-
#ensure_resource! ⇒ Object
Sanity check for resource validity.
-
#is_otp_trusted_device_for?(resource) ⇒ Boolean
is the current browser trusted?.
-
#needs_credentials_refresh?(resource) ⇒ Boolean
check if the resource needs a credentials refresh.
-
#otp_authenticator_token_image(resource) ⇒ Object
returns the URL for the QR Code to initialize the Authenticator device.
-
#otp_clear_trusted_device_for(resource) ⇒ Object
make the current browser NOT trusted.
- #otp_fetch_refresh_return_url ⇒ Object
-
#otp_refresh_credentials_for(resource) ⇒ Object
credentials are refreshed.
-
#otp_reset_persistence_for(resource) ⇒ Object
clears the persistence list for this kind of resource.
- #otp_scoped_persistence_cookie ⇒ Object
- #otp_scoped_refresh_property ⇒ Object
- #otp_scoped_refresh_return_url_property ⇒ Object
-
#otp_set_flash_message(key, kind, options = {}) ⇒ Object
similar to DeviseController#set_flash_message, but sets the scope inside the otp controller.
- #otp_set_refresh_return_url ⇒ Object
-
#otp_set_trusted_device_for(resource) ⇒ Object
make the current browser trusted.
- #otp_t ⇒ Object
- #recovery_enabled? ⇒ Boolean
- #trusted_devices_enabled? ⇒ Boolean
Instance Method Details
#authenticate_scope! ⇒ Object
7 8 9 10 |
# File 'lib/devise_otp_authenticatable/controllers/helpers.rb', line 7 def authenticate_scope! send(:"authenticate_#{resource_name}!", :force => true) self.resource = send("current_#{resource_name}") end |
#ensure_resource! ⇒ Object
Sanity check for resource validity
41 42 43 44 45 |
# File 'lib/devise_otp_authenticatable/controllers/helpers.rb', line 41 def ensure_resource! if resource.nil? raise ArgumentError, "Should not happen" end end |
#is_otp_trusted_device_for?(resource) ⇒ Boolean
is the current browser trusted?
73 74 75 76 77 78 79 80 81 |
# File 'lib/devise_otp_authenticatable/controllers/helpers.rb', line 73 def is_otp_trusted_device_for?(resource) return false unless resource.class.otp_trust_persistence if [].present? .signed[] == [resource.to_key, resource.authenticatable_salt, resource.otp_persistence_seed] else false end end |
#needs_credentials_refresh?(resource) ⇒ Boolean
check if the resource needs a credentials refresh. IE, they need to be asked a password again to access this resource.
54 55 56 57 58 59 |
# File 'lib/devise_otp_authenticatable/controllers/helpers.rb', line 54 def needs_credentials_refresh?(resource) return false unless resource.class.otp_credentials_refresh (!session[otp_scoped_refresh_property].present? || (session[otp_scoped_refresh_property] < DateTime.now)).tap { |need| otp_set_refresh_return_url if need } end |
#otp_authenticator_token_image(resource) ⇒ Object
returns the URL for the QR Code to initialize the Authenticator device
135 136 137 |
# File 'lib/devise_otp_authenticatable/controllers/helpers.rb', line 135 def otp_authenticator_token_image(resource) otp_authenticator_token_image_js(resource.otp_provisioning_uri) end |
#otp_clear_trusted_device_for(resource) ⇒ Object
make the current browser NOT trusted
119 120 121 |
# File 'lib/devise_otp_authenticatable/controllers/helpers.rb', line 119 def otp_clear_trusted_device_for(resource) .delete() end |
#otp_fetch_refresh_return_url ⇒ Object
99 100 101 102 |
# File 'lib/devise_otp_authenticatable/controllers/helpers.rb', line 99 def otp_fetch_refresh_return_url session.delete(otp_scoped_refresh_return_url_property) { :root } end |
#otp_refresh_credentials_for(resource) ⇒ Object
credentials are refreshed
64 65 66 67 |
# File 'lib/devise_otp_authenticatable/controllers/helpers.rb', line 64 def otp_refresh_credentials_for(resource) return false unless resource.class.otp_credentials_refresh session[otp_scoped_refresh_property] = (Time.now + resource.class.otp_credentials_refresh) end |
#otp_reset_persistence_for(resource) ⇒ Object
clears the persistence list for this kind of resource
127 128 129 130 |
# File 'lib/devise_otp_authenticatable/controllers/helpers.rb', line 127 def otp_reset_persistence_for(resource) otp_clear_trusted_device_for(resource) resource.reset_otp_persistence! end |
#otp_scoped_persistence_cookie ⇒ Object
112 113 114 |
# File 'lib/devise_otp_authenticatable/controllers/helpers.rb', line 112 def "otp_#{resource_name}_device_trusted" end |
#otp_scoped_refresh_property ⇒ Object
108 109 110 |
# File 'lib/devise_otp_authenticatable/controllers/helpers.rb', line 108 def otp_scoped_refresh_property "otp_#{resource_name}refresh_after".to_sym end |
#otp_scoped_refresh_return_url_property ⇒ Object
104 105 106 |
# File 'lib/devise_otp_authenticatable/controllers/helpers.rb', line 104 def otp_scoped_refresh_return_url_property "otp_#{resource_name}refresh_return_url".to_sym end |
#otp_set_flash_message(key, kind, options = {}) ⇒ Object
similar to DeviseController#set_flash_message, but sets the scope inside the otp controller
16 17 18 19 20 21 22 23 |
# File 'lib/devise_otp_authenticatable/controllers/helpers.rb', line 16 def (key, kind, ={}) [:scope] ||= "devise.otp.#{controller_name}" [:default] = Array([:default]).unshift(kind.to_sym) [:resource_name] = resource_name = () if respond_to?(:devise_i18n_options, true) = I18n.t("#{[:resource_name]}.#{kind}", ) flash[key] = if .present? end |
#otp_set_refresh_return_url ⇒ Object
95 96 97 |
# File 'lib/devise_otp_authenticatable/controllers/helpers.rb', line 95 def otp_set_refresh_return_url session[otp_scoped_refresh_return_url_property] = request.fullpath end |
#otp_set_trusted_device_for(resource) ⇒ Object
make the current browser trusted
86 87 88 89 90 91 92 93 |
# File 'lib/devise_otp_authenticatable/controllers/helpers.rb', line 86 def otp_set_trusted_device_for(resource) return unless resource.class.otp_trust_persistence .signed[] = { :httponly => true, :expires => Time.now + resource.class.otp_trust_persistence, :value => [resource.to_key, resource.authenticatable_salt, resource.otp_persistence_seed] } end |
#otp_t ⇒ Object
25 26 27 |
# File 'lib/devise_otp_authenticatable/controllers/helpers.rb', line 25 def otp_t() end |
#recovery_enabled? ⇒ Boolean
34 35 36 |
# File 'lib/devise_otp_authenticatable/controllers/helpers.rb', line 34 def recovery_enabled? resource_class.otp_recovery_tokens && (resource_class.otp_recovery_tokens > 0) end |
#trusted_devices_enabled? ⇒ Boolean
30 31 32 |
# File 'lib/devise_otp_authenticatable/controllers/helpers.rb', line 30 def trusted_devices_enabled? resource.class.otp_trust_persistence && (resource.class.otp_trust_persistence > 0) end |