2025-07-18 17:36:37 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2011-05-29 13:11:52 -07:00
|
|
|
#-- copyright
|
2020-01-15 11:31:26 +01:00
|
|
|
# OpenProject is an open source project management software.
|
2024-07-30 13:42:36 +02:00
|
|
|
# Copyright (C) the OpenProject GmbH
|
2011-05-30 20:52:25 +02:00
|
|
|
#
|
2011-05-29 13:11:52 -07:00
|
|
|
# This program is free software; you can redistribute it and/or
|
2013-06-05 16:27:56 +02:00
|
|
|
# modify it under the terms of the GNU General Public License version 3.
|
2011-05-30 20:52:25 +02:00
|
|
|
#
|
2013-09-16 17:59:31 +02:00
|
|
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
2021-01-13 17:47:45 +01:00
|
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
2013-09-16 17:59:31 +02:00
|
|
|
# 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.
|
|
|
|
|
#
|
2021-09-02 21:49:06 +02:00
|
|
|
# See COPYRIGHT and LICENSE files for more details.
|
2011-05-29 13:11:52 -07:00
|
|
|
#++
|
|
|
|
|
|
2006-12-03 19:55:45 +00:00
|
|
|
class MyController < ApplicationController
|
2020-02-11 08:04:46 +01:00
|
|
|
include PasswordConfirmation
|
|
|
|
|
include Accounts::UserPasswordChange
|
2019-10-17 14:23:07 +02:00
|
|
|
include ActionView::Helpers::TagHelper
|
2024-06-12 10:20:00 +02:00
|
|
|
include OpTurbo::ComponentStream
|
2024-07-10 09:14:51 +02:00
|
|
|
include FlashMessagesOutputSafetyHelper
|
2026-03-27 13:49:49 +01:00
|
|
|
include Notifications::NotificationSettingsActions
|
2019-10-17 14:23:07 +02:00
|
|
|
|
2024-06-11 20:17:19 +02:00
|
|
|
layout "my"
|
2012-11-26 19:29:48 +01:00
|
|
|
|
2016-09-06 15:40:49 +02:00
|
|
|
before_action :require_login
|
2019-02-27 07:43:23 +01:00
|
|
|
before_action :set_current_user
|
|
|
|
|
before_action :check_password_confirmation, only: %i[update_account]
|
2006-12-03 19:55:45 +00:00
|
|
|
|
2024-06-11 10:20:38 +02:00
|
|
|
no_authorization_required! :account,
|
|
|
|
|
:update_account,
|
2025-08-27 15:03:44 +01:00
|
|
|
:locale,
|
2025-06-19 15:44:38 +02:00
|
|
|
:interface,
|
2024-06-11 10:20:38 +02:00
|
|
|
:update_settings,
|
2026-03-30 12:12:54 +02:00
|
|
|
:update_workdays,
|
2026-03-26 12:31:57 +01:00
|
|
|
:update_email_alerts,
|
2026-03-27 08:55:45 +01:00
|
|
|
:update_participating,
|
|
|
|
|
:update_non_participating,
|
|
|
|
|
:update_date_alerts,
|
2024-06-11 10:20:38 +02:00
|
|
|
:password,
|
|
|
|
|
:change_password,
|
2026-01-06 12:54:21 +01:00
|
|
|
:password_confirmation_dialog,
|
2024-06-11 10:20:38 +02:00
|
|
|
:notifications,
|
2026-03-02 19:38:11 +01:00
|
|
|
:non_working_times,
|
2026-03-27 08:55:45 +01:00
|
|
|
:working_hours,
|
|
|
|
|
:new_project_settings,
|
|
|
|
|
:create_project_settings,
|
|
|
|
|
:edit_project_settings,
|
|
|
|
|
:update_project_settings,
|
|
|
|
|
:destroy_project_settings
|
2024-06-07 16:55:40 +02:00
|
|
|
|
2024-06-07 11:20:39 +02:00
|
|
|
menu_item :account, only: [:account]
|
2025-08-27 15:03:44 +01:00
|
|
|
menu_item :locale, only: [:locale]
|
2025-06-19 15:44:38 +02:00
|
|
|
menu_item :interface, only: [:interface]
|
2024-06-07 11:20:39 +02:00
|
|
|
menu_item :password, only: [:password]
|
|
|
|
|
menu_item :notifications, only: [:notifications]
|
2026-03-02 19:38:11 +01:00
|
|
|
menu_item :working_hours, only: %i[working_hours non_working_times]
|
2008-08-10 15:22:54 +00:00
|
|
|
|
2019-02-27 07:43:23 +01:00
|
|
|
def account; end
|
|
|
|
|
|
|
|
|
|
def update_account
|
2021-02-01 10:45:13 +01:00
|
|
|
write_settings
|
2006-12-03 19:55:45 +00:00
|
|
|
end
|
|
|
|
|
|
2025-08-27 15:03:44 +01:00
|
|
|
def locale; end
|
2019-02-27 07:43:23 +01:00
|
|
|
|
|
|
|
|
def update_settings
|
2021-02-01 10:45:13 +01:00
|
|
|
write_settings
|
2015-08-31 14:42:23 +02:00
|
|
|
end
|
|
|
|
|
|
2026-03-26 12:31:57 +01:00
|
|
|
def update_email_alerts
|
2026-03-27 08:55:45 +01:00
|
|
|
update_global_notification_setting(permitted_params.notification_setting_email_alerts)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def update_participating
|
|
|
|
|
update_global_notification_setting(permitted_params.notification_setting_participating)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def update_non_participating
|
|
|
|
|
update_global_notification_setting(permitted_params.notification_setting_non_participating)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def update_date_alerts
|
|
|
|
|
update_global_notification_setting(build_date_alerts_params)
|
2026-03-26 12:31:57 +01:00
|
|
|
end
|
|
|
|
|
|
2025-06-19 15:44:38 +02:00
|
|
|
def interface; end
|
|
|
|
|
|
2007-10-20 12:47:05 +00:00
|
|
|
# Manage user's password
|
|
|
|
|
def password
|
2013-06-26 16:52:10 +02:00
|
|
|
@username = @user.login
|
2013-06-13 11:49:05 +02:00
|
|
|
redirect_if_password_change_not_allowed_for(@user)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# When making changes here, also check AccountController.change_password
|
|
|
|
|
def change_password
|
2019-02-27 07:43:23 +01:00
|
|
|
change_password_flow(user: @user, params:, update_legacy: false) do
|
2024-06-11 20:17:19 +02:00
|
|
|
redirect_to action: "password"
|
2006-12-03 19:55:45 +00:00
|
|
|
end
|
2007-08-29 20:07:28 +00:00
|
|
|
end
|
2011-05-30 20:52:25 +02:00
|
|
|
|
2026-01-06 12:54:21 +01:00
|
|
|
def password_confirmation_dialog
|
|
|
|
|
respond_with_dialog My::PasswordConfirmationDialog.new
|
|
|
|
|
end
|
|
|
|
|
|
2026-03-26 08:58:55 +01:00
|
|
|
# Configure user's notifications and email reminders
|
2026-03-26 12:31:57 +01:00
|
|
|
def notifications
|
|
|
|
|
set_global_notification_setting
|
|
|
|
|
end
|
2015-09-01 14:45:38 +02:00
|
|
|
|
2026-02-25 12:11:50 +01:00
|
|
|
def working_hours
|
2026-02-26 10:00:29 +01:00
|
|
|
render_403 unless OpenProject::FeatureDecisions.user_working_times_active?
|
|
|
|
|
|
2026-02-25 12:11:50 +01:00
|
|
|
@current_working_hours = @user.working_hours.current
|
2026-02-27 12:20:52 +01:00
|
|
|
|
2026-02-27 17:48:18 +01:00
|
|
|
@future_working_hours = @user.working_hours.upcoming(Date.current + 1)
|
2026-02-27 12:20:52 +01:00
|
|
|
|
|
|
|
|
@past_working_hours = if @current_working_hours
|
2026-02-27 17:48:18 +01:00
|
|
|
@user.working_hours.history_for(@current_working_hours)
|
2026-02-27 12:20:52 +01:00
|
|
|
else
|
|
|
|
|
UserWorkingHours.none
|
|
|
|
|
end
|
2026-02-25 12:11:50 +01:00
|
|
|
end
|
|
|
|
|
|
2026-03-02 19:38:11 +01:00
|
|
|
def non_working_times
|
2026-02-26 10:00:29 +01:00
|
|
|
render_403 unless OpenProject::FeatureDecisions.user_working_times_active?
|
|
|
|
|
|
2026-03-02 19:38:11 +01:00
|
|
|
@year = (params[:year].presence || Date.current.year).to_i
|
|
|
|
|
@non_working_times = @user.non_working_time_entities_for_year(@year)
|
2026-02-25 12:11:50 +01:00
|
|
|
end
|
|
|
|
|
|
2024-06-07 16:55:40 +02:00
|
|
|
private
|
|
|
|
|
|
2013-06-13 11:49:05 +02:00
|
|
|
def redirect_if_password_change_not_allowed_for(user)
|
|
|
|
|
unless user.change_password_allowed?
|
2020-09-16 11:26:15 +02:00
|
|
|
flash[:error] = I18n.t(:notice_can_t_change_password)
|
2024-06-11 20:17:19 +02:00
|
|
|
redirect_to action: "account"
|
2013-06-13 11:49:05 +02:00
|
|
|
return true
|
|
|
|
|
end
|
|
|
|
|
false
|
|
|
|
|
end
|
2014-02-19 18:21:58 +01:00
|
|
|
|
2021-02-01 10:45:13 +01:00
|
|
|
def write_settings
|
2018-06-01 14:25:51 +02:00
|
|
|
result = Users::UpdateService
|
2024-06-07 11:20:39 +02:00
|
|
|
.new(user: current_user, model: current_user)
|
|
|
|
|
.call(user_params)
|
2018-06-01 14:25:51 +02:00
|
|
|
|
2019-08-22 11:35:11 +02:00
|
|
|
if result&.success
|
2023-03-06 10:47:35 +01:00
|
|
|
flash[:notice] = notice_account_updated
|
2024-06-10 13:41:08 +02:00
|
|
|
handle_email_changes
|
2019-08-22 11:35:11 +02:00
|
|
|
else
|
2023-03-06 10:47:35 +01:00
|
|
|
flash[:error] = error_account_update_failed(result)
|
2018-06-01 14:25:51 +02:00
|
|
|
end
|
2019-08-22 11:35:11 +02:00
|
|
|
|
2026-02-25 12:11:50 +01:00
|
|
|
redirect_back_or_to(my_account_path)
|
2018-06-01 14:25:51 +02:00
|
|
|
end
|
|
|
|
|
|
2024-06-10 13:41:08 +02:00
|
|
|
def handle_email_changes
|
|
|
|
|
# If mail changed, expire all other sessions
|
2024-09-19 16:36:55 +02:00
|
|
|
if @user.previous_changes["mail"]
|
2024-06-10 13:41:08 +02:00
|
|
|
Users::DropTokensService.new(current_user: @user).call!
|
|
|
|
|
Sessions::DropOtherSessionsService.call!(@user, session)
|
|
|
|
|
|
|
|
|
|
flash[:info] = "#{flash[:notice]} #{t(:notice_account_other_session_expired)}"
|
|
|
|
|
flash.delete :notice
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2023-03-06 10:47:35 +01:00
|
|
|
def user_params
|
2026-04-08 15:40:00 +02:00
|
|
|
# The Users::UpdateService updates the user's pref using the UserPreferences::UpdateService
|
|
|
|
|
# which has a contract/schema applied to the values which is why it is ok
|
|
|
|
|
# to blindly allow all scalar values in pref.
|
|
|
|
|
permitted_params.user.to_h.merge(params.permit(pref: {}))
|
2023-03-06 10:47:35 +01:00
|
|
|
end
|
|
|
|
|
|
2026-03-27 08:55:45 +01:00
|
|
|
def update_global_notification_setting(update_params)
|
|
|
|
|
set_global_notification_setting
|
|
|
|
|
persist_notification_setting(@global_notification_setting, update_params)
|
|
|
|
|
redirect_back_or_to(my_notifications_path)
|
|
|
|
|
end
|
|
|
|
|
|
2026-03-26 12:31:57 +01:00
|
|
|
def set_global_notification_setting
|
|
|
|
|
@global_notification_setting = @user.notification_settings.find_or_initialize_by(project: nil)
|
|
|
|
|
end
|
|
|
|
|
|
2026-03-27 08:55:45 +01:00
|
|
|
def persist_notification_setting(setting, update_params)
|
|
|
|
|
if setting.update(update_params)
|
|
|
|
|
flash[:notice] = notice_account_updated
|
|
|
|
|
else
|
|
|
|
|
flash[:error] = error_account_update_failed(nil)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2023-03-06 10:47:35 +01:00
|
|
|
def notice_account_updated
|
|
|
|
|
OpenProject::LocaleHelper.with_locale_for(current_user) do
|
|
|
|
|
t(:notice_account_updated)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def error_account_update_failed(result)
|
2024-06-11 20:17:19 +02:00
|
|
|
errors = result ? result.errors.full_messages.join("\n") : ""
|
2023-03-06 10:47:35 +01:00
|
|
|
[t(:notice_account_update_failed), errors]
|
|
|
|
|
end
|
|
|
|
|
|
2026-03-27 13:49:49 +01:00
|
|
|
def notifications_settings_path
|
|
|
|
|
my_notifications_path
|
|
|
|
|
end
|
|
|
|
|
|
2026-03-30 12:12:54 +02:00
|
|
|
def workdays_redirect_path
|
|
|
|
|
my_notifications_path
|
|
|
|
|
end
|
|
|
|
|
|
2026-03-27 13:49:49 +01:00
|
|
|
def project_notifications_create_url
|
|
|
|
|
my_project_notifications_path
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def project_setting_form_url(project_id)
|
|
|
|
|
my_project_setting_path(project_id:)
|
|
|
|
|
end
|
|
|
|
|
|
2019-02-27 07:43:23 +01:00
|
|
|
def set_current_user
|
|
|
|
|
@user = current_user
|
|
|
|
|
end
|
|
|
|
|
|
2014-02-19 18:21:58 +01:00
|
|
|
def get_current_layout
|
|
|
|
|
@user.pref[:my_page_layout] || DEFAULT_LAYOUT.dup
|
|
|
|
|
end
|
2006-12-03 19:55:45 +00:00
|
|
|
end
|