Files
Redmine/app/controllers/twofa_controller.rb
Marius Balteanu 9b807267ac Add sudo-mode to all 2fa actions
The sudo-mode window should ensure this does not impede users
currently setting up 2fa things, but adds protection when not
in 2fa activation/deactivation mode. (#43083).

Patch by Felix Schäfer (user:felix).

git-svn-id: https://svn.redmine.org/redmine/trunk@23918 e93f8b46-1217-0410-a6f0-8f06a7374b81
2025-08-13 05:59:53 +00:00

132 lines
4.0 KiB
Ruby

# frozen_string_literal: true
# Redmine - project management software
# Copyright (C) 2006- Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
class TwofaController < ApplicationController
include TwofaHelper
self.main_menu = false
before_action :require_login
before_action :require_admin, only: :admin_deactivate
before_action :require_active_twofa
require_sudo_mode :select_scheme,
:activate_init, :activate_confirm, :activate,
:deactivate_init, :deactivate_confirm, :deactivate
skip_before_action :check_twofa_activation, only: [:select_scheme, :activate_init, :activate_confirm, :activate]
before_action :ensure_user_has_no_twofa, only: [:select_scheme, :activate_init, :activate_confirm, :activate]
def select_scheme
@user = User.current
end
before_action :activate_setup, only: [:activate_init, :activate_confirm, :activate]
def activate_init
init_twofa_pairing_and_send_code_for(@twofa)
end
def activate_confirm
@twofa_view = @twofa.init_pairing_view_variables
no_store
end
def activate
if @twofa.confirm_pairing!(params[:twofa_code].to_s)
# The session token was destroyed by the twofa pairing, generate a new one
session[:tk] = @user.generate_session_token
flash[:notice] = l('twofa_activated', bc_path: my_twofa_backup_codes_init_path)
redirect_to my_account_path
else
flash[:error] = l('twofa_invalid_code')
redirect_to action: :activate_confirm, scheme: @twofa.scheme_name
end
end
before_action :deactivate_setup, only: [:deactivate_init, :deactivate_confirm, :deactivate]
def deactivate_init
if @twofa.send_code(controller: 'twofa', action: 'deactivate')
flash[:notice] = l('twofa_code_sent')
end
redirect_to action: :deactivate_confirm, scheme: @twofa.scheme_name
end
def deactivate_confirm
@twofa_view = @twofa.otp_confirm_view_variables
end
def deactivate
if @twofa.destroy_pairing!(params[:twofa_code].to_s)
flash[:notice] = l('twofa_deactivated')
redirect_to my_account_path
else
flash[:error] = l('twofa_invalid_code')
redirect_to action: :deactivate_confirm, scheme: @twofa.scheme_name
end
end
def admin_deactivate
@user = User.find(params[:user_id])
# do not allow administrators to unpair 2FA without confirmation for themselves
if @user == User.current
render_403
return false
end
twofa = Redmine::Twofa.for_user(@user)
twofa.destroy_pairing_without_verify!
flash[:notice] = l('twofa_deactivated')
redirect_to edit_user_path(@user)
end
private
def activate_setup
twofa_scheme = Redmine::Twofa.for_twofa_scheme(params[:scheme].to_s)
if twofa_scheme.blank?
redirect_to my_account_path
return
end
@user = User.current
@twofa = twofa_scheme.new(@user)
end
def deactivate_setup
@user = User.current
@twofa = Redmine::Twofa.for_user(@user)
if params[:scheme].to_s != @twofa.scheme_name
redirect_to my_account_path
end
end
def ensure_user_has_no_twofa
# Allow activating a new 2FA scheme / showing twofa secret only if no other
# is already configured
return true if User.current.twofa_scheme.blank?
flash[:warning] = l('twofa_already_setup')
redirect_to controller: 'my', action: 'account'
end
end