9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# File 'app/lib/actions/katello/repository/errata_mail.rb', line 9
def run
::User.current = ::User.anonymous_admin
repo = ::Katello::Repository.find(input[:repo])
input[:new_associated_errata] = repo.repository_errata.pluck(:erratum_id).uniq.sort.reverse - input[:associated_errata_before_syncing]
users = ::User.select { |user| user.receives?(:sync_errata) && user.organization_ids.include?(repo.organization.id) && user.can?(:view_products, repo.product) }.compact
errata = ::Katello::Erratum.where(:id => input[:new_associated_errata])
[:associated_errata_before_syncing, :new_associated_errata].each do |key|
input[key] = "Trimmed list... (#{input[key].length} #{key.to_s.gsub('_', ' ')})" if input[key].length > 3
end
begin
MailNotification[:sync_errata].deliver(:users => users, :repo => repo, :errata => errata) unless (users.blank? || errata.blank?)
rescue => e
message = _('Unable to send errata e-mail notification: %{error}' % {:error => e})
Rails.logger.error(message)
output[:result] = message
end
end
|