2015-08-25 21:42:46 -04:00
|
|
|
module Ci
|
|
|
|
module API
|
|
|
|
module Helpers
|
2015-10-12 17:47:32 -04:00
|
|
|
BUILD_TOKEN_HEADER = "HTTP_BUILD_TOKEN"
|
|
|
|
BUILD_TOKEN_PARAM = :token
|
2016-09-27 05:46:13 -04:00
|
|
|
UPDATE_RUNNER_EVERY = 10 * 60
|
2015-09-16 10:46:26 -04:00
|
|
|
|
2015-08-25 21:42:46 -04:00
|
|
|
def authenticate_runners!
|
2015-12-10 07:50:00 -05:00
|
|
|
forbidden! unless runner_registration_token_valid?
|
2015-08-25 21:42:46 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def authenticate_runner!
|
|
|
|
forbidden! unless current_runner
|
|
|
|
end
|
|
|
|
|
2015-10-12 17:47:32 -04:00
|
|
|
def authenticate_build_token!(build)
|
2016-09-15 09:40:53 -04:00
|
|
|
forbidden! unless build_token_valid?(build)
|
2015-10-12 17:47:32 -04:00
|
|
|
end
|
|
|
|
|
2015-12-10 07:50:00 -05:00
|
|
|
def runner_registration_token_valid?
|
2016-08-08 06:01:25 -04:00
|
|
|
ActiveSupport::SecurityUtils.variable_size_secure_compare(
|
|
|
|
params[:token],
|
|
|
|
current_application_settings.runners_registration_token)
|
|
|
|
end
|
|
|
|
|
2016-09-15 09:40:53 -04:00
|
|
|
def build_token_valid?(build)
|
2016-08-08 06:01:25 -04:00
|
|
|
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-10 07:50:00 -05:00
|
|
|
end
|
|
|
|
|
2016-09-27 05:46:13 -04:00
|
|
|
def update_runner_info
|
2016-10-03 04:47:37 -04:00
|
|
|
return unless update_runner?
|
2016-09-27 05:46:13 -04:00
|
|
|
|
|
|
|
current_runner.contacted_at = Time.now
|
|
|
|
current_runner.assign_attributes(get_runner_version_from_params)
|
|
|
|
current_runner.save if current_runner.changed?
|
2015-08-25 21:42:46 -04:00
|
|
|
end
|
|
|
|
|
2016-10-03 04:47:37 -04:00
|
|
|
def update_runner?
|
|
|
|
# Use a random threshold to prevent beating DB updates.
|
|
|
|
# It generates a distribution between [40m, 80m].
|
|
|
|
#
|
|
|
|
contacted_at_max_age = UPDATE_RUNNER_EVERY + Random.rand(UPDATE_RUNNER_EVERY)
|
|
|
|
|
|
|
|
current_runner.contacted_at.nil? ||
|
|
|
|
(Time.now - current_runner.contacted_at) >= contacted_at_max_age
|
|
|
|
end
|
|
|
|
|
2016-09-06 08:30:54 -04:00
|
|
|
def build_not_found!
|
|
|
|
if headers['User-Agent'].match(/gitlab-ci-multi-runner \d+\.\d+\.\d+(~beta\.\d+\.g[0-9a-f]+)? /)
|
|
|
|
no_content!
|
|
|
|
else
|
|
|
|
not_found!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-09-14 11:14:17 -04:00
|
|
|
def current_runner
|
|
|
|
@runner ||= Runner.find_by_token(params[:token].to_s)
|
|
|
|
end
|
|
|
|
|
2016-01-26 13:25:48 -05:00
|
|
|
def get_runner_version_from_params
|
2015-08-25 21:42:46 -04:00
|
|
|
return unless params["info"].present?
|
2016-01-26 13:25:48 -05:00
|
|
|
attributes_for_keys(["name", "version", "revision", "platform", "architecture"], params["info"])
|
|
|
|
end
|
|
|
|
|
2015-10-12 17:47:32 -04:00
|
|
|
def max_artifacts_size
|
|
|
|
current_application_settings.max_artifacts_size.megabytes.to_i
|
|
|
|
end
|
2015-08-25 21:42:46 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|