comparison .svn/pristine/0a/0aeabf349bacf0ce65e0c6107e082ed00e2f7277.svn-base @ 1494:e248c7af89ec redmine-2.4

Update to Redmine SVN revision 12979 on 2.4-stable branch
author Chris Cannam
date Mon, 17 Mar 2014 08:54:02 +0000
parents
children
comparison
equal deleted inserted replaced
1464:261b3d9a4903 1494:e248c7af89ec
1 # Redmine - project management software
2 # Copyright (C) 2006-2014 Jean-Philippe Lang
3 #
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
18 class Watcher < ActiveRecord::Base
19 belongs_to :watchable, :polymorphic => true
20 belongs_to :user
21
22 validates_presence_of :user
23 validates_uniqueness_of :user_id, :scope => [:watchable_type, :watchable_id]
24 validate :validate_user
25
26 # Returns true if at least one object among objects is watched by user
27 def self.any_watched?(objects, user)
28 objects = objects.reject(&:new_record?)
29 if objects.any?
30 objects.group_by {|object| object.class.base_class}.each do |base_class, objects|
31 if Watcher.where(:watchable_type => base_class.name, :watchable_id => objects.map(&:id), :user_id => user.id).exists?
32 return true
33 end
34 end
35 end
36 false
37 end
38
39 # Unwatch things that users are no longer allowed to view
40 def self.prune(options={})
41 if options.has_key?(:user)
42 prune_single_user(options[:user], options)
43 else
44 pruned = 0
45 User.where("id IN (SELECT DISTINCT user_id FROM #{table_name})").all.each do |user|
46 pruned += prune_single_user(user, options)
47 end
48 pruned
49 end
50 end
51
52 protected
53
54 def validate_user
55 errors.add :user_id, :invalid unless user.nil? || user.active?
56 end
57
58 private
59
60 def self.prune_single_user(user, options={})
61 return unless user.is_a?(User)
62 pruned = 0
63 where(:user_id => user.id).all.each do |watcher|
64 next if watcher.watchable.nil?
65
66 if options.has_key?(:project)
67 next unless watcher.watchable.respond_to?(:project) && watcher.watchable.project == options[:project]
68 end
69
70 if watcher.watchable.respond_to?(:visible?)
71 unless watcher.watchable.visible?(user)
72 watcher.destroy
73 pruned += 1
74 end
75 end
76 end
77 pruned
78 end
79 end