Sha256: 0203e39f6321521e155f5a1883d08ce2be8b50018d448e3e83021cfad288e9d1
Contents?: true
Size: 1.56 KB
Versions: 86
Compression:
Stored size: 1.56 KB
Contents
module Actions module Katello module ContentView module Presenters class IncrementalUpdatesPresenter < Helpers::Presenter::Base HUMANIZED_TYPES = { ::Katello::Erratum::CONTENT_TYPE => "Errata", ::Katello::ModuleStream::CONTENT_TYPE => "Module Streams", ::Katello::Rpm::CONTENT_TYPE => "Packages" }.freeze def humanized_output if action.output[:changed_content] humanized_content else _("Incremental Update incomplete.") end end def humanized_content humanized_lines = [] action.output[:changed_content].each do |output| cvv = ::Katello::ContentViewVersion.find_by(:id => output[:content_view_version][:id]) if cvv humanized_lines << "Content View: #{cvv.content_view.name} version #{cvv.version}" humanized_lines << _("Added Content:") [::Katello::Erratum, ::Katello::ModuleStream, ::Katello::Rpm].each do |content_type| unless output[:added_units][content_type::CONTENT_TYPE].blank? humanized_lines << " #{HUMANIZED_TYPES[content_type::CONTENT_TYPE]}:" humanized_lines += output[:added_units][content_type::CONTENT_TYPE].sort.map { |unit| " #{unit}" } end end humanized_lines << '' end end humanized_lines.join("\n") end end end end end end
Version data entries
86 entries across 86 versions & 1 rubygems