gitlab-org--gitlab-foss/app/models/ci/runner.rb

225 lines
6.0 KiB
Ruby
Raw Normal View History

2015-08-26 01:42:46 +00:00
module Ci
class Runner < ActiveRecord::Base
extend Gitlab::Ci::Model
include Gitlab::SQL::Pattern
2016-12-16 16:42:35 +00:00
RUNNER_QUEUE_EXPIRY_TIME = 60.minutes
2017-05-27 15:14:34 +00:00
ONLINE_CONTACT_TIMEOUT = 1.hour
UPDATE_DB_RUNNER_INFO_EVERY = 1.hour
2017-02-21 23:32:18 +00:00
AVAILABLE_SCOPES = %w[specific shared active paused online].freeze
FORM_EDITABLE = %i[description tag_list active run_untagged locked access_level].freeze
has_many :builds
has_many :runner_projects, dependent: :destroy # rubocop:disable Cop/ActiveRecordDependent
2017-03-17 23:06:11 +00:00
has_many :projects, through: :runner_projects
2015-08-26 01:42:46 +00:00
has_one :last_build, ->() { order('id DESC') }, class_name: 'Ci::Build'
before_validation :set_default_values
scope :specific, ->() { where(is_shared: false) }
scope :shared, ->() { where(is_shared: true) }
scope :active, ->() { where(active: true) }
scope :paused, ->() { where(active: false) }
2017-05-27 15:14:34 +00:00
scope :online, ->() { where('contacted_at > ?', contact_time_deadline) }
2015-10-23 16:15:13 +00:00
scope :ordered, ->() { order(id: :desc) }
2015-08-26 01:42:46 +00:00
scope :owned_or_shared, ->(project_id) do
joins('LEFT JOIN ci_runner_projects ON ci_runner_projects.runner_id = ci_runners.id')
2017-03-17 23:06:11 +00:00
.where("ci_runner_projects.project_id = :project_id OR ci_runners.is_shared = true", project_id: project_id)
end
scope :assignable_for, ->(project) do
# FIXME: That `to_sql` is needed to workaround a weird Rails bug.
# Without that, placeholders would miss one and couldn't match.
2017-06-21 13:48:12 +00:00
where(locked: false)
.where.not("id IN (#{project.runners.select(:id).to_sql})").specific
end
validate :tag_constraints
validates :access_level, presence: true
2016-05-05 12:27:06 +00:00
2015-08-26 01:42:46 +00:00
acts_as_taggable
after_destroy :cleanup_runner_queue
enum access_level: {
not_protected: 0,
ref_protected: 1
}
# Searches for runners matching the given query.
#
# This method uses ILIKE on PostgreSQL and LIKE on MySQL.
#
# This method performs a *partial* match on tokens, thus a query for "a"
# will match any runner where the token contains the letter "a". As a result
# you should *not* use this method for non-admin purposes as otherwise users
# might be able to query a list of all runners.
#
# query - The search query as a String
#
# Returns an ActiveRecord::Relation.
2015-08-26 01:42:46 +00:00
def self.search(query)
fuzzy_search(query, [:token, :description])
2015-08-26 01:42:46 +00:00
end
2017-05-27 15:14:34 +00:00
def self.contact_time_deadline
ONLINE_CONTACT_TIMEOUT.ago
end
def cached_contacted_at
if runner_info_cache(:contacted_at)
Time.zone.parse(runner_info_cache(:contacted_at))
else
self.contacted_at
end
end
2015-08-26 01:42:46 +00:00
def set_default_values
self.token = SecureRandom.hex(15) if self.token.blank?
end
def assign_to(project, current_user = nil)
self.is_shared = false if shared?
self.save
project.runner_projects.create(runner_id: self.id)
2015-08-26 01:42:46 +00:00
end
def display_name
return short_sha if description.blank?
2015-08-26 01:42:46 +00:00
description
end
def shared?
is_shared
end
def online?
contacted_at && cached_contacted_at > self.class.contact_time_deadline
end
def status
if contacted_at.nil?
:not_connected
elsif active?
online? ? :online : :offline
else
:paused
end
end
2015-08-26 01:42:46 +00:00
def belongs_to_one_project?
runner_projects.count == 1
end
def specific?
!shared?
end
def can_pick?(build)
return false if self.ref_protected? && !build.protected?
2017-08-28 12:10:01 +00:00
assignable_for?(build.project_id) && accepting_tags?(build)
2016-06-01 10:34:20 +00:00
end
2015-08-26 01:42:46 +00:00
def only_for?(project)
projects == [project]
end
def short_sha
2015-10-14 12:21:49 +00:00
token[0...8] if token
2015-08-26 01:42:46 +00:00
end
def has_tags?
tag_list.any?
end
2016-07-20 11:17:21 +00:00
def predefined_variables
[
{ key: 'CI_RUNNER_ID', value: id.to_s, public: true },
{ key: 'CI_RUNNER_DESCRIPTION', value: description, public: true },
{ key: 'CI_RUNNER_TAGS', value: tag_list.to_s, public: true }
]
end
2016-12-16 00:04:18 +00:00
def tick_runner_queue
SecureRandom.hex.tap do |new_update|
2017-03-06 10:44:45 +00:00
::Gitlab::Workhorse.set_key_and_notify(runner_queue_key, new_update,
expire: RUNNER_QUEUE_EXPIRY_TIME, overwrite: true)
end
2016-12-15 21:30:31 +00:00
end
2016-12-16 00:04:18 +00:00
def ensure_runner_queue_value
2017-03-06 10:44:45 +00:00
new_value = SecureRandom.hex
::Gitlab::Workhorse.set_key_and_notify(runner_queue_key, new_value,
expire: RUNNER_QUEUE_EXPIRY_TIME, overwrite: false)
2016-12-16 00:04:18 +00:00
end
def runner_queue_value_latest?(value)
2016-12-16 00:04:18 +00:00
ensure_runner_queue_value == value if value.present?
2016-12-15 21:30:31 +00:00
end
def update_runner_info(params)
update_runner_info_cache(params)
# Use a 1h threshold to prevent beating DB updates.
return unless self.contacted_at.nil? ||
(Time.now - self.contacted_at) >= UPDATE_DB_RUNNER_INFO_EVERY
self.contacted_at = Time.now
self.assign_attributes(params)
self.save if self.changed?
2018-01-28 23:25:13 +00:00
end
private
def cleanup_runner_queue
Gitlab::Redis::Queues.with do |redis|
redis.del(runner_queue_key)
end
end
2016-12-16 00:04:18 +00:00
def runner_queue_key
2016-12-16 15:33:08 +00:00
"runner:build_queue:#{self.token}"
2016-12-15 21:30:31 +00:00
end
def runner_info_redis_cache_key
"runner:info:#{self.id}"
end
def update_runner_info_cache(params)
Gitlab::Redis::SharedState.with do |redis|
redis.set("#{runner_info_redis_cache_key}:contacted_at", Time.now)
params && params.each do |key, value|
redis_key = "#{runner_info_redis_cache_key}:#{key}"
redis.set(redis_key, value)
end
end
end
def runner_info_cache(attribute)
Gitlab::Redis::SharedState.with do |redis|
redis.get("#{runner_info_redis_cache_key}:#{attribute}")
end
end
def tag_constraints
unless has_tags? || run_untagged?
errors.add(:tags_list,
'can not be empty when runner is not allowed to pick untagged jobs')
end
end
2016-06-01 10:34:20 +00:00
def assignable_for?(project_id)
is_shared? || projects.exists?(id: project_id)
2016-06-01 10:34:20 +00:00
end
def accepting_tags?(build)
(run_untagged? || build.has_tags?) && (build.tag_list - tag_list).empty?
2016-06-01 10:34:20 +00:00
end
2015-08-26 01:42:46 +00:00
end
end