Class: PactBroker::UI::ViewDomain::IndexItem
- Inherits:
-
Object
- Object
- PactBroker::UI::ViewDomain::IndexItem
show all
- Includes:
- Api::PactBrokerUrls
- Defined in:
- lib/pact_broker/ui/view_models/index_item.rb
Instance Method Summary
collapse
#badge_url_for_latest_pact, #build_webhook_metadata, #consumer_webhooks_url, #dashboard_url_for_integration, #decode_webhook_metadata, #encode_webhook_metadata, #group_url, #hal_browser_url, #label_url, #labels_url, #latest_pacts_url, #latest_tagged_pact_url, #latest_untagged_pact_url, #latest_verification_for_pact_url, #latest_verifications_for_consumer_version_url, #latest_version_url, #matrix_badge_url_for_selectors, #matrix_for_pact_url, #matrix_for_pacticipant_version_url, #matrix_url, #matrix_url_from_params, #new_verification_url, #pact_triggered_webhooks_url, #pact_url_from_params, #pact_version_url, #pact_version_url_with_metadata, #pacticipant_url, #pacticipant_url_from_params, #pacticipants_url, #previous_distinct_diff_url, #previous_distinct_pact_version_url, #provider_webhooks_url, #tag_url, #tags_url, #templated_diff_url, #templated_label_url_for_pacticipant, #templated_tag_url_for_pacticipant, #triggered_webhook_logs_url, #url_encode, #verification_publication_url, #verification_triggered_webhooks_url, #verification_url, #verification_url_from_params, #version_url, #version_url_from_params, #versions_url, #webhook_execution_url, #webhooks_for_consumer_and_provider_url, #webhooks_for_pact_url, #webhooks_status_url, #webhooks_url
#build_metadata_for_latest_pact, #build_metadata_for_webhook_triggered_by_pact_publication
Constructor Details
#initialize(relationship, options = {}) ⇒ IndexItem
Returns a new instance of IndexItem.
14
15
16
17
|
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 14
def initialize relationship, options = {}
@relationship = relationship
@options = options
end
|
Instance Method Details
#<=>(other) ⇒ Object
169
170
171
172
173
174
175
|
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 169
def <=> other
comp = consumer_name.downcase <=> other.consumer_name.downcase
return comp unless comp == 0
comp = provider_name.downcase <=> other.provider_name.downcase
return comp unless comp == 0
other.consumer_version_order <=> consumer_version_order
end
|
#any_webhooks? ⇒ Boolean
71
72
73
|
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 71
def any_webhooks?
@relationship.any_webhooks?
end
|
#base_url ⇒ Object
186
187
188
|
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 186
def base_url
@options[:base_url]
end
|
#consumer_group_url ⇒ Object
51
52
53
|
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 51
def consumer_group_url
Helpers::URLHelper.group_url(consumer_name, base_url)
end
|
#consumer_name ⇒ Object
19
20
21
|
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 19
def consumer_name
@relationship.consumer_name
end
|
#consumer_version_latest_tag_names ⇒ Object
43
44
45
|
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 43
def consumer_version_latest_tag_names
@relationship.tag_names
end
|
#consumer_version_number ⇒ Object
#consumer_version_order ⇒ Object
31
32
33
|
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 31
def consumer_version_order
@relationship.consumer_version_order
end
|
#integration_url ⇒ Object
#last_verified_date ⇒ Object
125
126
127
128
129
130
131
132
|
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 125
def last_verified_date
if @relationship.ever_verified?
date = @relationship.latest_verification.execution_date
PactBroker::DateHelper.distance_of_time_in_words(date, DateTime.now) + " ago"
else
""
end
end
|
#latest? ⇒ Boolean
39
40
41
|
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 39
def latest?
@relationship.latest?
end
|
#latest_pact_url ⇒ Object
59
60
61
|
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 59
def latest_pact_url
"#{pactigration_base_url(base_url, @relationship)}/latest"
end
|
#pact_matrix_url ⇒ Object
67
68
69
|
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 67
def pact_matrix_url
Helpers::URLHelper.matrix_url(consumer_name, provider_name, base_url)
end
|
#pact_versions_url ⇒ Object
#provider_group_url ⇒ Object
55
56
57
|
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 55
def provider_group_url
Helpers::URLHelper.group_url(provider_name, base_url)
end
|
#provider_name ⇒ Object
23
24
25
|
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 23
def provider_name
@relationship.provider_name
end
|
#provider_version_latest_tag_names ⇒ Object
47
48
49
|
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 47
def provider_version_latest_tag_names
@relationship.latest_verification_latest_tags.collect(&:name)
end
|
#provider_version_number ⇒ Object
#pseudo_branch_verification_status ⇒ Object
143
144
145
146
147
148
149
150
|
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 143
def pseudo_branch_verification_status
case @relationship.pseudo_branch_verification_status
when :success then "success"
when :stale then "warning"
when :failed then "danger"
else ""
end
end
|
#publication_date_of_latest_pact ⇒ Object
134
135
136
137
|
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 134
def publication_date_of_latest_pact
date = @relationship.latest_pact.created_at
PactBroker::DateHelper.distance_of_time_in_words(date, DateTime.now) + " ago"
end
|
#publication_date_of_latest_pact_order ⇒ Object
139
140
141
|
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 139
def publication_date_of_latest_pact_order
@relationship.latest_pact.created_at.to_time.to_i
end
|
#short_version_number(version_number) ⇒ Object
177
178
179
180
181
182
183
184
|
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 177
def short_version_number version_number
return "" if version_number.nil?
if version_number.size > 12
version_number[0..12] + "..."
else
version_number
end
end
|
#show_settings? ⇒ Boolean
107
108
109
|
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 107
def show_settings?
@relationship.latest?
end
|
#show_webhook_status? ⇒ Boolean
103
104
105
|
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 103
def show_webhook_status?
@relationship.latest?
end
|
156
157
158
159
160
161
162
163
164
165
166
167
|
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 156
def verification_tooltip
case @relationship.pseudo_branch_verification_status
when :success
"Successfully verified by #{provider_name} (#{short_version_number(@relationship.latest_verification_provider_version_number)})"
when :stale
"Pact has changed since last successful verification by #{provider_name} (#{short_version_number(@relationship.latest_verification_provider_version_number)})"
when :failed
"Verification by #{provider_name} (#{short_version_number(@relationship.latest_verification_provider_version_number)}) failed"
else
nil
end
end
|
#warning? ⇒ Boolean
152
153
154
|
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 152
def warning?
pseudo_branch_verification_status == 'warning'
end
|
#webhook_label ⇒ Object
83
84
85
86
87
88
89
90
91
|
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 83
def webhook_label
return "" unless show_webhook_status?
case @relationship.webhook_status
when :none then "Create"
when :success, :failure then webhook_last_execution_date
when :retrying then "Retrying"
when :not_run then "Not run"
end
end
|
#webhook_last_execution_date ⇒ Object
111
112
113
|
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 111
def webhook_last_execution_date
PactBroker::DateHelper.distance_of_time_in_words(@relationship.last_webhook_execution_date, DateTime.now) + " ago"
end
|
#webhook_status ⇒ Object
93
94
95
96
97
98
99
100
101
|
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 93
def webhook_status
return "" unless show_webhook_status?
case @relationship.webhook_status
when :success then "success"
when :failure then "danger"
when :retrying then "warning"
else ""
end
end
|