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

jwt_controller.rb « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0870a2a8f509ccefcd00426fe1cf4ccb8785dd3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
class JwtController < ApplicationController
  skip_before_action :authenticate_user!
  skip_before_action :verify_authenticity_token
  before_action :authenticate_project_or_user

  SERVICES = {
    Auth::ContainerRegistryAuthenticationService::AUDIENCE => Auth::ContainerRegistryAuthenticationService,
  }

  def auth
    service = SERVICES[params[:service]]
    return head :not_found unless service

    @authentication_result ||= Gitlab::Auth::Result.new

    result = service.new(@authentication_result.project, @authentication_result.user, auth_params).
      execute(capabilities: @authentication_result.capabilities)

    render json: result, status: result[:http_status]
  end

  private

  def authenticate_project_or_user
    authenticate_with_http_basic do |login, password|
      @authentication_result = Gitlab::Auth.find_for_git_client(login, password, project: nil, ip: request.ip)

      render_403 unless @authentication_result.succeeded?
    end
  end

  def auth_params
    params.permit(:service, :scope, :account, :client_id)
  end
end