Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

244 lines
7.4 KiB
Ruby
Raw Permalink Normal View History

2025-07-18 17:36:37 +01:00
# frozen_string_literal: true
#-- copyright
2020-01-15 11:31:26 +01:00
# OpenProject is an open source project management software.
# Copyright (C) the OpenProject GmbH
2011-05-30 20:52:25 +02:00
#
# This program is free software; you can redistribute it and/or
# 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.
#
# See COPYRIGHT and LICENSE files for more details.
#++
2006-12-03 19:55:45 +00:00
class MyController < ApplicationController
2020-02-11 08:04:46 +01:00
include PasswordConfirmation
include Accounts::UserPasswordChange
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
include Notifications::NotificationSettingsActions
2024-06-11 20:17:19 +02:00
layout "my"
2016-09-06 15:40:49 +02:00
before_action :require_login
before_action :set_current_user
before_action :check_password_confirmation, only: %i[update_account]
2006-12-03 19:55:45 +00:00
no_authorization_required! :account,
:update_account,
:locale,
:interface,
:update_settings,
: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,
:password,
:change_password,
2026-01-06 12:54:21 +01:00
:password_confirmation_dialog,
:notifications,
: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 11:20:39 +02:00
menu_item :account, only: [:account]
menu_item :locale, only: [:locale]
menu_item :interface, only: [:interface]
2024-06-07 11:20:39 +02:00
menu_item :password, only: [:password]
menu_item :notifications, only: [:notifications]
menu_item :working_hours, only: %i[working_hours non_working_times]
def account; end
def update_account
write_settings
2006-12-03 19:55:45 +00:00
end
def locale; end
def update_settings
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
def interface; end
# Manage user's password
def password
@username = @user.login
redirect_if_password_change_not_allowed_for(@user)
end
# When making changes here, also check AccountController.change_password
def change_password
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
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
# Configure user's notifications and email reminders
2026-03-26 12:31:57 +01:00
def notifications
set_global_notification_setting
end
def working_hours
2026-02-26 10:00:29 +01:00
render_403 unless OpenProject::FeatureDecisions.user_working_times_active?
@current_working_hours = @user.working_hours.current
@future_working_hours = @user.working_hours.upcoming(Date.current + 1)
@past_working_hours = if @current_working_hours
@user.working_hours.history_for(@current_working_hours)
else
UserWorkingHours.none
end
end
def non_working_times
2026-02-26 10:00:29 +01:00
render_403 unless OpenProject::FeatureDecisions.user_working_times_active?
@year = (params[:year].presence || Date.current.year).to_i
@non_working_times = @user.non_working_time_entities_for_year(@year)
end
private
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"
return true
end
false
end
def write_settings
result = Users::UpdateService
2024-06-07 11:20:39 +02:00
.new(user: current_user, model: current_user)
.call(user_params)
if result&.success
flash[:notice] = notice_account_updated
handle_email_changes
else
flash[:error] = error_account_update_failed(result)
end
redirect_back_or_to(my_account_path)
end
def handle_email_changes
# If mail changed, expire all other sessions
2024-09-19 16:36:55 +02:00
if @user.previous_changes["mail"]
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
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: {}))
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
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") : ""
[t(:notice_account_update_failed), errors]
end
def notifications_settings_path
my_notifications_path
end
def workdays_redirect_path
my_notifications_path
end
def project_notifications_create_url
my_project_notifications_path
end
def project_setting_form_url(project_id)
my_project_setting_path(project_id:)
end
def set_current_user
@user = current_user
end
def get_current_layout
@user.pref[:my_page_layout] || DEFAULT_LAYOUT.dup
end
2006-12-03 19:55:45 +00:00
end