2011-08-21 05:59:51 +04:00
|
|
|
# Redmine - project management software
|
2012-05-05 16:56:53 +04:00
|
|
|
# Copyright (C) 2006-2012 Jean-Philippe Lang
|
2007-04-21 16:08:31 +04: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:59:51 +04:00
|
|
|
#
|
2007-04-21 16:08:31 +04: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:59:51 +04:00
|
|
|
#
|
2007-04-21 16:08:31 +04: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 Watcher < ActiveRecord::Base
|
|
|
|
belongs_to :watchable, :polymorphic => true
|
|
|
|
belongs_to :user
|
2011-08-21 05:59:51 +04:00
|
|
|
|
2008-08-03 13:14:43 +04:00
|
|
|
validates_presence_of :user
|
2007-04-21 16:08:31 +04:00
|
|
|
validates_uniqueness_of :user_id, :scope => [:watchable_type, :watchable_id]
|
2011-12-04 13:45:18 +04:00
|
|
|
validate :validate_user
|
2009-12-13 15:39:22 +03:00
|
|
|
|
|
|
|
# Unwatch things that users are no longer allowed to view
|
|
|
|
def self.prune(options={})
|
|
|
|
if options.has_key?(:user)
|
|
|
|
prune_single_user(options[:user], options)
|
|
|
|
else
|
|
|
|
pruned = 0
|
|
|
|
User.find(:all, :conditions => "id IN (SELECT DISTINCT user_id FROM #{table_name})").each do |user|
|
|
|
|
pruned += prune_single_user(user, options)
|
|
|
|
end
|
|
|
|
pruned
|
|
|
|
end
|
|
|
|
end
|
2011-08-21 05:59:51 +04:00
|
|
|
|
2008-08-03 13:14:43 +04:00
|
|
|
protected
|
2011-08-21 05:59:51 +04:00
|
|
|
|
2011-12-04 13:45:18 +04:00
|
|
|
def validate_user
|
2009-02-21 14:04:50 +03:00
|
|
|
errors.add :user_id, :invalid unless user.nil? || user.active?
|
2008-08-03 13:14:43 +04:00
|
|
|
end
|
2011-08-21 05:59:51 +04:00
|
|
|
|
2009-12-13 15:39:22 +03:00
|
|
|
private
|
2011-08-21 05:59:51 +04:00
|
|
|
|
2009-12-13 15:39:22 +03:00
|
|
|
def self.prune_single_user(user, options={})
|
|
|
|
return unless user.is_a?(User)
|
|
|
|
pruned = 0
|
|
|
|
find(:all, :conditions => {:user_id => user.id}).each do |watcher|
|
|
|
|
next if watcher.watchable.nil?
|
2011-08-21 05:59:51 +04:00
|
|
|
|
2009-12-13 15:39:22 +03:00
|
|
|
if options.has_key?(:project)
|
|
|
|
next unless watcher.watchable.respond_to?(:project) && watcher.watchable.project == options[:project]
|
|
|
|
end
|
2011-08-21 05:59:51 +04:00
|
|
|
|
2009-12-13 15:39:22 +03:00
|
|
|
if watcher.watchable.respond_to?(:visible?)
|
|
|
|
unless watcher.watchable.visible?(user)
|
|
|
|
watcher.destroy
|
|
|
|
pruned += 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
pruned
|
|
|
|
end
|
2007-04-21 16:08:31 +04:00
|
|
|
end
|