Skip to content

Commit

Permalink
Merge branch 'user-destroy-wo-groups' into 'master'
Browse files Browse the repository at this point in the history
You can not remove user if he/she is an only owner of group

To prevent loose of group data you need to transfer or remove group
first before you can remove user

Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>

See merge request !730
  • Loading branch information
dzaporozhets committed May 28, 2015
2 parents 06250ee + 2db0267 commit 05a44dc
Show file tree
Hide file tree
Showing 10 changed files with 69 additions and 33 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Expand Up @@ -28,6 +28,7 @@ v 7.12.0 (unreleased)
- Group project contributions by both name and email.
- Clarify navigation labels for Project Settings and Group Settings.
- Move user avatar and logout button to sidebar
- You can not remove user if he/she is an only owner of group

v 7.11.2
- no changes
Expand Down
6 changes: 1 addition & 5 deletions app/controllers/admin/users_controller.rb
Expand Up @@ -86,11 +86,7 @@ def update
end

def destroy
# 1. Remove groups where user is the only owner
user.solo_owned_groups.map(&:destroy)

# 2. Remove user with all authored content including personal projects
user.destroy
DeleteUserService.new.execute(user)

respond_to do |format|
format.html { redirect_to admin_users_path }
Expand Down
2 changes: 1 addition & 1 deletion app/controllers/registrations_controller.rb
Expand Up @@ -6,7 +6,7 @@ def new
end

def destroy
current_user.destroy
DeleteUserService.new.execute(current_user)

respond_to do |format|
format.html { redirect_to new_user_session_path, notice: "Account successfully removed." }
Expand Down
4 changes: 4 additions & 0 deletions app/models/user.rb
Expand Up @@ -689,4 +689,8 @@ def restricted_signup_domains

true
end

def can_be_removed?
!solo_owned_groups.present?
end
end
10 changes: 10 additions & 0 deletions app/services/delete_user_service.rb
@@ -0,0 +1,10 @@
class DeleteUserService
def execute(user)
if user.solo_owned_groups.present?
user.errors[:base] << 'You must transfer ownership or delete groups before you can remove user'
user
else
user.destroy
end
end
end
9 changes: 5 additions & 4 deletions app/views/admin/users/index.html.haml
Expand Up @@ -79,11 +79,12 @@
%i.fa.fa-envelope
= mail_to user.email, user.email, class: 'light'
&nbsp;
= link_to 'Edit', edit_admin_user_path(user), id: "edit_#{dom_id(user)}", class: "btn btn-sm"
= link_to 'Edit', edit_admin_user_path(user), id: "edit_#{dom_id(user)}", class: "btn btn-xs"
- unless user == current_user
- if user.blocked?
= link_to 'Unblock', unblock_admin_user_path(user), method: :put, class: "btn btn-sm success"
= link_to 'Unblock', unblock_admin_user_path(user), method: :put, class: "btn btn-xs btn-success"
- else
= link_to 'Block', block_admin_user_path(user), data: {confirm: 'USER WILL BE BLOCKED! Are you sure?'}, method: :put, class: "btn btn-sm btn-remove"
= link_to 'Destroy', [:admin, user], data: { confirm: "USER #{user.name} WILL BE REMOVED! All tickets linked to this user will also be removed! Maybe block the user instead? Are you sure?" }, method: :delete, class: "btn btn-sm btn-remove"
= link_to 'Block', block_admin_user_path(user), data: {confirm: 'USER WILL BE BLOCKED! Are you sure?'}, method: :put, class: "btn btn-xs btn-warning"
- if user.can_be_removed?
= link_to 'Destroy', [:admin, user], data: { confirm: "USER #{user.name} WILL BE REMOVED! All tickets linked to this user will also be removed! Maybe block the user instead? Are you sure?" }, method: :delete, class: "btn btn-xs btn-remove"
= paginate @users, theme: "gitlab"
24 changes: 14 additions & 10 deletions app/views/admin/users/show.html.haml
Expand Up @@ -140,18 +140,22 @@
.panel-heading
Remove user
.panel-body
%p Deleting a user has the following effects:
%ul
%li All user content like authored issues, snippets, comments will be removed
- rp = @user.personal_projects.count
- unless rp.zero?
%li #{pluralize rp, 'personal project'} will be removed and cannot be restored
- if @user.can_be_removed?
%p Deleting a user has the following effects:
%ul
%li All user content like authored issues, snippets, comments will be removed
- rp = @user.personal_projects.count
- unless rp.zero?
%li #{pluralize rp, 'personal project'} will be removed and cannot be restored
%br
= link_to 'Remove user', [:admin, @user], data: { confirm: "USER #{@user.name} WILL BE REMOVED! Are you sure?" }, method: :delete, class: "btn btn-remove"
- else
- if @user.solo_owned_groups.present?
%li
Next groups with all content will be removed:
%p
This user is currently an owner in these groups:
%strong #{@user.solo_owned_groups.map(&:name).join(', ')}
%br
= link_to 'Remove user', [:admin, @user], data: { confirm: "USER #{@user.name} WILL BE REMOVED! Are you sure?" }, method: :delete, class: "btn btn-remove"
%p
You must transfer ownership or delete these groups before you can delete this user.

