Class: SccAccount

Inherits:
ApplicationRecord
  • Object
show all
Includes:
Authorizable, Encryptable, ForemanTasks::Concerns::ActionSubject
Defined in:
app/models/scc_account.rb

Constant Summary collapse

NEVER =
'never'.freeze
DAILY =
'daily'.freeze
WEEKLY =
'weekly'.freeze
MONTHLY =
'monthly'.freeze
TYPES =
[NEVER, DAILY, WEEKLY, MONTHLY].freeze
SCC_MIRRORING_POLICIES =

MIRRORING_POLICY_COMPLETE doesn’t work for suse repository because deltarpm metadata is not supported by pulp3

::Katello::RootRepository::MIRRORING_POLICIES.dup

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#scc_products_with_repos_countObject

Returns the value of attribute scc_products_with_repos_count.



6
7
8
# File 'app/models/scc_account.rb', line 6

def scc_products_with_repos_count
  @scc_products_with_repos_count
end

Class Method Details

.download_policy_selection_valuesObject



291
292
293
294
295
296
297
298
299
300
# File 'app/models/scc_account.rb', line 291

def self.download_policy_selection_values
  names = {
    ::Katello::RootRepository::DOWNLOAD_ON_DEMAND => _('On Demand'),
    ::Katello::RootRepository::DOWNLOAD_IMMEDIATE => _('Immediate'),
  }

  ::Katello::RootRepository::DOWNLOAD_POLICIES.map do |p|
    [names.fetch(p, p), p]
  end
end

.mirroring_policy_selection_valuesObject



302
303
304
305
306
307
308
309
310
311
# File 'app/models/scc_account.rb', line 302

def self.mirroring_policy_selection_values
  names = {
    ::Katello::RootRepository::MIRRORING_POLICY_ADDITIVE => _('Additive'),
    ::Katello::RootRepository::MIRRORING_POLICY_CONTENT => _('Content Only'),
  }

  ::Katello::RootRepository::MIRRORING_POLICIES.map do |p|
    [names.fetch(p, p), p]
  end
end

Instance Method Details

#add_recurring_logic(sync_date, interval) ⇒ Object



110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# File 'app/models/scc_account.rb', line 110

def add_recurring_logic(sync_date, interval)
  sd = sync_date.presence || Time.now

  raise _('Interval cannot be nil') if interval.nil?

  cron = case interval.downcase
         when DAILY   then "#{sd.min} #{sd.hour} * * *"
         when WEEKLY  then "#{sd.min} #{sd.hour} * * #{sd.wday}"
         when MONTHLY then "#{sd.min} #{sd.hour} #{sd.day} * *"
         else
           raise _('Interval not set correctly')
         end

  recurring_logic = ForemanTasks::RecurringLogic.new_from_cronline(cron)

  raise _('Cron expression is not valid!') unless recurring_logic.valid_cronline?

  recurring_logic.save!
  recurring_logic
end

#associate_recurring_logicObject



131
132
133
134
135
136
137
# File 'app/models/scc_account.rb', line 131

def associate_recurring_logic
  if self.use_recurring_logic?
    self.foreman_tasks_recurring_logic = add_recurring_logic(self.sync_date, self.interval)
  else
    self.foreman_tasks_recurring_logic = nil
  end
end

#cancel_recurring_logicObject



157
158
159
# File 'app/models/scc_account.rb', line 157

def cancel_recurring_logic
  self.foreman_tasks_recurring_logic&.cancel
end

#enabled_toggle?Boolean

Returns:

  • (Boolean)


165
166
167
# File 'app/models/scc_account.rb', line 165

def enabled_toggle?
  saved_change_to_attribute?(:enabled)
end

#get_scc_data(rel_url) ⇒ Object



169
170
171
# File 'app/models/scc_account.rb', line 169

def get_scc_data(rel_url)
  SccManager.get_scc_data(base_url, rel_url, , password)
end

#initObject



51
52
53
54
# File 'app/models/scc_account.rb', line 51

def init
  # set default values
  self.sync_date ||= Time.new if self.new_record?
end

#invalidate_subscription_status(items_to_invalidate, save_record:) ⇒ Object

set all products/repos invalid params: items_to_invalidate: ActiveRecord_(*)

save_record: store in database or not

return: ActiveRecord elements with invalidated subscription status



281
282
283
284
285
286
287
288
289
# File 'app/models/scc_account.rb', line 281

def invalidate_subscription_status(items_to_invalidate, save_record:)
  if items_to_invalidate.present?
    items_to_invalidate.each do |inv|
      inv.subscription_valid = false
      inv.save! if save_record
    end
  end
  items_to_invalidate
end

#rec_logic_changed?Boolean

Returns:

  • (Boolean)


161
162
163
# File 'app/models/scc_account.rb', line 161

def rec_logic_changed?
  saved_change_to_attribute?(:sync_date) || saved_change_to_attribute?(:interval)
end

#revalidate_subscription_status(elements, scc_id) ⇒ Object

validate the subscription status of a product/repo no saving to database params: elements: scc repos or products, Array or ActiveRecord_(*)

scc_id: scc_id of the element that should be revalidated

return: elements where for the element with scc_id subscription_valid is true



268
269
270
271
272
273
274
275
# File 'app/models/scc_account.rb', line 268

def revalidate_subscription_status(elements, scc_id)
  return nil if elements.nil?

  revalidate = elements.find { |e| e.scc_id == scc_id }
  revalidate.subscription_valid = true unless revalidate.nil?
  # return modified list
  elements
end

#save_with_logic!Object



82
83
84
85
86
87
88
89
90
91
# File 'app/models/scc_account.rb', line 82

def save_with_logic!
  self.task_group ||= SccAccountSyncPlanTaskGroup.create!

  associate_recurring_logic if self.valid?

  self.save!
  start_recurring_logic if self.use_recurring_logic?

  true
end

#start_recurring_logicObject



143
144
145
146
147
148
149
150
151
152
153
154
155
# File 'app/models/scc_account.rb', line 143

def start_recurring_logic
  # rubocop:disable Style/GuardClause
  if self.use_recurring_logic?
    User.as_anonymous_admin do
      if self.sync_date.to_time < Time.now
        self.foreman_tasks_recurring_logic.start(::Actions::SccManager::SyncPlanAccountRepositories, self)
      else
        self.foreman_tasks_recurring_logic.start_after(::Actions::SccManager::SyncPlanAccountRepositories, self.sync_date, self)
      end
    end
  end
  # rubocop:enable Style/GuardClause
end

#sync_date_is_valid_datetimeObject



56
57
58
# File 'app/models/scc_account.rb', line 56

def sync_date_is_valid_datetime
  errors.add(:sync_date, 'must be a valid datetime') if interval != NEVER && sync_date.blank?
end

#sync_statusObject



64
65
66
67
68
69
70
71
72
73
74
75
76
# File 'app/models/scc_account.rb', line 64

def sync_status
  if sync_task.nil?
    _('never synced')
  elsif sync_task.state == 'stopped'
    if sync_task.result == 'success'
      synced
    else
      sync_task.result
    end
  else
    sync_task.state
  end
end

#test_connectionObject



173
174
175
176
177
178
179
# File 'app/models/scc_account.rb', line 173

def test_connection
  get_scc_data('/connect/organizations/subscriptions')
  true
rescue StandardError => e
  ::Foreman::Logging.logger('foreman_scc_manager').warn "Error occurred while testing SCC-Connection to Account #{self}: #{e}"
  false
end

#to_sObject



60
61
62
# File 'app/models/scc_account.rb', line 60

def to_s
  name
end

#toggle_enabledObject



139
140
141
# File 'app/models/scc_account.rb', line 139

def toggle_enabled
  self.foreman_tasks_recurring_logic&.enabled = self.enabled
end

#update_attributes_with_logic!(params) ⇒ Object



93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# File 'app/models/scc_account.rb', line 93

def update_attributes_with_logic!(params)
  transaction do
    self.update!(params)
    if rec_logic_changed?
      old_rec_logic = self.foreman_tasks_recurring_logic
      associate_recurring_logic
      self.save!
      old_rec_logic&.cancel
      # Can/Should we do that???
      old_rec_logic&.destroy
      start_recurring_logic
    end
    toggle_enabled if enabled_toggle?
  end
  true
end

#update_scc_products(upstream_products) ⇒ Object



217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
# File 'app/models/scc_account.rb', line 217

def update_scc_products(upstream_products)
  upstream_product_ids = []
  # initially invalidate all products and validate them during update
  invalidated_products = invalidate_subscription_status(scc_products, save_record: false)
  # import products
  upstream_products.each do |up|
    cached_product = scc_products.find_or_initialize_by(scc_id: up['id'])
    cached_product.version = up['version']
    cached_product.arch = up['arch']
    cached_product.description = up['description']
    cached_product.friendly_name = up['friendly_name']
    cached_product.product_type = up['product_type']
    cached_product.scc_repositories =
      scc_repositories.where(scc_id: up['repositories'].map { |repo| repo['id'] })
    cached_product.name = cached_product.pretty_name
    cached_product.product_category = up['name']
    cached_product.description = cached_product.pretty_description
    cached_product.subscription_valid = true
    cached_product.save!
    upstream_product_ids << up['id']
    # set invalidated record to true, if exists
    invalidated_products = revalidate_subscription_status(invalidated_products, up['id'])
  end
  ::Foreman::Logging.logger('foreman_scc_manager').debug "Found #{upstream_product_ids.length} products"

  # all scc products that are kept but not available upstream need to be marked invalid
  # subscription_valid can be set to nil
  to_invalidate = invalidated_products.select { |ip| ip.product_id.present? && !ip.subscription_valid }
  ::Foreman::Logging.logger('foreman_scc_manager').debug "Invalidating #{to_invalidate.count} expired products"
  invalidate_subscription_status(to_invalidate, save_record: true)

  # delete products being removed upstream and that are not subscribed to
  to_delete = scc_products.where.not(scc_id: upstream_product_ids).where(product_id: nil)
  ::Foreman::Logging.logger('foreman_scc_manager').debug "Deleting #{to_delete.count} old products"
  to_delete.destroy_all
  # rewire product to product relationships
  upstream_products.each do |up|
    extensions = scc_products.where(scc_id: up['extensions'].map { |ext| ext['id'] })
    begin
      scc_products.find_by!(scc_id: up['id']).update!(scc_extensions: extensions)
    rescue ActiveRecord::RecordNotFound
      ::Foreman::Logging.logger('foreman_scc_manager').info "Failed to find parent scc_product '#{up['name']}'."
    end
  end
end

#update_scc_repositories(upstream_repositories) ⇒ Object



181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
# File 'app/models/scc_account.rb', line 181

def update_scc_repositories(upstream_repositories)
  upstream_repo_ids = []
  # initially invalidate all repositories and validate them during update
  invalidated_repos = invalidate_subscription_status(scc_repositories, save_record: false)
  # import repositories
  upstream_repositories.each do |ur|
    cached_repository = scc_repositories.find_or_initialize_by(scc_id: ur['id'])
    cached_repository.distro_target = ur['distro_target']
    cached_repository.description = ur['description']
    cached_repository.url, cached_repository.token = ur['url'].split('?')
    cached_repository.enabled = ur['enabled']
    cached_repository.autorefresh = ur['autorefresh']
    cached_repository.installer_updates = ur['installer_updates']
    # should be called after all attributes are set in case of dependencies (currently: description)
    cached_repository.name = cached_repository.pretty_name
    cached_repository.subscription_valid = true
    cached_repository.save!
    upstream_repo_ids << ur['id']
    # set invalidated record to true, if exists
    invalidated_repos = revalidate_subscription_status(invalidated_repos, ur[id])
  end
  ::Foreman::Logging.logger('foreman_scc_manager').debug "Found #{upstream_repo_ids.length} repositories"

  # all scc repos that are kept but not available upstream need to be marked invalid
  # subscription_valid can be set to nil
  to_invalidate = invalidated_repos.select { |ir| ir.katello_root_repositories.count > 0 && !ir.subscription_valid }
  ::Foreman::Logging.logger('foreman_scc_manager').debug "Invalidating #{to_invalidate.count} expired repositories"
  invalidate_subscription_status(to_invalidate, save_record: true)

  # delete repositories being removed upstream and that are not subscribed to
  to_delete = scc_repositories.where.not(scc_id: upstream_repo_ids).includes(:scc_katello_repositories).where(scc_katello_repositories: { id: nil })

  ::Foreman::Logging.logger('foreman_scc_manager').debug "Deleting #{to_delete.count} old repositories"
  to_delete.destroy_all
end

#use_recurring_logic?Boolean

Returns:

  • (Boolean)


78
79
80
# File 'app/models/scc_account.rb', line 78

def use_recurring_logic?
  self.interval != NEVER
end