2011-10-29 16:19:11 +04:00
|
|
|
#-- encoding: UTF-8
|
2011-05-30 00:11:52 +04:00
|
|
|
#-- copyright
|
|
|
|
# ChiliProject is a project management system.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# Copyright (C) 2010-2011 the ChiliProject Team
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +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-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
|
|
#++
|
|
|
|
|
2007-04-21 16:08:31 +04:00
|
|
|
class Watcher < ActiveRecord::Base
|
|
|
|
belongs_to :watchable, :polymorphic => true
|
|
|
|
belongs_to :user
|
2011-05-30 22:52:25 +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]
|
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-05-30 22:52:25 +04:00
|
|
|
|
2008-08-03 13:14:43 +04:00
|
|
|
protected
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2008-08-03 13:14:43 +04:00
|
|
|
def validate
|
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-05-30 22:52:25 +04:00
|
|
|
|
2009-12-13 15:39:22 +03:00
|
|
|
private
|
2011-05-30 22:52:25 +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-05-30 22:52:25 +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-05-30 22:52:25 +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
|