BigW Consortium Gitlab

runner.rb 2.33 KB
Newer Older
1 2
# == Schema Information
#
Dmitriy Zaporozhets committed
3
# Table name: ci_runners
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#
#  id           :integer          not null, primary key
#  token        :string(255)
#  created_at   :datetime
#  updated_at   :datetime
#  description  :string(255)
#  contacted_at :datetime
#  active       :boolean          default(TRUE), not null
#  is_shared    :boolean          default(FALSE)
#  name         :string(255)
#  version      :string(255)
#  revision     :string(255)
#  platform     :string(255)
#  architecture :string(255)
#

module Ci
  class Runner < ActiveRecord::Base
    extend Ci::Model
23 24

    LAST_CONTACT_TIME = 5.minutes.ago
25 26 27
    
    has_many :builds, class_name: 'Ci::Build'
    has_many :runner_projects, dependent: :destroy, class_name: 'Ci::RunnerProject'
28
    has_many :projects, through: :runner_projects, class_name: '::Project', foreign_key: :gl_project_id
29 30 31 32 33 34 35 36 37

    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) }
38
    scope :online, ->() { where('contacted_at > ?', LAST_CONTACT_TIME) }
39
    scope :ordered, ->() { order(id: :desc) }
40 41 42 43

    acts_as_taggable

    def self.search(query)
44
      where('LOWER(ci_runners.token) LIKE :query OR LOWER(ci_runners.description) like :query',
45 46 47 48 49 50 51 52 53 54
            query: "%#{query.try(:downcase)}%")
    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
55
      project.runner_projects.create!(runner_id: self.id)
56 57 58
    end

    def display_name
Kamil Trzcinski committed
59
      return short_sha unless !description.blank?
60 61 62 63 64 65 66 67

      description
    end

    def shared?
      is_shared
    end

68 69 70 71 72 73 74 75 76 77 78 79 80 81
    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

82 83 84 85 86 87 88 89 90 91 92 93 94
    def belongs_to_one_project?
      runner_projects.count == 1
    end

    def specific?
      !shared?
    end

    def only_for?(project)
      projects == [project]
    end

    def short_sha
Kamil Trzcinski committed
95
      token[0...8] if token
96 97 98
    end
  end
end