Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-03-23 13:41:16 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-03-23 13:41:16 +0300
commit4005eb643657e5ee8b1f328e36a3204253e3acf4 (patch)
tree0bf4666589a4809b515b36419de7d09d961a1ba1 /app/services/auth
parent896b13b929369c02f72fa881eda24ca4a6a0d900 (diff)
Fix communication between GitLab and Container Registry
Diffstat (limited to 'app/services/auth')
-rw-r--r--app/services/auth/container_registry_authentication_service.rb17
1 files changed, 9 insertions, 8 deletions
diff --git a/app/services/auth/container_registry_authentication_service.rb b/app/services/auth/container_registry_authentication_service.rb
index 7e412040c7c..2205b0897e2 100644
--- a/app/services/auth/container_registry_authentication_service.rb
+++ b/app/services/auth/container_registry_authentication_service.rb
@@ -38,13 +38,13 @@ module Auth
private
def authorized_token(*accesses)
- token = JSONWebToken::RSAToken.new(registry.key)
- token.issuer = registry.issuer
- token.audience = params[:service]
- token.subject = current_user.try(:username)
- token.expire_time = self.class.token_expire_at
- token[:access] = accesses.compact
- token
+ JSONWebToken::RSAToken.new(registry.key).tap do |token|
+ token.issuer = registry.issuer
+ token.audience = params[:service]
+ token.subject = current_user.try(:username)
+ token.expire_time = self.class.token_expire_at
+ token[:access] = accesses.compact
+ end
end
def scope
@@ -62,7 +62,8 @@ module Auth
end
def process_repository_access(type, name, actions)
- requested_project = ContainerImage.from_path(name).project
+ requested_project = ContainerImage.project_from_path(name)
+
return unless requested_project
actions = actions.select do |action|