root = Gitlab.config.git_base_path

projects = [
  { path: 'root/underscore.git', git: 'https://github.com/documentcloud/underscore.git' },
  { path: 'diaspora.git', git: 'https://github.com/diaspora/diaspora.git' },
  { path: 'rails.git', git: 'https://github.com/rails/rails.git' },
]

projects.each do |project|
  project_path = File.join(root, project[:path])


  next if File.exists?(project_path)

  cmds = [
    "cd #{root} && sudo -u git -H git clone --bare #{project[:git]} ./#{project[:path]}",
    "sudo cp ./lib/hooks/post-receive #{project_path}/hooks/post-receive",
    "sudo chown git:git -R #{project_path}",
    "sudo chmod 770 -R #{project_path}",
  ]

  cmds.each do |cmd|
    puts cmd.yellow
    `#{cmd}`
  end
end

puts "OK".green