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

31 lines
823 B
Ruby
Raw Normal View History

module Ci
class TriggerSchedule < ActiveRecord::Base
extend Ci::Model
include Importable
acts_as_paranoid
belongs_to :project
belongs_to :trigger
2017-03-30 07:59:20 -04:00
delegate :ref, to: :trigger
validates :trigger, presence: { unless: :importing? }
validates :cron, cron: true, presence: { unless: :importing? }
validates :cron_timezone, cron_timezone: true, presence: { unless: :importing? }
validates :ref, presence: { unless: :importing? }
2017-04-06 05:52:48 -04:00
before_save :set_next_run_at
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
end
end