Chris@909
|
1 # Redmine - project management software
|
Chris@1115
|
2 # Copyright (C) 2006-2012 Jean-Philippe Lang
|
Chris@0
|
3 #
|
Chris@0
|
4 # This program is free software; you can redistribute it and/or
|
Chris@0
|
5 # modify it under the terms of the GNU General Public License
|
Chris@0
|
6 # as published by the Free Software Foundation; either version 2
|
Chris@0
|
7 # of the License, or (at your option) any later version.
|
Chris@909
|
8 #
|
Chris@0
|
9 # This program is distributed in the hope that it will be useful,
|
Chris@0
|
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
Chris@0
|
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
Chris@0
|
12 # GNU General Public License for more details.
|
Chris@909
|
13 #
|
Chris@0
|
14 # You should have received a copy of the GNU General Public License
|
Chris@0
|
15 # along with this program; if not, write to the Free Software
|
Chris@0
|
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
Chris@0
|
17
|
Chris@1115
|
18 # Class used to represent the relations of an issue
|
Chris@1115
|
19 class IssueRelations < Array
|
Chris@1115
|
20 include Redmine::I18n
|
Chris@1115
|
21
|
Chris@1115
|
22 def initialize(issue, *args)
|
Chris@1115
|
23 @issue = issue
|
Chris@1115
|
24 super(*args)
|
Chris@1115
|
25 end
|
Chris@1115
|
26
|
Chris@1115
|
27 def to_s(*args)
|
Chris@1115
|
28 map {|relation| "#{l(relation.label_for(@issue))} ##{relation.other_issue(@issue).id}"}.join(', ')
|
Chris@1115
|
29 end
|
Chris@1115
|
30 end
|
Chris@1115
|
31
|
Chris@0
|
32 class IssueRelation < ActiveRecord::Base
|
Chris@0
|
33 belongs_to :issue_from, :class_name => 'Issue', :foreign_key => 'issue_from_id'
|
Chris@0
|
34 belongs_to :issue_to, :class_name => 'Issue', :foreign_key => 'issue_to_id'
|
Chris@909
|
35
|
Chris@0
|
36 TYPE_RELATES = "relates"
|
Chris@0
|
37 TYPE_DUPLICATES = "duplicates"
|
Chris@0
|
38 TYPE_DUPLICATED = "duplicated"
|
Chris@0
|
39 TYPE_BLOCKS = "blocks"
|
Chris@0
|
40 TYPE_BLOCKED = "blocked"
|
Chris@0
|
41 TYPE_PRECEDES = "precedes"
|
Chris@0
|
42 TYPE_FOLLOWS = "follows"
|
Chris@1115
|
43 TYPE_COPIED_TO = "copied_to"
|
Chris@1115
|
44 TYPE_COPIED_FROM = "copied_from"
|
Chris@909
|
45
|
Chris@1115
|
46 TYPES = {
|
Chris@1115
|
47 TYPE_RELATES => { :name => :label_relates_to, :sym_name => :label_relates_to,
|
Chris@1115
|
48 :order => 1, :sym => TYPE_RELATES },
|
Chris@1115
|
49 TYPE_DUPLICATES => { :name => :label_duplicates, :sym_name => :label_duplicated_by,
|
Chris@1115
|
50 :order => 2, :sym => TYPE_DUPLICATED },
|
Chris@1115
|
51 TYPE_DUPLICATED => { :name => :label_duplicated_by, :sym_name => :label_duplicates,
|
Chris@1115
|
52 :order => 3, :sym => TYPE_DUPLICATES, :reverse => TYPE_DUPLICATES },
|
Chris@1115
|
53 TYPE_BLOCKS => { :name => :label_blocks, :sym_name => :label_blocked_by,
|
Chris@1115
|
54 :order => 4, :sym => TYPE_BLOCKED },
|
Chris@1115
|
55 TYPE_BLOCKED => { :name => :label_blocked_by, :sym_name => :label_blocks,
|
Chris@1115
|
56 :order => 5, :sym => TYPE_BLOCKS, :reverse => TYPE_BLOCKS },
|
Chris@1115
|
57 TYPE_PRECEDES => { :name => :label_precedes, :sym_name => :label_follows,
|
Chris@1115
|
58 :order => 6, :sym => TYPE_FOLLOWS },
|
Chris@1115
|
59 TYPE_FOLLOWS => { :name => :label_follows, :sym_name => :label_precedes,
|
Chris@1115
|
60 :order => 7, :sym => TYPE_PRECEDES, :reverse => TYPE_PRECEDES },
|
Chris@1115
|
61 TYPE_COPIED_TO => { :name => :label_copied_to, :sym_name => :label_copied_from,
|
Chris@1115
|
62 :order => 8, :sym => TYPE_COPIED_FROM },
|
Chris@1115
|
63 TYPE_COPIED_FROM => { :name => :label_copied_from, :sym_name => :label_copied_to,
|
Chris@1115
|
64 :order => 9, :sym => TYPE_COPIED_TO, :reverse => TYPE_COPIED_TO }
|
Chris@1115
|
65 }.freeze
|
Chris@909
|
66
|
Chris@0
|
67 validates_presence_of :issue_from, :issue_to, :relation_type
|
Chris@0
|
68 validates_inclusion_of :relation_type, :in => TYPES.keys
|
Chris@0
|
69 validates_numericality_of :delay, :allow_nil => true
|
Chris@0
|
70 validates_uniqueness_of :issue_to_id, :scope => :issue_from_id
|
Chris@909
|
71 validate :validate_issue_relation
|
Chris@909
|
72
|
Chris@0
|
73 attr_protected :issue_from_id, :issue_to_id
|
Chris@909
|
74 before_save :handle_issue_order
|
Chris@909
|
75
|
Chris@909
|
76 def visible?(user=User.current)
|
Chris@909
|
77 (issue_from.nil? || issue_from.visible?(user)) && (issue_to.nil? || issue_to.visible?(user))
|
Chris@909
|
78 end
|
Chris@909
|
79
|
Chris@909
|
80 def deletable?(user=User.current)
|
Chris@909
|
81 visible?(user) &&
|
Chris@909
|
82 ((issue_from.nil? || user.allowed_to?(:manage_issue_relations, issue_from.project)) ||
|
Chris@909
|
83 (issue_to.nil? || user.allowed_to?(:manage_issue_relations, issue_to.project)))
|
Chris@909
|
84 end
|
Chris@909
|
85
|
Chris@1115
|
86 def initialize(attributes=nil, *args)
|
Chris@1115
|
87 super
|
Chris@909
|
88 if new_record?
|
Chris@909
|
89 if relation_type.blank?
|
Chris@909
|
90 self.relation_type = IssueRelation::TYPE_RELATES
|
Chris@909
|
91 end
|
Chris@909
|
92 end
|
Chris@909
|
93 end
|
Chris@909
|
94
|
Chris@909
|
95 def validate_issue_relation
|
Chris@0
|
96 if issue_from && issue_to
|
Chris@0
|
97 errors.add :issue_to_id, :invalid if issue_from_id == issue_to_id
|
Chris@1115
|
98 unless issue_from.project_id == issue_to.project_id ||
|
Chris@1115
|
99 Setting.cross_project_issue_relations?
|
Chris@1115
|
100 errors.add :issue_to_id, :not_same_project
|
Chris@1115
|
101 end
|
Chris@1115
|
102 # detect circular dependencies depending wether the relation should be reversed
|
Chris@507
|
103 if TYPES.has_key?(relation_type) && TYPES[relation_type][:reverse]
|
Chris@909
|
104 errors.add :base, :circular_dependency if issue_from.all_dependent_issues.include? issue_to
|
Chris@507
|
105 else
|
Chris@909
|
106 errors.add :base, :circular_dependency if issue_to.all_dependent_issues.include? issue_from
|
Chris@507
|
107 end
|
Chris@1115
|
108 if issue_from.is_descendant_of?(issue_to) || issue_from.is_ancestor_of?(issue_to)
|
Chris@1115
|
109 errors.add :base, :cant_link_an_issue_with_a_descendant
|
Chris@1115
|
110 end
|
Chris@0
|
111 end
|
Chris@0
|
112 end
|
Chris@909
|
113
|
Chris@0
|
114 def other_issue(issue)
|
Chris@0
|
115 (self.issue_from_id == issue.id) ? issue_to : issue_from
|
Chris@0
|
116 end
|
Chris@909
|
117
|
Chris@0
|
118 # Returns the relation type for +issue+
|
Chris@0
|
119 def relation_type_for(issue)
|
Chris@0
|
120 if TYPES[relation_type]
|
Chris@0
|
121 if self.issue_from_id == issue.id
|
Chris@0
|
122 relation_type
|
Chris@0
|
123 else
|
Chris@0
|
124 TYPES[relation_type][:sym]
|
Chris@0
|
125 end
|
Chris@0
|
126 end
|
Chris@0
|
127 end
|
Chris@909
|
128
|
Chris@0
|
129 def label_for(issue)
|
Chris@1115
|
130 TYPES[relation_type] ?
|
Chris@1115
|
131 TYPES[relation_type][(self.issue_from_id == issue.id) ? :name : :sym_name] :
|
Chris@1115
|
132 :unknow
|
Chris@1115
|
133 end
|
Chris@1115
|
134
|
Chris@1115
|
135 def css_classes_for(issue)
|
Chris@1115
|
136 "rel-#{relation_type_for(issue)}"
|
Chris@0
|
137 end
|
Chris@909
|
138
|
Chris@909
|
139 def handle_issue_order
|
Chris@0
|
140 reverse_if_needed
|
Chris@909
|
141
|
Chris@0
|
142 if TYPE_PRECEDES == relation_type
|
Chris@0
|
143 self.delay ||= 0
|
Chris@0
|
144 else
|
Chris@0
|
145 self.delay = nil
|
Chris@0
|
146 end
|
Chris@0
|
147 set_issue_to_dates
|
Chris@0
|
148 end
|
Chris@909
|
149
|
Chris@0
|
150 def set_issue_to_dates
|
Chris@0
|
151 soonest_start = self.successor_soonest_start
|
Chris@119
|
152 if soonest_start && issue_to
|
Chris@1115
|
153 issue_to.reschedule_on!(soonest_start)
|
Chris@0
|
154 end
|
Chris@0
|
155 end
|
Chris@909
|
156
|
Chris@0
|
157 def successor_soonest_start
|
Chris@1115
|
158 if (TYPE_PRECEDES == self.relation_type) && delay && issue_from &&
|
Chris@1115
|
159 (issue_from.start_date || issue_from.due_date)
|
Chris@119
|
160 (issue_from.due_date || issue_from.start_date) + 1 + delay
|
Chris@119
|
161 end
|
Chris@0
|
162 end
|
Chris@909
|
163
|
Chris@0
|
164 def <=>(relation)
|
Chris@1115
|
165 r = TYPES[self.relation_type][:order] <=> TYPES[relation.relation_type][:order]
|
Chris@1115
|
166 r == 0 ? id <=> relation.id : r
|
Chris@0
|
167 end
|
Chris@909
|
168
|
Chris@0
|
169 private
|
Chris@909
|
170
|
Chris@0
|
171 # Reverses the relation if needed so that it gets stored in the proper way
|
Chris@909
|
172 # Should not be reversed before validation so that it can be displayed back
|
Chris@909
|
173 # as entered on new relation form
|
Chris@0
|
174 def reverse_if_needed
|
Chris@0
|
175 if TYPES.has_key?(relation_type) && TYPES[relation_type][:reverse]
|
Chris@0
|
176 issue_tmp = issue_to
|
Chris@0
|
177 self.issue_to = issue_from
|
Chris@0
|
178 self.issue_from = issue_tmp
|
Chris@0
|
179 self.relation_type = TYPES[relation_type][:reverse]
|
Chris@0
|
180 end
|
Chris@0
|
181 end
|
Chris@0
|
182 end
|