runner.rb 7.2 KB
Newer Older
D
Douwe Maan 已提交
1 2
module Ci
  class Runner < ActiveRecord::Base
3
    extend Gitlab::Ci::Model
4
    include Gitlab::SQL::Pattern
5
    include RedisCacheable
6
    include ChronicDurationAttribute
7

8
    RUNNER_QUEUE_EXPIRY_TIME = 60.minutes
A
Alessio Caiazza 已提交
9
    ONLINE_CONTACT_TIMEOUT = 1.hour
10
    UPDATE_DB_RUNNER_INFO_EVERY = 40.minutes
D
Douwe Maan 已提交
11
    AVAILABLE_SCOPES = %w[specific shared active paused online].freeze
12
    FORM_EDITABLE = %i[description tag_list active run_untagged locked access_level maximum_timeout_human_readable].freeze
13

14
    has_many :builds
15
    has_many :runner_projects, dependent: :destroy # rubocop:disable Cop/ActiveRecordDependent
16
    has_many :projects, through: :runner_projects
A
Alexis Reigel 已提交
17 18
    has_many :runner_groups
    has_many :groups, through: :runner_groups
D
Douwe Maan 已提交
19 20 21 22 23

    has_one :last_build, ->() { order('id DESC') }, class_name: 'Ci::Build'

    before_validation :set_default_values

24 25 26 27 28 29
    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) }
30

31 32 33
    scope :belonging_to_project, -> (project_id) {
      joins(:runner_projects).where(ci_runner_projects: { project_id: project_id })
    }
34 35 36

    scope :belonging_to_any_project, -> { joins(:runner_projects) }

37
    scope :belonging_to_parent_group_of_project, -> (project_id) {
38 39 40 41
      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 })
42
    }
43

44
    scope :owned_or_shared, -> (project_id) do
45
      union = Gitlab::SQL::Union.new([belonging_to_project(project_id), belonging_to_parent_group_of_project(project_id), shared])
46
      from("(#{union.to_sql}) ci_runners")
47 48
    end

L
Lin Jen-Shin 已提交
49
    scope :assignable_for, ->(project) do
L
Lin Jen-Shin 已提交
50 51
      # FIXME: That `to_sql` is needed to workaround a weird Rails bug.
      #        Without that, placeholders would miss one and couldn't match.
52
      where(locked: false)
53 54
        .where.not("ci_runners.id IN (#{project.runners.select(:id).to_sql})")
        .specific
55 56
    end

57
    validate :tag_constraints
58
    validate :either_projects_or_group
59
    validates :access_level, presence: true
60

D
Douwe Maan 已提交
61 62
    acts_as_taggable

63 64
    after_destroy :cleanup_runner_queue

65
    enum access_level: {
66 67
      not_protected: 0,
      ref_protected: 1
68 69
    }

70
    cached_attr_reader :version, :revision, :platform, :architecture, :contacted_at, :ip_address
71

72
    chronic_duration_attr :maximum_timeout_human_readable, :maximum_timeout
73

74 75 76 77
    validates :maximum_timeout, allow_nil: true,
                                numericality: { greater_than_or_equal_to: 600,
                                                message: 'needs to be at least 10 minutes' }

78 79 80 81 82 83 84 85 86 87 88 89
    # 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.
D
Douwe Maan 已提交
90
    def self.search(query)
91
      fuzzy_search(query, [:token, :description])
D
Douwe Maan 已提交
92 93
    end

A
Alessio Caiazza 已提交
94 95 96 97
    def self.contact_time_deadline
      ONLINE_CONTACT_TIMEOUT.ago
    end

D
Douwe Maan 已提交
98 99 100 101 102 103 104
    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
105
      project.runner_projects.create(runner_id: self.id)
D
Douwe Maan 已提交
106 107 108
    end

    def display_name
109
      return short_sha if description.blank?
D
Douwe Maan 已提交
110 111 112 113 114 115 116 117

      description
    end

    def shared?
      is_shared
    end

118
    def online?
119
      contacted_at && contacted_at > self.class.contact_time_deadline
