module Gitrob::CLI::Commands::Analyze::Gathering
Public Instance Methods
client_manager_configuration()
click to toggle source
# File lib/gitrob/cli/commands/analyze/gathering.rb, line 47 def client_manager_configuration { :endpoint => @options[:endpoint], :site => @options[:site], :ssl => { :verify => @options[:verify_ssl] }, :access_tokens => github_access_tokens } end
gather_owners()
click to toggle source
# File lib/gitrob/cli/commands/analyze/gathering.rb, line 6 def gather_owners task("Gathering targets...") do thread_pool do |pool| github_data_manager.gather_owners(pool) end end fatal("No users or organizations " \ "found; exiting") if owner_count.zero? end
gather_repositories()
click to toggle source
# File lib/gitrob/cli/commands/analyze/gathering.rb, line 16 def gather_repositories make_repo_gathering_progress_bar do |progress| thread_pool do |pool| github_data_manager .gather_repositories(pool) do |owner, repositories| repository_gathering_update(owner, repositories, progress) end end end fatal("No repositories found; exiting") if repo_count.zero? info "Gathered #{repo_count} repositories" end
github_access_tokens()
click to toggle source
# File lib/gitrob/cli/commands/analyze/gathering.rb, line 58 def github_access_tokens if @options[:access_tokens] @options[:access_tokens].gsub("\n", ",").split(",").map(&:strip) else Gitrob::CLI.configuration["github_access_tokens"] end end
github_client_manager()
click to toggle source
# File lib/gitrob/cli/commands/analyze/gathering.rb, line 38 def github_client_manager unless @github_client_manager @github_client_manager = Gitrob::Github::ClientManager.new( client_manager_configuration ) end @github_client_manager end
github_data_manager()
click to toggle source
# File lib/gitrob/cli/commands/analyze/gathering.rb, line 29 def github_data_manager unless @github_data_manager @github_data_manager = Gitrob::Github::DataManager.new( @targets, github_client_manager ) end @github_data_manager end
make_repo_gathering_progress_bar() { |progress| ... }
click to toggle source
# File lib/gitrob/cli/commands/analyze/gathering.rb, line 66 def make_repo_gathering_progress_bar total = github_data_manager.owners.count progress_bar( "Gathering repositories from #{total} targets...", :total => total ) do |progress| yield progress end sleep 0.1 end
owner_count()
click to toggle source
# File lib/gitrob/cli/commands/analyze/gathering.rb, line 81 def owner_count github_data_manager.owners.count end
repo_count()
click to toggle source
# File lib/gitrob/cli/commands/analyze/gathering.rb, line 77 def repo_count github_data_manager.repositories.count end
repository_gathering_update(owner, repositories, progress_bar)
click to toggle source
# File lib/gitrob/cli/commands/analyze/gathering.rb, line 85 def repository_gathering_update(owner, repositories, progress_bar) count = repositories.count progress_bar.increment return if count.zero? gathered = Gitrob::Utils.pluralize( count, "repository", "repositories" ) progress_bar.info("Gathered #{gathered} " \ "from #{owner['login'].bold}") end