Class: Gzr::Commands::Dashboard::Import

Inherits:
Gzr::Command show all
Includes:
Dashboard, FileHelper, Look, Plan, User
Defined in:
lib/gzr/commands/dashboard/import.rb

Instance Method Summary collapse

Methods included from FileHelper

#read_file, #write_file

Methods included from Plan

#create_scheduled_plan, #delete_scheduled_plan, #query_all_scheduled_plans, #query_scheduled_plan, #query_scheduled_plans_for_dashboard, #query_scheduled_plans_for_look, #run_scheduled_plan, #update_scheduled_plan, #upsert_plan_for_dashboard, #upsert_plan_for_look, #upsert_plan_for_obj, #upsert_plans_for_dashboard, #upsert_plans_for_look, #upsert_plans_for_obj

Methods included from User

#delete_user, #query_all_users, #query_me, #query_user, #search_users, #update_user

Methods included from Look

#cat_look, #create_fetch_query, #create_look, #create_merge_result, #delete_look, #query_look, #search_looks_by_slug, #search_looks_by_title, #update_look, #upsert_look

Methods included from Dashboard

#cat_dashboard, #create_dashboard, #create_dashboard_element, #create_dashboard_filter, #create_dashboard_layout, #delete_dashboard, #delete_dashboard_element, #delete_dashboard_filter, #delete_dashboard_layout, #get_dashboard_layout, #query_dashboard, #search_dashboards_by_slug, #search_dashboards_by_title, #update_dashboard, #update_dashboard_element, #update_dashboard_filter, #update_dashboard_layout, #update_dashboard_layout_component

Methods inherited from Gzr::Command

#all_color_collections, #color_collection, #color_palette_lookup!, #create_merge_query, #create_query, #default_color_collection, #field_expression, #field_names, #find_color_palette_reference, #find_vis_config_reference, #keys_to_keep, #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, #say_error, #say_ok, #say_warning, #sufficient_version?, #with_session

Constructor Details

#initialize(file, dest_space_id, options) ⇒ Import

Returns a new instance of Import.



41
42
43
44
45
46
# File 'lib/gzr/commands/dashboard/import.rb', line 41

def initialize(file, dest_space_id, options)
  super()
  @file = file
  @dest_space_id = dest_space_id
  @options = options
end

Instance Method Details

#copy_result_maker_filterables(new_element) ⇒ Object



197
198
199
200
201
202
203
204
205
206
207
208
209
# File 'lib/gzr/commands/dashboard/import.rb', line 197

def copy_result_maker_filterables(new_element)
  return nil unless new_element[:result_maker]
  if new_element[:result_maker].fetch(:filterables,[]).length > 0
    result_maker = { :filterables => [] }
    new_element[:result_maker][:filterables].each do |filterable|
      result_maker[:filterables] << filterable.select do |k,v|
        true unless [:can].include? k
      end
    end
    return result_maker
  end
  nil
end

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



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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# File 'lib/gzr/commands/dashboard/import.rb', line 48

def execute(input: $stdin, output: $stdout)
  say_warning("options: #{@options.inspect}", output: output) if @options[:debug]
  with_session("3.1") do

    @me ||= query_me("id")

    read_file(@file) do |data|

      if data[:deleted]
        say_warning("Attempt to import a deleted dashboard!")
        say_warning("This may result in errors.")
      end

      if !data[:dashboard_elements]
        say_error("File contains no dashboard_elements! Is this a look?")
        raise Gzr::CLI::Error, "import file is not a valid dashboard"
      end

      dashboard = sync_dashboard(data,@dest_space_id, output: output)

      dashboard[:dashboard_filters] ||= []
      source_filters = data[:dashboard_filters].sort { |a,b| a[:row] <=> b[:row] }
      source_filters.each do |new_filter|
        filter = new_filter.select do |k,v|
          (keys_to_keep('create_dashboard_filter') + [:row]).include? k
        end
        filter[:dashboard_id] = dashboard.id
        say_warning "Creating filter" if @options[:debug]
        dashboard[:dashboard_filters].push create_dashboard_filter(filter)
      end

      dashboard[:dashboard_elements] ||= []
      elem_table = data[:dashboard_elements].map do |new_element|
        element = new_element.select do |k,v|
          (keys_to_keep('create_dashboard_element') - [:dashboard_id, :look_id, :query_id, :merge_result_id, :result_maker_id]).include? k
        end
        (element[:query_id],element[:look_id],element[:merge_result_id]) = process_dashboard_element(new_element) 
        say_warning "Creating dashboard element #{element.inspect}" if @options[:debug]
        element[:dashboard_id] = dashboard.id
        result_maker = copy_result_maker_filterables(new_element)
        element[:result_maker] = result_maker if result_maker
        dashboard_element = create_dashboard_element(element)
        dashboard[:dashboard_elements].push dashboard_element
        [new_element[:id], dashboard_element.id]
      end

      source_dashboard_layouts = data[:dashboard_layouts].map do |new_layout|
        layout_obj = nil
        if new_layout[:active] 
          layout_obj = get_dashboard_layout(dashboard[:dashboard_layouts].first.id)
          say_warning "Updating layout #{layout_obj.id}" if @options[:debug]
        else  
          layout = new_layout.select do |k,v|
            (keys_to_keep('create_dashboard_layout') - [:dashboard_id]).include? k
          end
          layout[:dashboard_id] = dashboard.id
          say_warning "Creating dashboard layout #{layout}" if @options[:debug]
          layout_obj = create_dashboard_layout(layout)
        end
        layout_components = new_layout[:dashboard_layout_components].zip(layout_obj.dashboard_layout_components)
        layout_components.each do |source,target|
          component = keys_to_keep('update_dashboard_layout_component').collect do |e|
            [e,nil]
          end.to_h
          component[:dashboard_layout_id] = target.dashboard_layout_id

          component.merge!(source.select do |k,v|
            (keys_to_keep('update_dashboard_layout_component') - [:id,:dashboard_layout_id]).include? k
          end)

          component[:dashboard_element_id] = elem_table.assoc(source[:dashboard_element_id])[1]
          say_warning "Updating dashboard layout component #{target.id}" if @options[:debug]
          update_dashboard_layout_component(target.id,component)
        end
      end
      upsert_plans_for_dashboard(dashboard.id,@me.id,data[:scheduled_plans]) if data[:scheduled_plans]
      output.puts "Imported dashboard #{dashboard.id}" unless @options[:plain] 
      output.puts dashboard.id if @options[:plain] 
    end
  end
