Class: Gitlab::CLI

Inherits:
Object
  • Object
show all
Extended by:
Helpers
Defined in:
lib/gitlab/cli.rb,
lib/gitlab/cli_helpers.rb

Defined Under Namespace

Modules: Helpers

Class Method Summary collapse

Methods included from Helpers

actions_table, confirm_command, excluded_fields, multiple_record_table, required_fields, single_record_table

Class Method Details

.run(cmd, args = []) ⇒ Object



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
# File 'lib/gitlab/cli.rb', line 13

def self.run(cmd, args=[])
  case cmd
  when 'help'
    puts actions_table
  when 'info'
    endpoint = Gitlab.endpoint ? Gitlab.endpoint : 'not set'
    private_token = Gitlab.private_token ? Gitlab.private_token : 'not set'
    puts "Gitlab endpoint is #{endpoint}"
    puts "Gitlab private token is #{private_token}"
    puts "Ruby Version is #{RUBY_VERSION}"
    puts "Gitlab Ruby Gem #{Gitlab::VERSION}"
  when '-v', '--version'
    puts "Gitlab Ruby Gem #{Gitlab::VERSION}"
  else
    unless Gitlab.actions.include?(cmd.to_sym)
      puts "Unknown command. Run `gitlab help` for a list of available commands."
      exit(1)
    end

    if args.any? && (args.last.start_with?('--only=') || args.last.start_with?('--except='))
      command_args = args[0..-2]
    else
      command_args = args
    end

    confirm_command(cmd)

    begin
      data = args.any? ? Gitlab.send(cmd, *command_args) : Gitlab.send(cmd)
    rescue => e
      puts e.message
      exit(1)
    end

    case data
    when Gitlab::ObjectifiedHash
      puts single_record_table(data, cmd, args)
    when Array
      puts multiple_record_table(data, cmd, args)
    else
      puts data.inspect
    end
  end
end

.start(args) ⇒ Object



8
9
10
11
# File 'lib/gitlab/cli.rb', line 8

def self.start(args)
  command = args.shift.strip rescue 'help'
  run(command, args)
end