Class: PactBroker::Pacts::Repository

Inherits:
Object
  • Object
show all
Includes:
Logging, Repositories, Repositories::Helpers
Defined in:
lib/pact_broker/pacts/repository.rb

Instance Method Summary collapse

Methods included from Repositories::Helpers

#mysql?, #name_like, #order_append_ignore_case, #order_ignore_case, #pacticipant_id_for_name, #postgres?, #select_all_qualified, #select_append_all_qualified, #select_for_subquery

Methods included from Repositories

#label_repository, #matrix_repository, #pact_repository, #pacticipant_repository, #tag_repository, #verification_repository, #version_repository, #webhook_repository

Methods included from Logging

included, #log_error

Instance Method Details

#create(params) ⇒ Object



41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/pact_broker/pacts/repository.rb', line 41

def create params
  pact_version = find_or_create_pact_version(
    params.fetch(:consumer_id),
    params.fetch(:provider_id),
    params.fetch(:pact_version_sha),
    params.fetch(:json_content)
  )
  pact_publication = PactPublication.new(
    consumer_version_id: params[:version_id],
    provider_id: params[:provider_id],
    consumer_id: params[:consumer_id],
    pact_version: pact_version,
    revision_number: 1
  ).upsert
  update_latest_pact_publication_ids(pact_publication)
  pact_publication.to_domain
end

#delete(params) ⇒ Object



101
102
103
104
105
106
107
108
109
110
111
# File 'lib/pact_broker/pacts/repository.rb', line 101

def delete params
  id = scope_for(PactPublication)
    .join_consumers
    .join_providers
    .join_consumer_versions
    .consumer_name_like(params.consumer_name)
    .provider_name_like(params.provider_name)
    .consumer_version_number_like(params.consumer_version_number)
    .select_for_subquery(Sequel[:pact_publications][:id].as(:id))
  unscoped(PactPublication).where(id: id).delete
end

#delete_all_pact_publications_between(consumer_name, options) ⇒ Object



124
125
126
127
128
129
130
131
132
133
# File 'lib/pact_broker/pacts/repository.rb', line 124

def delete_all_pact_publications_between consumer_name, options
  consumer = pacticipant_repository.find_by_name!(consumer_name)
  provider = pacticipant_repository.find_by_name!(options.fetch(:and))
  query = scope_for(PactPublication).where(consumer: consumer, provider: provider)
  query = query.tag(options[:tag]) if options[:tag]

  ids = query.select_for_subquery(:id)
  webhook_repository.delete_triggered_webhooks_by_pact_publication_ids(ids)
  unscoped(PactPublication).where(id: ids).delete
end

#delete_all_pact_versions_between(consumer_name, options) ⇒ Object



135
136
137
138
139
# File 'lib/pact_broker/pacts/repository.rb', line 135

def delete_all_pact_versions_between consumer_name, options
  consumer = pacticipant_repository.find_by_name(consumer_name)
  provider = pacticipant_repository.find_by_name(options.fetch(:and))
  scope_for(PactVersion).where(consumer: consumer, provider: provider).delete
end

#delete_by_version_id(version_id) ⇒ Object



113
114
115
# File 'lib/pact_broker/pacts/repository.rb', line 113

def delete_by_version_id version_id
  scope_for(PactPublication).where(consumer_version_id: version_id).delete
end

#find_all_pact_versions_between(consumer_name, options) ⇒ Object



117
118
119
120
121
122
# File 'lib/pact_broker/pacts/repository.rb', line 117

def find_all_pact_versions_between consumer_name, options
  find_all_database_versions_between(consumer_name, options)
    .eager(:tags)
    .reverse_order(:consumer_version_order)
    .collect(&:to_domain)
end

#find_all_revisions(consumer_name, consumer_version, provider_name) ⇒ Object



261
262
263
264
265
266
267
# File 'lib/pact_broker/pacts/repository.rb', line 261

def find_all_revisions consumer_name, consumer_version, provider_name
  scope_for(AllPactPublications)
    .consumer(consumer_name)
    .provider(provider_name)
    .consumer_version_number(consumer_version)
    .order(:consumer_version_order, :revision_number).collect(&:to_domain_with_content)
end

#find_by_consumer_version(consumer_name, consumer_version_number) ⇒ Object

Returns latest pact version for the consumer_version_number



176
177
178
179
180
181
# File 'lib/pact_broker/pacts/repository.rb', line 176

def find_by_consumer_version consumer_name, consumer_version_number
  scope_for(LatestPactPublicationsByConsumerVersion)
    .consumer(consumer_name)
    .consumer_version_number(consumer_version_number)
    .collect(&:to_domain_with_content)
end

#find_by_version_and_provider(version_id, provider_id) ⇒ Object



183
184
185
186
187
188
# File 'lib/pact_broker/pacts/repository.rb', line 183

