debian-mirror-gitlab/lib/ci/api/helpers.rb

89 lines
2.5 KiB
Ruby
Raw Normal View History

2015-09-25 12:07:36 +05:30
module Ci
module API
module Helpers
2017-08-17 22:00:37 +05:30
BUILD_TOKEN_HEADER = "HTTP_BUILD_TOKEN".freeze
2015-11-26 14:37:03 +05:30
BUILD_TOKEN_PARAM = :token
2016-11-03 12:29:30 +05:30
UPDATE_RUNNER_EVERY = 10 * 60
2015-09-25 12:07:36 +05:30
def authenticate_runners!
2015-12-23 02:04:40 +05:30
forbidden! unless runner_registration_token_valid?
2015-09-25 12:07:36 +05:30
end
def authenticate_runner!
forbidden! unless current_runner
end
2017-08-17 22:00:37 +05:30
def authenticate_build!
build = Ci::Build.find_by_id(params[:id])
validate_build!(build) do
forbidden! unless build_token_valid?(build)
end
build
end
def validate_build!(build)
not_found! unless build
yield if block_given?
forbidden!('Project has been deleted!') unless build.project
forbidden!('Build has been erased!') if build.erased?
2015-11-26 14:37:03 +05:30
end
2015-12-23 02:04:40 +05:30
def runner_registration_token_valid?
2016-09-29 09:46:39 +05:30
ActiveSupport::SecurityUtils.variable_size_secure_compare(
params[:token],
current_application_settings.runners_registration_token)
end
def build_token_valid?(build)
token = (params[BUILD_TOKEN_PARAM] || env[BUILD_TOKEN_HEADER]).to_s
# We require to also check `runners_token` to maintain compatibility with old version of runners
token && (build.valid_token?(token) || build.project.valid_runners_token?(token))
2015-12-23 02:04:40 +05:30
end
2016-11-03 12:29:30 +05:30
def update_runner_info
return unless update_runner?
current_runner.contacted_at = Time.now
current_runner.assign_attributes(get_runner_version_from_params)
current_runner.save if current_runner.changed?
end
def update_runner?
# Use a random threshold to prevent beating DB updates.
# It generates a distribution between [40m, 80m].
#
2015-11-26 14:37:03 +05:30
contacted_at_max_age = UPDATE_RUNNER_EVERY + Random.rand(UPDATE_RUNNER_EVERY)
2016-11-03 12:29:30 +05:30
current_runner.contacted_at.nil? ||
(Time.now - current_runner.contacted_at) >= contacted_at_max_age
2016-09-29 09:46:39 +05:30
end
def build_not_found!
2017-08-17 22:00:37 +05:30
if headers['User-Agent'].to_s =~ /gitlab-ci-multi-runner \d+\.\d+\.\d+(~beta\.\d+\.g[0-9a-f]+)? /
2016-09-29 09:46:39 +05:30
no_content!
else
not_found!
2015-09-25 12:07:36 +05:30
end
end
def current_runner
@runner ||= Runner.find_by_token(params[:token].to_s)
end
2016-02-05 20:25:01 +05:30
def get_runner_version_from_params
2015-09-25 12:07:36 +05:30
return unless params["info"].present?
2017-08-17 22:00:37 +05:30
attributes_for_keys(%w(name version revision platform architecture), params["info"])
2016-02-05 20:25:01 +05:30
end
2015-11-26 14:37:03 +05:30
def max_artifacts_size
current_application_settings.max_artifacts_size.megabytes.to_i
end
2015-09-25 12:07:36 +05:30
end
end
end