mirror of
https://github.com/meineerde/redmine.git
synced 2026-01-25 08:37:14 +00:00
Patch by Jens Krämer (@jkraemer). git-svn-id: https://svn.redmine.org/redmine/trunk@22916 e93f8b46-1217-0410-a6f0-8f06a7374b81
152 lines
4.9 KiB
Ruby
152 lines
4.9 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
# Redmine - project management software
|
|
# Copyright (C) 2006- Jean-Philippe Lang
|
|
#
|
|
# 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.
|
|
#
|
|
# 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.
|
|
#
|
|
# 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.
|
|
|
|
# ActsAsWatchable
|
|
module Redmine
|
|
module Acts
|
|
module Watchable
|
|
def self.included(base)
|
|
base.extend ClassMethods
|
|
end
|
|
|
|
module ClassMethods
|
|
def acts_as_watchable(options = {})
|
|
return if self.included_modules.include?(Redmine::Acts::Watchable::InstanceMethods)
|
|
|
|
class_eval do
|
|
has_many :watchers, :as => :watchable, :dependent => :delete_all
|
|
has_many :watcher_users, :through => :watchers, :source => :user, :validate => false
|
|
|
|
scope :watched_by, lambda { |principal|
|
|
user_ids = Array(principal.id)
|
|
user_ids |= principal.group_ids if principal.is_a?(User)
|
|
user_ids.compact!
|
|
|
|
joins(:watchers).
|
|
where("#{Watcher.table_name}.user_id IN (?)", user_ids)
|
|
}
|
|
end
|
|
send :include, Redmine::Acts::Watchable::InstanceMethods
|
|
end
|
|
end
|
|
|
|
module InstanceMethods
|
|
def self.included(base)
|
|
base.extend ClassMethods
|
|
end
|
|
|
|
# Returns an array of users that are proposed as watchers
|
|
def addable_watcher_users
|
|
users = self.project.principals.assignable_watchers.sort - self.watcher_users
|
|
if respond_to?(:visible?)
|
|
users.reject! {|user| user.is_a?(User) && !visible?(user)}
|
|
end
|
|
users
|
|
end
|
|
|
|
# array of watchers that the given user is allowed to see
|
|
def visible_watcher_users(user = User.current)
|
|
if user.allowed_to?(:"view_#{self.class.name.underscore}_watchers", project)
|
|
watcher_users
|
|
else
|
|
# without permission, the user can only see themselves (if they're a watcher)
|
|
watcher_users & [user]
|
|
end
|
|
end
|
|
|
|
# true if user can be added as a watcher
|
|
def valid_watcher?(user)
|
|
return true unless respond_to?(:visible?)
|
|
return true unless user.is_a?(User)
|
|
|
|
visible?(user)
|
|
end
|
|
|
|
# Adds user as a watcher
|
|
def add_watcher(user)
|
|
if persisted?
|
|
# Rails does not reset the has_many :through association
|
|
watcher_users.reset
|
|
self.watchers << Watcher.new(:user => user)
|
|
else
|
|
self.watcher_users << user
|
|
end
|
|
end
|
|
|
|
# Removes user from the watchers list
|
|
def remove_watcher(user)
|
|
return nil unless user && (user.is_a?(User) || user.is_a?(Group))
|
|
|
|
if persisted?
|
|
# Rails does not reset the has_many :through association
|
|
watcher_users.reset
|
|
watchers.where(:user_id => user.id).delete_all
|
|
else
|
|
watcher_users.delete(user)
|
|
end
|
|
end
|
|
|
|
# Adds/removes watcher
|
|
def set_watcher(user, watching=true)
|
|
watching ? add_watcher(user) : remove_watcher(user)
|
|
end
|
|
|
|
# Overrides watcher_user_ids= to make user_ids uniq
|
|
def watcher_user_ids=(user_ids)
|
|
if user_ids.is_a?(Array)
|
|
user_ids = user_ids.uniq
|
|
end
|
|
super user_ids
|
|
end
|
|
|
|
# Returns true if object is watched by +principal+, that is
|
|
# either by a given group,
|
|
# or by a given user or any of their groups
|
|
def watched_by?(principal)
|
|
return false unless principal
|
|
|
|
user_ids = Array(principal.id)
|
|
user_ids |= principal.group_ids if principal.is_a?(User)
|
|
user_ids.compact!
|
|
|
|
(self.watcher_user_ids & user_ids).any?
|
|
end
|
|
|
|
def notified_watchers
|
|
notified = watcher_users.active.to_a
|
|
notified = notified.map {|n| n.is_a?(Group) ? n.users.active : n}.flatten
|
|
notified.uniq!
|
|
notified.reject! {|user| user.mail.blank? || user.mail_notification == 'none'}
|
|
if respond_to?(:visible?)
|
|
notified.reject! {|user| !visible?(user)}
|
|
end
|
|
notified
|
|
end
|
|
|
|
# Returns an array of watchers' email addresses
|
|
def watcher_recipients
|
|
notified_watchers.collect(&:mail)
|
|
end
|
|
|
|
module ClassMethods; end
|
|
end
|
|
end
|
|
end
|
|
end
|