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

67 lines
1.7 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
2019-07-31 22:56:46 +05:30
include StripAttribute
2021-06-08 01:23:25 +05:30
include CronSchedulable
2020-05-24 23:13:21 +05:30
include Limitable
2021-04-29 21:17:54 +05:30
include EachBatch
2020-05-24 23:13:21 +05:30
self.limit_name = 'ci_pipeline_schedules'
self.limit_scope = :project
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
2021-03-11 19:13:27 +05:30
validates :variables, nested_attributes_duplicates: true
2017-08-17 22:00:37 +05:30
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) }
2020-03-13 15:44:24 +05:30
scope :preloaded, -> { preload(:owner, project: [:route]) }
2021-04-29 21:17:54 +05:30
scope :owned_by, ->(user) { where(owner: user) }
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
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
2021-06-08 01:23:25 +05:30
def worker_cron_expression
Settings.cron_jobs['pipeline_schedule_worker']['cron']
2019-09-04 21:01:54 +05:30
end
2017-08-17 22:00:37 +05:30
end
end
2019-12-21 20:55:43 +05:30
2021-06-08 01:23:25 +05:30
Ci::PipelineSchedule.prepend_mod_with('Ci::PipelineSchedule')