end

#process_dashboard_element(dash_elem) ⇒ Object



211
212
213
214
215
216
217
218
219
220
221
# File 'lib/gzr/commands/dashboard/import.rb', line 211

def process_dashboard_element(dash_elem)
  return [nil, upsert_look(@me.id, create_fetch_query(dash_elem[:look][:query]).id, @dest_space_id, dash_elem[:look]).id, nil] if dash_elem[:look]

  query = dash_elem[:result_maker]&.fetch(:query, false) || dash_elem[:query]
  return [create_fetch_query(query).id, nil, nil] if query

  merge_result = dash_elem[:result_maker]&.fetch(:merge_result, false) || dash_elem[:merge_result]
  return [nil,nil,create_merge_result(merge_result).id] if merge_result

  [nil,nil,nil]
end

#sync_dashboard(source, target_space_id, output: $stdout) ⇒ Object



130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
# File 'lib/gzr/commands/dashboard/import.rb', line 130

def sync_dashboard(source, target_space_id, output: $stdout)
  # try to find dashboard by slug in target space
  existing_dashboard = search_dashboards_by_slug(source[:slug], target_space_id).fetch(0,nil) if source[:slug]
  # check for dash of same title in target space
  title_used = search_dashboards_by_title(source[:title], target_space_id).select {|d| !d[:deleted] }.fetch(0,nil)

  # If there is no match by slug in target space or no slug given, then we match by title
  existing_dashboard ||= title_used

  # same_title is now a flag indicating that there is already a dash in the same space with
  # that title, and it is the one we are updating.
  same_title = (title_used&.fetch(:id,nil) == existing_dashboard&.fetch(:id,nil))

  # check if the slug is used by any dashboard
  slug_used = search_dashboards_by_slug(source[:slug]).fetch(0,nil) if source[:slug]

  # same_slug is now a flag indicating that there is already a dash with
  # that slug, but it is the one we are updating.
  same_slug = (slug_used&.fetch(:id,nil) == existing_dashboard&.fetch(:id,nil))

  if slug_used && !same_slug then
    say_warning "slug #{slug_used.slug} already used for dashboard #{slug_used.title} in space #{slug_used.space_id}", output: output
    say_warning("That dashboard is in the 'Trash' but not fully deleted yet", output: output) if slug_used.deleted
    say_warning "dashboard will be imported with new slug", output: output
  end

  if existing_dashboard then
    if title_used && !same_title then
      raise Gzr::CLI::Error, "Dashboard #{source[:title]} already exists in space #{target_space_id}\nDelete it before trying to upate another dashboard to have that title."
    end
    raise Gzr::CLI::Error, "Dashboard #{existing_dashboard[:title]} with slug #{existing_dashboard[:slug]} already exists in space #{target_space_id}\nUse --force if you want to overwrite it" unless @options[:force]

    say_ok "Modifying existing dashboard #{existing_dashboard.id} #{existing_dashboard[:title]} in space #{target_space_id}", output: output
    new_dash = source.select do |k,v|
      (keys_to_keep('update_dashboard') - [:space_id,:folder_id,:user_id,:slug]).include? k
    end
    new_dash[:slug] = source[:slug] unless slug_used
    new_dash[:deleted] = false if existing_dashboard[:deleted]
    d = update_dashboard(existing_dashboard.id,new_dash)

    d.dashboard_filters.each do |f|
      delete_dashboard_filter(f.id)
    end
    d.dashboard_filters = []

    d.dashboard_elements.each do |e|
      delete_dashboard_element(e.id)
    end
    d.dashboard_elements = []

    d.dashboard_layouts.each do |l|
      delete_dashboard_layout(l.id) unless l.active
    end
    d.dashboard_layouts.select! { |l| l.active }

    return d
  else
    new_dash = source.select do |k,v|
      (keys_to_keep('create_dashboard') - [:space_id,:folder_id,:user_id,:slug]).include? k
    end
    new_dash[:slug] = source[:slug] unless slug_used
    new_dash[:space_id] = target_space_id
    new_dash[:user_id] = @me.id
    return create_dashboard(new_dash)
  end
end