2012-04-08 17:28:58 -04:00
|
|
|
class Milestone < ActiveRecord::Base
|
2015-06-28 16:12:32 -04:00
|
|
|
# Represents a "No Milestone" state used for filtering Issues and Merge
|
|
|
|
# Requests that have no milestone assigned.
|
2015-12-02 08:10:43 -05:00
|
|
|
MilestoneStruct = Struct.new(:title, :name, :id)
|
|
|
|
None = MilestoneStruct.new('No Milestone', 'No Milestone', 0)
|
|
|
|
Any = MilestoneStruct.new('Any Milestone', '', -1)
|
2016-03-11 12:46:14 -05:00
|
|
|
Upcoming = MilestoneStruct.new('Upcoming', '#upcoming', -2)
|
2017-03-10 14:01:05 -05:00
|
|
|
Started = MilestoneStruct.new('Started', '#started', -3)
|
2015-06-28 16:12:32 -04:00
|
|
|
|
2016-10-06 17:17:11 -04:00
|
|
|
include CacheMarkdownField
|
2013-08-21 05:16:26 -04:00
|
|
|
include InternalId
|
2015-02-05 19:49:41 -05:00
|
|
|
include Sortable
|
2015-12-24 08:43:07 -05:00
|
|
|
include Referable
|
2015-11-26 10:16:50 -05:00
|
|
|
include StripAttribute
|
2016-03-06 23:07:19 -05:00
|
|
|
include Milestoneish
|
2017-11-24 05:45:19 -05:00
|
|
|
include Gitlab::SQL::Pattern
|
2013-08-21 05:16:26 -04:00
|
|
|
|
2016-10-06 17:17:11 -04:00
|
|
|
cache_markdown_field :title, pipeline: :single_line
|
|
|
|
cache_markdown_field :description
|
|
|
|
|
2012-04-08 17:28:58 -04:00
|
|
|
belongs_to :project
|
2017-07-07 11:08:49 -04:00
|
|
|
belongs_to :group
|
|
|
|
|
2012-04-08 17:28:58 -04:00
|
|
|
has_many :issues
|
2016-02-22 13:17:38 -05:00
|
|
|
has_many :labels, -> { distinct.reorder('labels.title') }, through: :issues
|
2012-10-26 09:53:45 -04:00
|
|
|
has_many :merge_requests
|
2017-06-08 11:16:27 -04:00
|
|
|
has_many :events, as: :target, dependent: :destroy # rubocop:disable Cop/ActiveRecordDependent
|
2012-04-08 17:28:58 -04:00
|
|
|
|
2017-07-07 11:08:49 -04:00
|
|
|
scope :of_projects, ->(ids) { where(project_id: ids) }
|
|
|
|
scope :of_groups, ->(ids) { where(group_id: ids) }
|
2013-02-18 04:10:09 -05:00
|
|
|
scope :active, -> { with_state(:active) }
|
|
|
|
scope :closed, -> { with_state(:closed) }
|
2017-07-07 11:08:49 -04:00
|
|
|
scope :for_projects, -> { where(group: nil).includes(:project) }
|
|
|
|
|
|
|
|
scope :for_projects_and_groups, -> (project_ids, group_ids) do
|
|
|
|
conditions = []
|
|
|
|
conditions << arel_table[:project_id].in(project_ids) if project_ids.compact.any?
|
|
|
|
conditions << arel_table[:group_id].in(group_ids) if group_ids.compact.any?
|
|
|
|
|
|
|
|
where(conditions.reduce(:or))
|
|
|
|
end
|
|
|
|
|
|
|
|
validates :group, presence: true, unless: :project
|
|
|
|
validates :project, presence: true, unless: :group
|
2012-12-14 00:34:05 -05:00
|
|
|
|
2017-07-07 11:08:49 -04:00
|
|
|
validate :uniqueness_of_title, if: :title_changed?
|
|
|
|
validate :milestone_type_check
|
2017-03-31 11:11:28 -04:00
|
|
|
validate :start_date_should_be_less_than_due_date, if: proc { |m| m.start_date.present? && m.due_date.present? }
|
2013-02-18 04:10:09 -05:00
|
|
|
|
2015-11-26 10:16:50 -05:00
|
|
|
strip_attributes :title
|
|
|
|
|
2013-02-18 08:22:18 -05:00
|
|
|
state_machine :state, initial: :active do
|
2013-02-18 04:10:09 -05:00
|
|
|
event :close do
|
2013-02-18 08:22:18 -05:00
|
|
|
transition active: :closed
|
2013-02-18 04:10:09 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
event :activate do
|
2013-02-18 08:22:18 -05:00
|
|
|
transition closed: :active
|
2013-02-18 04:10:09 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
state :closed
|
|
|
|
|
|
|
|
state :active
|
|
|
|
end
|
2012-04-08 17:28:58 -04:00
|
|
|
|
2015-10-09 00:24:55 -04:00
|
|
|
alias_attribute :name, :title
|
|
|
|
|
2015-08-13 10:48:21 -04:00
|
|
|
class << self
|
2016-03-01 11:05:26 -05:00
|
|
|
# Searches for milestones matching the given query.
|
|
|
|
#
|
|
|
|
# This method uses ILIKE on PostgreSQL and LIKE on MySQL.
|
|
|
|
#
|
|
|
|
# query - The search query as a String
|
|
|
|
#
|
|
|
|
# Returns an ActiveRecord::Relation.
|
2015-08-13 10:48:21 -04:00
|
|
|
def search(query)
|
2017-11-24 06:24:24 -05:00
|
|
|
fuzzy_search(query, [:title, :description])
|
2015-08-13 10:48:21 -04:00
|
|
|
end
|
2017-07-07 11:08:49 -04:00
|
|
|
|
|
|
|
def filter_by_state(milestones, state)
|
|
|
|
case state
|
|
|
|
when 'closed' then milestones.closed
|
|
|
|
when 'all' then milestones
|
|
|
|
else milestones.active
|
|
|
|
end
|
|
|
|
end
|
2017-12-01 14:08:38 -05:00
|
|
|
|
|
|
|
def predefined?(milestone)
|
|
|
|
milestone == Any ||
|
|
|
|
milestone == None ||
|
|
|
|
milestone == Upcoming ||
|
|
|
|
milestone == Started
|
|
|
|
end
|
2015-08-13 10:48:21 -04:00
|
|
|
end
|
|
|
|
|
2016-03-30 22:12:34 -04:00
|
|
|
def self.reference_prefix
|
|
|
|
'%'
|
|
|
|
end
|
|
|
|
|
2015-12-24 08:43:07 -05:00
|
|
|
def self.reference_pattern
|
2016-04-05 20:35:43 -04:00
|
|
|
# NOTE: The iid pattern only matches when all characters on the expression
|
|
|
|
# are digits, so it will match %2 but not %2.1 because that's probably a
|
|
|
|
# milestone name and we want it to be matched as such.
|
2016-05-19 00:45:25 -04:00
|
|
|
@reference_pattern ||= %r{
|
2016-03-30 22:12:34 -04:00
|
|
|
(#{Project.reference_pattern})?
|
|
|
|
#{Regexp.escape(reference_prefix)}
|
|
|
|
(?:
|
2016-04-05 20:35:43 -04:00
|
|
|
(?<milestone_iid>
|
|
|
|
\d+(?!\S\w)\b # Integer-based milestone iid, or
|
|
|
|
) |
|
2016-03-30 22:12:34 -04:00
|
|
|
(?<milestone_name>
|
2016-04-05 20:35:43 -04:00
|
|
|
[^"\s]+\b | # String-based single-word milestone title, or
|
|
|
|
"[^"]+" # String-based multi-word milestone surrounded in quotes
|
2016-03-30 22:12:34 -04:00
|
|
|
)
|
|
|
|
)
|
|
|
|
}x
|
2015-12-24 08:43:07 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.link_reference_pattern
|
2016-03-24 11:41:48 -04:00
|
|
|
@link_reference_pattern ||= super("milestones", /(?<milestone>\d+)/)
|
2015-12-24 08:43:07 -05:00
|
|
|
end
|
|
|
|
|
2016-05-11 12:38:34 -04:00
|
|
|
def self.upcoming_ids_by_projects(projects)
|
|
|
|
rel = unscoped.of_projects(projects).active.where('due_date > ?', Time.now)
|
|
|
|
|
|
|
|
if Gitlab::Database.postgresql?
|
2016-05-16 05:23:21 -04:00
|
|
|
rel.order(:project_id, :due_date).select('DISTINCT ON (project_id) id')
|
2016-05-11 12:38:34 -04:00
|
|
|
else
|
2017-06-21 09:48:12 -04:00
|
|
|
rel
|
|
|
|
.group(:project_id)
|
|
|
|
.having('due_date = MIN(due_date)')
|
|
|
|
.pluck(:id, :project_id, :due_date)
|
|
|
|
.map(&:first)
|
2016-05-11 12:38:34 -04:00
|
|
|
end
|
2016-03-11 12:46:14 -05:00
|
|
|
end
|
|
|
|
|
2017-05-04 08:11:15 -04:00
|
|
|
def participants
|
2017-05-29 05:20:41 -04:00
|
|
|
User.joins(assigned_issues: :milestone).where("milestones.id = ?", id).uniq
|
2017-05-04 08:11:15 -04:00
|
|
|
end
|
|
|
|
|
2017-03-23 20:39:12 -04:00
|
|
|
def self.sort(method)
|
|
|
|
case method.to_s
|
|
|
|
when 'due_date_asc'
|
|
|
|
reorder(Gitlab::Database.nulls_last_order('due_date', 'ASC'))
|
|
|
|
when 'due_date_desc'
|
|
|
|
reorder(Gitlab::Database.nulls_last_order('due_date', 'DESC'))
|
|
|
|
when 'start_date_asc'
|
|
|
|
reorder(Gitlab::Database.nulls_last_order('start_date', 'ASC'))
|
|
|
|
when 'start_date_desc'
|
|
|
|
reorder(Gitlab::Database.nulls_last_order('start_date', 'DESC'))
|
|
|
|
else
|
|
|
|
order_by(method)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-31 20:54:00 -04:00
|
|
|
##
|
2017-08-03 07:50:06 -04:00
|
|
|
# Returns the String necessary to reference this Milestone in Markdown. Group
|
|
|
|
# milestones only support name references, and do not support cross-project
|
|
|
|
# references.
|
2016-03-31 20:54:00 -04:00
|
|
|
#
|
|
|
|
# format - Symbol format to use (default: :iid, optional: :name)
|
|
|
|
#
|
|
|
|
# Examples:
|
|
|
|
#
|
2016-11-02 19:49:13 -04:00
|
|
|
# Milestone.first.to_reference # => "%1"
|
|
|
|
# Milestone.first.to_reference(format: :name) # => "%\"goal\""
|
|
|
|
# Milestone.first.to_reference(cross_namespace_project) # => "gitlab-org/gitlab-ce%1"
|
|
|
|
# Milestone.first.to_reference(same_namespace_project) # => "gitlab-ce%1"
|
2016-03-31 20:54:00 -04:00
|
|
|
#
|
2017-11-22 08:20:35 -05:00
|
|
|
def to_reference(from = nil, format: :name, full: false)
|
2016-03-30 22:12:34 -04:00
|
|
|
format_reference = milestone_format_reference(format)
|
|
|
|
reference = "#{self.class.reference_prefix}#{format_reference}"
|
2016-01-07 06:26:05 -05:00
|
|
|
|
2017-08-03 07:50:06 -04:00
|
|
|
if project
|
2017-11-22 08:20:35 -05:00
|
|
|
"#{project.to_reference(from, full: full)}#{reference}"
|
2017-08-03 07:50:06 -04:00
|
|
|
else
|
|
|
|
reference
|
|
|
|
end
|
2015-12-24 08:43:07 -05:00
|
|
|
end
|
|
|
|
|
2017-11-22 08:20:35 -05:00
|
|
|
def reference_link_text(from = nil)
|
2016-01-05 10:45:53 -05:00
|
|
|
self.title
|
2015-12-24 08:43:07 -05:00
|
|
|
end
|
|
|
|
|
2016-12-16 10:52:27 -05:00
|
|
|
def milestoneish_ids
|
|
|
|
id
|
|
|
|
end
|
|
|
|
|
2017-07-07 11:08:49 -04:00
|
|
|
def for_display
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
2012-12-14 00:34:05 -05:00
|
|
|
def can_be_closed?
|
2013-02-18 04:10:09 -05:00
|
|
|
active? && issues.opened.count.zero?
|
2012-12-18 22:14:05 -05:00
|
|
|
end
|
|
|
|
|
2012-12-14 15:05:10 -05:00
|
|
|
def author_id
|
2014-03-25 08:01:52 -04:00
|
|
|
nil
|
2012-12-14 15:05:10 -05:00
|
|
|
end
|
2015-10-15 12:10:35 -04:00
|
|
|
|
2016-05-09 10:58:20 -04:00
|
|
|
def title=(value)
|
2016-09-26 19:47:34 -04:00
|
|
|
write_attribute(:title, sanitize_title(value)) if value.present?
|
2016-05-04 17:21:57 -04:00
|
|
|
end
|
|
|
|
|
2017-07-07 11:08:49 -04:00
|
|
|
def safe_title
|
|
|
|
title.to_slug.normalize.to_s
|
|
|
|
end
|
|
|
|
|
|
|
|
def parent
|
|
|
|
group || project
|
|
|
|
end
|
|
|
|
|
2017-08-24 12:41:44 -04:00
|
|
|
def group_milestone?
|
2017-07-07 11:08:49 -04:00
|
|
|
group_id.present?
|
|
|
|
end
|
|
|
|
|
2017-08-24 12:37:37 -04:00
|
|
|
def project_milestone?
|
2017-07-07 11:08:49 -04:00
|
|
|
project_id.present?
|
|
|
|
end
|
|
|
|
|
2016-03-30 22:12:34 -04:00
|
|
|
private
|
|
|
|
|
2017-07-07 11:08:49 -04:00
|
|
|
# Milestone titles must be unique across project milestones and group milestones
|
|
|
|
def uniqueness_of_title
|
|
|
|
if project
|
|
|
|
relation = Milestone.for_projects_and_groups([project_id], [project.group&.id])
|
|
|
|
elsif group
|
|
|
|
project_ids = group.projects.map(&:id)
|
|
|
|
relation = Milestone.for_projects_and_groups(project_ids, [group.id])
|
|
|
|
end
|
|
|
|
|
|
|
|
title_exists = relation.find_by_title(title)
|
|
|
|
errors.add(:title, "already being used for another group or project milestone.") if title_exists
|
|
|
|
end
|
|
|
|
|
|
|
|
# Milestone should be either a project milestone or a group milestone
|
|
|
|
def milestone_type_check
|
|
|
|
if group_id && project_id
|
|
|
|
field = project_id_changed? ? :project_id : :group_id
|
|
|
|
errors.add(field, "milestone should belong either to a project or a group.")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-31 20:54:00 -04:00
|
|
|
def milestone_format_reference(format = :iid)
|
2016-05-19 00:45:25 -04:00
|
|
|
raise ArgumentError, 'Unknown format' unless [:iid, :name].include?(format)
|
2016-03-30 22:12:34 -04:00
|
|
|
|
2017-09-20 05:55:54 -04:00
|
|
|
if group_milestone? && format == :iid
|
|
|
|
raise ArgumentError, 'Cannot refer to a group milestone by an internal id!'
|
|
|
|
end
|
|
|
|
|
2016-03-30 22:12:34 -04:00
|
|
|
if format == :name && !name.include?('"')
|
|
|
|
%("#{name}")
|
|
|
|
else
|
2016-03-31 20:54:00 -04:00
|
|
|
iid
|
2016-03-30 22:12:34 -04:00
|
|
|
end
|
|
|
|
end
|
2016-09-26 19:47:34 -04:00
|
|
|
|
|
|
|
def sanitize_title(value)
|
|
|
|
CGI.unescape_html(Sanitize.clean(value.to_s))
|
|
|
|
end
|
2016-11-15 12:48:30 -05:00
|
|
|
|
|
|
|
def start_date_should_be_less_than_due_date
|
|
|
|
if due_date <= start_date
|
2017-11-18 13:22:11 -05:00
|
|
|
errors.add(:due_date, "must be greater than start date")
|
2016-11-15 12:48:30 -05:00
|
|
|
end
|
|
|
|
end
|
2017-01-06 07:47:18 -05:00
|
|
|
|
|
|
|
def issues_finder_params
|
2017-06-09 14:53:32 -04:00
|
|
|
{ project_id: project_id }
|
2017-01-06 07:47:18 -05:00
|
|
|
end
|
2012-04-08 17:28:58 -04:00
|
|
|
end
|