def find_by_version_and_provider version_id, provider_id
  scope_for(LatestPactPublicationsByConsumerVersion)
    .eager(:tags)
    .where(consumer_version_id: version_id, provider_id: provider_id)
    .limit(1).collect(&:to_domain_with_content)[0]
end

#find_for_verification(provider_name, consumer_version_selectors) ⇒ Object



149
150
151
# File 'lib/pact_broker/pacts/repository.rb', line 149

def find_for_verification(provider_name, consumer_version_selectors)
  PactsForVerificationRepository.new.find(provider_name, consumer_version_selectors)
end

#find_latest_pact(consumer_name, provider_name, tag = nil) ⇒ Object



194
195
196
197
198
199
200
201
202
203
204
205
# File 'lib/pact_broker/pacts/repository.rb', line 194

def find_latest_pact(consumer_name, provider_name, tag = nil)
  query = scope_for(LatestPactPublicationsByConsumerVersion)
    .select_all_qualified
    .consumer(consumer_name)
    .provider(provider_name)
  if tag == :untagged
    query = query.untagged
  elsif tag
    query = query.tag(tag)
  end
  query.latest.all.collect(&:to_domain_with_content)[0]
end

#find_latest_pact_versions_for_provider(provider_name, tag = nil) ⇒ Object



141
142
143
144
145
146
147
# File 'lib/pact_broker/pacts/repository.rb', line 141

def find_latest_pact_versions_for_provider provider_name, tag = nil
  if tag
    scope_for(LatestTaggedPactPublications).provider(provider_name).order_ignore_case(:consumer_name).where(tag_name: tag).collect(&:to_domain)
  else
    scope_for(LatestPactPublications).provider(provider_name).order_ignore_case(:consumer_name).collect(&:to_domain)
  end
end

#find_latest_pactsObject



190
191
192
# File 'lib/pact_broker/pacts/repository.rb', line 190

def find_latest_pacts
  scope_for(LatestPactPublications).order(:consumer_name, :provider_name).collect(&:to_domain)
end

#find_next_pact(pact) ⇒ Object



285
286
287
288
289
290
291
292
# File 'lib/pact_broker/pacts/repository.rb', line 285

def find_next_pact pact
  scope_for(LatestPactPublicationsByConsumerVersion)
    .eager(:tags)
    .consumer(pact.consumer.name)
    .provider(pact.provider.name)
    .consumer_version_order_after(pact.consumer_version.order)
    .earliest.collect(&:to_domain_with_content)[0]
end

#find_pact(consumer_name, consumer_version, provider_name, pact_version_sha = nil) ⇒ Object



221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
# File 'lib/pact_broker/pacts/repository.rb', line 221

def find_pact consumer_name, consumer_version, provider_name, pact_version_sha = nil
  pact_publication_by_consumer_version = scope_for(LatestPactPublicationsByConsumerVersion)
      .consumer(consumer_name)
      .provider(provider_name)
      .maybe_consumer_version_number(consumer_version)
      .limit(1)

  latest_pact_publication_by_sha = scope_for(AllPactPublications)
      .consumer(consumer_name)
      .provider(provider_name)
      .pact_version_sha(pact_version_sha)
      .reverse_order(:consumer_version_order, :revision_number)
      .limit(1)

  query = if consumer_version && !pact_version_sha
    pact_publication_by_consumer_version
      .eager(:tags)
      .collect(&:to_domain_with_content).first
  elsif pact_version_sha && !consumer_version
    latest_pact_publication_by_sha
      .eager(:tags)
      .collect(&:to_domain_with_content).first
  elsif consumer_version && pact_version_sha
    pact_publication = pact_publication_by_consumer_version.all.first
    if pact_publication && pact_publication.pact_version.sha == pact_version_sha
      pact_publication.tags
      pact_publication.to_domain_with_content
    else
      latest_pact_publication_by_sha
        .eager(:tags)
        .collect(&:to_domain_with_content).first
    end
  else
    pact_publication_by_consumer_version
      .eager(:tags)
      .reverse_order(:consumer_version_order, :revision_number)
      .collect(&:to_domain_with_content).first
  end
end

#find_pact_versions_for_provider(provider_name, tag = nil) ⇒ Object



157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
# File 'lib/pact_broker/pacts/repository.rb', line 157

def find_pact_versions_for_provider provider_name, tag = nil
  if tag
    scope_for(LatestPactPublicationsByConsumerVersion)
      .join(:tags, {version_id: :consumer_version_id})
      .provider(provider_name)
      .order_ignore_case(:consumer_name)
      .order_append(:consumer_version_order)
      .where(Sequel[:tags][:name] => tag)
      .collect(&:to_domain)
  else
    scope_for(LatestPactPublicationsByConsumerVersion)
      .provider(provider_name)
      .order_ignore_case(:consumer_name)
      .order_append(:consumer_version_order)
      .collect(&:to_domain)
  end
end

#find_previous_distinct_pact(pact) ⇒ Object



