2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
class Profiles::NotificationsController < Profiles::ApplicationController
|
2022-06-21 17:19:12 +05:30
|
|
|
feature_category :team_planning
|
2021-01-03 14:25:43 +05:30
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
def show
|
2019-12-21 20:55:43 +05:30
|
|
|
@user = current_user
|
2020-11-24 15:15:51 +05:30
|
|
|
@user_groups = user_groups
|
|
|
|
@group_notifications = UserGroupNotificationSettingsFinder.new(current_user, user_groups).execute
|
2021-04-29 21:17:54 +05:30
|
|
|
@project_notifications = project_notifications_with_preloaded_associations
|
2016-06-16 23:09:34 +05:30
|
|
|
@global_notification_setting = current_user.global_notification_setting
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2018-03-17 18:26:18 +05:30
|
|
|
result = Users::UpdateService.new(current_user, user_params.merge(user: current_user)).execute
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
if result[:status] == :success
|
2019-09-04 21:01:54 +05:30
|
|
|
flash[:notice] = _("Notification settings saved")
|
2016-06-02 11:05:42 +05:30
|
|
|
else
|
2019-09-04 21:01:54 +05:30
|
|
|
flash[:alert] = _("Failed to save new settings")
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
2016-06-02 11:05:42 +05:30
|
|
|
|
|
|
|
redirect_back_or_default(default: profile_notifications_path)
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def user_params
|
2021-03-11 19:13:27 +05:30
|
|
|
params.require(:user).permit(:notification_email, :email_opted_in, :notified_of_own_activity)
|
2016-06-16 23:09:34 +05:30
|
|
|
end
|
2020-11-24 15:15:51 +05:30
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def user_groups
|
|
|
|
GroupsFinder.new(current_user, all_available: false).execute.order_name_asc.page(params[:page])
|
|
|
|
end
|
2021-04-29 21:17:54 +05:30
|
|
|
|
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
|
|
|
def project_notifications_with_preloaded_associations
|
|
|
|
project_notifications = current_user
|
|
|
|
.notification_settings
|
|
|
|
.for_projects
|
|
|
|
.order_by_id_asc
|
|
|
|
.preload_source_route
|
|
|
|
|
|
|
|
projects = project_notifications.map(&:source)
|
|
|
|
ActiveRecord::Associations::Preloader.new.preload(projects, { namespace: [:route, :owner], group: [] })
|
|
|
|
Preloaders::UserMaxAccessLevelInProjectsPreloader.new(projects, current_user).execute
|
|
|
|
|
|
|
|
project_notifications.select { |notification| current_user.can?(:read_project, notification.source) }
|
|
|
|
end
|
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|