2012-10-30 07:04:56 -04:00
|
|
|
namespace :gitlab do
|
|
|
|
namespace :import do
|
|
|
|
# How to use:
|
|
|
|
#
|
2016-06-22 17:04:51 -04:00
|
|
|
# 1. copy the bare repos under the repository storage paths (commonly the default path is /home/git/repositories)
|
2014-01-20 04:44:40 -05:00
|
|
|
# 2. run: bundle exec rake gitlab:import:repos RAILS_ENV=production
|
2012-10-30 07:04:56 -04:00
|
|
|
#
|
|
|
|
# Notes:
|
2014-01-20 04:44:40 -05:00
|
|
|
# * The project owner will set to the first administator of the system
|
|
|
|
# * Existing projects will be skipped
|
2012-10-30 07:04:56 -04:00
|
|
|
#
|
2016-06-22 17:04:51 -04:00
|
|
|
desc "GitLab | Import bare repositories from repositories -> storages into GitLab project instance"
|
2013-05-05 10:01:10 -04:00
|
|
|
task repos: :environment do
|
2016-06-22 17:04:51 -04:00
|
|
|
Gitlab.config.repositories.storages.each do |name, git_base_path|
|
|
|
|
repos_to_import = Dir.glob(git_base_path + '/**/*.git')
|
2012-10-30 07:04:56 -04:00
|
|
|
|
2016-06-22 17:04:51 -04:00
|
|
|
repos_to_import.each do |repo_path|
|
|
|
|
# strip repo base path
|
|
|
|
repo_path[0..git_base_path.length] = ''
|
2012-10-30 07:04:56 -04:00
|
|
|
|
2016-06-22 17:04:51 -04:00
|
|
|
path = repo_path.sub(/\.git$/, '')
|
|
|
|
group_name, name = File.split(path)
|
|
|
|
group_name = nil if group_name == '.'
|
2012-10-30 07:04:56 -04:00
|
|
|
|
2016-06-22 17:04:51 -04:00
|
|
|
puts "Processing #{repo_path}".color(:yellow)
|
2012-12-22 17:15:48 -05:00
|
|
|
|
2016-06-22 17:04:51 -04:00
|
|
|
if path.end_with?('.wiki')
|
|
|
|
puts " * Skipping wiki repo"
|
|
|
|
next
|
|
|
|
end
|
2013-08-14 05:45:17 -04:00
|
|
|
|
2016-06-22 17:04:51 -04:00
|
|
|
project = Project.find_with_namespace(path)
|
2012-10-30 07:04:56 -04:00
|
|
|
|
2016-06-22 17:04:51 -04:00
|
|
|
if project
|
|
|
|
puts " * #{project.name} (#{repo_path}) exists"
|
|
|
|
else
|
|
|
|
user = User.admins.reorder("id").first
|
2012-10-30 07:04:56 -04:00
|
|
|
|
2016-06-22 17:04:51 -04:00
|
|
|
project_params = {
|
|
|
|
name: name,
|
|
|
|
path: name
|
|
|
|
}
|
2012-10-30 07:04:56 -04:00
|
|
|
|
2016-06-22 17:04:51 -04:00
|
|
|
# find group namespace
|
|
|
|
if group_name
|
|
|
|
group = Namespace.find_by(path: group_name)
|
|
|
|
# create group namespace
|
|
|
|
unless group
|
|
|
|
group = Group.new(:name => group_name)
|
|
|
|
group.path = group_name
|
|
|
|
group.owner = user
|
|
|
|
if group.save
|
|
|
|
puts " * Created Group #{group.name} (#{group.id})".color(:green)
|
|
|
|
else
|
|
|
|
puts " * Failed trying to create group #{group.name}".color(:red)
|
|
|
|
end
|
2013-05-25 13:38:55 -04:00
|
|
|
end
|
2016-06-22 17:04:51 -04:00
|
|
|
# set project group
|
|
|
|
project_params[:namespace_id] = group.id
|
2013-05-25 13:38:55 -04:00
|
|
|
end
|
|
|
|
|
2016-06-22 17:04:51 -04:00
|
|
|
project = Projects::CreateService.new(user, project_params).execute
|
2012-10-30 07:04:56 -04:00
|
|
|
|
2016-06-22 17:04:51 -04:00
|
|
|
if project.persisted?
|
|
|
|
puts " * Created #{project.name} (#{repo_path})".color(:green)
|
|
|
|
project.update_repository_size
|
|
|
|
project.update_commit_count
|
|
|
|
else
|
|
|
|
puts " * Failed trying to create #{project.name} (#{repo_path})".color(:red)
|
|
|
|
puts " Errors: #{project.errors.messages}".color(:red)
|
|
|
|
end
|
2012-10-30 07:04:56 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-06-01 18:37:15 -04:00
|
|
|
puts "Done!".color(:green)
|
2012-10-30 07:04:56 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|