ManageIQ/manageiq-ui-classic

View on GitHub
app/helpers/report_helper.rb

Summary

Maintainability
A
1 hr
Test Coverage
D
68%
module ReportHelper
  include Editor
  include ReportInformationHelper
  include ReportDashboardWidgetHelper
  include ReportScheduleHelper
  include DataTableHelper

  STYLE_CLASSES = {
    :miq_rpt_red_text    => N_("Red Text"),
    :miq_rpt_red_bg      => N_("Red Background"),
    :miq_rpt_yellow_text => N_("Yellow Text"),
    :miq_rpt_yellow_bg   => N_("Yellow Background"),
    :miq_rpt_green_text  => N_("Green Text"),
    :miq_rpt_green_bg    => N_("Green Background"),
    :miq_rpt_blue_text   => N_("Blue Text"),
    :miq_rpt_blue_bg     => N_("Blue Background"),
    :miq_rpt_maroon_text => N_("Light Blue Text"),
    :miq_rpt_maroon_bg   => N_("Light Blue Background"),
    :miq_rpt_purple_text => N_("Purple Text"),
    :miq_rpt_purple_bg   => N_("Purple Background"),
    :miq_rpt_gray_text   => N_("Gray Text"),
    :miq_rpt_gray_bg     => N_("Gray Background")
  }.freeze

  NOTHING_STRING = N_("<<<Nothing>>>").freeze

  def visibility_options(widget)
    typ = widget.visibility.keys.first
    values = widget.visibility.values.flatten
    if values.first == "_ALL_"
      _("To All Users")
    else
      _("By %{typ}: %{values}") % {:typ => typ.to_s.titleize, :values => values.join(',')}
    end
  end

  def chart_fields_options
    chart_data_columns = if @edit[:new][:group] != 'No'
                           groupings = @edit[:new][:col_options].find_all do |_field, col_options|
                             col_options[:grouping].present? && !col_options[:grouping].empty?
                           end
                           groupings.each_with_object([]) do |(field, col_options), options|
                             model = @edit[:new][:model]
                             col_options[:grouping].each do |fun|
                               field_key = if field =~ /\./
                                             f = field.sub('.', '-')
                                             "#{model}.#{f}"
                                           else
                                             "#{model}-#{field}"
                                           end
                               field_label = @edit[:new][:headers][field_key]
                               options << ["#{field_label} (#{fun.to_s.titleize})", "#{model}-#{field}:#{fun}"]
                             end
                           end
                         else
                           @edit[:new][:field_order].find_all do |f|
                             ci = MiqReport.get_col_info(f.last.split("__").first)
                             ci[:numeric]
                           end
                         end
    [[_("Nothing selected"), nil]] + chart_data_columns
  end

  def filter_performance_start_options
    start_array = []
    case @edit[:new][:perf_interval]
    when 'hourly'
      6.times { |i| start_array.push([pluralize(i + 1, 'day').to_s, (i + 1).days.to_s]) }
      4.times { |i| start_array.push([pluralize(i + 1, 'week').to_s, (i + 1).weeks.to_s]) }
      5.times { |i| start_array.push([pluralize(i + 2, 'month').to_s, (i + 1).months.to_s]) }
    when 'daily'
      5.times  { |i| start_array.push([pluralize(i + 2, 'day').to_s, (i + 2).days.to_s]) }
      3.times  { |i| start_array.push([pluralize((i + 1), 'week').to_s, (i + 1).weeks.to_s]) }
      11.times { |i| start_array.push([pluralize((i + 1), 'month').to_s, (i + 1).months.to_s]) }
      start_array.push(['1 year', 1.year.to_s])
    end
    start_array
  end

  def filter_performance_end_options
    end_array = []
    case @edit[:new][:perf_interval]
    when 'hourly'
      end_array += [
        %w[Today 0],
        ['Yesterday', 1.day.to_s]
      ]
      5.times { |i| end_array.push(["#{i + 2} days ago", (i + 2).days.to_s]) }
      4.times { |i| end_array.push(["#{pluralize(i + 1, 'week')} ago", (i + 1).weeks.to_s]) }
      5.times { |i| end_array.push(["#{pluralize(i + 2, 'month')} ago", (i + 1).months.to_s]) }
    when 'daily'
      end_array += [
        %w[Yesterday 0] # Start with yesterday, since we only allow full 24 hour days in daily trending
      ]
      5.times { |i| end_array.push(["#{i + 2} days ago", (i + 1).days.to_s]) }
      3.times { |i| end_array.push(["#{pluralize((i + 1), 'week')} ago", ((i + 1).weeks - 1.day).to_s]) }
      6.times { |i| end_array.push(["#{pluralize((i + 1), 'month')} ago", ((i + 1).months - 1.day).to_s]) }
    end
    end_array
  end

  # We allow value-based charts when we have aggregations or
  # simple charts w/o summary.
  def chart_mode_values_allowed?
    @edit[:new][:group] != 'Counts'
  end

  def default_reports_menu
    # Retrieve the default reports' groups and their corresponding reports
    # -> Array [rpt_group, report_name]
    records = MiqReport.where(:rpt_type => 'Default', :template_type => 'report').order(:rpt_type, :name).pluck(:rpt_group, :name)
    # Split up the reports' groups into two levels at the '-' character and group them by the first level
    # -> Hash(rpt_group_1, [rpt_group_2, report_name])
    grouped = records.map { |grp, items| [grp.split(/ *- */), items].flatten }.group_by(&:first)
    # Map to the final structure, logically a hash of hashes recursively converted to an array
    # -> Hash(rpt_group_1, Hash(rpt_group_2, report_name))
    grouped.map do |grp, items|
      # Group the items by the secondary group
      # -> Hash(rpt_group_2, report_name)
      [grp, items.group_by(&:second).map { |subgroup, subitems| [subgroup, subitems.map(&:third)] }]
    end
  end

  def get_reports_menu(hide_custom = false, group = current_group)
    reports = group.try(:settings).try(:[], :report_menus) || default_reports_menu
    unless hide_custom
      # Select all custom reports
      query = {:template_type => 'report', :rpt_type => 'Custom'}
      # If the current_user is not a report admin, restrict this to the current group only
      query[:miq_group_id] = current_group.try(:id) unless current_user.report_admin_user?
      # Add the custom reports in the required format in their own menu item
      reports.push([reports_group_title, [[_("Custom"), MiqReport.where(query).order(:name).pluck(:name)]]])
    end
    reports
  end

  def populate_reports_menu(hide_custom = false)
    # checking to see if group (used to be role) was selected in menu editor tree, or came in from reports/timeline tree calls
    group = session[:role_choice].present? ? MiqGroup.find_by(:description => session[:role_choice]) : current_group
    @sb[:rpt_menu] = get_reports_menu(hide_custom, group)
  end

  def reports_group_title
    tenant_name = User.current_tenant.name
    if User.current_user.report_admin_user?
      _("%{tenant_name} (All Groups)") % {:tenant_name => tenant_name}
    else
      _("%{tenant_name} (Group): %{group_description}") %
        {:tenant_name       => tenant_name,
         :group_description => User.current_user.current_group.description}
    end
  end

  def report_dictionary(text, type)
    Dictionary.gettext(text, :type => type, :notfound => :titleize)
  end

  def report_action_onclick(type, accord)
    {:remote => true, :url => "/report/x_show/#{type}?accord=#{accord}"}
  end

  private

  def row_data(label, value, style = "")
    data = {:cells => {:label => label, :value => value}}
    data[:style] = style if style.present?
    data
  end
end