foreman-tasks 8.1.2 → 8.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/lib/actions/check_long_running_tasks.rb +8 -6
- data/app/lib/actions/deliver_long_running_tasks_notification.rb +4 -0
- data/app/models/foreman_tasks/concerns/user_extensions.rb +19 -0
- data/db/seeds.d/95-mail_notifications.rb +14 -0
- data/lib/foreman_tasks/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 85ab1c464de6111266303ebd6751df29275e6f61aeb1e24bb083a22c55fa99b5
|
4
|
+
data.tar.gz: 1f8007921fd39ca31f7da3c49fb8e00d98ab86d073714892c033406b4ce39cd6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e238da6f91fe31aae02c11a35297c9ee40c50919755e20f83ba543314fc98649e7ccff7c9f18fe9d073930d5fcdfad20ed11e242e6a2e9c7916d70e7dbe1f1c
|
7
|
+
data.tar.gz: 85967d7042d506f247025c2cccbb65bcad460a58db64b19d35fa7db25e3643282a9996d4c836268fdd0e267acdfb8c88fc35c51461ff81a1c7de8b21fbc0ab44
|
@@ -8,12 +8,10 @@ module Actions
|
|
8
8
|
def plan
|
9
9
|
time = Time.now.utc
|
10
10
|
cutoff = time - INTERVAL
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
.where(
|
15
|
-
.or(User.where(admin: true))
|
16
|
-
.or(User.where(id: UserRole.where(id: [org_admin_role.id] + org_admin_role.cloned_role_ids).select(:owner_id)))
|
11
|
+
users = User.joins(:mail_notifications)
|
12
|
+
.where(mail_enabled: true, mail_notifications: { name: 'long_running_tasks' })
|
13
|
+
.where.not(mail: [nil, ''])
|
14
|
+
.where(disabled: [nil, false])
|
17
15
|
|
18
16
|
query = "state ^ (#{STATES.join(', ')}) AND state_updated_at <= \"#{cutoff}\""
|
19
17
|
users.each do |user|
|
@@ -41,5 +39,9 @@ module Actions
|
|
41
39
|
def humanized_name
|
42
40
|
_('Check for long running tasks')
|
43
41
|
end
|
42
|
+
|
43
|
+
def rescue_strategy_for_self
|
44
|
+
Dynflow::Action::Rescue::Skip
|
45
|
+
end
|
44
46
|
end
|
45
47
|
end
|
@@ -8,6 +8,25 @@ module ForemanTasks
|
|
8
8
|
has_many :tasks, :dependent => :nullify,
|
9
9
|
:class_name => ::ForemanTasks::Task.name
|
10
10
|
# rubocop:enable Rails/ReflectionClassName
|
11
|
+
|
12
|
+
before_validation :attach_task_mail_notifications, on: :create
|
13
|
+
end
|
14
|
+
|
15
|
+
def attach_task_mail_notifications
|
16
|
+
return if ::ForemanSeeder.is_seeding
|
17
|
+
|
18
|
+
org_admin_role = Role.find_by(name: 'Organization admin')
|
19
|
+
admin_by_role = org_admin_role &&
|
20
|
+
(roles.map(&:id) & ([org_admin_role.id] + org_admin_role.cloned_role_ids)).any?
|
21
|
+
|
22
|
+
return unless admin || admin_by_role
|
23
|
+
|
24
|
+
notification = MailNotification.find_by(name: 'long_running_tasks')
|
25
|
+
return if notification.nil?
|
26
|
+
|
27
|
+
if user_mail_notifications.none? { |n| n.mail_notification_id == notification.id }
|
28
|
+
user_mail_notifications.build(mail_notification_id: notification.id, interval: 'Subscribe')
|
29
|
+
end
|
11
30
|
end
|
12
31
|
end
|
13
32
|
end
|
@@ -20,5 +20,19 @@ notifications.each do |notification|
|
|
20
20
|
raise ::Foreman::Exception.new(N_("Unable to create mail notification: %s"),
|
21
21
|
SeedHelper.format_errors(created_notification))
|
22
22
|
end
|
23
|
+
|
24
|
+
org_admin_role = Role.find_by(name: 'Organization admin')
|
25
|
+
|
26
|
+
users = User.left_joins(:roles)
|
27
|
+
.joins(:auth_source)
|
28
|
+
.where(admin: true)
|
29
|
+
.or(User.where(id: UserRole.where(id: [org_admin_role.id] + org_admin_role.cloned_role_ids).select(:owner_id)))
|
30
|
+
.where.not(auth_source: { name: 'Hidden' })
|
31
|
+
users.each do |user|
|
32
|
+
mail = UserMailNotification.create(mail_notification_id: created_notification.id, user_id: user.id, interval: 'Subscribe')
|
33
|
+
if mail.nil? || mail.errors.any?
|
34
|
+
raise ::Foreman::Exception.new(N_("Unable to enable mail notification to user '%s': %s"), user.login, SeedHelper.format_errors(mail))
|
35
|
+
end
|
36
|
+
end
|
23
37
|
end
|
24
38
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foreman-tasks
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 8.1.
|
4
|
+
version: 8.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ivan Nečas
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-10-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: dynflow
|