mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
ee8452282a
* add a new helper for breadcrumb in wiki page * set page header in destroy page * set page header in edit page * set page header in history and rename and edit parent pages * change toolbar items into page header items * add new wiki action to sub header * remove version edit page which is not in use any more * add export as a menu item of the header * fix rubocup errors * fix failing tests * replace page header in annotate page * replace page header in diff page * add page header in select menu page * fix rubocup errors * fix errors on rename test * fix errors on selecting items from toolbar * fix errors on tests for child pages * set correct permission for configure menu item * replace page header in summary page * replace page header in summary details page * edit docs of sub header * add page header in wiki new page * remove controller and a route for edit method * undo changes for docs of sub header * extract header in show page into a new component * use helper method in header component * add wiki module to the breadcrumb * rename page header component for wiki page * simplify how lock and lock implemented * extract sub header * remove wiki title from header of history page * fix page header in new page * use page.find_test_selector in test * fix failing test for summary page * fix failing test for wiki child pages * change the summary test * use test selector for page header title * undo changes for activate user in admin * use test selector in adding editing history test * use test selector in attachment upload test * use test selector in child pages tests * use test selector in wiki menu items tests * change test selector for breadcrumbs * extract conditions to show edit button into a method * extract conditions to show rollback action menu item into a method * extract conditions to show create button into a method * fix duplicated code in test * Remove outdated `show_local_breadcrumb` method which is replaced by the Primer::PageHeader breadcrumb * Remove `default_breadcrumb` method as it serves no prupose any more * Remove the old breadcrumb and its hook completely * remove breadcrumbs path from rename * fix translations errors in storages * undo changes on translations * remove default breadcrumbs in time tracking controller --------- Co-authored-by: Behrokh Satarnejad <b.satarnejad@openproject.com> Co-authored-by: Behrokh Satarnejad <62008897+bsatarnejad@users.noreply.github.com>
317 lines
9.7 KiB
Ruby
317 lines
9.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
#-- copyright
|
|
# OpenProject is an open source project management software.
|
|
# Copyright (C) the OpenProject GmbH
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
#
|
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
|
# Copyright (C) 2010-2013 the ChiliProject Team
|
|
#
|
|
# 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.
|
|
#
|
|
# See COPYRIGHT and LICENSE files for more details.
|
|
#++
|
|
|
|
class UsersController < ApplicationController
|
|
layout "admin"
|
|
|
|
before_action :authorize_global, except: %i[show deletion_info destroy]
|
|
|
|
before_action :find_user, only: %i[show
|
|
edit
|
|
update
|
|
change_status_info
|
|
change_status
|
|
destroy
|
|
deletion_info
|
|
resend_invitation]
|
|
# should also contain destroy but post data can not be redirected
|
|
before_action :require_login, only: [:deletion_info]
|
|
before_action :authorize_for_user, only: [:destroy]
|
|
before_action :check_if_deletion_allowed, only: %i[deletion_info
|
|
destroy]
|
|
no_authorization_required! :show
|
|
authorization_checked! :destroy, :deletion_info
|
|
|
|
# Password confirmation helpers and actions
|
|
include PasswordConfirmation
|
|
before_action :check_password_confirmation, only: [:destroy]
|
|
|
|
include Accounts::UserLimits
|
|
before_action :enforce_user_limit, only: [:create]
|
|
before_action -> { enforce_user_limit flash_now: true }, only: [:new]
|
|
|
|
include SortHelper
|
|
include CustomFieldsHelper
|
|
include PaginationHelper
|
|
|
|
def index
|
|
@groups = Group.all.sort
|
|
@status = Users::UserFilterComponent.status_param params
|
|
@users = Users::UserFilterComponent.filter params
|
|
end
|
|
|
|
def show
|
|
if can_show_user?
|
|
render layout: (can_manage_or_create_users? ? "admin" : "no_menu")
|
|
else
|
|
render_404
|
|
end
|
|
end
|
|
|
|
def new
|
|
@user = User.new(language: Setting.default_language)
|
|
end
|
|
|
|
def edit
|
|
@membership ||= Member.new
|
|
@individual_principal = @user
|
|
end
|
|
|
|
def create
|
|
call = Users::CreateService
|
|
.new(user: current_user)
|
|
.call(create_params)
|
|
|
|
@user = call.result
|
|
|
|
if call.success?
|
|
flash[:notice] = I18n.t(:notice_successful_create)
|
|
redirect_to(params[:continue] ? new_user_path : helpers.allowed_management_user_profile_path(@user))
|
|
else
|
|
render action: :new, status: :unprocessable_entity
|
|
end
|
|
end
|
|
|
|
def update # rubocop:disable Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
update_params = build_user_update_params
|
|
call = ::Users::UpdateService.new(model: @user, user: current_user).call(update_params)
|
|
|
|
if call.success?
|
|
if update_params[:password].present? && @user.change_password_allowed?
|
|
send_information = params[:send_information]
|
|
|
|
if @user.invited?
|
|
# setting a password for an invited user activates them implicitly
|
|
if OpenProject::Enterprise.user_limit_reached?
|
|
@user.register!
|
|
show_user_limit_warning!
|
|
else
|
|
@user.activate!
|
|
end
|
|
|
|
send_information = true
|
|
end
|
|
|
|
if @user.active? && send_information
|
|
UserMailer.account_information(@user, update_params[:password]).deliver_later
|
|
end
|
|
end
|
|
|
|
respond_to do |format|
|
|
format.html do
|
|
flash[:notice] = I18n.t(:notice_successful_update)
|
|
redirect_to action: :edit
|
|
end
|
|
end
|
|
else
|
|
@membership ||= Member.new
|
|
# Clear password input
|
|
@user = call.result
|
|
@user.password = @user.password_confirmation = nil
|
|
|
|
respond_to do |format|
|
|
format.html do
|
|
render action: :edit, status: :unprocessable_entity
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
def change_status_info
|
|
@status_change = params[:change_action].to_sym
|
|
|
|
render_400 unless %i(activate lock unlock).include? @status_change
|
|
end
|
|
|
|
def change_status # rubocop:disable Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
if @user.id == current_user.id
|
|
# user is not allowed to change own status
|
|
redirect_back_or_default({ action: "edit", id: @user })
|
|
return
|
|
end
|
|
|
|
if (params[:unlock] || params[:activate]) && user_limit_reached?
|
|
show_user_limit_error!
|
|
|
|
return redirect_back_or_default({ action: "edit", id: @user })
|
|
end
|
|
|
|
if params[:unlock]
|
|
@user.failed_login_count = 0
|
|
@user.activate
|
|
elsif params[:lock]
|
|
@user.lock
|
|
elsif params[:activate]
|
|
@user.activate
|
|
end
|
|
# Was the account activated? (do it before User#save clears the change)
|
|
was_activated = (@user.status_change == %w[registered active])
|
|
|
|
if params[:activate] && @user.missing_authentication_method?
|
|
flash[:error] = I18n.t("user.error_status_change_failed",
|
|
errors: I18n.t(:notice_user_missing_authentication_method))
|
|
elsif @user.save
|
|
flash[:notice] = I18n.t(:notice_successful_update)
|
|
if was_activated
|
|
UserMailer.account_activated(@user).deliver_later
|
|
end
|
|
else
|
|
flash[:error] = I18n.t("user.error_status_change_failed",
|
|
errors: @user.errors.full_messages.join(", "))
|
|
end
|
|
redirect_back_or_default({ action: "edit", id: @user })
|
|
end
|
|
|
|
def resend_invitation # rubocop:disable Metrics/AbcSize
|
|
status = Principal.statuses[:invited]
|
|
@user.update status: status if @user.status != status
|
|
|
|
token = UserInvitation.reinvite_user @user.id
|
|
|
|
if token.persisted?
|
|
flash[:notice] = I18n.t(:notice_user_invitation_resent, email: @user.mail)
|
|
else
|
|
logger.error "could not re-invite #{@user.mail}: #{token.errors.full_messages.join(' ')}"
|
|
flash[:error] = I18n.t(:notice_internal_server_error, app_title: Setting.app_title)
|
|
end
|
|
|
|
redirect_to helpers.allowed_management_user_profile_path(@user)
|
|
end
|
|
|
|
def destroy
|
|
# true if the user deletes him/herself
|
|
self_delete = (@user == User.current)
|
|
|
|
Users::DeleteService.new(model: @user, user: User.current).call
|
|
|
|
flash[:notice] = I18n.t("account.deletion_pending")
|
|
|
|
respond_to do |format|
|
|
format.html do
|
|
redirect_to self_delete ? signin_path : users_path
|
|
end
|
|
end
|
|
end
|
|
|
|
def deletion_info
|
|
render action: "deletion_info", layout: my_or_admin_layout, locals: { layout: my_or_admin_layout }
|
|
end
|
|
|
|
private
|
|
|
|
def can_show_user?
|
|
return true if can_manage_or_create_users?
|
|
return true if @user == User.current
|
|
|
|
@user.active? || @user.registered?
|
|
end
|
|
|
|
def can_manage_or_create_users?
|
|
current_user.allowed_globally?(:manage_user) || current_user.allowed_globally?(:create_user)
|
|
end
|
|
|
|
def find_user
|
|
if params[:id] == User::CURRENT_USER_LOGIN_ALIAS || params[:id].nil?
|
|
require_login || return
|
|
@user = User.current
|
|
else
|
|
@user = User.find(params[:id])
|
|
end
|
|
end
|
|
|
|
def authorize_for_user
|
|
if (User.current != @user ||
|
|
User.current == User.anonymous) &&
|
|
!User.current.admin?
|
|
|
|
respond_to do |format|
|
|
format.html { render_403 }
|
|
format.xml { head :unauthorized, "WWW-Authenticate" => 'Basic realm="OpenProject API"' }
|
|
format.js { head :unauthorized, "WWW-Authenticate" => 'Basic realm="OpenProject API"' }
|
|
format.json { head :unauthorized, "WWW-Authenticate" => 'Basic realm="OpenProject API"' }
|
|
end
|
|
|
|
false
|
|
end
|
|
end
|
|
|
|
def check_if_deletion_allowed
|
|
render_404 unless Users::DeleteContract.deletion_allowed? @user, User.current
|
|
end
|
|
|
|
def my_or_admin_layout
|
|
# TODO: how can this be done better:
|
|
# check if the route used to call the action is in the 'my' namespace
|
|
if url_for(:delete_my_account_info) == request.url
|
|
"my"
|
|
else
|
|
"admin"
|
|
end
|
|
end
|
|
|
|
def set_password?(params)
|
|
params[:user][:password].present? && !OpenProject::Configuration.disable_password_choice?
|
|
end
|
|
|
|
protected
|
|
|
|
def build_user_update_params # rubocop:disable Metrics/AbcSize
|
|
pref_params = permitted_params.pref.to_h
|
|
update_params = permitted_params
|
|
.user_create_as_admin(@user.uses_external_authentication?, @user.change_password_allowed?)
|
|
.to_h
|
|
.merge(pref: pref_params)
|
|
|
|
return update_params unless @user.change_password_allowed?
|
|
|
|
if params[:user][:assign_random_password]
|
|
password = OpenProject::Passwords::Generator.random_password
|
|
update_params.merge!(
|
|
password:,
|
|
password_confirmation: password,
|
|
force_password_change: true
|
|
)
|
|
elsif set_password? params
|
|
update_params[:password] = params[:user][:password]
|
|
update_params[:password_confirmation] = params[:user][:password_confirmation]
|
|
end
|
|
|
|
update_params
|
|
end
|
|
|
|
def create_params
|
|
permitted_params
|
|
.user_create_as_admin(false, false)
|
|
.merge(admin: params[:user][:admin] || false,
|
|
login: params[:user][:login] || params[:user][:mail],
|
|
status: User.statuses[:invited])
|
|
end
|
|
end
|