smart_proxy_container_gateway 1.0.7 → 1.0.8

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a8a19a855d3c656839dd81438ead966b638156c97a46ea09b450ba793936267d
4
- data.tar.gz: 88aa70dba7e9cc07697e5bc1e6b0424037f32cf8f168eaf36f2794fef7021bac
3
+ metadata.gz: 95ed3584f3ef8379b2abbaef70031e5add4d0f0a364acbc8d938284329c45aff
4
+ data.tar.gz: bd7eb01e1ad8d4cb58ffd0c9a356cef25d5004db93c66f14f58bc8fb0051cb90
5
5
  SHA512:
6
- metadata.gz: f0d9dedcf24be6bfb3e1137ab99560a036d72ef795cafdcd1de0ccac18ccc60e98404edad4ef77784daca290ed9d8b70e69d1167f52b615a147f7958424b2b0b
7
- data.tar.gz: cf2b684b36369d5f3b8213d2d57289b2ce91c2870bf5e72711ec0ede30506cbf618cf09c63e6b289a1a413dfa955b3b43a77f3f00be9961862482e36bd705bd8
6
+ metadata.gz: 512516a03a9eaaa34f39dc9e8fdf0260efbcbbc2077971c4f0dfc8872e32310bcf14bf180d73be481c6ebcb6ad94fba753f6cc4d206e528c27a463bbb28c8899
7
+ data.tar.gz: 774fa2b2bc4ea74808a0d50668675f88a3d962b343ffd056c4f66fb597bdbb124e019e5bff7e26d52f12f2015eaa170683aebc0b30cb4f6647e6f3156cc21611
@@ -44,7 +44,15 @@ module Proxy
44
44
  get '/v2/*/tags/list/?' do
45
45
  repository = params[:splat][0]
46
46
  handle_repo_auth(repository, auth_header, request)
47
- Proxy::ContainerGateway.tags(repository)
47
+ pulp_response = Proxy::ContainerGateway.tags(repository, params)
48
+ # "link"=>["<http://pulpcore-api/v2/container-image-name/tags/list?n=100&last=last-tag-name>; rel=\"next\""],
49
+ # https://docs.docker.com/registry/spec/api/#pagination-1
50
+ if pulp_response['link'].nil?
51
+ headers['link'] = ""
52
+ else
53
+ headers['link'] = pulp_response['link']
54
+ end
55
+ pulp_response.body
48
56
  end
49
57
 
50
58
  get '/v1/search/?' do
@@ -41,11 +41,18 @@ module Proxy
41
41
  pulp_registry_request(uri)['location']
42
42
  end
43
43
 
44
- def tags(repository)
44
+ def tags(repository, params = {})
45
+ query = "?"
46
+ unless params[:n].nil? || params[:n] == ""
47
+ query = "#{query}n=#{params[:n]}"
48
+ query = "#{query}&" unless params[:last].nil?
49
+ end
50
+ query = "#{query}last=#{params[:last]}" unless params[:last].nil? || params[:last] == ""
51
+
45
52
  uri = URI.parse(
46
- "#{Proxy::ContainerGateway::Plugin.settings.pulp_endpoint}/pulpcore_registry/v2/#{repository}/tags/list"
53
+ "#{Proxy::ContainerGateway::Plugin.settings.pulp_endpoint}/pulpcore_registry/v2/#{repository}/tags/list#{query}"
47
54
  )
48
- pulp_registry_request(uri).body
55
+ pulp_registry_request(uri)
49
56
  end
50
57
 
51
58
  def v1_search(params = {})
@@ -1,5 +1,5 @@
1
1
  module Proxy
2
2
  module ContainerGateway
3
- VERSION = '1.0.7'.freeze
3
+ VERSION = '1.0.8'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smart_proxy_container_gateway
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.7
4
+ version: 1.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ian Ballou
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-29 00:00:00.000000000 Z
11
+ date: 2023-08-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sequel
@@ -60,7 +60,7 @@ files:
60
60
  - lib/smart_proxy_container_gateway/sequel_migrations/003_authorization_reorg.rb
61
61
  - lib/smart_proxy_container_gateway/version.rb
62
62
  - settings.d/container_gateway.yml.example
63
- homepage: http://github.com/ianballou/smart_proxy_container_gateway
63
+ homepage: https://github.com/Katello/smart_proxy_container_gateway
64
64
  licenses:
65
65
  - GPLv3
66
66
  metadata: {}
@@ -79,7 +79,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
79
79
  - !ruby/object:Gem::Version
80
80
  version: '0'
81
81
  requirements: []
82
- rubygems_version: 3.3.7
82
+ rubygems_version: 3.4.10
83
83
  signing_key:
84
84
  specification_version: 4
85
85
  summary: Pulp 3 container registry support for Foreman/Katello Smart-Proxy