Chris@441
|
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@0
|
18 class Journal < ActiveRecord::Base
|
Chris@0
|
19 belongs_to :journalized, :polymorphic => true
|
Chris@0
|
20 # added as a quick fix to allow eager loading of the polymorphic association
|
Chris@0
|
21 # since always associated to an issue, for now
|
Chris@0
|
22 belongs_to :issue, :foreign_key => :journalized_id
|
Chris@909
|
23
|
Chris@0
|
24 belongs_to :user
|
Chris@0
|
25 has_many :details, :class_name => "JournalDetail", :dependent => :delete_all
|
Chris@0
|
26 attr_accessor :indice
|
Chris@909
|
27
|
Chris@0
|
28 acts_as_event :title => Proc.new {|o| status = ((s = o.new_status) ? " (#{s})" : nil); "#{o.issue.tracker} ##{o.issue.id}#{status}: #{o.issue.subject}" },
|
Chris@0
|
29 :description => :notes,
|
Chris@0
|
30 :author => :user,
|
Chris@0
|
31 :type => Proc.new {|o| (s = o.new_status) ? (s.is_closed? ? 'issue-closed' : 'issue-edit') : 'issue-note' },
|
Chris@0
|
32 :url => Proc.new {|o| {:controller => 'issues', :action => 'show', :id => o.issue.id, :anchor => "change-#{o.id}"}}
|
Chris@0
|
33
|
Chris@0
|
34 acts_as_activity_provider :type => 'issues',
|
Chris@0
|
35 :author_key => :user_id,
|
Chris@0
|
36 :find_options => {:include => [{:issue => :project}, :details, :user],
|
Chris@0
|
37 :conditions => "#{Journal.table_name}.journalized_type = 'Issue' AND" +
|
Chris@0
|
38 " (#{JournalDetail.table_name}.prop_key = 'status_id' OR #{Journal.table_name}.notes <> '')"}
|
Chris@909
|
39
|
Chris@1115
|
40 before_create :split_private_notes
|
Chris@1115
|
41
|
Chris@1115
|
42 scope :visible, lambda {|*args|
|
Chris@1115
|
43 user = args.shift || User.current
|
Chris@1115
|
44
|
Chris@1115
|
45 includes(:issue => :project).
|
Chris@1115
|
46 where(Issue.visible_condition(user, *args)).
|
Chris@1115
|
47 where("(#{Journal.table_name}.private_notes = ? OR (#{Project.allowed_to_condition(user, :view_private_notes, *args)}))", false)
|
Chris@1115
|
48 }
|
Chris@909
|
49
|
Chris@0
|
50 def save(*args)
|
Chris@0
|
51 # Do not save an empty journal
|
Chris@0
|
52 (details.empty? && notes.blank?) ? false : super
|
Chris@0
|
53 end
|
Chris@909
|
54
|
Chris@0
|
55 # Returns the new status if the journal contains a status change, otherwise nil
|
Chris@0
|
56 def new_status
|
Chris@0
|
57 c = details.detect {|detail| detail.prop_key == 'status_id'}
|
Chris@0
|
58 (c && c.value) ? IssueStatus.find_by_id(c.value.to_i) : nil
|
Chris@0
|
59 end
|
Chris@909
|
60
|
Chris@0
|
61 def new_value_for(prop)
|
Chris@0
|
62 c = details.detect {|detail| detail.prop_key == prop}
|
Chris@0
|
63 c ? c.value : nil
|
Chris@0
|
64 end
|
Chris@909
|
65
|
Chris@0
|
66 def editable_by?(usr)
|
Chris@0
|
67 usr && usr.logged? && (usr.allowed_to?(:edit_issue_notes, project) || (self.user == usr && usr.allowed_to?(:edit_own_issue_notes, project)))
|
Chris@0
|
68 end
|
Chris@909
|
69
|
Chris@0
|
70 def project
|
Chris@0
|
71 journalized.respond_to?(:project) ? journalized.project : nil
|
Chris@0
|
72 end
|
Chris@909
|
73
|
Chris@0
|
74 def attachments
|
Chris@0
|
75 journalized.respond_to?(:attachments) ? journalized.attachments : nil
|
Chris@0
|
76 end
|
chris@22
|
77
|
chris@22
|
78 # Returns a string of css classes
|
chris@22
|
79 def css_classes
|
chris@22
|
80 s = 'journal'
|
chris@22
|
81 s << ' has-notes' unless notes.blank?
|
chris@22
|
82 s << ' has-details' unless details.blank?
|
Chris@1115
|
83 s << ' private-notes' if private_notes?
|
chris@22
|
84 s
|
chris@22
|
85 end
|
Chris@909
|
86
|
Chris@441
|
87 def notify?
|
Chris@441
|
88 @notify != false
|
Chris@441
|
89 end
|
Chris@909
|
90
|
Chris@441
|
91 def notify=(arg)
|
Chris@441
|
92 @notify = arg
|
Chris@441
|
93 end
|
Chris@1115
|
94
|
Chris@1115
|
95 def recipients
|
Chris@1115
|
96 notified = journalized.notified_users
|
Chris@1115
|
97 if private_notes?
|
Chris@1115
|
98 notified = notified.select {|user| user.allowed_to?(:view_private_notes, journalized.project)}
|
Chris@1115
|
99 end
|
Chris@1115
|
100 notified.map(&:mail)
|
Chris@1115
|
101 end
|
Chris@1115
|
102
|
Chris@1115
|
103 def watcher_recipients
|
Chris@1115
|
104 notified = journalized.notified_watchers
|
Chris@1115
|
105 if private_notes?
|
Chris@1115
|
106 notified = notified.select {|user| user.allowed_to?(:view_private_notes, journalized.project)}
|
Chris@1115
|
107 end
|
Chris@1115
|
108 notified.map(&:mail)
|
Chris@1115
|
109 end
|
Chris@1115
|
110
|
Chris@1115
|
111 private
|
Chris@1115
|
112
|
Chris@1115
|
113 def split_private_notes
|
Chris@1115
|
114 if private_notes?
|
Chris@1115
|
115 if notes.present?
|
Chris@1115
|
116 if details.any?
|
Chris@1115
|
117 # Split the journal (notes/changes) so we don't have half-private journals
|
Chris@1115
|
118 journal = Journal.new(:journalized => journalized, :user => user, :notes => nil, :private_notes => false)
|
Chris@1115
|
119 journal.details = details
|
Chris@1115
|
120 journal.save
|
Chris@1115
|
121 self.details = []
|
Chris@1115
|
122 self.created_on = journal.created_on
|
Chris@1115
|
123 end
|
Chris@1115
|
124 else
|
Chris@1115
|
125 # Blank notes should not be private
|
Chris@1115
|
126 self.private_notes = false
|
Chris@1115
|
127 end
|
Chris@1115
|
128 end
|
Chris@1115
|
129 true
|
Chris@1115
|
130 end
|
Chris@0
|
131 end
|