2011-08-21 05:55:08 +04:00
|
|
|
# Redmine - project management software
|
|
|
|
# Copyright (C) 2006-2011 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
|
2010-07-25 14:48:27 +04:00
|
|
|
has_many :workflows, :foreign_key => "old_status_id"
|
2007-03-12 20:59:02 +03:00
|
|
|
acts_as_list
|
2011-08-21 05:55:08 +04:00
|
|
|
|
2010-07-25 14:48:27 +04:00
|
|
|
before_destroy :delete_workflows
|
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
|
|
|
|
2011-07-09 14:50:42 +04:00
|
|
|
named_scope :named, lambda {|arg| { :conditions => ["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
|
2008-09-28 12:05:55 +04:00
|
|
|
IssueStatus.update_all("is_default=#{connection.quoted_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
|
|
|
|
find(:first, :conditions =>["is_default=?", true])
|
|
|
|
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?
|
|
|
|
IssueStatus.find(:all, :conditions => ["default_done_ratio >= 0"]).each do |status|
|
|
|
|
Issue.update_all(["done_ratio = ?", status.default_done_ratio],
|
|
|
|
["status_id = ?", status.id])
|
|
|
|
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
|
|
|
|
transitions.collect{|w| w.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
|
|
|
|
2009-05-10 14:54:31 +04:00
|
|
|
workflows.find(:all,
|
2011-07-20 21:05:17 +04:00
|
|
|
:include => :new_status,
|
2011-08-21 05:55:08 +04:00
|
|
|
:conditions => ["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}
|
|
|
|
]
|
|
|
|
).collect{|w| w.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
|
|
|
|
|
2007-03-12 20:59:02 +03:00
|
|
|
private
|
|
|
|
def check_integrity
|
|
|
|
raise "Can't delete status" if Issue.find(:first, :conditions => ["status_id=?", self.id])
|
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
|
|
|
|
def delete_workflows
|
|
|
|
Workflow.delete_all(["old_status_id = :id OR new_status_id = :id", {:id => id}])
|
|
|
|
end
|
2006-06-28 22:11:03 +04:00
|
|
|
end
|