uffizzi_core 2.0.13 → 2.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/concerns/uffizzi_core/dependency_injection_concern.rb +6 -0
- data/app/lib/uffizzi_core/concerns/models/account.rb +0 -2
- data/app/lib/uffizzi_core/concerns/models/deployment.rb +1 -5
- data/app/models/uffizzi_core/account.rb +2 -0
- data/app/services/uffizzi_core/activity_item_service.rb +13 -1
- data/app/services/uffizzi_core/deployment_service.rb +1 -1
- data/app/services/uffizzi_core/user_access_service.rb +1 -1
- data/lib/uffizzi_core/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: 28934eb7317d49a31d36b7563e17536b0cb9ce375a7c92d4ef7102f2eb3f998f
|
4
|
+
data.tar.gz: f86564b713075d3762622329be0d96333cc6a8a5f7c1f9352a06f26d746c89d4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 21f814b2a44d75f89128e33fb067fa56c7f83fda3a5ca7938fc026108b95d6056d405cf38da15730d593756b1479cd297c6c5f66865eb85c8b5c5bbae2a4b23f
|
7
|
+
data.tar.gz: 3cc681f0cde118c45ebf0b07d240f70cb8690a4a4ed399421d1d07f6524fa1de7b214a3ca97a39950584c69bafe0b7166c8482ced38b065fc79441f3c72de83a
|
@@ -31,6 +31,12 @@ module UffizziCore::DependencyInjectionConcern
|
|
31
31
|
module_class(:ingress_parser)
|
32
32
|
end
|
33
33
|
|
34
|
+
def notification_module
|
35
|
+
return unless module_exists?(:notification_module)
|
36
|
+
|
37
|
+
module_class(:notification_module)
|
38
|
+
end
|
39
|
+
|
34
40
|
private
|
35
41
|
|
36
42
|
def module_exists?(module_name)
|
@@ -16,8 +16,6 @@ module UffizziCore::Concerns::Models::Account
|
|
16
16
|
validates :kind, presence: true
|
17
17
|
validates :domain, uniqueness: true, if: :domain
|
18
18
|
|
19
|
-
belongs_to :owner, class_name: UffizziCore::User.name, foreign_key: :owner_id
|
20
|
-
|
21
19
|
has_many :memberships, dependent: :destroy
|
22
20
|
has_many :users, through: :memberships
|
23
21
|
has_many :credentials, dependent: :destroy
|
@@ -47,7 +47,7 @@ module UffizziCore::Concerns::Models::Deployment
|
|
47
47
|
transitions from: [:disabled], to: :active
|
48
48
|
end
|
49
49
|
|
50
|
-
event :fail
|
50
|
+
event :fail do
|
51
51
|
transitions from: [:active], to: :failed
|
52
52
|
end
|
53
53
|
|
@@ -61,10 +61,6 @@ module UffizziCore::Concerns::Models::Deployment
|
|
61
61
|
update!(disabled_at: Time.now)
|
62
62
|
end
|
63
63
|
|
64
|
-
def after_fail
|
65
|
-
active_containers.each(&:disable!)
|
66
|
-
end
|
67
|
-
|
68
64
|
def clean
|
69
65
|
active_containers.each(&:disable!)
|
70
66
|
UffizziCore::Deployment::DeleteJob.perform_async(id)
|
@@ -4,6 +4,8 @@ class UffizziCore::ActivityItemService
|
|
4
4
|
COMPLETED_STATES = ['deployed', 'failed', 'cancelled'].freeze
|
5
5
|
|
6
6
|
class << self
|
7
|
+
include UffizziCore::DependencyInjectionConcern
|
8
|
+
|
7
9
|
def create_docker_item!(repo, container)
|
8
10
|
activity_item_attributes = {
|
9
11
|
namespace: repo.namespace,
|
@@ -27,8 +29,9 @@ class UffizziCore::ActivityItemService
|
|
27
29
|
|
28
30
|
def fail_deployment!(activity_item)
|
29
31
|
deployment = activity_item.container.deployment
|
32
|
+
last_event = activity_item.events.order_by_id.last
|
30
33
|
|
31
|
-
activity_item.events.create(state: UffizziCore::Event.state.failed)
|
34
|
+
activity_item.events.create(state: UffizziCore::Event.state.failed) unless last_event&.failed?
|
32
35
|
|
33
36
|
UffizziCore::DeploymentService.fail!(deployment)
|
34
37
|
end
|
@@ -55,6 +58,11 @@ class UffizziCore::ActivityItemService
|
|
55
58
|
|
56
59
|
activity_item.events.create(state: status) if last_event&.state != status
|
57
60
|
|
61
|
+
if failed?(status)
|
62
|
+
UffizziCore::ActivityItemService.fail_deployment!(activity_item)
|
63
|
+
notification_module.notify_about_failed_deployment(deployment) if notification_module.present?
|
64
|
+
end
|
65
|
+
|
58
66
|
return unless [UffizziCore::Event.state.building, UffizziCore::Event.state.deploying].include?(status)
|
59
67
|
|
60
68
|
UffizziCore::Deployment::ManageDeployActivityItemJob.perform_in(5.seconds, activity_item.id)
|
@@ -75,5 +83,9 @@ class UffizziCore::ActivityItemService
|
|
75
83
|
last_event = activity_item.events.last
|
76
84
|
COMPLETED_STATES.include?(last_event.state)
|
77
85
|
end
|
86
|
+
|
87
|
+
def failed?(status)
|
88
|
+
status == UffizziCore::Event.state.failed
|
89
|
+
end
|
78
90
|
end
|
79
91
|
end
|
@@ -135,7 +135,7 @@ class UffizziCore::DeploymentService
|
|
135
135
|
end
|
136
136
|
|
137
137
|
def build_deployment_url(deployment)
|
138
|
-
"#{Settings.app.
|
138
|
+
"#{Settings.app.host}/projects/#{deployment.project_id}/deployments"
|
139
139
|
end
|
140
140
|
|
141
141
|
def all_containers_have_unique_ports?(containers)
|
@@ -6,7 +6,7 @@ class UffizziCore::UserAccessService
|
|
6
6
|
delegate :admin_access_to_account?, :developer_access_to_account?, :viewer_access_to_account?,
|
7
7
|
:admin_or_developer_access_to_account?, :any_access_to_account?, :admin_access_to_project?,
|
8
8
|
:developer_access_to_project?, :viewer_access_to_project?, :admin_or_developer_access_to_project?,
|
9
|
-
:any_access_to_project?, :global_admin?, to: :@user_access_module
|
9
|
+
:any_access_to_project?, :global_admin?, :valid_token?, to: :@user_access_module
|
10
10
|
|
11
11
|
def initialize(user_access_module)
|
12
12
|
@user_access_module = user_access_module
|
data/lib/uffizzi_core/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: uffizzi_core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josh Thurman
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2022-
|
12
|
+
date: 2022-12-07 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: aasm
|