debian-mirror-gitlab/lib/tasks/gitlab/cleanup.rake

150 lines
4.6 KiB
Ruby
Raw Normal View History

2018-03-17 18:26:18 +05:30
# Gitaly migration: https://gitlab.com/gitlab-org/gitaly/issues/954
#
2014-09-02 18:07:02 +05:30
namespace :gitlab do
namespace :cleanup do
2018-03-17 18:26:18 +05:30
HASHED_REPOSITORY_NAME = '@hashed'.freeze
2015-09-11 14:41:01 +05:30
desc "GitLab | Cleanup | Clean namespaces"
2018-03-17 18:26:18 +05:30
task dirs: :gitlab_environment do
2014-09-02 18:07:02 +05:30
warn_user_is_not_gitlab
2018-11-18 11:00:15 +05:30
namespaces = Namespace.pluck(:path)
2018-03-17 18:26:18 +05:30
namespaces << HASHED_REPOSITORY_NAME # add so that it will be ignored
2017-08-17 22:00:37 +05:30
Gitlab.config.repositories.storages.each do |name, repository_storage|
2018-11-08 19:23:39 +05:30
git_base_path = Gitlab::GitalyClient::StorageSettings.allow_disk_access { repository_storage.legacy_disk_path }
2016-08-24 12:49:21 +05:30
all_dirs = Dir.glob(git_base_path + '/*')
2014-09-02 18:07:02 +05:30
2016-08-24 12:49:21 +05:30
puts git_base_path.color(:yellow)
puts "Looking for directories to remove... "
2014-09-02 18:07:02 +05:30
2016-08-24 12:49:21 +05:30
all_dirs.reject! do |dir|
# skip if git repo
dir =~ /.git$/
end
2014-09-02 18:07:02 +05:30
2016-08-24 12:49:21 +05:30
all_dirs.reject! do |dir|
dir_name = File.basename dir
2014-09-02 18:07:02 +05:30
2016-08-24 12:49:21 +05:30
# skip if namespace present
namespaces.include?(dir_name)
end
2014-09-02 18:07:02 +05:30
2016-08-24 12:49:21 +05:30
all_dirs.each do |dir_path|
2018-11-18 11:00:15 +05:30
if remove?
2016-08-24 12:49:21 +05:30
if FileUtils.rm_rf dir_path
puts "Removed...#{dir_path}".color(:red)
else
puts "Cannot remove #{dir_path}".color(:red)
end
2014-09-02 18:07:02 +05:30
else
2016-08-24 12:49:21 +05:30
puts "Can be removed: #{dir_path}".color(:red)
2014-09-02 18:07:02 +05:30
end
end
end
2018-11-18 11:00:15 +05:30
unless remove?
puts "To cleanup this directories run this command with REMOVE=true".color(:yellow)
2014-09-02 18:07:02 +05:30
end
end
2015-09-11 14:41:01 +05:30
desc "GitLab | Cleanup | Clean repositories"
2018-03-17 18:26:18 +05:30
task repos: :gitlab_environment do
2014-09-02 18:07:02 +05:30
warn_user_is_not_gitlab
2015-10-24 18:46:33 +05:30
move_suffix = "+orphaned+#{Time.now.to_i}"
2017-08-17 22:00:37 +05:30
Gitlab.config.repositories.storages.each do |name, repository_storage|
2018-11-08 19:23:39 +05:30
repo_root = Gitlab::GitalyClient::StorageSettings.allow_disk_access { repository_storage.legacy_disk_path }
2016-08-24 12:49:21 +05:30
# 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!
2017-08-17 22:00:37 +05:30
repo_with_namespace = path
.sub(repo_root, '')
.sub(%r{^/*}, '')
.chomp('.git')
.chomp('.wiki')
2018-03-17 18:26:18 +05:30
# TODO ignoring hashed repositories for now. But revisit to fully support
# possible orphaned hashed repos
next if repo_with_namespace.start_with?("#{HASHED_REPOSITORY_NAME}/") || Project.find_by_full_path(repo_with_namespace)
2016-08-24 12:49:21 +05:30
new_path = path + move_suffix
puts path.inspect + ' -> ' + new_path.inspect
File.rename(path, new_path)
end
2014-09-02 18:07:02 +05:30
end
end
end
2015-09-11 14:41:01 +05:30
desc "GitLab | Cleanup | Block users that have been removed in LDAP"
2018-03-17 18:26:18 +05:30
task block_removed_ldap_users: :gitlab_environment do
2014-09-02 18:07:02 +05:30
warn_user_is_not_gitlab
block_flag = ENV['BLOCK']
2015-04-26 12:48:37 +05:30
User.find_each do |user|
next unless user.ldap_user?
2018-03-17 18:26:18 +05:30
2015-04-26 12:48:37 +05:30
print "#{user.name} (#{user.ldap_identity.extern_uid}) ..."
2018-03-17 18:26:18 +05:30
2018-03-27 19:54:05 +05:30
if Gitlab::Auth::LDAP::Access.allowed?(user)
puts " [OK]".color(:green)
2014-09-02 18:07:02 +05:30
else
if block_flag
2015-04-26 12:48:37 +05:30
user.block! unless user.blocked?
puts " [BLOCKED]".color(:red)
2014-09-02 18:07:02 +05:30
else
puts " [NOT IN LDAP]".color(:yellow)
2014-09-02 18:07:02 +05:30
end
end
end
unless block_flag
puts "To block these users run this command with BLOCK=true".color(:yellow)
2014-09-02 18:07:02 +05:30
end
end
2017-08-17 22:00:37 +05:30
2018-11-18 11:00:15 +05:30
desc "GitLab | Cleanup | Clean orphaned project uploads"
task project_uploads: :gitlab_environment do
warn_user_is_not_gitlab
2017-08-17 22:00:37 +05:30
2018-11-18 11:00:15 +05:30
cleaner = Gitlab::Cleanup::ProjectUploads.new(logger: logger)
cleaner.run!(dry_run: dry_run?)
2017-08-17 22:00:37 +05:30
2018-11-18 11:00:15 +05:30
if dry_run?
logger.info "To clean up these files run this command with DRY_RUN=false".color(:yellow)
end
end
2017-08-17 22:00:37 +05:30
2018-11-18 11:00:15 +05:30
desc 'GitLab | Cleanup | Clean orphan remote upload files that do not exist in the db'
task remote_upload_files: :environment do
cleaner = Gitlab::Cleanup::RemoteUploads.new(logger: logger)
cleaner.run!(dry_run: dry_run?)
2017-08-17 22:00:37 +05:30
2018-11-18 11:00:15 +05:30
if dry_run?
logger.info "To cleanup these files run this command with DRY_RUN=false".color(:yellow)
2017-08-17 22:00:37 +05:30
end
end
2018-11-18 11:00:15 +05:30
def remove?
ENV['REMOVE'] == 'true'
end
def dry_run?
ENV['DRY_RUN'] != 'false'
end
def logger
return @logger if defined?(@logger)
@logger = if Rails.env.development? || Rails.env.production?
Logger.new(STDOUT).tap do |stdout_logger|
stdout_logger.extend(ActiveSupport::Logger.broadcast(Rails.logger))
end
else
Rails.logger
end
end
2014-09-02 18:07:02 +05:30
end
end