debian-mirror-gitlab/app/models/ci/pipeline_schedule.rb

81 lines
2.4 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
module Ci
2019-07-07 11:18:12 +05:30
class PipelineSchedule < ApplicationRecord
2018-03-17 18:26:18 +05:30
extend Gitlab::Ci::Model
2017-08-17 22:00:37 +05:30
include Importable
2018-03-17 18:26:18 +05:30
include IgnorableColumn
2019-07-31 22:56:46 +05:30
include StripAttribute
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
ignore_column :deleted_at
2017-08-17 22:00:37 +05:30
belongs_to :project
belongs_to :owner, class_name: 'User'
has_one :last_pipeline, -> { order(id: :desc) }, class_name: 'Ci::Pipeline'
has_many :pipelines
2018-03-17 18:26:18 +05:30
has_many :variables, class_name: 'Ci::PipelineScheduleVariable', validate: false
2017-08-17 22:00:37 +05:30
validates :cron, unless: :importing?, cron: true, presence: { unless: :importing? }
validates :cron_timezone, cron_timezone: true, presence: { unless: :importing? }
validates :ref, presence: { unless: :importing? }
validates :description, presence: true
2017-09-10 17:25:29 +05:30
validates :variables, variable_duplicates: true
2017-08-17 22:00:37 +05:30
before_save :set_next_run_at
2019-07-31 22:56:46 +05:30
strip_attributes :cron
2017-08-17 22:00:37 +05:30
scope :active, -> { where(active: true) }
scope :inactive, -> { where(active: false) }
2019-09-04 21:01:54 +05:30
scope :runnable_schedules, -> { active.where("next_run_at < ?", Time.now) }
scope :preloaded, -> { preload(:owner, :project) }
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
accepts_nested_attributes_for :variables, allow_destroy: true
2019-09-04 21:01:54 +05:30
alias_attribute :real_next_run, :next_run_at
2017-08-17 22:00:37 +05:30
def owned_by?(current_user)
owner == current_user
end
2017-09-10 17:25:29 +05:30
def own!(user)
update(owner: user)
end
2017-08-17 22:00:37 +05:30
def inactive?
!active?
end
def deactivate!
update_attribute(:active, false)
end
2019-09-04 21:01:54 +05:30
##
# The `next_run_at` column is set to the actual execution date of `PipelineScheduleWorker`.
# This way, a schedule like `*/1 * * * *` won't be triggered in a short interval
# when PipelineScheduleWorker runs irregularly by Sidekiq Memory Killer.
2017-08-17 22:00:37 +05:30
def set_next_run_at
2019-09-04 21:01:54 +05:30
self.next_run_at = Gitlab::Ci::CronParser.new(Settings.cron_jobs['pipeline_schedule_worker']['cron'],
Time.zone.name)
.next_time_from(ideal_next_run_at)
2017-08-17 22:00:37 +05:30
end
def schedule_next_run!
save! # with set_next_run_at
rescue ActiveRecord::RecordInvalid
update_attribute(:next_run_at, nil) # update without validation
end
2017-09-10 17:25:29 +05:30
def job_variables
variables&.map(&:to_runner_variable) || []
end
2019-09-04 21:01:54 +05:30
private
def ideal_next_run_at
Gitlab::Ci::CronParser.new(cron, cron_timezone)
.next_time_from(Time.zone.now)
end
2017-08-17 22:00:37 +05:30
end
end