Commit ad346233 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce

parents 0c7da9d5 05a44dcb
...@@ -12,6 +12,7 @@ v 7.12.0 (unreleased) ...@@ -12,6 +12,7 @@ v 7.12.0 (unreleased)
- Disable "New Issue" and "New Merge Request" buttons when features are disabled in project settings (Stan Hu) - Disable "New Issue" and "New Merge Request" buttons when features are disabled in project settings (Stan Hu)
- Remove Rack Attack monkey patches and bump to version 4.3.0 (Stan Hu) - Remove Rack Attack monkey patches and bump to version 4.3.0 (Stan Hu)
- Fix clone URL losing selection after a single click in Safari and Chrome (Stan Hu) - Fix clone URL losing selection after a single click in Safari and Chrome (Stan Hu)
- Fix git blame syntax highlighting when different commits break up lines (Stan Hu)
- Allow to configure location of the `.gitlab_shell_secret` file. (Jakub Jirutka) - Allow to configure location of the `.gitlab_shell_secret` file. (Jakub Jirutka)
- Disabled expansion of top/bottom blobs for new file diffs - Disabled expansion of top/bottom blobs for new file diffs
- Update Asciidoctor gem to version 1.5.2. (Jakub Jirutka) - Update Asciidoctor gem to version 1.5.2. (Jakub Jirutka)
...@@ -27,6 +28,7 @@ v 7.12.0 (unreleased) ...@@ -27,6 +28,7 @@ v 7.12.0 (unreleased)
- Group project contributions by both name and email. - Group project contributions by both name and email.
- Clarify navigation labels for Project Settings and Group Settings. - Clarify navigation labels for Project Settings and Group Settings.
- Move user avatar and logout button to sidebar - 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.4 v 7.11.4
- Fix missing bullets when creating lists - Fix missing bullets when creating lists
......
...@@ -277,4 +277,4 @@ end ...@@ -277,4 +277,4 @@ end
gem "newrelic_rpm" gem "newrelic_rpm"
gem 'octokit', '3.7.0' gem 'octokit', '3.7.0'
gem "rugments" gem "rugments", "~> 1.0.0.beta7"
...@@ -531,7 +531,7 @@ GEM ...@@ -531,7 +531,7 @@ GEM
rubyntlm (0.5.0) rubyntlm (0.5.0)
rubypants (0.2.0) rubypants (0.2.0)
rugged (0.22.2) rugged (0.22.2)
rugments (1.0.0.beta6) rugments (1.0.0.beta7)
safe_yaml (0.9.7) safe_yaml (0.9.7)
sanitize (2.1.0) sanitize (2.1.0)
nokogiri (>= 1.4.4) nokogiri (>= 1.4.4)
...@@ -781,7 +781,7 @@ DEPENDENCIES ...@@ -781,7 +781,7 @@ DEPENDENCIES
rqrcode-rails3 rqrcode-rails3
rspec-rails (= 2.99) rspec-rails (= 2.99)
rubocop (= 0.28.0) rubocop (= 0.28.0)
rugments rugments (~> 1.0.0.beta7)
sanitize (~> 2.0) sanitize (~> 2.0)
sass-rails (~> 4.0.2) sass-rails (~> 4.0.2)
sdoc sdoc
......
...@@ -86,11 +86,7 @@ class Admin::UsersController < Admin::ApplicationController ...@@ -86,11 +86,7 @@ class Admin::UsersController < Admin::ApplicationController
end end
def destroy def destroy
# 1. Remove groups where user is the only owner DeleteUserService.new.execute(user)
user.solo_owned_groups.map(&:destroy)
# 2. Remove user with all authored content including personal projects
user.destroy
respond_to do |format| respond_to do |format|
format.html { redirect_to admin_users_path } format.html { redirect_to admin_users_path }
......
...@@ -6,7 +6,7 @@ class RegistrationsController < Devise::RegistrationsController ...@@ -6,7 +6,7 @@ class RegistrationsController < Devise::RegistrationsController
end end
def destroy def destroy
current_user.destroy DeleteUserService.new.execute(current_user)
respond_to do |format| respond_to do |format|
format.html { redirect_to new_user_session_path, notice: "Account successfully removed." } format.html { redirect_to new_user_session_path, notice: "Account successfully removed." }
......
module BlobHelper module BlobHelper
def highlight(blob_name, blob_content, nowrap = false) def highlight(blob_name, blob_content, nowrap: false, continue: false)
formatter = Rugments::Formatters::HTML.new( @formatter ||= Rugments::Formatters::HTML.new(
nowrap: nowrap, nowrap: nowrap,
cssclass: 'code highlight', cssclass: 'code highlight',
lineanchors: true, lineanchors: true,
...@@ -8,11 +8,11 @@ module BlobHelper ...@@ -8,11 +8,11 @@ module BlobHelper
) )
begin begin
lexer = Rugments::Lexer.guess(filename: blob_name, source: blob_content) @lexer ||= Rugments::Lexer.guess(filename: blob_name, source: blob_content).new
result = formatter.format(lexer.lex(blob_content)).html_safe result = @formatter.format(@lexer.lex(blob_content, continue: continue)).html_safe
rescue rescue
lexer = Rugments::Lexers::PlainText lexer = Rugments::Lexers::PlainText
result = formatter.format(lexer.lex(blob_content)).html_safe result = @formatter.format(lexer.lex(blob_content)).html_safe
end end
result result
......
...@@ -689,4 +689,8 @@ class User < ActiveRecord::Base ...@@ -689,4 +689,8 @@ class User < ActiveRecord::Base
true true
end end
def can_be_removed?
!solo_owned_groups.present?
end
end end
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
...@@ -79,11 +79,12 @@ ...@@ -79,11 +79,12 @@
%i.fa.fa-envelope %i.fa.fa-envelope
= mail_to user.email, user.email, class: 'light' = mail_to user.email, user.email, class: 'light'
&nbsp; &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 - unless user == current_user
- if user.blocked? - 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 - 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 'Block', block_admin_user_path(user), data: {confirm: 'USER WILL BE BLOCKED! Are you sure?'}, method: :put, class: "btn btn-xs btn-warning"
= 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" - 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" = paginate @users, theme: "gitlab"
...@@ -140,18 +140,22 @@ ...@@ -140,18 +140,22 @@
.panel-heading .panel-heading
Remove user Remove user
.panel-body .panel-body
%p Deleting a user has the following effects: - if @user.can_be_removed?
%ul %p Deleting a user has the following effects:
%li All user content like authored issues, snippets, comments will be removed %ul
- rp = @user.personal_projects.count %li All user content like authored issues, snippets, comments will be removed
- unless rp.zero? - rp = @user.personal_projects.count
%li #{pluralize rp, 'personal project'} will be removed and cannot be restored - 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? - if @user.solo_owned_groups.present?
%li %p
Next groups with all content will be removed: This user is currently an owner in these groups:
%strong #{@user.solo_owned_groups.map(&:name).join(', ')} %strong #{@user.solo_owned_groups.map(&:name).join(', ')}
%br %p
= link_to 'Remove user', [:admin, @user], data: { confirm: "USER #{@user.name} WILL BE REMOVED! Are you sure?" }, method: :delete, class: "btn btn-remove" You must transfer ownership or delete these groups before you can delete this user.
#profile.tab-pane #profile.tab-pane
.row .row
......
...@@ -91,15 +91,19 @@ ...@@ -91,15 +91,19 @@
%legend %legend
Remove account Remove account
%div %div
%p Deleting an account has the following effects: - if @user.can_be_removed?
%ul %p Deleting an account has the following effects:
%li All user content like authored issues, snippets, comments will be removed %ul
- rp = current_user.personal_projects.count %li All user content like authored issues, snippets, comments will be removed
- unless rp.zero? - rp = current_user.personal_projects.count
%li #{pluralize rp, 'personal project'} will be removed and cannot be restored - unless rp.zero?
- if current_user.solo_owned_groups.present? %li #{pluralize rp, 'personal project'} will be removed and cannot be restored
%li = link_to 'Delete account', user_registration_path, data: { confirm: "REMOVE #{current_user.name}? Are you sure?" }, method: :delete, class: "btn btn-remove"
The following groups will be abandoned. You should transfer or remove them: - else
%strong #{current_user.solo_owned_groups.map(&:name).join(', ')} - if @user.solo_owned_groups.present?
= link_to 'Delete account', user_registration_path, data: { confirm: "REMOVE #{current_user.name}? Are you sure?" }, method: :delete, class: "btn btn-remove" %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.
...@@ -32,5 +32,5 @@ ...@@ -32,5 +32,5 @@
%code %code
:erb :erb
<% lines.each do |line| %> <% lines.each do |line| %>
<%= highlight(@blob.name, line, true).html_safe %> <%= highlight(@blob.name, line, nowrap: true, continue: true).html_safe %>
<% end %> <% end %>
...@@ -194,7 +194,7 @@ module API ...@@ -194,7 +194,7 @@ module API
user = User.find_by(id: params[:id]) user = User.find_by(id: params[:id])
if user if user
user.destroy DeleteUserService.new.execute(user)
else else
not_found!('User') not_found!('User')
end end
......
require 'spec_helper'
describe BlobHelper do
describe 'highlight' do
let(:blob_name) { 'test.lisp' }
let(:no_context_content) { ":type \"assem\"))" }
let(:blob_content) { "(make-pathname :defaults name\n#{no_context_content}" }
let(:split_content) { blob_content.split("\n") }
it 'should return plaintext for unknown lexer context' do
result = highlight(blob_name, no_context_content, nowrap: true, continue: false)
expect(result).to eq('<span id="LC1" class="line">:type &quot;assem&quot;))</span>')
end
it 'should highlight single block' do
expected = %Q[<span id="LC1" class="line"><span class="p">(</span><span class="nb">make-pathname</span> <span class="ss">:defaults</span> <span class="nv">name</span></span>
<span id="LC2" class="line"><span class="ss">:type</span> <span class="s">&quot;assem&quot;</span><span class="p">))</span></span>]
expect(highlight(blob_name, blob_content, nowrap: true, continue: false)).to eq(expected)
end
it 'should highlight continued blocks' do
# Both lines have LC1 as ID since formatter doesn't support continue at the moment
expected = [
'<span id="LC1" class="line"><span class="p">(</span><span class="nb">make-pathname</span> <span class="ss">:defaults</span> <span class="nv">name</span></span>',
'<span id="LC1" class="line"><span class="ss">:type</span> <span class="s">&quot;assem&quot;</span><span class="p">))</span></span>'
]
result = split_content.map{ |content| highlight(blob_name, content, nowrap: true, continue: true) }
expect(result).to eq(expected)
end
end
end
...@@ -572,7 +572,6 @@ describe User do ...@@ -572,7 +572,6 @@ describe User do
end end
describe "#contributed_projects_ids" do describe "#contributed_projects_ids" do
subject { create(:user) } subject { create(:user) }
let!(:project1) { create(:project) } let!(:project1) { create(:project) }
let!(:project2) { create(:project, forked_from_project: project3) } let!(:project2) { create(:project, forked_from_project: project3) }
...@@ -598,4 +597,21 @@ describe User do ...@@ -598,4 +597,21 @@ describe User do
expect(subject.contributed_projects_ids).not_to include(project2.id) expect(subject.contributed_projects_ids).not_to include(project2.id)
end end
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 end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment