blob: 7c55561af6aa3dc4d270d29f0f2e2666ded5d433 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
class ComplianceCheckSet < ActiveRecord::Base
extend Enumerize
has_paper_trail
belongs_to :referential
belongs_to :compliance_control_set
belongs_to :workbench
belongs_to :parent, polymorphic: true
has_many :compliance_check_blocks, dependent: :destroy
has_many :compliance_checks, dependent: :destroy
has_many :compliance_check_resources, dependent: :destroy
has_many :compliance_check_messages, dependent: :destroy
enumerize :status, in: %w[new pending successful warning failed running aborted canceled]
scope :where_created_at_between, ->(period_range) do
where('created_at BETWEEN :begin AND :end', begin: period_range.begin, end: period_range.end)
end
def notify_parent
if parent
# parent.child_change
update(notified_parent_at: DateTime.now)
else
errors.add(:base, I18n.t('compliance_check_sets.errors.no_parent'))
end
end
def update_status
statuses = compliance_check_resources.map do |resource|
case resource.status
when 'ERROR'
return update(status: 'failed')
when 'WARNING'
return update(status: 'warning')
else
resource.status
end
end
if statuses_ok_or_ignored?(statuses)
return update(status: 'successful')
end
true
end
private
def statuses_ok_or_ignored?(statuses)
uniform_statuses = statuses.uniq
(
# All statuses OK
uniform_statuses.length == 1 &&
uniform_statuses.first == 'OK'
) ||
(
# Statuses OK or IGNORED
uniform_statuses.length == 2 &&
uniform_statuses.include?('OK') &&
uniform_statuses.include?('IGNORED')
)
end
end
|