Class: Gurney::CLI
- Inherits:
-
Object
- Object
- Gurney::CLI
- Defined in:
- lib/gurney/cli.rb,
lib/gurney/cli/option_parser.rb
Defined Under Namespace
Classes: OptionParser
Constant Summary collapse
- HOOK_STDIN_REGEX =
/(?<old>[0-9a-f]{40}) (?<new>[0-9a-f]{40}) refs\/heads\/(?<ref>\w+)/m
- CLIENT_HOOK_STDIN_REGEX =
/refs\/heads\/(?<ref>\w+) (?<new>[0-9a-f]{40}) refs\/heads\/(?<remote_ref>\w+) (?<remote_sha>[0-9a-f]{40})/m
Class Method Summary collapse
Class Method Details
.run(cmd_parameter = []) ⇒ Object
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 |
# File 'lib/gurney/cli.rb', line 14 def self.run(cmd_parameter=[]) = Gurney::CLI::OptionParser.parse(cmd_parameter) begin if .hook g = Git.(ENV['GIT_DIR']) else unless Dir.exists? './.git' raise Gurney::Error.new('Must be run within a git repository') end g = Git.open('.') end config_file = read_file(g, .hook, 'master', .config_file) if !config_file && .hook # dont run as a hook with no config exit 0 end config_file ||= '---' config = Gurney::Config.from_yaml(config_file) .branches ||= config&.branches .branches ||= config&.branches .api_token ||= config&.api_token .api_url ||= config&.api_url .project_id ||= config&.project_id if [.project_id, .branches, .api_url, .api_token].any?(&:nil?) raise Gurney::Error.new("Either provide in a config file or set the flags for project id, branches, api url and api token") end branches = [] if .hook || .client_hook # we get passed changed branches and refs via stdin $stdin.each_line do |line| regex = .client_hook ? CLIENT_HOOK_STDIN_REGEX : HOOK_STDIN_REGEX matches = line.match(regex) if matches && matches[:new] != '0' * 40 if .branches.include? matches[:ref] branches << matches[:ref] end end end else current_branch = g.current_branch unless .branches.nil? || .branches.include?(current_branch) raise Gurney::Error.new('The current branch is not specified in the config.') end branches << current_branch end branches.each do |branch| dependencies = [] yarn_source = Gurney::Source::Yarn.new(yarn_lock: read_file(g, .hook || .client_hook, branch, 'yarn.lock')) dependencies.concat yarn_source.dependencies || [] bundler_source = Gurney::Source::Bundler.new(gemfile_lock: read_file(g, .hook || .client_hook, branch, 'Gemfile.lock')) dependencies.concat bundler_source.dependencies || [] ruby_version_source = Gurney::Source::RubyVersion.new(ruby_version: read_file(g, .hook || .client_hook, branch, '.ruby-version')) dependencies.concat ruby_version_source.dependencies || [] dependencies.compact! api = Gurney::Api.new(base_url: .api_url, token: .api_token) api.post_dependencies(dependencies: dependencies, branch: branch, project_id: .project_id) dependency_counts = dependencies.group_by(&:ecosystem).map{|ecosystem, dependencies| "#{ecosystem}: #{dependencies.count}" }.join(', ') puts "Gurney: reported dependencies (#{dependency_counts})" end rescue SystemExit rescue Gurney::ApiError => e puts "Gurney: api error".red puts e..red rescue Gurney::Error => e puts "Gurney: error".red puts e..red rescue Exception => e puts "Gurney: an unexpected error occurred".red raise end end |