Class: PactBroker::UI::ViewDomain::IndexItem

Inherits:
Object
  • Object
show all
Includes:
Api::PactBrokerUrls
Defined in:
lib/pact_broker/ui/view_models/index_item.rb

Instance Method Summary collapse

Methods included from Api::PactBrokerUrls

#badge_url_for_latest_pact, #build_webhook_metadata, #consumer_webhooks_url, #dashboard_url_for_integration, #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_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, #parse_webhook_metadata, #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

Constructor Details

#initialize(relationship) ⇒ IndexItem

Returns a new instance of IndexItem.



14
15
16
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 14

def initialize relationship
  @relationship = relationship
end

Instance Method Details

#<=>(other) ⇒ Object



168
169
170
171
172
173
174
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 168

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

Returns:

  • (Boolean)


70
71
72
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 70

def any_webhooks?
  @relationship.any_webhooks?
end

#consumer_group_urlObject



50
51
52
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 50

def consumer_group_url
  Helpers::URLHelper.group_url consumer_name
end

#consumer_nameObject



18
19
20
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 18

def consumer_name
  @relationship.consumer_name
end

#consumer_version_latest_tag_namesObject



42
43
44
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 42

def consumer_version_latest_tag_names
  @relationship.tag_names
end

#consumer_version_numberObject



26
27
28
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 26

def consumer_version_number
  PactBroker::Versions::AbbreviateNumber.call(@relationship.consumer_version_number)
end

#consumer_version_orderObject



30
31
32
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 30

def consumer_version_order
  @relationship.consumer_version_order
end

#integration_urlObject



78
79
80
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 78

def integration_url
  PactBroker::Api::PactBrokerUrls.integration_url(consumer_name, provider_name)
end

#last_verified_dateObject



124
125
126
127
128
129
130
131
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 124

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

Returns:

  • (Boolean)


38
39
40
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 38

def latest?
  @relationship.latest?
end

#latest_pact_urlObject



58
59
60
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 58

def latest_pact_url
  "#{pactigration_base_url('', @relationship)}/latest"
end

#pact_matrix_urlObject



66
67
68
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 66

def pact_matrix_url
  Helpers::URLHelper.matrix_url consumer_name, provider_name
end

#pact_urlObject



62
63
64
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 62

def pact_url
  PactBroker::Api::PactBrokerUrls.pact_url('', @relationship)
end

#pact_versions_urlObject



74
75
76
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 74

def pact_versions_url
  PactBroker::Api::PactBrokerUrls.pact_versions_url(consumer_name, provider_name)
end

#provider_group_urlObject



54
55
56
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 54

def provider_group_url
  Helpers::URLHelper.group_url provider_name
end

#provider_nameObject



22
23
24
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 22

def provider_name
  @relationship.provider_name
end

#provider_version_latest_tag_namesObject



46
47
48
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 46

def provider_version_latest_tag_names
  @relationship.latest_verification_latest_tags.collect(&:name)
end

#provider_version_numberObject



34
35
36
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 34

def provider_version_number
  PactBroker::Versions::AbbreviateNumber.call(@relationship.provider_version_number)
end

#pseudo_branch_verification_statusObject



142
143
144
145
146
147
148
149
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 142

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_pactObject



133
134
135
136
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 133

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_orderObject



138
139
140
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 138

def publication_date_of_latest_pact_order
  @relationship.latest_pact.created_at.to_time.to_i
end

#short_version_number(version_number) ⇒ Object



176
177
178
179
180
181
182
183
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 176

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

Returns:

  • (Boolean)


106
107
108
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 106

def show_settings?
  @relationship.latest?
end

#show_webhook_status?Boolean

Returns:

  • (Boolean)


102
103
104
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 102

def show_webhook_status?
  @relationship.latest?
end

#verification_tooltipObject



155
156
157
158
159
160
161
162
163
164
165
166
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 155

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

Returns:

  • (Boolean)


151
152
153
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 151

def warning?
  pseudo_branch_verification_status == 'warning'
end

#webhook_labelObject



82
83
84
85
86
87
88
89
90
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 82

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_dateObject



110
111
112
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 110

def webhook_last_execution_date
  PactBroker::DateHelper.distance_of_time_in_words(@relationship.last_webhook_execution_date, DateTime.now) + " ago"
end

#webhook_statusObject



92
93
94
95
96
97
98
99
100
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 92

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

#webhook_urlObject



114
115
116
117
118
119
120
121
122
# File 'lib/pact_broker/ui/view_models/index_item.rb', line 114

def webhook_url
  url = case @relationship.webhook_status
    when :none
      PactBroker::Api::PactBrokerUrls.webhooks_for_consumer_and_provider_url @relationship.latest_pact.consumer, @relationship.latest_pact.provider
    else
      PactBroker::Api::PactBrokerUrls.webhooks_status_url @relationship.latest_pact.consumer, @relationship.latest_pact.provider
  end
  "/hal-browser/browser.html##{url}"
end