2012-12-24 23:14:05 -05:00
|
|
|
namespace :gitlab do
|
|
|
|
namespace :cleanup do
|
2015-06-23 10:52:40 -04:00
|
|
|
desc "GitLab | Cleanup | Clean namespaces"
|
2013-05-05 10:01:10 -04:00
|
|
|
task dirs: :environment do
|
2012-12-24 23:14:05 -05:00
|
|
|
warn_user_is_not_gitlab
|
|
|
|
remove_flag = ENV['REMOVE']
|
|
|
|
|
|
|
|
namespaces = Namespace.pluck(:path)
|
2017-02-28 16:08:40 -05:00
|
|
|
Gitlab.config.repositories.storages.each do |name, repository_storage|
|
|
|
|
git_base_path = repository_storage['path']
|
2016-06-22 17:04:51 -04:00
|
|
|
all_dirs = Dir.glob(git_base_path + '/*')
|
2012-12-24 23:14:05 -05:00
|
|
|
|
2016-06-22 17:04:51 -04:00
|
|
|
puts git_base_path.color(:yellow)
|
|
|
|
puts "Looking for directories to remove... "
|
2012-12-24 23:14:05 -05:00
|
|
|
|
2016-06-22 17:04:51 -04:00
|
|
|
all_dirs.reject! do |dir|
|
|
|
|
# skip if git repo
|
|
|
|
dir =~ /.git$/
|
|
|
|
end
|
2012-12-24 23:14:05 -05:00
|
|
|
|
2016-06-22 17:04:51 -04:00
|
|
|
all_dirs.reject! do |dir|
|
|
|
|
dir_name = File.basename dir
|
2012-12-24 23:14:05 -05:00
|
|
|
|
2016-06-22 17:04:51 -04:00
|
|
|
# skip if namespace present
|
|
|
|
namespaces.include?(dir_name)
|
|
|
|
end
|
2012-12-24 23:14:05 -05:00
|
|
|
|
2016-06-22 17:04:51 -04: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-24 23:14:05 -05:00
|
|
|
else
|
2016-06-22 17:04:51 -04:00
|
|
|
puts "Can be removed: #{dir_path}".color(:red)
|
2012-12-24 23:14:05 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
unless remove_flag
|
2016-06-01 18:37:15 -04:00
|
|
|
puts "To cleanup this directories run this command with REMOVE=true".color(:yellow)
|
2012-12-24 23:14:05 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-06-23 10:52:40 -04:00
|
|
|
desc "GitLab | Cleanup | Clean repositories"
|
2013-05-05 10:01:10 -04:00
|
|
|
task repos: :environment do
|
2012-12-24 23:14:05 -05:00
|
|
|
warn_user_is_not_gitlab
|
|
|
|
|
2015-09-15 10:10:29 -04:00
|
|
|
move_suffix = "+orphaned+#{Time.now.to_i}"
|
2017-02-28 16:08:40 -05:00
|
|
|
Gitlab.config.repositories.storages.each do |name, repository_storage|
|
|
|
|
repo_root = repository_storage['path']
|
2016-06-22 17:04:51 -04:00
|
|
|
# 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-02-22 13:18:40 -05:00
|
|
|
repo_with_namespace = path
|
|
|
|
.sub(repo_root, '')
|
|
|
|
.sub(%r{^/*}, '')
|
|
|
|
.chomp('.git')
|
|
|
|
.chomp('.wiki')
|
2017-02-02 18:43:19 -05:00
|
|
|
next if Project.find_by_full_path(repo_with_namespace)
|
2016-06-22 17:04:51 -04:00
|
|
|
new_path = path + move_suffix
|
|
|
|
puts path.inspect + ' -> ' + new_path.inspect
|
|
|
|
File.rename(path, new_path)
|
|
|
|
end
|
2012-12-24 23:14:05 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2014-06-26 09:38:11 -04:00
|
|
|
|
2015-06-23 10:52:40 -04:00
|
|
|
desc "GitLab | Cleanup | Block users that have been removed in LDAP"
|
2014-06-26 09:38:11 -04:00
|
|
|
task block_removed_ldap_users: :environment do
|
|
|
|
warn_user_is_not_gitlab
|
|
|
|
block_flag = ENV['BLOCK']
|
|
|
|
|
2015-02-16 04:00:25 -05:00
|
|
|
User.find_each do |user|
|
|
|
|
next unless user.ldap_user?
|
|
|
|
print "#{user.name} (#{user.ldap_identity.extern_uid}) ..."
|
|
|
|
if Gitlab::LDAP::Access.allowed?(user)
|
2016-06-01 18:37:15 -04:00
|
|
|
puts " [OK]".color(:green)
|
2014-06-26 09:38:11 -04:00
|
|
|
else
|
|
|
|
if block_flag
|
2015-02-16 04:00:25 -05:00
|
|
|
user.block! unless user.blocked?
|
2016-06-01 18:37:15 -04:00
|
|
|
puts " [BLOCKED]".color(:red)
|
2014-06-26 09:38:11 -04:00
|
|
|
else
|
2016-06-01 18:37:15 -04:00
|
|
|
puts " [NOT IN LDAP]".color(:yellow)
|
2014-06-26 09:38:11 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
unless block_flag
|
2016-06-01 18:37:15 -04:00
|
|
|
puts "To block these users run this command with BLOCK=true".color(:yellow)
|
2014-06-26 09:38:11 -04:00
|
|
|
end
|
|
|
|
end
|
2016-11-08 05:28:30 -05:00
|
|
|
|
|
|
|
# This is a rake task which removes faulty refs. These refs where only
|
|
|
|
# created in the 8.13.RC cycle, and fixed in the stable builds which were
|
|
|
|
# released. So likely this should only be run once on gitlab.com
|
|
|
|
# Faulty refs are moved so they are kept around, else some features break.
|
|
|
|
desc 'GitLab | Cleanup | Remove faulty deployment refs'
|
|
|
|
task move_faulty_deployment_refs: :environment do
|
|
|
|
projects = Project.where(id: Deployment.select(:project_id).distinct)
|
|
|
|
|
|
|
|
projects.find_each do |project|
|
|
|
|
rugged = project.repository.rugged
|
|
|
|
|
|
|
|
max_iid = project.deployments.maximum(:iid)
|
|
|
|
|
|
|
|
rugged.references.each('refs/environments/**/*') do |ref|
|
|
|
|
id = ref.name.split('/').last.to_i
|
|
|
|
next unless id > max_iid
|
|
|
|
|
|
|
|
project.deployments.find(id).create_ref
|
|
|
|
rugged.references.delete(ref)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2012-12-24 23:14:05 -05:00
|
|
|
end
|
|
|
|
end
|