294
295
296
297
298
299
300
301
# File 'lib/pact_broker/pacts/repository.rb', line 294

def find_previous_distinct_pact pact
  previous, current = nil, pact
  loop do
    previous = find_previous_distinct_pact_by_sha current
    return previous if previous.nil? || different?(current, previous)
    current = previous
  end
end

#find_previous_pact(pact, tag = nil) ⇒ Object



269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
# File 'lib/pact_broker/pacts/repository.rb', line 269

def find_previous_pact pact, tag = nil
  query = scope_for(LatestPactPublicationsByConsumerVersion)
      .eager(:tags)
      .consumer(pact.consumer.name)
      .provider(pact.provider.name)

  if tag == :untagged
    query = query.untagged
  elsif tag
    query = query.tag(tag)
  end

  query.consumer_version_order_before(pact.consumer_version.order)
      .latest.collect(&:to_domain_with_content)[0]
end

#find_previous_pacts(pact) ⇒ Object



303
304
305
306
307
308
309
310
311
# File 'lib/pact_broker/pacts/repository.rb', line 303

def find_previous_pacts pact
  if pact.consumer_version_tag_names.any?
    pact.consumer_version_tag_names.each_with_object({}) do |tag, tags_to_pacts|
      tags_to_pacts[tag] = find_previous_pact(pact, tag)
    end
  else
    { :untagged => find_previous_pact(pact, :untagged) }
  end
end

#find_wip_pact_versions_for_provider(provider_name, provider_version_branch, provider_tags_names = [], options = {}) ⇒ Object



153
154
155
# File 'lib/pact_broker/pacts/repository.rb', line 153

def find_wip_pact_versions_for_provider provider_name, provider_version_branch, provider_tags_names = [], options = {}
  PactsForVerificationRepository.new.find_wip(provider_name, provider_version_branch, provider_tags_names, options)
end

#next_revision_number(existing_model) ⇒ Object

This logic is a separate method so we can stub it to create a “conflict” scenario



84
85
86
# File 'lib/pact_broker/pacts/repository.rb', line 84

def next_revision_number(existing_model)
  existing_model.revision_number + 1
end

#scope_for(scope) ⇒ Object



31
32
33
# File 'lib/pact_broker/pacts/repository.rb', line 31

def scope_for(scope)
  PactBroker.policy_scope!(scope)
end

#search_for_latest_pact(consumer_name, provider_name, tag = nil) ⇒ Object

Allows optional consumer_name and provider_name



208
209
210
211
212
213
214
215
216
217
218
219
# File 'lib/pact_broker/pacts/repository.rb', line 208

def search_for_latest_pact(consumer_name, provider_name, tag = nil)
  query = scope_for(LatestPactPublicationsByConsumerVersion).select_all_qualified
  query = query.consumer(consumer_name) if consumer_name
  query = query.provider(provider_name) if provider_name

  if tag == :untagged
    query = query.untagged
  elsif tag
    query = query.tag(tag)
  end
  query.latest.all.collect(&:to_domain_with_content)[0]
end

#unscoped(scope) ⇒ Object

For the times when it doesn’t make sense to use the scoped class, this is a way to indicate that it is an intentional use of the PactVersion class directly.



37
38
39
# File 'lib/pact_broker/pacts/repository.rb', line 37

def unscoped(scope)
  scope
end

#update(id, params) ⇒ Object



59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# File 'lib/pact_broker/pacts/repository.rb', line 59

def update id, params
  existing_model = PactPublication.find(id: id)
  pact_version = find_or_create_pact_version(
    existing_model.consumer_version.pacticipant_id,
    existing_model.provider_id,
    params.fetch(:pact_version_sha),
    params.fetch(:json_content)
  )
  if existing_model.pact_version_id != pact_version.id
    pact_publication = PactPublication.new(
      consumer_version_id: existing_model.consumer_version_id,
      provider_id: existing_model.provider_id,
      revision_number: next_revision_number(existing_model),
      consumer_id: existing_model.consumer_id,
      pact_version_id: pact_version.id,
      created_at: Sequel.datetime_class.now
    ).upsert
    update_latest_pact_publication_ids(pact_publication)
    pact_publication.to_domain
  else
    existing_model.to_domain
  end
end

#update_latest_pact_publication_ids(pact_publication) ⇒ Object



88
89
90
91
92
93
94
95
96
97
98
99
# File 'lib/pact_broker/pacts/repository.rb', line 88

def update_latest_pact_publication_ids(pact_publication)
  params = {
    consumer_version_id: pact_publication.consumer_version_id,
    provider_id: pact_publication.provider_id,
    pact_publication_id: pact_publication.id,
    consumer_id: pact_publication.consumer_id,
    pact_version_id: pact_publication.pact_version_id,
    created_at: pact_publication.consumer_version.created_at
  }

  LatestPactPublicationIdForConsumerVersion.new(params).upsert
end