gitlab-org--gitlab-foss/app/controllers/jwt_controller.rb

50 lines
1.3 KiB
Ruby
Raw Normal View History

2016-05-02 11:29:17 +00:00
class JwtController < ApplicationController
skip_before_action :authenticate_user!
skip_before_action :verify_authenticity_token
2016-05-13 21:23:02 +00:00
before_action :authenticate_project_or_user
2016-05-02 11:29:17 +00:00
2016-05-02 12:32:16 +00:00
SERVICES = {
2016-05-14 23:23:31 +00:00
Auth::ContainerRegistryAuthenticationService::AUDIENCE => Auth::ContainerRegistryAuthenticationService,
2016-05-02 12:32:16 +00:00
}
2016-05-02 11:29:17 +00:00
def auth
2016-05-02 12:32:16 +00:00
service = SERVICES[params[:service]]
2016-05-15 00:45:33 +00:00
return head :not_found unless service
2016-05-02 11:29:17 +00:00
2016-05-09 17:47:06 +00:00
result = service.new(@project, @user, auth_params).execute
2016-05-02 11:29:17 +00:00
2016-05-14 19:04:04 +00:00
render json: result, status: result[:http_status]
2016-05-02 11:29:17 +00:00
end
2016-05-02 12:32:16 +00:00
private
2016-05-02 11:29:17 +00:00
2016-05-13 21:23:02 +00:00
def authenticate_project_or_user
authenticate_with_http_basic do |login, password|
# if it's possible we first try to authenticate project with login and password
@project = authenticate_project(login, password)
return if @project
@user = authenticate_user(login, password)
return if @user
2016-05-14 19:04:04 +00:00
render_403
2016-05-13 21:23:02 +00:00
end
end
2016-05-02 12:32:16 +00:00
def auth_params
params.permit(:service, :scope, :account, :client_id)
2016-05-02 11:29:17 +00:00
end
2016-05-09 17:47:06 +00:00
def authenticate_project(login, password)
if login == 'gitlab-ci-token'
2016-05-13 21:23:02 +00:00
Project.find_by(builds_enabled: true, runners_token: password)
2016-05-02 11:29:17 +00:00
end
end
def authenticate_user(login, password)
user = Gitlab::Auth.find_with_user_password(login, password)
Gitlab::Auth.rate_limit!(request.ip, success: user.present?, login: login)
2016-05-02 11:29:17 +00:00
user
end
end