2011-08-21 05:55:08 +04:00
|
|
|
# Redmine - project management software
|
2013-01-12 13:29:31 +04:00
|
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
2007-03-12 20:59:02 +03:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
2011-08-21 05:55:08 +04:00
|
|
|
#
|
2007-03-12 20:59:02 +03:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2011-08-21 05:55:08 +04:00
|
|
|
#
|
2007-03-12 20:59:02 +03:00
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
|
|
class IssueStatus < ActiveRecord::Base
|
2011-08-21 05:55:08 +04:00
|
|
|
before_destroy :check_integrity
|
2012-07-15 18:12:17 +04:00
|
|
|
has_many :workflows, :class_name => 'WorkflowTransition', :foreign_key => "old_status_id"
|
2007-03-12 20:59:02 +03:00
|
|
|
acts_as_list
|
2011-08-21 05:55:08 +04:00
|
|
|
|
2012-07-15 18:12:17 +04:00
|
|
|
before_destroy :delete_workflow_rules
|
2011-09-22 03:50:52 +04:00
|
|
|
after_save :update_default
|
2007-03-12 20:59:02 +03:00
|
|
|
|
|
|
|
validates_presence_of :name
|
|
|
|
validates_uniqueness_of :name
|
2007-07-16 21:16:49 +04:00
|
|
|
validates_length_of :name, :maximum => 30
|
2009-12-12 13:33:12 +03:00
|
|
|
validates_inclusion_of :default_done_ratio, :in => 0..100, :allow_nil => true
|
2011-08-21 05:55:08 +04:00
|
|
|
|
2012-12-07 14:12:47 +04:00
|
|
|
scope :sorted, lambda { order("#{table_name}.position ASC") }
|
2012-11-28 02:13:14 +04:00
|
|
|
scope :named, lambda {|arg| where("LOWER(#{table_name}.name) = LOWER(?)", arg.to_s.strip)}
|
2007-03-12 20:59:02 +03:00
|
|
|
|
2011-09-22 03:50:52 +04:00
|
|
|
def update_default
|
2012-07-15 18:28:18 +04:00
|
|
|
IssueStatus.update_all({:is_default => false}, ['id <> ?', id]) if self.is_default?
|
2011-08-21 05:55:08 +04:00
|
|
|
end
|
|
|
|
|
2007-03-12 20:59:02 +03:00
|
|
|
# Returns the default status for new issues
|
|
|
|
def self.default
|
2012-07-15 18:28:18 +04:00
|
|
|
where(:is_default => true).first
|
2007-03-12 20:59:02 +03:00
|
|
|
end
|
2011-08-21 05:55:08 +04:00
|
|
|
|
2009-12-11 21:48:34 +03:00
|
|
|
# Update all the +Issues+ setting their done_ratio to the value of their +IssueStatus+
|
|
|
|
def self.update_issue_done_ratios
|
|
|
|
if Issue.use_status_for_done_ratio?
|
2012-07-15 18:28:18 +04:00
|
|
|
IssueStatus.where("default_done_ratio >= 0").all.each do |status|
|
|
|
|
Issue.update_all({:done_ratio => status.default_done_ratio}, {:status_id => status.id})
|
2009-12-11 21:48:34 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return Issue.use_status_for_done_ratio?
|
|
|
|
end
|
2007-03-12 20:59:02 +03:00
|
|
|
|
|
|
|
# Returns an array of all statuses the given role can switch to
|
2007-04-04 21:26:05 +04:00
|
|
|
# Uses association cache when called more than one time
|
2011-02-20 18:38:07 +03:00
|
|
|
def new_statuses_allowed_to(roles, tracker, author=false, assignee=false)
|
2009-05-10 14:54:31 +04:00
|
|
|
if roles && tracker
|
|
|
|
role_ids = roles.collect(&:id)
|
2011-02-20 18:38:07 +03:00
|
|
|
transitions = workflows.select do |w|
|
|
|
|
role_ids.include?(w.role_id) &&
|
2011-08-21 05:55:08 +04:00
|
|
|
w.tracker_id == tracker.id &&
|
2011-07-20 21:05:17 +04:00
|
|
|
((!w.author && !w.assignee) || (author && w.author) || (assignee && w.assignee))
|
2011-02-20 18:38:07 +03:00
|
|
|
end
|
2012-07-15 18:28:18 +04:00
|
|
|
transitions.map(&:new_status).compact.sort
|
2009-05-10 14:54:31 +04:00
|
|
|
else
|
|
|
|
[]
|
|
|
|
end
|
2007-04-04 21:26:05 +04:00
|
|
|
end
|
2011-08-21 05:55:08 +04:00
|
|
|
|
2007-04-04 21:26:05 +04:00
|
|
|
# Same thing as above but uses a database query
|
|
|
|
# More efficient than the previous method if called just once
|
2011-02-20 18:38:07 +03:00
|
|
|
def find_new_statuses_allowed_to(roles, tracker, author=false, assignee=false)
|
2011-07-20 21:05:17 +04:00
|
|
|
if roles.present? && tracker
|
|
|
|
conditions = "(author = :false AND assignee = :false)"
|
|
|
|
conditions << " OR author = :true" if author
|
|
|
|
conditions << " OR assignee = :true" if assignee
|
2011-08-21 05:55:08 +04:00
|
|
|
|
2012-07-15 18:28:18 +04:00
|
|
|
workflows.
|
|
|
|
includes(:new_status).
|
|
|
|
where(["role_id IN (:role_ids) AND tracker_id = :tracker_id AND (#{conditions})",
|
2011-07-20 21:05:17 +04:00
|
|
|
{:role_ids => roles.collect(&:id), :tracker_id => tracker.id, :true => true, :false => false}
|
2012-07-15 18:28:18 +04:00
|
|
|
]).all.
|
|
|
|
map(&:new_status).compact.sort
|
2009-05-10 14:54:31 +04:00
|
|
|
else
|
|
|
|
[]
|
|
|
|
end
|
2007-03-12 20:59:02 +03:00
|
|
|
end
|
2007-10-01 12:44:17 +04:00
|
|
|
|
2008-01-06 20:06:14 +03:00
|
|
|
def <=>(status)
|
|
|
|
position <=> status.position
|
|
|
|
end
|
2011-08-21 05:55:08 +04:00
|
|
|
|
2007-10-01 12:44:17 +04:00
|
|
|
def to_s; name end
|
|
|
|
|
2012-07-15 18:28:18 +04:00
|
|
|
private
|
|
|
|
|
2007-03-12 20:59:02 +03:00
|
|
|
def check_integrity
|
2012-07-15 18:28:18 +04:00
|
|
|
raise "Can't delete status" if Issue.where(:status_id => id).any?
|
2006-06-28 22:11:03 +04:00
|
|
|
end
|
2011-08-21 05:55:08 +04:00
|
|
|
|
2010-07-25 14:48:27 +04:00
|
|
|
# Deletes associated workflows
|
2012-07-15 18:12:17 +04:00
|
|
|
def delete_workflow_rules
|
|
|
|
WorkflowRule.delete_all(["old_status_id = :id OR new_status_id = :id", {:id => id}])
|
2010-07-25 14:48:27 +04:00
|
|
|
end
|
2006-06-28 22:11:03 +04:00
|
|
|
end
|