summaryrefslogtreecommitdiff
path: root/lib/tasks/gitlab/list_repos.rake
blob: b732db9db6e81909ccfa36b4c2b9a00a9ae45f3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace :gitlab do
  task list_repos: :environment do
    scope = Project
    if ENV['SINCE']
      date = Time.parse(ENV['SINCE'])
      warn "Listing repositories with activity or changes since #{date}"
      project_ids = Project.where('last_activity_at > ? OR updated_at > ?', date, date).pluck(:id).sort
      namespace_ids = Namespace.where(['updated_at > ?', date]).pluck(:id).sort
      scope = scope.where('id IN (?) OR namespace_id in (?)', project_ids, namespace_ids)
    end
    scope.find_each do |project|
      base = File.join(project.repository_storage_path, project.disk_path)
      puts base + '.git'
      puts base + '.wiki.git'
    end
  end
end