2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-05 22:43:05 +01:00
|
|
|
class Auth::SessionsController < Devise::SessionsController
|
2016-03-28 00:06:52 +02:00
|
|
|
include Devise::Controllers::Rememberable
|
|
|
|
|
2016-03-05 22:43:05 +01:00
|
|
|
layout 'auth'
|
2016-03-28 00:06:52 +02:00
|
|
|
|
2017-01-28 20:43:38 +01:00
|
|
|
skip_before_action :require_no_authentication, only: [:create]
|
Change unconfirmed user login behaviour (#11375)
Allow access to account settings, 2FA, authorized applications, and
account deletions to unconfirmed and pending users, as well as
users who had their accounts disabled. Suspended users cannot update
their e-mail or password or delete their account.
Display account status on account settings page, for example, when
an account is frozen, limited, unconfirmed or pending review.
After sign up, login users straight away and show a simple page that
tells them the status of their account with links to account settings
and logout, to reduce onboarding friction and allow users to correct
wrongly typed e-mail addresses.
Move the final sign-up step of SSO integrations to be the same
as above to reduce code duplication.
2019-07-22 10:48:50 +02:00
|
|
|
skip_before_action :require_functional!
|
2020-11-12 23:05:01 +01:00
|
|
|
skip_before_action :update_user_sign_in
|
Change unconfirmed user login behaviour (#11375)
Allow access to account settings, 2FA, authorized applications, and
account deletions to unconfirmed and pending users, as well as
users who had their accounts disabled. Suspended users cannot update
their e-mail or password or delete their account.
Display account status on account settings page, for example, when
an account is frozen, limited, unconfirmed or pending review.
After sign up, login users straight away and show a simple page that
tells them the status of their account with links to account settings
and logout, to reduce onboarding friction and allow users to correct
wrongly typed e-mail addresses.
Move the final sign-up step of SSO integrations to be the same
as above to reduce code duplication.
2019-07-22 10:48:50 +02:00
|
|
|
|
2020-06-09 10:23:06 +02:00
|
|
|
include TwoFactorAuthenticationConcern
|
|
|
|
include SignInTokenAuthenticationConcern
|
2019-09-24 04:35:36 +02:00
|
|
|
|
2017-10-11 00:52:25 +02:00
|
|
|
before_action :set_instance_presenter, only: [:new]
|
2018-07-31 01:14:33 +02:00
|
|
|
before_action :set_body_classes
|
2017-01-27 20:28:46 +01:00
|
|
|
|
2018-02-23 01:16:17 +01:00
|
|
|
def new
|
|
|
|
Devise.omniauth_configs.each do |provider, config|
|
2018-03-08 11:18:26 +01:00
|
|
|
return redirect_to(omniauth_authorize_path(resource_name, provider)) if config.strategy.redirect_at_sign_in
|
2018-02-23 01:16:17 +01:00
|
|
|
end
|
2018-03-08 11:18:26 +01:00
|
|
|
|
2018-02-23 01:16:17 +01:00
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2016-03-28 00:06:52 +02:00
|
|
|
def create
|
2019-09-24 04:35:36 +02:00
|
|
|
super do |resource|
|
2020-11-12 23:05:01 +01:00
|
|
|
resource.update_sign_in!(request, new_sign_in: true)
|
2019-09-24 04:35:36 +02:00
|
|
|
remember_me(resource)
|
|
|
|
flash.delete(:notice)
|
2016-03-28 00:06:52 +02:00
|
|
|
end
|
|
|
|
end
|
2016-09-26 23:55:21 +02:00
|
|
|
|
2017-01-28 20:43:38 +01:00
|
|
|
def destroy
|
2018-09-09 04:10:44 +02:00
|
|
|
tmp_stored_location = stored_location_for(:user)
|
2017-01-28 20:43:38 +01:00
|
|
|
super
|
2019-09-18 16:37:27 +02:00
|
|
|
session.delete(:challenge_passed_at)
|
2017-05-27 13:04:28 +02:00
|
|
|
flash.delete(:notice)
|
2018-09-09 04:10:44 +02:00
|
|
|
store_location_for(:user, tmp_stored_location) if continue_after?
|
2017-01-28 20:43:38 +01:00
|
|
|
end
|
|
|
|
|
Add WebAuthn as an alternative 2FA method (#14466)
* feat: add possibility of adding WebAuthn security keys to use as 2FA
This adds a basic UI for enabling WebAuthn 2FA. We did a little refactor
to the Settings page for editing the 2FA methods – now it will list the
methods that are available to the user (TOTP and WebAuthn) and from
there they'll be able to add or remove any of them.
Also, it's worth mentioning that for enabling WebAuthn it's required to
have TOTP enabled, so the first time that you go to the 2FA Settings
page, you'll be asked to set it up.
This work was inspired by the one donde by Github in their platform, and
despite it could be approached in different ways, we decided to go with
this one given that we feel that this gives a great UX.
Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com>
* feat: add request for WebAuthn as second factor at login if enabled
This commits adds the feature for using WebAuthn as a second factor for
login when enabled.
If users have WebAuthn enabled, now a page requesting for the use of a
WebAuthn credential for log in will appear, although a link redirecting
to the old page for logging in using a two-factor code will also be
present.
Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com>
* feat: add possibility of deleting WebAuthn Credentials
Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com>
* feat: disable WebAuthn when an Admin disables 2FA for a user
Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com>
* feat: remove ability to disable TOTP leaving only WebAuthn as 2FA
Following examples form other platforms like Github, we decided to make
Webauthn 2FA secondary to 2FA with TOTP, so that we removed the
possibility of removing TOTP authentication only, leaving users with
just WEbAuthn as 2FA. Instead, users will have to click on 'Disable 2FA'
in order to remove second factor auth.
The reason for WebAuthn being secondary to TOPT is that in that way,
users will still be able to log in using their code from their phone's
application if they don't have their security keys with them – or maybe
even lost them.
* We had to change a little the flow for setting up TOTP, given that now
it's possible to setting up again if you already had TOTP, in order to
let users modify their authenticator app – given that now it's not
possible for them to disable TOTP and set it up again with another
authenticator app.
So, basically, now instead of storing the new `otp_secret` in the
user, we store it in the session until the process of set up is
finished.
This was because, as it was before, when users clicked on 'Edit' in
the new two-factor methods lists page, but then went back without
finishing the flow, their `otp_secret` had been changed therefore
invalidating their previous authenticator app, making them unable to
log in again using TOTP.
Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com>
* refactor: fix eslint errors
The PR build was failing given that linting returning some errors.
This commit attempts to fix them.
* refactor: normalize i18n translations
The build was failing given that i18n translations files were not
normalized.
This commits fixes that.
* refactor: avoid having the webauthn gem locked to a specific version
* refactor: use symbols for routes without '/'
* refactor: avoid sending webauthn disabled email when 2FA is disabled
When an admins disable 2FA for users, we were sending two mails
to them, one notifying that 2FA was disabled and the other to notify
that WebAuthn was disabled.
As the second one is redundant since the first email includes it, we can
remove it and send just one email to users.
* refactor: avoid creating new env variable for webauthn_origin config
* refactor: improve flash error messages for webauthn pages
Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com>
2020-08-24 16:46:27 +02:00
|
|
|
def webauthn_options
|
|
|
|
user = find_user
|
|
|
|
|
|
|
|
if user.webauthn_enabled?
|
|
|
|
options_for_get = WebAuthn::Credential.options_for_get(
|
|
|
|
allow: user.webauthn_credentials.pluck(:external_id)
|
|
|
|
)
|
|
|
|
|
|
|
|
session[:webauthn_challenge] = options_for_get.challenge
|
|
|
|
|
|
|
|
render json: options_for_get, status: :ok
|
|
|
|
else
|
|
|
|
render json: { error: t('webauthn_credentials.not_enabled') }, status: :unauthorized
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-09-26 23:55:21 +02:00
|
|
|
protected
|
|
|
|
|
2019-09-24 04:35:36 +02:00
|
|
|
def find_user
|
2020-06-09 10:23:06 +02:00
|
|
|
if session[:attempt_user_id]
|
2020-11-12 23:05:01 +01:00
|
|
|
User.find_by(id: session[:attempt_user_id])
|
2019-09-24 04:35:36 +02:00
|
|
|
else
|
|
|
|
user = User.authenticate_with_ldap(user_params) if Devise.ldap_authentication
|
|
|
|
user ||= User.authenticate_with_pam(user_params) if Devise.pam_authentication
|
|
|
|
user ||= User.find_for_authentication(email: user_params[:email])
|
2020-07-14 19:05:07 +02:00
|
|
|
user
|
2019-09-24 04:35:36 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-01-28 20:43:38 +01:00
|
|
|
def user_params
|
Add WebAuthn as an alternative 2FA method (#14466)
* feat: add possibility of adding WebAuthn security keys to use as 2FA
This adds a basic UI for enabling WebAuthn 2FA. We did a little refactor
to the Settings page for editing the 2FA methods – now it will list the
methods that are available to the user (TOTP and WebAuthn) and from
there they'll be able to add or remove any of them.
Also, it's worth mentioning that for enabling WebAuthn it's required to
have TOTP enabled, so the first time that you go to the 2FA Settings
page, you'll be asked to set it up.
This work was inspired by the one donde by Github in their platform, and
despite it could be approached in different ways, we decided to go with
this one given that we feel that this gives a great UX.
Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com>
* feat: add request for WebAuthn as second factor at login if enabled
This commits adds the feature for using WebAuthn as a second factor for
login when enabled.
If users have WebAuthn enabled, now a page requesting for the use of a
WebAuthn credential for log in will appear, although a link redirecting
to the old page for logging in using a two-factor code will also be
present.
Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com>
* feat: add possibility of deleting WebAuthn Credentials
Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com>
* feat: disable WebAuthn when an Admin disables 2FA for a user
Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com>
* feat: remove ability to disable TOTP leaving only WebAuthn as 2FA
Following examples form other platforms like Github, we decided to make
Webauthn 2FA secondary to 2FA with TOTP, so that we removed the
possibility of removing TOTP authentication only, leaving users with
just WEbAuthn as 2FA. Instead, users will have to click on 'Disable 2FA'
in order to remove second factor auth.
The reason for WebAuthn being secondary to TOPT is that in that way,
users will still be able to log in using their code from their phone's
application if they don't have their security keys with them – or maybe
even lost them.
* We had to change a little the flow for setting up TOTP, given that now
it's possible to setting up again if you already had TOTP, in order to
let users modify their authenticator app – given that now it's not
possible for them to disable TOTP and set it up again with another
authenticator app.
So, basically, now instead of storing the new `otp_secret` in the
user, we store it in the session until the process of set up is
finished.
This was because, as it was before, when users clicked on 'Edit' in
the new two-factor methods lists page, but then went back without
finishing the flow, their `otp_secret` had been changed therefore
invalidating their previous authenticator app, making them unable to
log in again using TOTP.
Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com>
* refactor: fix eslint errors
The PR build was failing given that linting returning some errors.
This commit attempts to fix them.
* refactor: normalize i18n translations
The build was failing given that i18n translations files were not
normalized.
This commits fixes that.
* refactor: avoid having the webauthn gem locked to a specific version
* refactor: use symbols for routes without '/'
* refactor: avoid sending webauthn disabled email when 2FA is disabled
When an admins disable 2FA for users, we were sending two mails
to them, one notifying that 2FA was disabled and the other to notify
that WebAuthn was disabled.
As the second one is redundant since the first email includes it, we can
remove it and send just one email to users.
* refactor: avoid creating new env variable for webauthn_origin config
* refactor: improve flash error messages for webauthn pages
Co-authored-by: Facundo Padula <facundo.padula@cedarcode.com>
2020-08-24 16:46:27 +02:00
|
|
|
params.require(:user).permit(:email, :password, :otp_attempt, :sign_in_token_attempt, credential: {})
|
2017-01-27 20:28:46 +01:00
|
|
|
end
|
|
|
|
|
2017-05-26 14:14:03 +02:00
|
|
|
def after_sign_in_path_for(resource)
|
2016-10-03 16:38:22 +02:00
|
|
|
last_url = stored_location_for(:user)
|
|
|
|
|
2017-05-26 14:14:03 +02:00
|
|
|
if home_paths(resource).include?(last_url)
|
2016-10-03 16:38:22 +02:00
|
|
|
root_path
|
|
|
|
else
|
|
|
|
last_url || root_path
|
|
|
|
end
|
2016-09-26 23:55:21 +02:00
|
|
|
end
|
2017-01-28 20:43:38 +01:00
|
|
|
|
2018-03-08 11:18:26 +01:00
|
|
|
def after_sign_out_path_for(_resource_or_scope)
|
|
|
|
Devise.omniauth_configs.each_value do |config|
|
|
|
|
return root_path if config.strategy.redirect_at_sign_in
|
|
|
|
end
|
|
|
|
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2020-05-10 10:16:39 +02:00
|
|
|
def require_no_authentication
|
|
|
|
super
|
2020-11-12 23:05:01 +01:00
|
|
|
|
2020-05-10 10:16:39 +02:00
|
|
|
# Delete flash message that isn't entirely useful and may be confusing in
|
|
|
|
# most cases because /web doesn't display/clear flash messages.
|
|
|
|
flash.delete(:alert) if flash[:alert] == I18n.t('devise.failure.already_authenticated')
|
|
|
|
end
|
|
|
|
|
2017-05-26 14:14:03 +02:00
|
|
|
private
|
|
|
|
|
2017-10-11 00:52:25 +02:00
|
|
|
def set_instance_presenter
|
|
|
|
@instance_presenter = InstancePresenter.new
|
|
|
|
end
|
|
|
|
|
2018-07-31 01:14:33 +02:00
|
|
|
def set_body_classes
|
|
|
|
@body_classes = 'lighter'
|
|
|
|
end
|
|
|
|
|
2017-05-26 14:14:03 +02:00
|
|
|
def home_paths(resource)
|
|
|
|
paths = [about_path]
|
2020-11-12 23:05:01 +01:00
|
|
|
|
2017-05-26 14:14:03 +02:00
|
|
|
if single_user_mode? && resource.is_a?(User)
|
|
|
|
paths << short_account_path(username: resource.account)
|
|
|
|
end
|
2020-11-12 23:05:01 +01:00
|
|
|
|
2017-05-26 14:14:03 +02:00
|
|
|
paths
|
|
|
|
end
|
2018-09-07 05:42:16 +02:00
|
|
|
|
2018-09-09 04:10:44 +02:00
|
|
|
def continue_after?
|
|
|
|
truthy_param?(:continue)
|
|
|
|
end
|
2020-11-12 23:05:01 +01:00
|
|
|
|
|
|
|
def restart_session
|
|
|
|
clear_attempt_from_session
|
|
|
|
redirect_to new_user_session_path, alert: I18n.t('devise.failure.timeout')
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_attempt_session(user)
|
|
|
|
session[:attempt_user_id] = user.id
|
|
|
|
session[:attempt_user_updated_at] = user.updated_at.to_s
|
|
|
|
end
|
|
|
|
|
|
|
|
def clear_attempt_from_session
|
|
|
|
session.delete(:attempt_user_id)
|
|
|
|
session.delete(:attempt_user_updated_at)
|
|
|
|
end
|
2016-03-05 22:43:05 +01:00
|
|
|
end
|