2015-08-25 21:42:46 -04:00
|
|
|
module Ci
|
|
|
|
class Runner < ActiveRecord::Base
|
|
|
|
extend Ci::Model
|
2015-10-12 15:12:31 -04:00
|
|
|
|
2016-09-27 05:46:13 -04:00
|
|
|
LAST_CONTACT_TIME = 1.hour.ago
|
2016-05-11 06:39:07 -04:00
|
|
|
AVAILABLE_SCOPES = %w[specific shared active paused online]
|
2016-06-02 07:06:01 -04:00
|
|
|
FORM_EDITABLE = %i[description tag_list active run_untagged locked]
|
2016-03-01 10:41:18 -05:00
|
|
|
|
2015-08-25 21:42:46 -04:00
|
|
|
has_many :builds, class_name: 'Ci::Build'
|
|
|
|
has_many :runner_projects, dependent: :destroy, class_name: 'Ci::RunnerProject'
|
2015-12-04 06:55:23 -05:00
|
|
|
has_many :projects, through: :runner_projects, class_name: '::Project', foreign_key: :gl_project_id
|
2015-08-25 21:42:46 -04: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) }
|
2015-10-12 15:12:31 -04:00
|
|
|
scope :online, ->() { where('contacted_at > ?', LAST_CONTACT_TIME) }
|
2015-10-23 12:15:13 -04:00
|
|
|
scope :ordered, ->() { order(id: :desc) }
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2016-01-26 11:03:38 -05:00
|
|
|
scope :owned_or_shared, ->(project_id) do
|
|
|
|
joins('LEFT JOIN ci_runner_projects ON ci_runner_projects.runner_id = ci_runners.id')
|
2016-02-17 07:03:39 -05:00
|
|
|
.where("ci_runner_projects.gl_project_id = :project_id OR ci_runners.is_shared = true", project_id: project_id)
|
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.
|
2016-06-07 05:43:18 -04:00
|
|
|
where(locked: false).
|
|
|
|
where.not("id IN (#{project.runners.select(:id).to_sql})").specific
|
2016-06-02 06:41:26 -04:00
|
|
|
end
|
|
|
|
|
2016-05-18 12:38:21 -04:00
|
|
|
validate :tag_constraints
|
2016-05-05 08:27:06 -04:00
|
|
|
|
2015-08-25 21:42:46 -04:00
|
|
|
acts_as_taggable
|
|
|
|
|
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)
|
2016-03-04 06:01:21 -05:00
|
|
|
t = arel_table
|
2016-03-01 10:41:18 -05:00
|
|
|
pattern = "%#{query}%"
|
|
|
|
|
|
|
|
where(t[:token].matches(pattern).or(t[:description].matches(pattern)))
|
2015-08-25 21:42:46 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
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
|
2016-06-14 11:11:43 -04:00
|
|
|
project.runner_projects.create(runner_id: self.id)
|
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?
|
|
|
|
contacted_at && contacted_at > LAST_CONTACT_TIME
|
|
|
|
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
|
|
|
|
|
2016-06-08 03:19:49 -04:00
|
|
|
def can_pick?(build)
|
2016-06-20 04:52:05 -04:00
|
|
|
assignable_for?(build.project) && 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
|
|
|
|
[
|
|
|
|
{ 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-05-07 14:36:03 -04:00
|
|
|
private
|
|
|
|
|
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
|
|
|
|
2016-06-20 04:52:05 -04:00
|
|
|
def assignable_for?(project)
|
2016-06-01 06:34:20 -04:00
|
|
|
!locked? || projects.exists?(id: project.id)
|
|
|
|
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
|