-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
Copy pathusers_controller.rb
353 lines (293 loc) · 10.5 KB
/
users_controller.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
#-- copyright
# OpenProject is an open source project management software.
# Copyright (C) 2012-2024 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
before_action :set_current_activity_page, only: [:show]
# 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
# show projects based on current user visibility.
# But don't simply concatenate the .visible scope to the memberships
# as .memberships has an include and an order which for whatever reason
# also gets applied to the Project.allowed_to parts concatenated by a UNION
# and an order inside a UNION is not allowed in postgres.
@memberships = @user.memberships
.where.not(project_id: nil)
.where(id: Member.visible(current_user))
@groups = @user.groups.visible
if can_show_user?
@events = events
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"
end
end
def update
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)
render 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
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
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
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
end
private
def can_show_user?
return true if can_manage_or_create_users?
return true if @user == User.current
(@user.active? || @user.registered?) \
&& (@memberships.present? || events.present?)
end
def can_manage_or_create_users?
current_user.allowed_globally?(:manage_user) || current_user.allowed_globally?(:create_user)
end
def events
@events ||= Activities::Fetcher.new(User.current, author: @user).events(limit: 10)
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
rescue ActiveRecord::RecordNotFound
render_404
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 set_current_activity_page
@activity_page = "users/#{@user.id}"
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 default_breadcrumb
if action_name == "index"
t("label_user_plural")
else
ActionController::Base.helpers.link_to(t("label_user_plural"), users_path)
end
end
def show_local_breadcrumb
can_manage_or_create_users?
end
def build_user_update_params
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.merge!(
password: params[:user][:password],
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