Sha256: 3bd1ec58fe4a6cf0a007419c52354f295123734e010fc4807a39a4d0c594899c

Contents?: true

Size: 1.04 KB

Versions: 14

Compression:

Stored size: 1.04 KB

Contents

module JobInvocationOutputHelper
  CONSOLE_COLOR = {
    '31' => 'red',
    '32' => 'lightgreen',
    '33' => 'orange',
    '34' => 'deepskyblue',
    '35' => 'mediumpurple',
    '36' => 'cyan',
    '37' => 'grey',
    '91' => 'red',
    '92' => 'lightgreen',
    '93' => 'yellow',
    '94' => 'lightblue',
    '95' => 'violet',
    '96' => 'turquoise',
    '0'  => 'default',
  }.tap { |h| h.default = 'default' }.freeze

  def colorize_line(line)
    line = line.gsub(/\e\[.*?m/) do |seq|
      color = seq[/(\d+)m/,1]
      "{{{format color:#{color}}}}"
    end

    current_color = 'default'
    out = %{<span style="color: #{@current_color}">}
    parts = line.split(/({{{format.*?}}})/)
    parts.each do |console_line|
      if console_line.include?('{{{format')
        if (color_index = console_line[/color:(\d+)/, 1]).present?
          current_color = CONSOLE_COLOR[color_index]
          out << %{</span><span style="color: #{current_color}">}
        end
      else
        out << h(console_line)
      end
    end
    out << %{</span>}
    out
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
foreman_remote_execution-1.5.6 app/helpers/job_invocation_output_helper.rb
foreman_remote_execution-1.6.3 app/helpers/job_invocation_output_helper.rb
foreman_remote_execution-1.6.2 app/helpers/job_invocation_output_helper.rb
foreman_remote_execution-1.5.5 app/helpers/job_invocation_output_helper.rb
foreman_remote_execution-1.6.1 app/helpers/job_invocation_output_helper.rb
foreman_remote_execution-1.6.0 app/helpers/job_invocation_output_helper.rb
foreman_remote_execution-1.5.4 app/helpers/job_invocation_output_helper.rb
foreman_remote_execution-1.5.3 app/helpers/job_invocation_output_helper.rb
foreman_remote_execution-1.5.2 app/helpers/job_invocation_output_helper.rb
foreman_remote_execution-1.5.1 app/helpers/job_invocation_output_helper.rb
foreman_remote_execution-1.5.0 app/helpers/job_invocation_output_helper.rb
foreman_remote_execution-1.4.6 app/helpers/job_invocation_output_helper.rb
foreman_remote_execution-1.4.5 app/helpers/job_invocation_output_helper.rb
foreman_remote_execution-1.4.4 app/helpers/job_invocation_output_helper.rb