gitlab-org--gitlab-foss/lib/tasks/gitlab/cleanup.rake

109 lines
3.4 KiB
Ruby
Raw Normal View History

2018-01-23 17:42:10 +00:00
# Gitaly migration: https://gitlab.com/gitlab-org/gitaly/issues/954
#
2012-12-25 04:14:05 +00:00
namespace :gitlab do
namespace :cleanup do
2017-11-25 14:20:24 +00:00
HASHED_REPOSITORY_NAME = '@hashed'.freeze
2017-11-25 13:23:41 +00:00
desc "GitLab | Cleanup | Clean namespaces"
task dirs: :gitlab_environment do
2012-12-25 04:14:05 +00:00
warn_user_is_not_gitlab
remove_flag = ENV['REMOVE']
namespaces = Namespace.pluck(:path)
2017-11-25 13:23:41 +00:00
namespaces << HASHED_REPOSITORY_NAME # add so that it will be ignored
Gitlab.config.repositories.storages.each do |name, repository_storage|
git_base_path = Gitlab::GitalyClient::StorageSettings.allow_disk_access { repository_storage.legacy_disk_path }
all_dirs = Dir.glob(git_base_path + '/*')
2012-12-25 04:14:05 +00:00
puts git_base_path.color(:yellow)
puts "Looking for directories to remove... "
2012-12-25 04:14:05 +00:00
all_dirs.reject! do |dir|
# skip if git repo
dir =~ /.git$/
end
2012-12-25 04:14:05 +00:00
all_dirs.reject! do |dir|
dir_name = File.basename dir
2012-12-25 04:14:05 +00:00
# skip if namespace present
namespaces.include?(dir_name)
end
2012-12-25 04:14:05 +00:00
all_dirs.each do |dir_path|
if remove_flag
if FileUtils.rm_rf dir_path
puts "Removed...#{dir_path}".color(:red)
else
puts "Cannot remove #{dir_path}".color(:red)
end
2012-12-25 04:14:05 +00:00
else
puts "Can be removed: #{dir_path}".color(:red)
2012-12-25 04:14:05 +00:00
end
end
end
unless remove_flag
puts "To cleanup this directories run this command with REMOVE=true".color(:yellow)
2012-12-25 04:14:05 +00:00
end
end
desc "GitLab | Cleanup | Clean repositories"
task repos: :gitlab_environment do
2012-12-25 04:14:05 +00:00
warn_user_is_not_gitlab
move_suffix = "+orphaned+#{Time.now.to_i}"
Gitlab.config.repositories.storages.each do |name, repository_storage|
repo_root = Gitlab::GitalyClient::StorageSettings.allow_disk_access { repository_storage.legacy_disk_path }
# Look for global repos (legacy, depth 1) and normal repos (depth 2)
IO.popen(%W(find #{repo_root} -mindepth 1 -maxdepth 2 -name *.git)) do |find|
find.each_line do |path|
path.chomp!
repo_with_namespace = path
.sub(repo_root, '')
.sub(%r{^/*}, '')
.chomp('.git')
.chomp('.wiki')
# TODO ignoring hashed repositories for now. But revisit to fully support
# possible orphaned hashed repos
2017-11-25 13:23:41 +00:00
next if repo_with_namespace.start_with?("#{HASHED_REPOSITORY_NAME}/") || Project.find_by_full_path(repo_with_namespace)
new_path = path + move_suffix
puts path.inspect + ' -> ' + new_path.inspect
File.rename(path, new_path)
end
2012-12-25 04:14:05 +00:00
end
end
end
desc "GitLab | Cleanup | Block users that have been removed in LDAP"
task block_removed_ldap_users: :gitlab_environment do
warn_user_is_not_gitlab
block_flag = ENV['BLOCK']
User.find_each do |user|
next unless user.ldap_user?
print "#{user.name} (#{user.ldap_identity.extern_uid}) ..."
if Gitlab::Auth::LDAP::Access.allowed?(user)
puts " [OK]".color(:green)
else
if block_flag
user.block! unless user.blocked?
puts " [BLOCKED]".color(:red)
else
puts " [NOT IN LDAP]".color(:yellow)
end
end
end
unless block_flag
puts "To block these users run this command with BLOCK=true".color(:yellow)
end
end
2012-12-25 04:14:05 +00:00
end
end