debian-mirror-gitlab/app/models/iteration.rb

141 lines
4.1 KiB
Ruby
Raw Normal View History

2020-05-24 23:13:21 +05:30
# frozen_string_literal: true
class Iteration < ApplicationRecord
self.table_name = 'sprints'
attr_accessor :skip_future_date_validation
2020-10-24 23:57:45 +05:30
attr_accessor :skip_project_validation
2020-05-24 23:13:21 +05:30
STATE_ENUM_MAP = {
upcoming: 1,
started: 2,
closed: 3
}.with_indifferent_access.freeze
include AtomicInternalId
belongs_to :project
belongs_to :group
2021-01-29 00:20:46 +05:30
has_internal_id :iid, scope: :project
has_internal_id :iid, scope: :group
2020-05-24 23:13:21 +05:30
validates :start_date, presence: true
validates :due_date, presence: true
validate :dates_do_not_overlap, if: :start_or_due_dates_changed?
validate :future_date, if: :start_or_due_dates_changed?, unless: :skip_future_date_validation
2020-10-24 23:57:45 +05:30
validate :no_project, unless: :skip_project_validation
2020-05-24 23:13:21 +05:30
scope :upcoming, -> { with_state(:upcoming) }
scope :started, -> { with_state(:started) }
2020-11-24 15:15:51 +05:30
scope :closed, -> { with_state(:closed) }
2020-05-24 23:13:21 +05:30
2020-06-23 00:09:42 +05:30
scope :within_timeframe, -> (start_date, end_date) do
2021-02-22 17:27:13 +05:30
where('start_date IS NOT NULL OR due_date IS NOT NULL')
.where('start_date IS NULL OR start_date <= ?', end_date)
.where('due_date IS NULL OR due_date >= ?', start_date)
2020-06-23 00:09:42 +05:30
end
2020-11-24 15:15:51 +05:30
scope :start_date_passed, -> { where('start_date <= ?', Date.current).where('due_date >= ?', Date.current) }
scope :due_date_passed, -> { where('due_date < ?', Date.current) }
2020-07-28 23:09:34 +05:30
2020-05-24 23:13:21 +05:30
state_machine :state_enum, initial: :upcoming do
event :start do
transition upcoming: :started
end
event :close do
transition [:upcoming, :started] => :closed
end
state :upcoming, value: Iteration::STATE_ENUM_MAP[:upcoming]
state :started, value: Iteration::STATE_ENUM_MAP[:started]
state :closed, value: Iteration::STATE_ENUM_MAP[:closed]
end
# Alias to state machine .with_state_enum method
# This needs to be defined after the state machine block to avoid errors
class << self
alias_method :with_state, :with_state_enum
alias_method :with_states, :with_state_enums
def filter_by_state(iterations, state)
case state
when 'closed' then iterations.closed
when 'started' then iterations.started
2020-11-24 15:15:51 +05:30
when 'upcoming' then iterations.upcoming
2020-05-24 23:13:21 +05:30
when 'opened' then iterations.started.or(iterations.upcoming)
when 'all' then iterations
2020-11-24 15:15:51 +05:30
else raise ArgumentError, "Unknown state filter: #{state}"
2020-05-24 23:13:21 +05:30
end
end
2020-06-23 00:09:42 +05:30
def reference_prefix
'*iteration:'
end
def reference_pattern
nil
end
2020-05-24 23:13:21 +05:30
end
def state
STATE_ENUM_MAP.key(state_enum)
end
def state=(value)
self.state_enum = STATE_ENUM_MAP[value]
end
2020-06-23 00:09:42 +05:30
def resource_parent
group || project
end
2020-05-24 23:13:21 +05:30
private
2021-01-03 14:25:43 +05:30
def parent_group
group || project.group
end
2020-05-24 23:13:21 +05:30
def start_or_due_dates_changed?
start_date_changed? || due_date_changed?
end
2021-01-03 14:25:43 +05:30
# ensure dates do not overlap with other Iterations in the same group/project tree
2020-05-24 23:13:21 +05:30
def dates_do_not_overlap
2021-01-03 14:25:43 +05:30
iterations = if parent_group.present? && resource_parent.is_a?(Project)
Iteration.where(group: parent_group.self_and_ancestors).or(project.iterations)
elsif parent_group.present?
Iteration.where(group: parent_group.self_and_ancestors)
else
project.iterations
end
return unless iterations.where.not(id: self.id).within_timeframe(start_date, due_date).exists?
2020-05-24 23:13:21 +05:30
errors.add(:base, s_("Iteration|Dates cannot overlap with other existing Iterations"))
end
# ensure dates are in the future
def future_date
if start_date_changed?
errors.add(:start_date, s_("Iteration|cannot be in the past")) if start_date < Date.current
errors.add(:start_date, s_("Iteration|cannot be more than 500 years in the future")) if start_date > 500.years.from_now
end
if due_date_changed?
errors.add(:due_date, s_("Iteration|cannot be in the past")) if due_date < Date.current
errors.add(:due_date, s_("Iteration|cannot be more than 500 years in the future")) if due_date > 500.years.from_now
end
end
2020-10-24 23:57:45 +05:30
def no_project
return unless project_id.present?
errors.add(:project_id, s_("is not allowed. We do not currently support project-level iterations"))
end
2020-05-24 23:13:21 +05:30
end
2020-06-23 00:09:42 +05:30
Iteration.prepend_if_ee('EE::Iteration')