bulk_import.rake
3.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
IMPORT_DIRECTORY = 'import_projects'
REPOSITORY_DIRECTORY = '/home/git/repositories'
desc "Imports existing Git repos into new projects from the import_projects folder"
task :import_projects, [:email] => :environment  do |t, args|
  user_email = args.email
  repos_to_import = Dir.glob("#{IMPORT_DIRECTORY}/*")
  puts "Found #{repos_to_import.length} repos to import"
  imported_count = 0
  skipped_count = 0
  failed_count = 0
  repos_to_import.each do |repo_path|
    repo_name = File.basename repo_path
    repo_full_path = File.join(Rails.root, repo_path)
    puts "  Processing #{repo_name}"
    clone_path = "#{REPOSITORY_DIRECTORY}/#{repo_name}.git"
    if Dir.exists? clone_path
      if Project.find_by_code(repo_name)
        puts "  INFO: #{clone_path} already exists in repositories directory, skipping."
        skipped_count += 1
        next
      else
        puts "  INFO: Project doesn't exist for #{repo_name} (but the repo does)."
      end
    else
      # Clone the repo
      unless clone_bare_repo_as_git(repo_full_path, clone_path)
        failed_count += 1
        next
      end
    end
    # Create the project and repo
    if create_repo_project(repo_name, user_email)
      imported_count += 1
    else
      failed_count += 1
    end
  end
  puts "Finished importing #{imported_count} projects (skipped #{skipped_count}, failed #{failed_count})."
end
# Clones a repo as bare git repo using the git user
def clone_bare_repo_as_git(existing_path, new_path)
  begin
    sh "sudo -u git -i git clone --bare '#{existing_path}' #{new_path}"
    true
  rescue
    puts "  ERROR: Faild to clone #{existing_path} to #{new_path}"
    false
  end
end
# Creats a project in Gitlag given a @project_name@ to use (for name, web url, and code
# url) and a @user_email@ that will be assigned as the owner of the project.
def create_repo_project(project_name, user_email)
  user = User.find_by_email(user_email)
  if user
    # Using find_by_code since that's the most important identifer to be unique
    if Project.find_by_code(project_name)
      puts "  INFO: Project #{project_name} already exists in Gitlab, skipping."
      false
    else
      project = nil
      if Project.find_by_code(project_name)
        puts "  ERROR: Project already exists #{project_name}"
        return false
        project = Project.find_by_code(project_name)
      else
        project = Project.create(
          name: project_name,
          code: project_name,
          path: project_name,
          owner: user,
          description: "Automatically created from Rake on #{Time.now.to_s}"
        )
      end
      unless project.valid?
        puts "  ERROR: Failed to create project #{project} because #{project.errors.first}"
        return false
      end
      # Add user as admin for project
      project.users_projects.create!(
        :project_access => UsersProject::MASTER,
        :user => user
      )
      # Per projects_controller.rb#37
      project.update_repository
      if project.valid?
        true
      else
        puts "  ERROR: Failed to create project #{project} because #{project.errors.first}"
        false
      end
    end
  else
    puts "  ERROR: #{user_email} not found, skipping"
    false
  end
end