2016-05-27 05:00:56 -04:00
|
|
|
namespace :gitlab do
|
|
|
|
desc "GitLab | Update templates"
|
|
|
|
task :update_templates do
|
2016-06-02 12:20:08 -04:00
|
|
|
TEMPLATE_DATA.each { |template| update(template) }
|
2016-05-27 05:00:56 -04:00
|
|
|
end
|
|
|
|
|
2016-06-02 12:20:08 -04:00
|
|
|
def update(template)
|
|
|
|
sub_dir = template.repo_url.match(/([a-z-]+)\.git\z/)[1]
|
|
|
|
dir = File.join(vendor_directory, sub_dir)
|
|
|
|
|
|
|
|
unless clone_repository(template.repo_url, dir)
|
|
|
|
puts "Cloning the #{sub_dir} templates failed".red
|
2016-05-27 05:00:56 -04:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2016-06-02 12:20:08 -04:00
|
|
|
remove_unneeded_files(dir, template.cleanup_regex)
|
2016-05-27 05:00:56 -04:00
|
|
|
puts "Done".green
|
|
|
|
end
|
|
|
|
|
2016-06-02 12:20:08 -04:00
|
|
|
def clone_repository(url, directory)
|
|
|
|
FileUtils.rm_rf(directory) if Dir.exist?(directory)
|
2016-05-27 05:00:56 -04:00
|
|
|
|
2016-06-02 12:20:08 -04:00
|
|
|
system("git clone #{url} --depth=1 --branch=master #{directory}")
|
2016-05-27 05:00:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Retain only certain files:
|
|
|
|
# - The LICENSE, because we have to
|
2016-06-02 12:20:08 -04:00
|
|
|
# - The sub dirs so we can organise the file by category
|
|
|
|
# - The templates themself
|
2016-06-17 02:37:19 -04:00
|
|
|
# - Dir.entries returns also the entries '.' and '..'
|
2016-06-02 12:20:08 -04:00
|
|
|
def remove_unneeded_files(directory, regex)
|
2016-05-27 05:00:56 -04:00
|
|
|
Dir.foreach(directory) do |file|
|
|
|
|
FileUtils.rm_rf(File.join(directory, file)) unless file =~ regex
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2016-06-02 12:20:08 -04:00
|
|
|
Template = Struct.new(:repo_url, :cleanup_regex)
|
2016-06-16 09:33:11 -04:00
|
|
|
TEMPLATE_DATA = [
|
|
|
|
Template.new(
|
|
|
|
"https://github.com/github/gitignore.git",
|
|
|
|
/(\.{1,2}|LICENSE|Global|\.gitignore)\z/
|
|
|
|
),
|
|
|
|
Template.new(
|
|
|
|
"https://gitlab.com/gitlab-org/gitlab-ci-yml.git",
|
|
|
|
/(\.{1,2}|LICENSE|Pages|\.gitlab-ci.yml)\z/
|
|
|
|
)
|
|
|
|
]
|
2016-05-27 05:00:56 -04:00
|
|
|
|
|
|
|
def vendor_directory
|
|
|
|
Rails.root.join('vendor')
|
|
|
|
end
|
|
|
|
end
|