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

73 lines
2.0 KiB
Ruby
Raw Normal View History

module Ci
class PipelineSchedule < ActiveRecord::Base
extend Ci::Model
include Importable
acts_as_paranoid
belongs_to :project
belongs_to :owner, class_name: 'User'
has_one :last_pipeline, -> { order(id: :desc) }, class_name: 'Ci::Pipeline'
has_many :pipelines
2017-06-27 03:24:51 -04:00
has_many :variables, class_name: 'Ci::PipelineScheduleVariable'
2017-03-30 07:59:20 -04:00
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
validates :variables, uniqueness_of_in_memory: {
:collection => :variables,
:attrs => [:pipeline_schedule_id, :key],
:message => ['variables.key', 'keys are duplicated']
}
2017-04-06 05:52:48 -04:00
before_save :set_next_run_at
2017-04-07 08:47:29 -04:00
scope :active, -> { where(active: true) }
scope :inactive, -> { where(active: false) }
accepts_nested_attributes_for :variables, allow_destroy: true
def owned_by?(current_user)
owner == current_user
end
2017-05-12 14:37:09 -04:00
def own!(user)
2017-05-16 10:58:22 -04:00
update(owner: user)
2017-05-12 14:37:09 -04:00
end
def inactive?
!active?
end
2017-04-07 08:47:29 -04:00
def deactivate!
update_attribute(:active, false)
end
def runnable_by_owner?
Ability.allowed?(owner, :create_pipeline, project)
end
2017-04-06 05:52:48 -04:00
def set_next_run_at
self.next_run_at = Gitlab::Ci::CronParser.new(cron, cron_timezone).next_time_from(Time.now)
end
def schedule_next_run!
2017-04-06 05:52:48 -04:00
save! # with set_next_run_at
2017-04-06 08:01:30 -04:00
rescue ActiveRecord::RecordInvalid
2017-04-06 05:52:48 -04:00
update_attribute(:next_run_at, nil) # update without validation
end
2017-04-06 15:02:19 -04:00
2017-04-07 11:15:28 -04:00
def real_next_run(
worker_cron: Settings.cron_jobs['pipeline_schedule_worker']['cron'],
2017-04-07 11:15:28 -04:00
worker_time_zone: Time.zone.name)
2017-04-06 15:02:19 -04:00
Gitlab::Ci::CronParser.new(worker_cron, worker_time_zone)
.next_time_from(next_run_at)
end
2017-06-27 03:55:27 -04:00
def job_variables
variables&.map(&:to_runner_variable) || []
end
end
end