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

50 lines
1.3 KiB
Ruby
Raw Normal View History

2016-05-02 07:29:17 -04:00
class JwtController < ApplicationController
skip_before_action :authenticate_user!
skip_before_action :verify_authenticity_token
2016-05-13 17:23:02 -04:00
before_action :authenticate_project_or_user
2016-05-02 07:29:17 -04:00
2016-05-02 08:32:16 -04:00
SERVICES = {
2016-05-14 19:23:31 -04:00
Auth::ContainerRegistryAuthenticationService::AUDIENCE => Auth::ContainerRegistryAuthenticationService,
2016-05-02 08:32:16 -04:00
}
2016-05-02 07:29:17 -04:00
def auth
2016-05-02 08:32:16 -04:00
service = SERVICES[params[:service]]
2016-05-14 20:45:33 -04:00
return head :not_found unless service
2016-05-02 07:29:17 -04:00
2016-05-09 13:47:06 -04:00
result = service.new(@project, @user, auth_params).execute
2016-05-02 07:29:17 -04:00
2016-05-14 15:04:04 -04:00
render json: result, status: result[:http_status]
2016-05-02 07:29:17 -04:00
end
2016-05-02 08:32:16 -04:00
private
2016-05-02 07:29:17 -04:00
2016-05-13 17:23:02 -04: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 15:04:04 -04:00
render_403
2016-05-13 17:23:02 -04:00
end
end
2016-05-02 08:32:16 -04:00
def auth_params
params.permit(:service, :scope, :account, :client_id)
2016-05-02 07:29:17 -04:00
end
2016-05-09 13:47:06 -04:00
def authenticate_project(login, password)
if login == 'gitlab-ci-token'
2016-05-13 17:23:02 -04:00
Project.find_by(builds_enabled: true, runners_token: password)
2016-05-02 07:29:17 -04: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 07:29:17 -04:00
user
end
end