Class: Gzr::Commands::Folder::Ls

Inherits:
Gzr::Command show all
Includes:
Folder
Defined in:
lib/gzr/commands/folder/ls.rb

Instance Method Summary collapse

Methods included from Folder

#all_folders, #create_folder, #delete_folder, included, #process_args, #query_folder, #query_folder_children, #search_folders

Methods inherited from Gzr::Command

#all_color_collections, #color_collection, #color_palette_lookup!, #create_merge_query, #create_query, #default_color_collection, #field_expressions_eval, #field_names, #find_color_palette_reference, #find_vis_config_reference, #get_auth, #get_user_by_id, #keys_to_keep, #keys_to_keep_internal, #merge_query, #pairs, #query, #render_csv, #rewrite_color_palette!, #run_inline_query, #update_color_palette!

Methods included from Session

#build_connection_hash, #login, #logout_all, #pastel, #read_token_data, #say_error, #say_ok, #say_warning, #sufficient_version?, #token_file, #update_auth, #with_session, #write_token_data

Constructor Details

#initialize(filter_spec, options) ⇒ Ls

Returns a new instance of Ls.



33
34
35
36
37
# File 'lib/gzr/commands/folder/ls.rb', line 33

def initialize(filter_spec, options)
  super()
  @filter_spec = filter_spec
  @options = options
end

Instance Method Details

#execute(input: $stdin, output: $stdout) ⇒ Object



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
# File 'lib/gzr/commands/folder/ls.rb', line 61

def execute(input: $stdin, output: $stdout)
  say_warning("options: #{@options.inspect}") if @options[:debug]
  with_session do
    folder_ids = process_args([@filter_spec])
    begin
      puts "No folders match #{@filter_spec}"
      return nil
    end unless folder_ids && folder_ids.length > 0

    @options[:fields] = 'dashboards(id,title)' if @filter_spec == 'lookml'
    f = @options[:fields]

    data = folder_ids.map do |folder_id|
      query_folder(folder_id, f)
    end.compact
    folder_ids.each do |folder_id|
      query_folder_children(folder_id, 'id,name,parent_id').each do |child|
        data.push child
      end
    end

    begin
      puts "No data returned for folders #{folder_ids.inspect}"
      return nil
    end unless data && data.length > 0

    table_hash = Hash.new
    fields = field_names(@options[:fields])
    table_hash[:header] = fields unless @options[:plain]
    table_hash[:rows] = flatten_data(data).map do |row|
      fields.collect do |e|
        row.fetch(e.to_sym,nil)
      end
    end
    table = TTY::Table.new(table_hash)
    alignments = fields.collect do |k|
      (k =~ /id\)*$/) ? :right : :left
    end
    begin
      if @options[:csv] then
        output.puts render_csv(table)
      else
        output.puts table.render(if @options[:plain] then :basic else :ascii end, alignments: alignments, width: @options[:width] || TTY::Screen.width)
      end
    end if table
  end
end

#flatten_data(raw_array) ⇒ Object



39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# File 'lib/gzr/commands/folder/ls.rb', line 39

def flatten_data(raw_array)
  rows = raw_array.map do |entry|
    entry.select do |k,v|
      !(v.kind_of?(Array) || v.kind_of?(Hash))
    end
  end
  raw_array.map do |entry|
    entry.select do |k,v|
      v.kind_of? Array
    end.each do |section,section_value|
      section_value.each do |section_entry|
        h = {}
        section_entry.each_pair do |k,v|
          h[:"#{section}.#{k}"] = v
        end
        rows.push(h)
      end
    end
  end
  rows
end