2015-08-25 21:42:46 -04:00
|
|
|
module Ci
|
|
|
|
class Runner < ActiveRecord::Base
|
2017-09-06 07:13:52 -04:00
|
|
|
extend Gitlab::Ci::Model
|
2017-11-24 05:45:19 -05:00
|
|
|
include Gitlab::SQL::Pattern
|
2018-02-05 11:07:49 -05:00
|
|
|
include RedisCacheable
|
2018-02-20 19:09:59 -05:00
|
|
|
include ChronicDurationAttribute
|
2015-10-12 15:12:31 -04:00
|
|
|
|
2016-12-16 11:42:35 -05:00
|
|
|
RUNNER_QUEUE_EXPIRY_TIME = 60.minutes
|
2017-05-27 11:14:34 -04:00
|
|
|
ONLINE_CONTACT_TIMEOUT = 1.hour
|
2018-02-04 12:34:21 -05:00
|
|
|
UPDATE_DB_RUNNER_INFO_EVERY = 40.minutes
|
2017-02-21 18:32:18 -05:00
|
|
|
AVAILABLE_SCOPES = %w[specific shared active paused online].freeze
|
2018-03-06 10:14:23 -05:00
|
|
|
FORM_EDITABLE = %i[description tag_list active run_untagged locked access_level maximum_timeout_human_readable].freeze
|
2016-03-01 10:41:18 -05:00
|
|
|
|
2016-10-18 17:20:36 -04:00
|
|
|
has_many :builds
|
2017-06-08 11:16:27 -04:00
|
|
|
has_many :runner_projects, dependent: :destroy # rubocop:disable Cop/ActiveRecordDependent
|
2018-04-18 09:41:42 -04:00
|
|
|
has_many :projects, through: :runner_projects
|
2018-05-02 11:43:20 -04:00
|
|
|
has_many :runner_namespaces
|
|
|
|
has_many :groups, through: :runner_namespaces
|
2015-08-25 21:42:46 -04:00
|
|
|
|
|
|
|
has_one :last_build, ->() { order('id DESC') }, class_name: 'Ci::Build'
|
|
|
|
|
|
|
|
before_validation :set_default_values
|
|
|
|
|
2017-10-04 03:27:27 -04:00
|
|
|
scope :specific, -> { where(is_shared: false) }
|
|
|
|
scope :shared, -> { where(is_shared: true) }
|
|
|
|
scope :active, -> { where(active: true) }
|
|
|
|
scope :paused, -> { where(active: false) }
|
|
|
|
scope :online, -> { where('contacted_at > ?', contact_time_deadline) }
|
|
|
|
scope :ordered, -> { order(id: :desc) }
|
2017-12-19 10:40:19 -05:00
|
|
|
|
2017-10-04 03:27:27 -04:00
|
|
|
scope :belonging_to_project, -> (project_id) {
|
|
|
|
joins(:runner_projects).where(ci_runner_projects: { project_id: project_id })
|
|
|
|
}
|
2017-12-19 10:40:19 -05:00
|
|
|
|
2018-04-26 21:15:54 -04:00
|
|
|
scope :belonging_to_parent_group_of_project, -> (project_id) {
|
2017-10-05 14:53:24 -04:00
|
|
|
project_groups = ::Group.joins(:projects).where(projects: { id: project_id })
|
|
|
|
hierarchy_groups = Gitlab::GroupHierarchy.new(project_groups).base_and_ancestors
|
|
|
|
|
|
|
|
joins(:groups).where(namespaces: { id: hierarchy_groups })
|
2017-10-04 03:27:27 -04:00
|
|
|
}
|
2017-09-06 04:53:07 -04:00
|
|
|
|
2017-10-04 03:27:27 -04:00
|
|
|
scope :owned_or_shared, -> (project_id) do
|
2018-05-03 11:15:32 -04:00
|
|
|
union = Gitlab::SQL::Union.new(
|
|
|
|
[belonging_to_project(project_id), belonging_to_parent_group_of_project(project_id), shared],
|
|
|
|
remove_duplicates: false
|
|
|
|
)
|
2017-09-06 04:53:07 -04:00
|
|
|
from("(#{union.to_sql}) ci_runners")
|
2016-01-26 11:03:38 -05:00
|
|
|
end
|
|
|
|
|
2016-06-20 04:52:05 -04:00
|
|
|
scope :assignable_for, ->(project) do
|
2016-06-16 11:20:13 -04:00
|
|
|
# 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 09:48:12 -04:00
|
|
|
where(locked: false)
|
2017-12-19 10:40:19 -05:00
|
|
|
.where.not("ci_runners.id IN (#{project.runners.select(:id).to_sql})")
|
2018-05-09 08:46:34 -04:00
|
|
|
.project_type
|
2016-06-02 06:41:26 -04:00
|
|
|
end
|
|
|
|
|
2016-05-18 12:38:21 -04:00
|
|
|
validate :tag_constraints
|
2017-08-31 05:28:29 -04:00
|
|
|
validates :access_level, presence: true
|
2018-05-09 03:57:16 -04:00
|
|
|
validates :runner_type, presence: true
|
2016-05-05 08:27:06 -04:00
|
|
|
|
2018-05-23 07:23:49 -04:00
|
|
|
validate :no_projects, unless: :project_type?
|
|
|
|
validate :no_groups, unless: :group_type?
|
|
|
|
validate :any_project, if: :project_type?
|
|
|
|
validate :exactly_one_group, if: :group_type?
|
|
|
|
validate :is_shared_is_valid
|
|
|
|
|
2015-08-25 21:42:46 -04:00
|
|
|
acts_as_taggable
|
|
|
|
|
2017-01-20 13:38:58 -05:00
|
|
|
after_destroy :cleanup_runner_queue
|
|
|
|
|
2017-08-16 10:13:43 -04:00
|
|
|
enum access_level: {
|
2017-08-29 02:56:03 -04:00
|
|
|
not_protected: 0,
|
|
|
|
ref_protected: 1
|
2017-08-16 10:13:43 -04:00
|
|
|
}
|
|
|
|
|
2018-04-30 09:00:28 -04:00
|
|
|
enum runner_type: {
|
|
|
|
instance_type: 1,
|
|
|
|
group_type: 2,
|
|
|
|
project_type: 3
|
|
|
|
}
|
|
|
|
|
2018-05-15 15:55:16 -04:00
|
|
|
cached_attr_reader :version, :revision, :platform, :architecture, :ip_address, :contacted_at
|
2018-02-05 11:07:49 -05:00
|
|
|
|
2018-03-06 10:14:23 -05:00
|
|
|
chronic_duration_attr :maximum_timeout_human_readable, :maximum_timeout
|
2018-02-20 19:09:59 -05:00
|
|
|
|
2018-03-21 12:34:55 -04:00
|
|
|
validates :maximum_timeout, allow_nil: true,
|
|
|
|
numericality: { greater_than_or_equal_to: 600,
|
|
|
|
message: 'needs to be at least 10 minutes' }
|
|
|
|
|
2016-03-01 10:41:18 -05:00
|
|
|
# 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-25 21:42:46 -04:00
|
|
|
def self.search(query)
|
2017-11-24 06:24:24 -05:00
|
|
|
fuzzy_search(query, [:token, :description])
|
2015-08-25 21:42:46 -04:00
|
|
|
end
|
|
|
|
|
2017-05-27 11:14:34 -04:00
|
|
|
def self.contact_time_deadline
|
|
|
|
ONLINE_CONTACT_TIMEOUT.ago
|
|
|
|
end
|
|
|
|
|
2015-08-25 21:42:46 -04:00
|
|
|
def set_default_values
|
|
|
|
self.token = SecureRandom.hex(15) if self.token.blank?
|
|
|
|
end
|
|
|
|
|
|
|
|
def assign_to(project, current_user = nil)
|
2018-05-10 05:16:26 -04:00
|
|
|
if shared?
|
|
|
|
self.is_shared = false if shared?
|
|
|
|
self.runner_type = :project_type
|
2018-05-10 06:40:30 -04:00
|
|
|
elsif group_type?
|
|
|
|
raise ArgumentError, 'Transitioning a group runner to a project runner is not supported'
|
2018-05-10 05:16:26 -04:00
|
|
|
end
|
|
|
|
|
2018-05-28 06:49:08 -04:00
|
|
|
self.projects << project
|
|
|
|
self.save
|
2015-08-25 21:42:46 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def display_name
|
2016-05-30 07:46:47 -04:00
|
|
|
return short_sha if description.blank?
|
2015-08-25 21:42:46 -04:00
|
|
|
|
|
|
|
description
|
|
|
|
end
|
|
|
|
|
|
|
|
def shared?
|
|
|
|
is_shared
|
|
|
|
end
|
|
|
|
|
2015-10-12 15:12:31 -04:00
|
|
|
def online?
|
2018-02-04 12:34:21 -05:00
|
|
|
contacted_at && contacted_at > self.class.contact_time_deadline
|
2015-10-12 15:12:31 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def status
|
|
|
|
if contacted_at.nil?
|
|
|
|
:not_connected
|
|
|
|
elsif active?
|
|
|
|
online? ? :online : :offline
|
|
|
|
else
|
|
|
|
:paused
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-08-25 21:42:46 -04:00
|
|
|
def belongs_to_one_project?
|
|
|
|
runner_projects.count == 1
|
|
|
|
end
|
|
|
|
|
|
|
|
def specific?
|
|
|
|
!shared?
|
|
|
|
end
|
|
|
|
|
2018-04-30 02:43:29 -04:00
|
|
|
def assigned_to_group?
|
2018-05-02 11:43:20 -04:00
|
|
|
runner_namespaces.any?
|
2017-09-25 09:28:33 -04:00
|
|
|
end
|
|
|
|
|
2018-04-30 02:43:29 -04:00
|
|
|
def assigned_to_project?
|
2017-10-04 07:55:34 -04:00
|
|
|
runner_projects.any?
|
|
|
|
end
|
|
|
|
|
2016-06-08 03:19:49 -04:00
|
|
|
def can_pick?(build)
|
2017-08-29 02:56:03 -04:00
|
|
|
return false if self.ref_protected? && !build.protected?
|
2017-08-28 08:10:01 -04:00
|
|
|
|
2017-11-30 17:17:41 -05:00
|
|
|
assignable_for?(build.project_id) && accepting_tags?(build)
|
2016-06-01 06:34:20 -04:00
|
|
|
end
|
|
|
|
|
2015-08-25 21:42:46 -04:00
|
|
|
def only_for?(project)
|
|
|
|
projects == [project]
|
|
|
|
end
|
|
|
|
|
|
|
|
def short_sha
|
2015-10-14 08:21:49 -04:00
|
|
|
token[0...8] if token
|
2015-08-25 21:42:46 -04:00
|
|
|
end
|
2016-05-06 02:47:19 -04:00
|
|
|
|
|
|
|
def has_tags?
|
|
|
|
tag_list.any?
|
|
|
|
end
|
2016-05-07 14:36:03 -04:00
|
|
|
|
2016-07-20 07:17:21 -04:00
|
|
|
def predefined_variables
|
2018-03-14 06:15:18 -04:00
|
|
|
Gitlab::Ci::Variables::Collection.new
|
|
|
|
.append(key: 'CI_RUNNER_ID', value: id.to_s)
|
|
|
|
.append(key: 'CI_RUNNER_DESCRIPTION', value: description)
|
|
|
|
.append(key: 'CI_RUNNER_TAGS', value: tag_list.to_s)
|
2016-07-20 07:17:21 -04:00
|
|
|
end
|
|
|
|
|
2016-12-15 19:04:18 -05:00
|
|
|
def tick_runner_queue
|
2017-01-20 08:16:13 -05:00
|
|
|
SecureRandom.hex.tap do |new_update|
|
2017-03-06 05:44:45 -05:00
|
|
|
::Gitlab::Workhorse.set_key_and_notify(runner_queue_key, new_update,
|
2017-02-28 06:07:04 -05:00
|
|
|
expire: RUNNER_QUEUE_EXPIRY_TIME, overwrite: true)
|
2017-01-20 08:16:13 -05:00
|
|
|
end
|
2016-12-15 16:30:31 -05:00
|
|
|
end
|
|
|
|
|
2016-12-15 19:04:18 -05:00
|
|
|
def ensure_runner_queue_value
|
2017-03-06 05:44:45 -05: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-15 19:04:18 -05:00
|
|
|
end
|
|
|
|
|
2017-08-24 12:44:36 -04:00
|
|
|
def runner_queue_value_latest?(value)
|
2016-12-15 19:04:18 -05:00
|
|
|
ensure_runner_queue_value == value if value.present?
|
2016-12-15 16:30:31 -05:00
|
|
|
end
|
|
|
|
|
2018-02-04 12:34:21 -05:00
|
|
|
def update_cached_info(values)
|
2018-02-22 01:03:00 -05:00
|
|
|
values = values&.slice(:version, :revision, :platform, :architecture, :ip_address) || {}
|
2018-02-04 12:34:21 -05:00
|
|
|
values[:contacted_at] = Time.now
|
2018-01-29 14:56:28 -05:00
|
|
|
|
2018-02-04 12:34:21 -05:00
|
|
|
cache_attributes(values)
|
2018-01-29 14:56:28 -05:00
|
|
|
|
2018-02-04 12:34:21 -05:00
|
|
|
if persist_cached_data?
|
|
|
|
self.assign_attributes(values)
|
2018-02-05 11:24:07 -05:00
|
|
|
self.save if self.changed?
|
2018-02-04 12:34:21 -05:00
|
|
|
end
|
2018-01-28 18:25:13 -05:00
|
|
|
end
|
|
|
|
|
2018-05-02 10:42:12 -04:00
|
|
|
def pick_build!(build)
|
2018-02-26 10:20:29 -05:00
|
|
|
if can_pick?(build)
|
|
|
|
tick_runner_queue
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-05-07 14:36:03 -04:00
|
|
|
private
|
|
|
|
|
2017-01-20 13:38:58 -05:00
|
|
|
def cleanup_runner_queue
|
2017-07-10 23:35:47 -04:00
|
|
|
Gitlab::Redis::Queues.with do |redis|
|
2017-01-20 13:38:58 -05:00
|
|
|
redis.del(runner_queue_key)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-12-15 19:04:18 -05:00
|
|
|
def runner_queue_key
|
2016-12-16 10:33:08 -05:00
|
|
|
"runner:build_queue:#{self.token}"
|
2016-12-15 16:30:31 -05:00
|
|
|
end
|
|
|
|
|
2018-02-04 12:34:21 -05:00
|
|
|
def persist_cached_data?
|
|
|
|
# Use a random threshold to prevent beating DB updates.
|
|
|
|
# It generates a distribution between [40m, 80m].
|
2018-01-29 15:53:37 -05:00
|
|
|
|
2018-02-04 12:34:21 -05:00
|
|
|
contacted_at_max_age = UPDATE_DB_RUNNER_INFO_EVERY + Random.rand(UPDATE_DB_RUNNER_INFO_EVERY)
|
|
|
|
|
|
|
|
real_contacted_at = read_attribute(:contacted_at)
|
|
|
|
real_contacted_at.nil? ||
|
|
|
|
(Time.now - real_contacted_at) >= contacted_at_max_age
|
|
|
|
end
|
|
|
|
|
2016-05-18 12:38:21 -04:00
|
|
|
def tag_constraints
|
2016-05-07 14:36:03 -04:00
|
|
|
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 06:34:20 -04:00
|
|
|
|
2017-11-30 17:17:41 -05:00
|
|
|
def assignable_for?(project_id)
|
2017-10-04 11:11:53 -04:00
|
|
|
self.class.owned_or_shared(project_id).where(id: self.id).any?
|
2016-06-01 06:34:20 -04:00
|
|
|
end
|
|
|
|
|
2018-05-11 06:03:40 -04:00
|
|
|
def no_projects
|
|
|
|
if projects.any?
|
2018-05-23 07:23:49 -04:00
|
|
|
errors.add(:runner, 'cannot have projects assigned')
|
2018-05-11 06:03:40 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def no_groups
|
|
|
|
if groups.any?
|
2018-05-23 07:23:49 -04:00
|
|
|
errors.add(:runner, 'cannot have groups assigned')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def any_project
|
|
|
|
unless projects.any?
|
|
|
|
errors.add(:runner, 'needs to be assigned to at least one project')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def exactly_one_group
|
|
|
|
unless groups.one?
|
|
|
|
errors.add(:runner, 'needs to be assigned to exactly one group')
|
2017-12-07 11:21:16 -05:00
|
|
|
end
|
2018-05-11 06:03:40 -04:00
|
|
|
end
|
2017-12-07 11:21:16 -05:00
|
|
|
|
2018-05-23 07:23:49 -04:00
|
|
|
def is_shared_is_valid
|
|
|
|
unless is_shared? == instance_type?
|
|
|
|
errors.add(:is_shared, 'is not equal to instance_type?')
|
2017-12-07 11:21:16 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-06-08 03:43:43 -04:00
|
|
|
def accepting_tags?(build)
|
|
|
|
(run_untagged? || build.has_tags?) && (build.tag_list - tag_list).empty?
|
2016-06-01 06:34:20 -04:00
|
|
|
end
|
2015-08-25 21:42:46 -04:00
|
|
|
end
|
|
|
|
end
|