issue_relation.rb
143 lines
| 5.5 KiB
| text/x-ruby
|
RubyLexer
|
r6057 | # Redmine - project management software | ||
# Copyright (C) 2006-2011 Jean-Philippe Lang | ||||
|
r503 | # | ||
# 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. | ||||
|
r6385 | # | ||
|
r503 | # 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. | ||||
|
r6385 | # | ||
|
r503 | # 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 IssueRelation < ActiveRecord::Base | ||||
belongs_to :issue_from, :class_name => 'Issue', :foreign_key => 'issue_from_id' | ||||
belongs_to :issue_to, :class_name => 'Issue', :foreign_key => 'issue_to_id' | ||||
|
r6385 | |||
|
r503 | TYPE_RELATES = "relates" | ||
TYPE_DUPLICATES = "duplicates" | ||||
|
r3398 | TYPE_DUPLICATED = "duplicated" | ||
|
r503 | TYPE_BLOCKS = "blocks" | ||
|
r3398 | TYPE_BLOCKED = "blocked" | ||
|
r503 | TYPE_PRECEDES = "precedes" | ||
|
r3076 | TYPE_FOLLOWS = "follows" | ||
|
r6385 | |||
|
r3615 | TYPES = { TYPE_RELATES => { :name => :label_relates_to, :sym_name => :label_relates_to, :order => 1, :sym => TYPE_RELATES }, | ||
TYPE_DUPLICATES => { :name => :label_duplicates, :sym_name => :label_duplicated_by, :order => 2, :sym => TYPE_DUPLICATED }, | ||||
TYPE_DUPLICATED => { :name => :label_duplicated_by, :sym_name => :label_duplicates, :order => 3, :sym => TYPE_DUPLICATES, :reverse => TYPE_DUPLICATES }, | ||||
TYPE_BLOCKS => { :name => :label_blocks, :sym_name => :label_blocked_by, :order => 4, :sym => TYPE_BLOCKED }, | ||||
TYPE_BLOCKED => { :name => :label_blocked_by, :sym_name => :label_blocks, :order => 5, :sym => TYPE_BLOCKS, :reverse => TYPE_BLOCKS }, | ||||
TYPE_PRECEDES => { :name => :label_precedes, :sym_name => :label_follows, :order => 6, :sym => TYPE_FOLLOWS }, | ||||
TYPE_FOLLOWS => { :name => :label_follows, :sym_name => :label_precedes, :order => 7, :sym => TYPE_PRECEDES, :reverse => TYPE_PRECEDES } | ||||
|
r503 | }.freeze | ||
|
r6385 | |||
|
r503 | validates_presence_of :issue_from, :issue_to, :relation_type | ||
|
r3077 | validates_inclusion_of :relation_type, :in => TYPES.keys | ||
|
r503 | validates_numericality_of :delay, :allow_nil => true | ||
validates_uniqueness_of :issue_to_id, :scope => :issue_from_id | ||||
|
r6385 | |||
|
r6817 | validate :validate_issue_relation | ||
|
r2321 | attr_protected :issue_from_id, :issue_to_id | ||
|
r6385 | |||
|
r7306 | before_save :handle_issue_order | ||
|
r6064 | def visible?(user=User.current) | ||
(issue_from.nil? || issue_from.visible?(user)) && (issue_to.nil? || issue_to.visible?(user)) | ||||
end | ||||
|
r6385 | |||
|
r6064 | def deletable?(user=User.current) | ||
visible?(user) && | ||||
((issue_from.nil? || user.allowed_to?(:manage_issue_relations, issue_from.project)) || | ||||
(issue_to.nil? || user.allowed_to?(:manage_issue_relations, issue_to.project))) | ||||
end | ||||
|
r6385 | |||
|
r8168 | def initialize(attributes=nil, *args) | ||
super | ||||
|
r6057 | if new_record? | ||
if relation_type.blank? | ||||
self.relation_type = IssueRelation::TYPE_RELATES | ||||
end | ||||
end | ||||
end | ||||
|
r6385 | |||
|
r6817 | def validate_issue_relation | ||
|
r503 | if issue_from && issue_to | ||
|
r2430 | errors.add :issue_to_id, :invalid if issue_from_id == issue_to_id | ||
errors.add :issue_to_id, :not_same_project unless issue_from.project_id == issue_to.project_id || Setting.cross_project_issue_relations? | ||||
|
r6004 | #detect circular dependencies depending wether the relation should be reversed | ||
if TYPES.has_key?(relation_type) && TYPES[relation_type][:reverse] | ||||
|
r7496 | errors.add :base, :circular_dependency if issue_from.all_dependent_issues.include? issue_to | ||
|
r6004 | else | ||
|
r7496 | errors.add :base, :circular_dependency if issue_to.all_dependent_issues.include? issue_from | ||
|
r6004 | end | ||
|
r7496 | errors.add :base, :cant_link_an_issue_with_a_descendant if issue_from.is_descendant_of?(issue_to) || issue_from.is_ancestor_of?(issue_to) | ||
|
r503 | end | ||
end | ||||
|
r6385 | |||
|
r503 | def other_issue(issue) | ||
(self.issue_from_id == issue.id) ? issue_to : issue_from | ||||
end | ||||
|
r6385 | |||
|
r3615 | # Returns the relation type for +issue+ | ||
def relation_type_for(issue) | ||||
if TYPES[relation_type] | ||||
if self.issue_from_id == issue.id | ||||
relation_type | ||||
else | ||||
TYPES[relation_type][:sym] | ||||
end | ||||
end | ||||
end | ||||
|
r6385 | |||
|
r503 | def label_for(issue) | ||
TYPES[relation_type] ? TYPES[relation_type][(self.issue_from_id == issue.id) ? :name : :sym_name] : :unknow | ||||
end | ||||
|
r6385 | |||
|
r7306 | def handle_issue_order | ||
|
r3077 | reverse_if_needed | ||
|
r6385 | |||
|
r503 | if TYPE_PRECEDES == relation_type | ||
self.delay ||= 0 | ||||
else | ||||
self.delay = nil | ||||
end | ||||
set_issue_to_dates | ||||
end | ||||
|
r6385 | |||
|
r503 | def set_issue_to_dates | ||
soonest_start = self.successor_soonest_start | ||||
|
r4353 | if soonest_start && issue_to | ||
|
r3460 | issue_to.reschedule_after(soonest_start) | ||
|
r503 | end | ||
end | ||||
|
r6385 | |||
|
r503 | def successor_soonest_start | ||
|
r4353 | if (TYPE_PRECEDES == self.relation_type) && delay && issue_from && (issue_from.start_date || issue_from.due_date) | ||
(issue_from.due_date || issue_from.start_date) + 1 + delay | ||||
end | ||||
|
r503 | end | ||
|
r6385 | |||
|
r503 | def <=>(relation) | ||
TYPES[self.relation_type][:order] <=> TYPES[relation.relation_type][:order] | ||||
end | ||||
|
r6385 | |||
|
r3076 | private | ||
|
r6385 | |||
|
r3398 | # Reverses the relation if needed so that it gets stored in the proper way | ||
|
r6058 | # Should not be reversed before validation so that it can be displayed back | ||
# as entered on new relation form | ||||
|
r3076 | def reverse_if_needed | ||
|
r3398 | if TYPES.has_key?(relation_type) && TYPES[relation_type][:reverse] | ||
|
r3076 | issue_tmp = issue_to | ||
self.issue_to = issue_from | ||||
self.issue_from = issue_tmp | ||||
|
r3398 | self.relation_type = TYPES[relation_type][:reverse] | ||
|
r3076 | end | ||
end | ||||
|
r503 | end | ||