debian-mirror-gitlab/lib/api/runner.rb

285 lines
11 KiB
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
module API
class Runner < Grape::API
helpers ::API::Helpers::Runner
resource :runners do
desc 'Registers a new Runner' do
success Entities::RunnerRegistrationDetails
http_codes [[201, 'Runner was created'], [403, 'Forbidden']]
end
params do
requires :token, type: String, desc: 'Registration token'
optional :description, type: String, desc: %q(Runner's description)
optional :info, type: Hash, desc: %q(Runner's metadata)
optional :locked, type: Boolean, desc: 'Should Runner be locked for current project'
optional :run_untagged, type: Boolean, desc: 'Should Runner handle untagged jobs'
optional :tag_list, type: Array[String], desc: %q(List of Runner's tags)
2018-05-09 12:01:36 +05:30
optional :maximum_timeout, type: Integer, desc: 'Maximum timeout set when this Runner will handle the job'
2017-08-17 22:00:37 +05:30
end
post '/' do
2018-05-09 12:01:36 +05:30
attributes = attributes_for_keys([:description, :locked, :run_untagged, :tag_list, :maximum_timeout])
2018-03-27 19:54:05 +05:30
.merge(get_runner_details_from_request)
2017-08-17 22:00:37 +05:30
runner =
if runner_registration_token_valid?
# Create shared runner. Requires admin access
2018-10-15 14:42:47 +05:30
Ci::Runner.create(attributes.merge(is_shared: true, runner_type: :instance_type))
2017-08-17 22:00:37 +05:30
elsif project = Project.find_by(runners_token: params[:token])
2018-10-15 14:42:47 +05:30
# Create a specific runner for the project
project.runners.create(attributes.merge(runner_type: :project_type))
elsif group = Group.find_by(runners_token: params[:token])
# Create a specific runner for the group
group.runners.create(attributes.merge(runner_type: :group_type))
2017-08-17 22:00:37 +05:30
end
2018-10-15 14:42:47 +05:30
break forbidden! unless runner
2017-08-17 22:00:37 +05:30
if runner.id
present runner, with: Entities::RunnerRegistrationDetails
else
not_found!
end
end
desc 'Deletes a registered Runner' do
http_codes [[204, 'Runner was deleted'], [403, 'Forbidden']]
end
params do
requires :token, type: String, desc: %q(Runner's authentication token)
end
delete '/' do
authenticate_runner!
2018-03-17 18:26:18 +05:30
runner = Ci::Runner.find_by_token(params[:token])
destroy_conditionally!(runner)
2017-08-17 22:00:37 +05:30
end
desc 'Validates authentication credentials' do
http_codes [[200, 'Credentials are valid'], [403, 'Forbidden']]
end
params do
requires :token, type: String, desc: %q(Runner's authentication token)
end
post '/verify' do
authenticate_runner!
status 200
end
end
resource :jobs do
desc 'Request a job' do
success Entities::JobRequest::Response
http_codes [[201, 'Job was scheduled'],
[204, 'No job for Runner'],
[403, 'Forbidden']]
end
params do
requires :token, type: String, desc: %q(Runner's authentication token)
optional :last_update, type: String, desc: %q(Runner's queue last_update token)
optional :info, type: Hash, desc: %q(Runner's metadata)
end
post '/request' do
authenticate_runner!
no_content! unless current_runner.active?
2018-03-17 18:26:18 +05:30
if current_runner.runner_queue_value_latest?(params[:last_update])
2017-08-17 22:00:37 +05:30
header 'X-GitLab-Last-Update', params[:last_update]
Gitlab::Metrics.add_event(:build_not_found_cached)
2018-10-15 14:42:47 +05:30
break no_content!
2017-08-17 22:00:37 +05:30
end
new_update = current_runner.ensure_runner_queue_value
result = ::Ci::RegisterJobService.new(current_runner).execute
if result.valid?
if result.build
2018-10-15 14:42:47 +05:30
Gitlab::Metrics.add_event(:build_found)
2017-08-17 22:00:37 +05:30
present result.build, with: Entities::JobRequest::Response
else
Gitlab::Metrics.add_event(:build_not_found)
header 'X-GitLab-Last-Update', new_update
no_content!
end
else
# We received build that is invalid due to concurrency conflict
Gitlab::Metrics.add_event(:build_invalid)
conflict!
end
end
desc 'Updates a job' do
http_codes [[200, 'Job was updated'], [403, 'Forbidden']]
end
params do
requires :token, type: String, desc: %q(Runners's authentication token)
requires :id, type: Integer, desc: %q(Job's ID)
optional :trace, type: String, desc: %q(Job's full trace)
optional :state, type: String, desc: %q(Job's status: success, failed)
2018-03-17 18:26:18 +05:30
optional :failure_reason, type: String, values: CommitStatus.failure_reasons.keys,
desc: %q(Job's failure_reason)
2017-08-17 22:00:37 +05:30
end
put '/:id' do
job = authenticate_job!
job.trace.set(params[:trace]) if params[:trace]
2018-10-15 14:42:47 +05:30
Gitlab::Metrics.add_event(:update_build)
2017-08-17 22:00:37 +05:30
case params[:state].to_s
when 'success'
job.success
when 'failed'
2018-03-17 18:26:18 +05:30
job.drop(params[:failure_reason] || :unknown_failure)
2017-08-17 22:00:37 +05:30
end
end
desc 'Appends a patch to the job trace' do
http_codes [[202, 'Trace was patched'],
[400, 'Missing Content-Range header'],
[403, 'Forbidden'],
[416, 'Range not satisfiable']]
end
params do
requires :id, type: Integer, desc: %q(Job's ID)
optional :token, type: String, desc: %q(Job's authentication token)
end
patch '/:id/trace' do
job = authenticate_job!
2017-09-10 17:25:29 +05:30
error!('400 Missing header Content-Range', 400) unless request.headers.key?('Content-Range')
2017-08-17 22:00:37 +05:30
content_range = request.headers['Content-Range']
content_range = content_range.split('-')
2018-10-15 14:42:47 +05:30
# TODO:
# it seems that `Content-Range` as formatted by runner is wrong,
# the `byte_end` should point to final byte, but it points byte+1
# that means that we have to calculate end of body,
# as we cannot use `content_length[1]`
# Issue: https://gitlab.com/gitlab-org/gitlab-runner/issues/3275
body_data = request.body.read
body_start = content_range[0].to_i
body_end = body_start + body_data.bytesize
stream_size = job.trace.append(body_data, body_start)
unless stream_size == body_end
break error!('416 Range Not Satisfiable', 416, { 'Range' => "0-#{stream_size}" })
2017-08-17 22:00:37 +05:30
end
status 202
header 'Job-Status', job.status
header 'Range', "0-#{stream_size}"
end
desc 'Authorize artifacts uploading for job' do
http_codes [[200, 'Upload allowed'],
[403, 'Forbidden'],
[405, 'Artifacts support not enabled'],
[413, 'File too large']]
end
params do
requires :id, type: Integer, desc: %q(Job's ID)
optional :token, type: String, desc: %q(Job's authentication token)
optional :filesize, type: Integer, desc: %q(Artifacts filesize)
end
post '/:id/artifacts/authorize' do
not_allowed! unless Gitlab.config.artifacts.enabled
require_gitlab_workhorse!
Gitlab::Workhorse.verify_api_request!(headers)
job = authenticate_job!
forbidden!('Job is not running') unless job.running?
if params[:filesize]
file_size = params[:filesize].to_i
file_to_large! unless file_size < max_artifacts_size
end
status 200
content_type Gitlab::Workhorse::INTERNAL_API_CONTENT_TYPE
2018-05-09 12:01:36 +05:30
JobArtifactUploader.workhorse_authorize
2017-08-17 22:00:37 +05:30
end
desc 'Upload artifacts for job' do
success Entities::JobRequest::Response
http_codes [[201, 'Artifact uploaded'],
[400, 'Bad request'],
[403, 'Forbidden'],
[405, 'Artifacts support not enabled'],
[413, 'File too large']]
end
params do
requires :id, type: Integer, desc: %q(Job's ID)
optional :token, type: String, desc: %q(Job's authentication token)
optional :expire_in, type: String, desc: %q(Specify when artifacts should expire)
optional 'file.path', type: String, desc: %q(path to locally stored body (generated by Workhorse))
optional 'file.name', type: String, desc: %q(real filename as send in Content-Disposition (generated by Workhorse))
optional 'file.type', type: String, desc: %q(real content type as send in Content-Type (generated by Workhorse))
2018-05-09 12:01:36 +05:30
optional 'file.size', type: Integer, desc: %q(real size of file (generated by Workhorse))
optional 'file.sha256', type: String, desc: %q(sha256 checksum of the file (generated by Workhorse))
2017-08-17 22:00:37 +05:30
optional 'metadata.path', type: String, desc: %q(path to locally stored body (generated by Workhorse))
optional 'metadata.name', type: String, desc: %q(filename (generated by Workhorse))
2018-05-09 12:01:36 +05:30
optional 'metadata.size', type: Integer, desc: %q(real size of metadata (generated by Workhorse))
optional 'metadata.sha256', type: String, desc: %q(sha256 checksum of metadata (generated by Workhorse))
2017-08-17 22:00:37 +05:30
end
post '/:id/artifacts' do
not_allowed! unless Gitlab.config.artifacts.enabled
require_gitlab_workhorse!
job = authenticate_job!
forbidden!('Job is not running!') unless job.running?
2018-05-09 12:01:36 +05:30
artifacts = UploadedFile.from_params(params, :file, JobArtifactUploader.workhorse_local_upload_path)
metadata = UploadedFile.from_params(params, :metadata, JobArtifactUploader.workhorse_local_upload_path)
2017-08-17 22:00:37 +05:30
bad_request!('Missing artifacts file!') unless artifacts
file_to_large! unless artifacts.size < max_artifacts_size
2018-05-09 12:01:36 +05:30
bad_request!("Already uploaded") if job.job_artifacts_archive
2018-03-17 18:26:18 +05:30
expire_in = params['expire_in'] ||
2017-08-17 22:00:37 +05:30
Gitlab::CurrentSettings.current_application_settings.default_artifacts_expire_in
2018-05-09 12:01:36 +05:30
job.build_job_artifacts_archive(
project: job.project,
file: artifacts,
file_type: :archive,
file_sha256: artifacts.sha256,
expire_in: expire_in)
if metadata
job.build_job_artifacts_metadata(
project: job.project,
file: metadata,
file_type: :metadata,
file_sha256: metadata.sha256,
expire_in: expire_in)
end
2018-03-17 18:26:18 +05:30
2018-05-09 12:01:36 +05:30
if job.update(artifacts_expire_in: expire_in)
2017-08-17 22:00:37 +05:30
present job, with: Entities::JobRequest::Response
else
render_validation_error!(job)
end
end
desc 'Download the artifacts file for job' do
http_codes [[200, 'Upload allowed'],
[403, 'Forbidden'],
[404, 'Artifact not found']]
end
params do
requires :id, type: Integer, desc: %q(Job's ID)
optional :token, type: String, desc: %q(Job's authentication token)
2018-05-09 12:01:36 +05:30
optional :direct_download, default: false, type: Boolean, desc: %q(Perform direct download from remote storage instead of proxying artifacts)
2017-08-17 22:00:37 +05:30
end
get '/:id/artifacts' do
job = authenticate_job!
2018-05-09 12:01:36 +05:30
present_carrierwave_file!(job.artifacts_file, supports_direct_download: params[:direct_download])
2017-08-17 22:00:37 +05:30
end
end
end
end