#profile.tab-pane
.row
Expand Down
26 changes: 15 additions & 11 deletions app/views/profiles/accounts/show.html.haml
Expand Up @@ -91,15 +91,19 @@
%legend
Remove account
%div
%p Deleting an account has the following effects:
%ul
%li All user content like authored issues, snippets, comments will be removed
- rp = current_user.personal_projects.count
- unless rp.zero?
%li #{pluralize rp, 'personal project'} will be removed and cannot be restored
- if current_user.solo_owned_groups.present?
%li
The following groups will be abandoned. You should transfer or remove them:
%strong #{current_user.solo_owned_groups.map(&:name).join(', ')}
= link_to 'Delete account', user_registration_path, data: { confirm: "REMOVE #{current_user.name}? Are you sure?" }, method: :delete, class: "btn btn-remove"
- if @user.can_be_removed?
%p Deleting an account has the following effects:
%ul
%li All user content like authored issues, snippets, comments will be removed
- rp = current_user.personal_projects.count
- unless rp.zero?
%li #{pluralize rp, 'personal project'} will be removed and cannot be restored
= link_to 'Delete account', user_registration_path, data: { confirm: "REMOVE #{current_user.name}? Are you sure?" }, method: :delete, class: "btn btn-remove"
- else
- if @user.solo_owned_groups.present?
%p
Your account is currently an owner in these groups:
%strong #{@user.solo_owned_groups.map(&:name).join(', ')}
%p
You must transfer ownership or delete these groups before you can delete yur account.

2 changes: 1 addition & 1 deletion lib/api/users.rb
Expand Up @@ -194,7 +194,7 @@ class Users < Grape::API
user = User.find_by(id: params[:id])

if user
user.destroy
DeleteUserService.new.execute(user)
else
not_found!('User')
end
Expand Down
18 changes: 17 additions & 1 deletion spec/models/user_spec.rb
Expand Up @@ -572,7 +572,6 @@
end

describe "#contributed_projects_ids" do

subject { create(:user) }
let!(:project1) { create(:project) }
let!(:project2) { create(:project, forked_from_project: project3) }
Expand All @@ -598,4 +597,21 @@
expect(subject.contributed_projects_ids).not_to include(project2.id)
end
end

describe :can_be_removed? do
subject { create(:user) }

context 'no owned groups' do
it { expect(subject.can_be_removed?).to be_truthy }
end

context 'has owned groups' do
before do
group = create(:group)
group.add_owner(subject)
end

it { expect(subject.can_be_removed?).to be_falsey }
end
end
end

0 comments on commit 05a44dc

Please sign in to comment.