Class: Katello::Pulp3::Repository
- Inherits:
-
Object
- Object
- Katello::Pulp3::Repository
show all
- Includes:
- ServiceCommon, Util::HttpProxy
- Defined in:
- app/services/katello/pulp3/repository.rb,
app/services/katello/pulp3/repository/apt.rb,
app/services/katello/pulp3/repository/yum.rb,
app/services/katello/pulp3/repository/file.rb,
app/services/katello/pulp3/repository/docker.rb,
app/services/katello/pulp3/repository/generic.rb,
app/services/katello/pulp3/repository/ansible_collection.rb
Defined Under Namespace
Classes: AnsibleCollection, Apt, Docker, File, Generic, Yum
Constant Summary
collapse
- COPY_UNIT_PAGE_SIZE =
10_000
Instance Attribute Summary collapse
Class Method Summary
collapse
Instance Method Summary
collapse
#create_test_remote, #ignore_404_exception, #reformat_api_exception, #test_remote_name
#proxy, #proxy_host, #proxy_port, #proxy_scheme, #proxy_uri
Constructor Details
#initialize(repo, smart_proxy) ⇒ Repository
Returns a new instance of Repository.
15
16
17
18
|
# File 'app/services/katello/pulp3/repository.rb', line 15
def initialize(repo, smart_proxy)
@repo = repo
@smart_proxy = smart_proxy
end
|
Instance Attribute Details
#repo ⇒ Object
Returns the value of attribute repo.
8
9
10
|
# File 'app/services/katello/pulp3/repository.rb', line 8
def repo
@repo
end
|
#smart_proxy ⇒ Object
Returns the value of attribute smart_proxy.
8
9
10
|
# File 'app/services/katello/pulp3/repository.rb', line 8
def smart_proxy
@smart_proxy
end
|
Class Method Details
.api(smart_proxy, repository_type_label) ⇒ Object
55
56
57
58
59
|
# File 'app/services/katello/pulp3/repository.rb', line 55
def self.api(smart_proxy, repository_type_label)
repo_type = RepositoryTypeManager.enabled_repository_types[repository_type_label]
fail _("%s content type is not enabled." % repository_type_label) unless repo_type
repo_type.pulp3_api(smart_proxy)
end
|
.build_prn(href, pulp_plugin, pulp_model) ⇒ String?
Build a PRN from a Pulp href
33
34
35
36
37
38
39
40
41
|
# File 'app/services/katello/pulp3/repository.rb', line 33
def self.build_prn(href, pulp_plugin, pulp_model)
return nil unless href
uuid = href.split('/').reject(&:empty?).last
return nil unless uuid
"prn:#{pulp_plugin}.#{pulp_model}:#{uuid}"
end
|
.instance_for_type(repo, smart_proxy) ⇒ Object
.publication_href?(href) ⇒ Boolean
24
25
26
|
# File 'app/services/katello/pulp3/repository.rb', line 24
def self.publication_href?(href)
href.include?('/publications/')
end
|
.version_href?(href) ⇒ Boolean
20
21
22
|
# File 'app/services/katello/pulp3/repository.rb', line 20
def self.version_href?(href)
/.*\/versions\/\d*\//.match(href)
end
|
Instance Method Details
#add_content(content_unit_href, remove_all_units = false) ⇒ Object
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
|
# File 'app/services/katello/pulp3/repository.rb', line 568
def add_content(content_unit_href, remove_all_units = false)
content_unit_href = [content_unit_href] unless content_unit_href.is_a?(Array)
if remove_all_units
api.repositories_api.modify(repository_reference.repository_href, remove_content_units: ['*'])
api.repositories_api.modify(repository_reference.repository_href, add_content_units: content_unit_href)
else
api.repositories_api.modify(repository_reference.repository_href, add_content_units: content_unit_href)
end
rescue api.client_module::ApiError => e
if e.message.include? 'Could not find the following content units'
raise ::Katello::Errors::Pulp3Error, "Content units that do not exist in Pulp were requested to be copied."\
" Please run `foreman-rake katello:delete_orphaned_content` to fix the following repository:"\
" #{repository_reference.root_repository.name}. Original error: #{e.message}"
else
raise e
end
end
|
#add_content_for_repo(repository_href, content_unit_href) ⇒ Object
586
587
588
589
590
591
592
593
594
595
596
597
|
# File 'app/services/katello/pulp3/repository.rb', line 586
def add_content_for_repo(repository_href, content_unit_href)
content_unit_href = [content_unit_href] unless content_unit_href.is_a?(Array)
api.repositories_api.modify(repository_href, add_content_units: content_unit_href)
rescue api.client_module::ApiError => e
if e.message.include? 'Could not find the following content units'
raise ::Katello::Errors::Pulp3Error, "Content units that do not exist in Pulp were requested to be copied."\
" Please run `foreman-rake katello:delete_orphaned_content` to fix the following repository:"\
" #{::Katello::Pulp3::RepositoryReference.find_by(repository_href: repository_href).root_repository.name}. Original error: #{e.message}"
else
raise e
end
end
|
#api ⇒ Object
65
66
67
|
# File 'app/services/katello/pulp3/repository.rb', line 65
def api
@api ||= self.class.api(smart_proxy, repo.content_type)
end
|
#append_proxy_cacert(options) ⇒ Object
531
532
533
534
535
536
|
# File 'app/services/katello/pulp3/repository.rb', line 531
def append_proxy_cacert(options)
if root.http_proxy&.cacert&.present? && options.key?(:cacert)
options[:cacert] += "\n#{root.http_proxy&.cacert}"
end
options
end
|
#common_remote_options ⇒ Object
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
|
# File 'app/services/katello/pulp3/repository.rb', line 447
def common_remote_options
remote_options = {
tls_validation: root.verify_ssl_on_sync,
name: generate_backend_object_name,
url: root.url,
proxy_url: root.http_proxy&.url,
proxy_username: root.http_proxy&.username,
proxy_password: root.http_proxy&.password,
total_timeout: Setting[:sync_total_timeout],
connect_timeout: Setting[:sync_connect_timeout_v2],
sock_connect_timeout: Setting[:sync_sock_connect_timeout],
sock_read_timeout: Setting[:sync_sock_read_timeout],
rate_limit: Setting[:download_rate_limit],
}
remote_options[:url] = root.url unless root.url.blank?
remote_options[:download_concurrency] = root.download_concurrency unless root.download_concurrency.blank?
remote_options.merge!(username: root&.upstream_username,
password: root&.upstream_password)
remote_options[:username] = nil if remote_options[:username] == ''
remote_options[:password] = nil if remote_options[:password] == ''
remote_options.merge!(ssl_remote_options)
end
|
#compute_remote_options(computed_options = remote_options) ⇒ Object
189
190
191
|
# File 'app/services/katello/pulp3/repository.rb', line 189
def compute_remote_options(computed_options = remote_options)
computed_options.except(:name, :client_key)
end
|
#content_service ⇒ Object
82
83
84
|
# File 'app/services/katello/pulp3/repository.rb', line 82
def content_service
Katello::Pulp3::Content
end
|
#copy_all(source_repository, options = {}) ⇒ Object
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
|
# File 'app/services/katello/pulp3/repository.rb', line 339
def copy_all(source_repository, options = {})
tasks = []
if options[:remove_all]
tasks << api.repositories_api.modify(repository_reference.repository_href, remove_content_units: ['*'])
end
if options[:mirror] && api.class.respond_to?(:add_remove_content_class)
data = api.class.add_remove_content_class.new(
base_version: source_repository.version_href)
tasks << api.repositories_api.modify(repository_reference.repository_href, data)
tasks
elsif api.respond_to? :copy_api
data = api.class.copy_class.new
data.config = [{
source_repo_version: source_repository.version_href,
dest_repo: repository_reference.repository_href,
}]
tasks << api.copy_api.copy_content(data)
tasks
else
copy_content_for_source(source_repository)
end
end
|
#copy_units_by_href(unit_hrefs) ⇒ Object
331
332
333
334
335
336
337
|
# File 'app/services/katello/pulp3/repository.rb', line 331
def copy_units_by_href(unit_hrefs)
tasks = []
unit_hrefs.each_slice(COPY_UNIT_PAGE_SIZE) do |slice|
tasks << create_version(:add_content_units => slice)
end
tasks
end
|
#copy_version(from_repository) ⇒ Object
364
365
366
|
# File 'app/services/katello/pulp3/repository.rb', line 364
def copy_version(from_repository)
create_version(:base_version => from_repository.version_href)
end
|
#core_api ⇒ Object
61
62
63
|
# File 'app/services/katello/pulp3/repository.rb', line 61
def core_api
Katello::Pulp3::Api::Core.new(smart_proxy)
end
|
#create(force = false) ⇒ Object
193
194
195
196
197
198
199
200
201
202
203
204
205
206
|
# File 'app/services/katello/pulp3/repository.rb', line 193
def create(force = false)
if force || !repository_reference
response = api.repositories_api.create(create_options)
RepositoryReference.where(
root_repository_id: repo.root_id,
content_view_id: repo.content_view.id).destroy_all
RepositoryReference.where(
root_repository_id: repo.root_id,
content_view_id: repo.content_view.id,
repository_href: response.pulp_href,
repository_prn: response.prn).create!
response
end
end
|
#create_distribution(path) ⇒ Object
301
302
303
304
305
306
307
308
309
|
# File 'app/services/katello/pulp3/repository.rb', line 301
def create_distribution(path)
options = secure_distribution_options(path)
options.delete(:content_guard_prn) distribution_data = api.distribution_class.new(options)
unless ::Katello::RepositoryTypeManager.find(repo.content_type).pulp3_skip_publication
fail_missing_publication(distribution_data.publication)
end
api.distributions_api.create(distribution_data)
end
|
#create_mirror_entities ⇒ Object
#create_options ⇒ Object
481
482
483
|
# File 'app/services/katello/pulp3/repository.rb', line 481
def create_options
{ name: generate_backend_object_name }.merge!(specific_create_options)
end
|
#create_publication ⇒ Object
243
244
245
246
|
# File 'app/services/katello/pulp3/repository.rb', line 243
def create_publication
publication_data = api.publication_class.new(publication_options(repo))
api.publications_api.create(publication_data)
end
|
#create_remote ⇒ Object
86
87
88
89
|
# File 'app/services/katello/pulp3/repository.rb', line 86
def create_remote
response = super
repo.update!(:remote_href => response.pulp_href, :remote_prn => response.prn)
end
|
#create_version(options = {}) ⇒ Object
387
388
389
|
# File 'app/services/katello/pulp3/repository.rb', line 387
def create_version(options = {})
api.repositories_api.modify(repository_reference.repository_href, options)
end
|
#delete_distributions ⇒ Object
431
432
433
434
435
436
|
# File 'app/services/katello/pulp3/repository.rb', line 431
def delete_distributions
if (dist_ref = distribution_reference)
ignore_404_exception { api.delete_distribution(dist_ref.href) }
dist_ref.destroy!
end
end
|
#delete_distributions_by_path ⇒ Object
438
439
440
441
442
443
444
445
|
# File 'app/services/katello/pulp3/repository.rb', line 438
def delete_distributions_by_path
path = relative_path
dists = lookup_distributions(base_path: path)
task = api.delete_distribution(dists.first.pulp_href) if dists.first
Katello::Pulp3::DistributionReference.where(:path => path).destroy_all
task
end
|
#delete_publication ⇒ Object
248
249
250
|
# File 'app/services/katello/pulp3/repository.rb', line 248
def delete_publication
ignore_404_exception { api.publications_api.delete(repo.publication_href) } if repo.publication_href
end
|
#delete_remote(options = {}) ⇒ Object
121
122
123
124
|
# File 'app/services/katello/pulp3/repository.rb', line 121
def delete_remote(options = {})
options[:href] ||= repo.remote_href
ignore_404_exception { api.get_remotes_api(href: options[:href]).delete(options[:href]) } if options[:href]
end
|
#delete_repository(repo_reference = repository_reference) ⇒ Object
226
227
228
229
230
|
# File 'app/services/katello/pulp3/repository.rb', line 226
def delete_repository(repo_reference = repository_reference)
href = repo_reference.try(:repository_href)
repo_reference.try(:destroy)
ignore_404_exception { api.repositories_api.delete(href) } if href
end
|
#delete_version ⇒ Object
372
373
374
375
376
377
378
379
380
381
382
383
384
385
|
# File 'app/services/katello/pulp3/repository.rb', line 372
def delete_version
ignore_404_exception { api.repository_versions_api.delete(repo.version_href) } unless version_zero?
rescue api.api_exception_class => e
if e.message.include?("are currently being used to distribute content")
Rails.logger.warn "Exception when calling repository_versions_api->delete: #{e}"
publication_href = repo.publication_href
Rails.logger.warn "Trying to delete publication #{publication_href} for repository #{repo.id}}"
Rails.logger.error "Could not delete version: #{repo.version_href} because conflicting publication could not be looked up" unless publication_href
if publication_href
ignore_404_exception { api.publications_api.delete(publication_href) }
ignore_404_exception { api.repository_versions_api.delete(repo.version_href) }
end
end
end
|
#distribution_needs_update? ⇒ Boolean
176
177
178
179
180
181
182
183
184
185
186
187
|
# File 'app/services/katello/pulp3/repository.rb', line 176
def distribution_needs_update?
if distribution_reference
expected = secure_distribution_options(relative_path).except(:name, :content_guard_prn).compact
actual = get_distribution&.to_hash || {}
expected != actual.slice(*expected.keys)
elsif repo.environment
true
else
false
end
end
|
#distribution_reference ⇒ Object
145
146
147
|
# File 'app/services/katello/pulp3/repository.rb', line 145
def distribution_reference
DistributionReference.find_by(:repository_id => repo.id)
end
|
#fail_missing_publication(publication_href) ⇒ Object
610
611
612
613
614
|
# File 'app/services/katello/pulp3/repository.rb', line 610
def fail_missing_publication(publication_href)
unless lookup_publication(publication_href)
fail _("The repository's publication is missing. Please run a 'complete sync' on %s." % repo.name)
end
end
|
#generate_backend_object_name ⇒ Object
137
138
139
|
# File 'app/services/katello/pulp3/repository.rb', line 137
def generate_backend_object_name
"#{root.label}-#{repo.id}#{rand(9999)}"
end
|
#get_distribution(href = distribution_reference.href) ⇒ Object
172
173
174
|
# File 'app/services/katello/pulp3/repository.rb', line 172
def get_distribution(href = distribution_reference.href)
api.get_distribution(href)
end
|
#get_remote(href = repo.remote_href) ⇒ Object
168
169
170
|
# File 'app/services/katello/pulp3/repository.rb', line 168
def get_remote(href = repo.remote_href)
api.get_remotes_api(href: href).read(href)
end
|
#initialize_empty ⇒ Object
208
209
210
211
212
|
# File 'app/services/katello/pulp3/repository.rb', line 208
def initialize_empty
fail NotImplementedError
end
|
#list(options) ⇒ Object
218
219
220
|
# File 'app/services/katello/pulp3/repository.rb', line 218
def list(options)
api.repositories_api.list(options).results
end
|
#lookup_distributions(args) ⇒ Object
311
312
313
|
# File 'app/services/katello/pulp3/repository.rb', line 311
def lookup_distributions(args)
api.distributions_api.list(args).results
end
|
#lookup_publication(href) ⇒ Object
545
546
547
548
549
550
|
# File 'app/services/katello/pulp3/repository.rb', line 545
def lookup_publication(href)
api.publications_api.read(href) if href
rescue api.api_exception_class => e
Rails.logger.error "Exception when calling publications_api->read: #{e}"
nil
end
|
#lookup_version(href) ⇒ Object
538
539
540
541
542
543
|
# File 'app/services/katello/pulp3/repository.rb', line 538
def lookup_version(href)
api.repository_versions_api.read(href) if href
rescue api.api_exception_class => e
Rails.logger.error "Exception when calling repository_versions_api->read: #{e}"
nil
end
|
#mirror_remote_options ⇒ Object
470
471
472
473
474
475
476
477
478
479
|
# File 'app/services/katello/pulp3/repository.rb', line 470
def mirror_remote_options
options = {}
if Katello::RootRepository::CONTENT_ATTRIBUTE_RESTRICTIONS[:download_policy].include?(repo.content_type)
options[:policy] = smart_proxy.download_policy
if smart_proxy.download_policy == SmartProxy::DOWNLOAD_INHERIT
options[:policy] = repo.root.download_policy
end
end
options
end
|
#partial_repo_path ⇒ Object
43
44
45
|
# File 'app/services/katello/pulp3/repository.rb', line 43
def partial_repo_path
fail NotImplementedError
end
|
#publication_options(repository) ⇒ Object
252
253
254
255
256
|
# File 'app/services/katello/pulp3/repository.rb', line 252
def publication_options(repository)
{
repository_version: repository.version_href,
}
end
|
#published? ⇒ Boolean
69
70
71
|
# File 'app/services/katello/pulp3/repository.rb', line 69
def published?
!repo.publication_href.nil?
end
|
#read ⇒ Object
222
223
224
|
# File 'app/services/katello/pulp3/repository.rb', line 222
def read
api.repositories_api.read(repository_reference.try(:repository_href))
end
|
#read_distribution(href = distribution_reference.href) ⇒ Object
315
316
317
|
# File 'app/services/katello/pulp3/repository.rb', line 315
def read_distribution(href = distribution_reference.href)
ignore_404_exception { api.distributions_api.read(href) }
end
|
#refresh_distributions ⇒ Object
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
|
# File 'app/services/katello/pulp3/repository.rb', line 262
def refresh_distributions
if repo.docker?
dist = lookup_distributions(base_path: repo.container_repository_name).first
else
dist = lookup_distributions(base_path: repo.relative_path).first
end
dist_ref = distribution_reference
if dist && !dist_ref
save_distribution_references([dist.pulp_href])
return update_distribution
end
if dist && dist_ref
if dist.pulp_href != dist_ref.href
dist_ref.destroy
save_distribution_references([dist.pulp_href])
end
return update_distribution
end
begin
create_distribution(relative_path)
rescue api.client_module::ApiError => e
if e.message.include?("\"base_path\":[\"This field must be unique.\"]") ||
e.message.include?("\"base_path\":[\"Overlaps with existing distribution\"")
dist = lookup_distributions(base_path: repo.relative_path).first
save_distribution_references([dist.pulp_href])
return update_distribution
else
raise e
end
end
end
|
#refresh_entities ⇒ Object
157
158
159
|
# File 'app/services/katello/pulp3/repository.rb', line 157
def refresh_entities
[update_remote].flatten.compact
end
|
#refresh_if_needed ⇒ Object
161
162
163
164
165
166
|
# File 'app/services/katello/pulp3/repository.rb', line 161
def refresh_if_needed
tasks = []
tasks << update_remote tasks << update_distribution if distribution_needs_update?
tasks.compact
end
|
#refresh_mirror_entities ⇒ Object
#relative_path ⇒ Object
258
259
260
|
# File 'app/services/katello/pulp3/repository.rb', line 258
def relative_path
repo.relative_path.sub(/^\//, '')
end
|
#remote_partial_update ⇒ Object
108
109
110
111
112
113
114
115
116
117
118
119
|
# File 'app/services/katello/pulp3/repository.rb', line 108
def remote_partial_update
url_type = remote_options[:url]&.start_with?('uln') ? 'uln' : 'default'
remote_type = repo.remote_href.start_with?('/pulp/api/v3/remotes/rpm/uln/') ? 'uln' : 'default'
href = repo.remote_href
if url_type == remote_type
api.get_remotes_api(href: href).partial_update(href, remote_options)
else create_remote
delete_remote(href: href)
end
end
|
#remove_content(content_units) ⇒ Object
552
553
554
555
556
557
558
|
# File 'app/services/katello/pulp3/repository.rb', line 552
def remove_content(content_units)
if repo.root.content_type == "docker"
api.repositories_api.remove(repository_reference.repository_href, content_units: content_units.map(&:pulp_id))
else
api.repositories_api.modify(repository_reference.repository_href, remove_content_units: content_units.map(&:pulp_id))
end
end
|
#repair(repository_version_href) ⇒ Object
73
74
75
76
|
# File 'app/services/katello/pulp3/repository.rb', line 73
def repair(repository_version_href)
data = api.repair_class.new
api.repository_versions_api.repair(repository_version_href, data)
end
|
#repository_import_content(artifact_href, options = {}) ⇒ Object
560
561
562
563
564
565
566
|
# File 'app/services/katello/pulp3/repository.rb', line 560
def repository_import_content(artifact_href, options = {})
ostree_import = PulpOstreeClient::OstreeRepoImport.new
ostree_import.artifact = artifact_href
ostree_import.repository_name = options[:ostree_repository_name]
ostree_import.ref = options[:ostree_ref]
api.repositories_api.import_commits(repository_reference.repository_href, ostree_import)
end
|
#repository_reference ⇒ Object
141
142
143
|
# File 'app/services/katello/pulp3/repository.rb', line 141
def repository_reference
RepositoryReference.find_by(:root_repository_id => repo.root_id, :content_view_id => repo.content_view.id)
end
|
#retain_package_versions_count ⇒ Object
605
606
607
608
|
# File 'app/services/katello/pulp3/repository.rb', line 605
def retain_package_versions_count
return 0 if root.retain_package_versions_count.nil? || root.using_mirrored_content?
root.retain_package_versions_count.to_i
end
|
#save_distribution_references(hrefs) ⇒ Object
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
|
# File 'app/services/katello/pulp3/repository.rb', line 391
def save_distribution_references(hrefs)
hrefs.each do |href|
pulp3_distribution_data = api.get_distribution(href)
path = pulp3_distribution_data&.base_path
content_guard_href = pulp3_distribution_data&.content_guard
if repo.ansible_collection?
prn = self.class.build_prn(href, 'ansible', 'ansibledistribution')
else
prn = pulp3_distribution_data&.prn
end
content_guard_prn = if content_guard_href&.include?('/contentguards/certguard/rhsm/')
self.class.build_prn(content_guard_href, 'certguard', 'rhsmcertguard')
end
if distribution_reference
found_distribution = read_distribution(distribution_reference.href)
unless found_distribution
distribution_reference.destroy
end
end
unless distribution_reference
DistributionReference.where(
path: path,
href: href,
prn: prn,
repository_id: repo.id,
content_guard_href: content_guard_href,
content_guard_prn: content_guard_prn
).first_or_create!
end
end
end
|
#secure_distribution_options(path) ⇒ Object
489
490
491
492
493
494
495
496
497
498
499
500
|
# File 'app/services/katello/pulp3/repository.rb', line 489
def secure_distribution_options(path)
secured_distribution_options = {}
if root.unprotected
secured_distribution_options[:content_guard] = nil
secured_distribution_options[:content_guard_prn] = nil
else
content_guard = ::Katello::Pulp3::ContentGuard.first
secured_distribution_options[:content_guard] = content_guard.pulp_href
secured_distribution_options[:content_guard_prn] = content_guard.pulp_prn
end
secured_distribution_options.merge!(distribution_options(path))
end
|
#should_purge_empty_contents? ⇒ Boolean
133
134
135
|
# File 'app/services/katello/pulp3/repository.rb', line 133
def should_purge_empty_contents?
false
end
|
#skip_types ⇒ Object
78
79
80
|
# File 'app/services/katello/pulp3/repository.rb', line 78
def skip_types
nil
end
|
#specific_create_options ⇒ Object
485
486
487
|
# File 'app/services/katello/pulp3/repository.rb', line 485
def specific_create_options
{}
end
|
#ssl_remote_options ⇒ Object
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
|
# File 'app/services/katello/pulp3/repository.rb', line 502
def ssl_remote_options
options = {}
if root.redhat? && root.cdn_configuration.redhat_cdn?
options = {
client_cert: root.product.certificate,
client_key: root.product.key,
ca_cert: Katello::Repository.feed_ca_cert(root.url),
}
elsif root.redhat? && root.cdn_configuration.custom_cdn?
options = {
ca_cert: root.cdn_configuration.ssl_ca,
}
elsif root.redhat? && root.cdn_configuration.network_sync?
options = {
client_cert: root.cdn_configuration.ssl_cert,
client_key: root.cdn_configuration.ssl_key,
ca_cert: root.cdn_configuration.ssl_ca,
}
elsif root.custom?
options = {
client_cert: root.ssl_client_cert&.content,
client_key: root.ssl_client_key&.content,
ca_cert: root.ssl_ca_cert&.content,
}
end
append_proxy_cacert(options) if options.key?(:cacert)
options
end
|
#sync(options = {}) ⇒ Object
232
233
234
235
|
# File 'app/services/katello/pulp3/repository.rb', line 232
def sync(options = {})
repository_sync_url_data = api.repository_sync_url_class.new(sync_url_params(options))
[api.repositories_api.sync(repository_reference.repository_href, repository_sync_url_data)]
end
|
#sync_url_params(_sync_options) ⇒ Object
#unit_keys(uploads) ⇒ Object
599
600
601
602
603
|
# File 'app/services/katello/pulp3/repository.rb', line 599
def unit_keys(uploads)
uploads.map do |upload|
upload.except('id')
end
end
|
#update ⇒ Object
214
215
216
|
# File 'app/services/katello/pulp3/repository.rb', line 214
def update
api.repositories_api.update(repository_reference.try(:repository_href), create_options)
end
|
#update_distribution ⇒ Object
319
320
321
322
323
324
325
326
327
328
329
|
# File 'app/services/katello/pulp3/repository.rb', line 319
def update_distribution
if distribution_reference
options = secure_distribution_options(relative_path).except(:name)
unless ::Katello::RepositoryTypeManager.find(repo.content_type).pulp3_skip_publication
fail_missing_publication(options[:publication])
end
content_guard_prn = options.delete(:content_guard_prn) distribution_reference.update(:content_guard_href => options[:content_guard], :content_guard_prn => content_guard_prn)
api.distributions_api.partial_update(distribution_reference.href, options)
end
end
|
#update_remote ⇒ Object
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
# File 'app/services/katello/pulp3/repository.rb', line 91
def update_remote
href = repo.remote_href
if remote_options[:url].blank?
if href
repo.update(remote_href: nil, remote_prn: nil)
delete_remote(href: href)
end
else
if href
remote_partial_update
else
create_remote
return nil end
end
end
|
#version_zero? ⇒ Boolean
368
369
370
|
# File 'app/services/katello/pulp3/repository.rb', line 368
def version_zero?
repo.version_href.ends_with?('/versions/0/')
end
|
#with_mirror_adapter ⇒ Object
47
48
49
50
51
52
53
|
# File 'app/services/katello/pulp3/repository.rb', line 47
def with_mirror_adapter
if smart_proxy.pulp_primary?
return self
else
return RepositoryMirror.new(self)
end
end
|