120 121 122 123 124 125 126 127 128 129 130 131
    end

    def status
      if contacted_at.nil?
        :not_connected
      elsif active?
        online? ? :online : :offline
      else
        :paused
      end
    end

D
Douwe Maan 已提交
132 133 134 135 136 137 138 139
    def belongs_to_one_project?
      runner_projects.count == 1
    end

    def specific?
      !shared?
    end

140
    def assigned_to_group?
A
Alexis Reigel 已提交
141 142 143
      runner_groups.any?
    end

144
    def assigned_to_project?
A
Alexis Reigel 已提交
145 146 147
      runner_projects.any?
    end

148
    def can_pick?(build)
149
      return false if self.ref_protected? && !build.protected?
S
Shinya Maeda 已提交
150

151
      assignable_for?(build.project_id) && accepting_tags?(build)
152 153
    end

D
Douwe Maan 已提交
154 155 156 157 158
    def only_for?(project)
      projects == [project]
    end

    def short_sha
K
Kamil Trzcinski 已提交
159
      token[0...8] if token
D
Douwe Maan 已提交
160
    end
161 162 163 164

    def has_tags?
      tag_list.any?
    end
165

166
    def predefined_variables
167 168 169 170
      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)
171 172
    end

K
Kim "BKC" Carlbäcker 已提交
173
    def tick_runner_queue
174
      SecureRandom.hex.tap do |new_update|
K
Kamil Trzcinski 已提交
175
        ::Gitlab::Workhorse.set_key_and_notify(runner_queue_key, new_update,
176
          expire: RUNNER_QUEUE_EXPIRY_TIME, overwrite: true)
177
      end
178 179
    end

K
Kim "BKC" Carlbäcker 已提交
180
    def ensure_runner_queue_value
K
Kamil Trzcinski 已提交
181 182 183
      new_value = SecureRandom.hex
      ::Gitlab::Workhorse.set_key_and_notify(runner_queue_key, new_value,
        expire: RUNNER_QUEUE_EXPIRY_TIME, overwrite: false)
K
Kim "BKC" Carlbäcker 已提交
184 185
    end

186
    def runner_queue_value_latest?(value)
K
Kim "BKC" Carlbäcker 已提交
187
      ensure_runner_queue_value == value if value.present?
188 189
    end

190
    def update_cached_info(values)
191
      values = values&.slice(:version, :revision, :platform, :architecture, :ip_address) || {}
192
      values[:contacted_at] = Time.now
193

194
      cache_attributes(values)
195

196 197
      if persist_cached_data?
        self.assign_attributes(values)
198
        self.save if self.changed?
199
      end
200 201
    end

202 203 204 205 206 207
    def invalidate_build_cache!(build)
      if can_pick?(build)
        tick_runner_queue
      end
    end

208 209
    private

210
    def cleanup_runner_queue
211
      Gitlab::Redis::Queues.with do |redis|
212 213 214 215
        redis.del(runner_queue_key)
      end
    end

K
Kim "BKC" Carlbäcker 已提交
216
    def runner_queue_key
K
Kim "BKC" Carlbäcker 已提交
217
      "runner:build_queue:#{self.token}"
218 219
    end

220 221 222
    def persist_cached_data?
      # Use a random threshold to prevent beating DB updates.
      # It generates a distribution between [40m, 80m].
223

224 225 226 227 228 229 230
      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

231
    def tag_constraints
232 233 234 235 236
      unless has_tags? || run_untagged?
        errors.add(:tags_list,
          'can not be empty when runner is not allowed to pick untagged jobs')
      end
    end
237

238
    def assignable_for?(project_id)
239
      self.class.owned_or_shared(project_id).where(id: self.id).any?
240 241
    end

242
    def either_projects_or_group
243
      if groups.many?
244 245 246
        errors.add(:runner, 'can only be assigned to one group')
      end

247
      if assigned_to_group? && assigned_to_project?
248 249 250 251
        errors.add(:runner, 'can only be assigned either to projects or to a group')
      end
    end

252 253
    def accepting_tags?(build)
      (run_untagged? || build.has_tags?) && (build.tag_list - tag_list).empty?
254
    end
D
Douwe Maan 已提交
255 256
  end
end