summaryrefslogtreecommitdiff
path: root/app/models/project.rb
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-03-22 12:28:23 +0100
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-03-22 12:28:23 +0100
commit95e2c0196b7e492f8c03c6cfeb6b37e97f75813e (patch)
treed399e64a528aa773895ba171fcf963f0f4c5822b /app/models/project.rb
parent29c34267556198ee3dbbe2f13bc81708f5e60f10 (diff)
downloadgitlab-ce-95e2c0196b7e492f8c03c6cfeb6b37e97f75813e.tar.gz
Clean code related to accessing registry from project
[ci skip]
Diffstat (limited to 'app/models/project.rb')
-rw-r--r--app/models/project.rb16
1 files changed, 5 insertions, 11 deletions
diff --git a/app/models/project.rb b/app/models/project.rb
index 928965643a0..4aa9c6bb2f2 100644
--- a/app/models/project.rb
+++ b/app/models/project.rb
@@ -405,29 +405,23 @@ class Project < ActiveRecord::Base
@repository ||= Repository.new(path_with_namespace, self)
end
- def container_registry_path_with_namespace
- path_with_namespace.downcase
- end
-
- def container_registry_allowed_paths
- @container_registry_allowed_paths ||= [container_registry_path_with_namespace] +
- container_images.map { |i| i.name_with_namespace }
- end
-
def container_registry
return unless Gitlab.config.registry.enabled
@container_registry ||= begin
- token = Auth::ContainerRegistryAuthenticationService.full_access_token(container_registry_allowed_paths)
+ token = Auth::ContainerRegistryAuthenticationService.full_access_token(project)
+
url = Gitlab.config.registry.api_url
host_port = Gitlab.config.registry.host_port
+ # TODO, move configuration vars into ContainerRegistry::Registry, clean
+ # this method up afterwards
ContainerRegistry::Registry.new(url, token: token, path: host_port)
end
end
def container_registry_url
if Gitlab.config.registry.enabled
- "#{Gitlab.config.registry.host_port}/#{container_registry_path_with_namespace}"
+ "#{Gitlab.config.registry.host_port}/#{path_with_namespace.downcase}"
end
end