runner.rb 8.3 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
K
Kamil Trzciński 已提交
15
    has_many :runner_projects, inverse_of: :runner, dependent: :destroy # rubocop:disable Cop/ActiveRecordDependent
16
    has_many :projects, through: :runner_projects
K
Kamil Trzciński 已提交
17
    has_many :runner_namespaces, inverse_of: :runner
18
    has_many :groups, through: :runner_namespaces
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
    scope :belonging_to_parent_group_of_project, -> (project_id) {
36 37 38 39
      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 })
40
    }
41

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

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

58
    validate :tag_constraints
59
    validates :access_level, presence: true
60
    validates :runner_type, presence: true
61

62 63 64 65
    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?
K
Kamil Trzciński 已提交
66
    validate :validate_is_shared
67

D
Douwe Maan 已提交
68 69
    acts_as_taggable

70 71
    after_destroy :cleanup_runner_queue

72
    enum access_level: {
73 74
      not_protected: 0,
      ref_protected: 1
75 76
    }

77 78 79 80 81 82
    enum runner_type: {
      instance_type: 1,
      group_type: 2,
      project_type: 3
    }

83
    cached_attr_reader :version, :revision, :platform, :architecture, :ip_address, :contacted_at
84

85
    chronic_duration_attr :maximum_timeout_human_readable, :maximum_timeout
86

87 88 89 90
    validates :maximum_timeout, allow_nil: true,
                                numericality: { greater_than_or_equal_to: 600,
                                                message: 'needs to be at least 10 minutes' }

91 92 93 94 95 96 97 98 99 100 101 102
    # 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 已提交
103
    def self.search(query)
104
      fuzzy_search(query, [:token, :description])
D
Douwe Maan 已提交
105 106
    end

A
Alessio Caiazza 已提交
107 108 109 110
    def self.contact_time_deadline
      ONLINE_CONTACT_TIMEOUT.ago
    end

D
Douwe Maan 已提交
111 112 113 114 115
    def set_default_values
      self.token = SecureRandom.hex(15) if self.token.blank?
    end

    def assign_to(project, current_user = nil)
116 117 118
      if shared?
        self.is_shared = false if shared?
        self.runner_type = :project_type
119 120
      elsif group_type?
        raise ArgumentError, 'Transitioning a group runner to a project runner is not supported'
121 122
      end

123 124 125 126 127 128 129 130 131
      begin
        transaction do
          self.projects << project
          self.save!
        end
      rescue ActiveRecord::RecordInvalid => e
        self.errors.add(:assign_to, e.message)
        false
      end
D
Douwe Maan 已提交
132 133 134
    end

    def display_name
135
      return short_sha if description.blank?
D
Douwe Maan 已提交
136 137 138 139 140 141 142 143

      description
    end

    def shared?
      is_shared
    end

144
    def online?
145
      contacted_at && contacted_at > self.class.contact_time_deadline
146 147 148 149 150 151 152 153 154 155 156 157
    end

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

D
Douwe Maan 已提交
158 159 160 161 162 163 164 165
    def belongs_to_one_project?
      runner_projects.count == 1
    end

    def specific?
      !shared?
    end

166
    def assigned_to_group?
167
      runner_namespaces.any?
A
Alexis Reigel 已提交
168 169
    end

170
    def assigned_to_project?
A
Alexis Reigel 已提交
171 172 173
      runner_projects.any?
    end

174
    def can_pick?(build)
175
      return false if self.ref_protected? && !build.protected?
S
Shinya Maeda 已提交
176

177
      assignable_for?(build.project_id) && accepting_tags?(build)
178 179
    end

D
Douwe Maan 已提交
180 181 182 183 184
    def only_for?(project)
      projects == [project]
    end

    def short_sha
K
Kamil Trzcinski 已提交
185
      token[0...8] if token
D
Douwe Maan 已提交
186
    end
187 188 189 190

    def has_tags?
      tag_list.any?
    end
191

192
    def predefined_variables
193 194 195 196
      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)
197 198
    end

K
Kim "BKC" Carlbäcker 已提交
199
    def tick_runner_queue
200
      SecureRandom.hex.tap do |new_update|
K
Kamil Trzcinski 已提交
201
        ::Gitlab::Workhorse.set_key_and_notify(runner_queue_key, new_update,
202
          expire: RUNNER_QUEUE_EXPIRY_TIME, overwrite: true)
203
      end
204 205
    end

K
Kim "BKC" Carlbäcker 已提交
206
    def ensure_runner_queue_value
K
Kamil Trzcinski 已提交
207 208 209
      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 已提交
210 211
    end

212
    def runner_queue_value_latest?(value)
K
Kim "BKC" Carlbäcker 已提交
213
      ensure_runner_queue_value == value if value.present?
214 215
    end

216
    def update_cached_info(values)
217
      values = values&.slice(:version, :revision, :platform, :architecture, :ip_address) || {}
218
      values[:contacted_at] = Time.now
219

220
      cache_attributes(values)
221

222 223
      if persist_cached_data?
        self.assign_attributes(values)
224
        self.save if self.changed?
225
      end
226 227
    end

228
    def pick_build!(build)
229 230 231 232 233
      if can_pick?(build)
        tick_runner_queue
      end
    end

234 235
    private

236
    def cleanup_runner_queue
237
      Gitlab::Redis::Queues.with do |redis|
238 239 240 241
        redis.del(runner_queue_key)
      end
    end

K
Kim "BKC" Carlbäcker 已提交
242
    def runner_queue_key
K
Kim "BKC" Carlbäcker 已提交
243
      "runner:build_queue:#{self.token}"
244 245
    end

246 247 248
    def persist_cached_data?
      # Use a random threshold to prevent beating DB updates.
      # It generates a distribution between [40m, 80m].
249

250 251 252 253 254 255 256
      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

257
    def tag_constraints
258 259 260 261 262
      unless has_tags? || run_untagged?
        errors.add(:tags_list,
          'can not be empty when runner is not allowed to pick untagged jobs')
      end
    end
263

264
    def assignable_for?(project_id)
265
      self.class.owned_or_shared(project_id).where(id: self.id).any?
266 267
    end

268 269
    def no_projects
      if projects.any?
270
        errors.add(:runner, 'cannot have projects assigned')
271 272 273 274 275
      end
    end

    def no_groups
      if groups.any?
276 277 278 279 280 281 282 283 284 285 286 287 288
        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')
289
      end
290
    end
291

K
Kamil Trzciński 已提交
292
    def validate_is_shared
293 294
      unless is_shared? == instance_type?
        errors.add(:is_shared, 'is not equal to instance_type?')
295 296 297
      end
    end

298 299
    def accepting_tags?(build)
      (run_untagged? || build.has_tags?) && (build.tag_list - tag_list).empty?
300
    end
D
Douwe Maan 已提交
301 302
  end
end