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

120 lines
3.2 KiB
Ruby
Raw Normal View History

2015-08-25 21:42:46 -04:00
# == Schema Information
#
# Table name: ci_runners
2015-08-25 21:42:46 -04:00
#
# id :integer not null, primary key
2016-05-04 13:42:10 -04:00
# token :string
2015-08-25 21:42:46 -04:00
# created_at :datetime
# updated_at :datetime
2016-05-04 13:42:10 -04:00
# description :string
2015-08-25 21:42:46 -04:00
# contacted_at :datetime
# active :boolean default(TRUE), not null
# is_shared :boolean default(FALSE)
2016-05-04 13:42:10 -04:00
# name :string
# version :string
# revision :string
# platform :string
# architecture :string
2015-08-25 21:42:46 -04:00
#
module Ci
class Runner < ActiveRecord::Base
extend Ci::Model
LAST_CONTACT_TIME = 5.minutes.ago
AVAILABLE_SCOPES = ['specific', 'shared', 'active', 'paused', 'online']
FORM_EDITABLE = [:description, :tag_list, :active]
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) }
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
scope :owned_or_shared, ->(project_id) do
joins('LEFT JOIN ci_runner_projects ON ci_runner_projects.runner_id = ci_runners.id')
.where("ci_runner_projects.gl_project_id = :project_id OR ci_runners.is_shared = true", project_id: project_id)
end
2015-08-25 21:42:46 -04:00
acts_as_taggable
# 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)
t = arel_table
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
project.runner_projects.create!(runner_id: self.id)
2015-08-25 21:42:46 -04:00
end
def display_name
2015-10-14 06:15:03 -04:00
return short_sha unless !description.blank?
2015-08-25 21:42:46 -04:00
description
end
def shared?
is_shared
end
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
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
end
end