2011-10-29 14:19:11 +02:00
|
|
|
#-- encoding: UTF-8
|
2011-05-29 13:11:52 -07:00
|
|
|
#-- copyright
|
|
|
|
# ChiliProject is a project management system.
|
2011-05-30 20:52:25 +02:00
|
|
|
#
|
2012-01-03 20:36:40 +01:00
|
|
|
# Copyright (C) 2010-2012 the ChiliProject Team
|
2011-05-30 20:52:25 +02:00
|
|
|
#
|
2011-05-29 13:11:52 -07: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 20:52:25 +02:00
|
|
|
#
|
2011-05-29 13:11:52 -07:00
|
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
|
|
#++
|
|
|
|
|
2007-04-21 12:08:31 +00:00
|
|
|
class WatchersController < ApplicationController
|
2008-08-03 09:14:43 +00:00
|
|
|
before_filter :find_project
|
|
|
|
before_filter :require_login, :check_project_privacy, :only => [:watch, :unwatch]
|
2009-10-25 12:11:53 +00:00
|
|
|
before_filter :authorize, :only => [:new, :destroy]
|
2011-05-30 20:52:25 +02:00
|
|
|
|
2008-08-03 09:14:43 +00:00
|
|
|
verify :method => :post,
|
|
|
|
:only => [ :watch, :unwatch ],
|
|
|
|
:render => { :nothing => true, :status => :method_not_allowed }
|
2011-05-30 20:52:25 +02:00
|
|
|
|
2008-08-03 09:14:43 +00:00
|
|
|
def watch
|
2009-12-13 14:48:28 +00:00
|
|
|
if @watched.respond_to?(:visible?) && !@watched.visible?(User.current)
|
|
|
|
render_403
|
|
|
|
else
|
|
|
|
set_watcher(User.current, true)
|
|
|
|
end
|
2008-08-03 09:14:43 +00:00
|
|
|
end
|
2011-05-30 20:52:25 +02:00
|
|
|
|
2008-08-03 09:14:43 +00:00
|
|
|
def unwatch
|
|
|
|
set_watcher(User.current, false)
|
2007-04-21 12:08:31 +00:00
|
|
|
end
|
2011-05-30 20:52:25 +02:00
|
|
|
|
2008-08-03 09:14:43 +00:00
|
|
|
def new
|
|
|
|
@watcher = Watcher.new(params[:watcher])
|
|
|
|
@watcher.watchable = @watched
|
|
|
|
@watcher.save if request.post?
|
2007-05-13 19:43:35 +00:00
|
|
|
respond_to do |format|
|
2008-06-29 19:56:20 +00:00
|
|
|
format.html { redirect_to :back }
|
2008-08-03 09:14:43 +00:00
|
|
|
format.js do
|
|
|
|
render :update do |page|
|
|
|
|
page.replace_html 'watchers', :partial => 'watchers/watchers', :locals => {:watched => @watched}
|
|
|
|
end
|
|
|
|
end
|
2007-05-13 19:43:35 +00:00
|
|
|
end
|
2008-08-03 09:14:43 +00:00
|
|
|
rescue ::ActionController::RedirectBackError
|
|
|
|
render :text => 'Watcher added.', :layout => true
|
2007-04-21 12:08:31 +00:00
|
|
|
end
|
2011-05-30 20:52:25 +02:00
|
|
|
|
2009-10-25 12:11:53 +00:00
|
|
|
def destroy
|
|
|
|
@watched.set_watcher(User.find(params[:user_id]), false) if request.post?
|
|
|
|
respond_to do |format|
|
|
|
|
format.html { redirect_to :back }
|
|
|
|
format.js do
|
|
|
|
render :update do |page|
|
|
|
|
page.replace_html 'watchers', :partial => 'watchers/watchers', :locals => {:watched => @watched}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2011-05-30 20:52:25 +02:00
|
|
|
|
2007-04-21 12:08:31 +00:00
|
|
|
private
|
|
|
|
def find_project
|
2007-05-13 19:43:35 +00:00
|
|
|
klass = Object.const_get(params[:object_type].camelcase)
|
|
|
|
return false unless klass.respond_to?('watched_by')
|
|
|
|
@watched = klass.find(params[:object_id])
|
|
|
|
@project = @watched.project
|
|
|
|
rescue
|
|
|
|
render_404
|
2007-04-21 12:08:31 +00:00
|
|
|
end
|
2011-05-30 20:52:25 +02:00
|
|
|
|
2008-08-03 09:14:43 +00:00
|
|
|
def set_watcher(user, watching)
|
|
|
|
@watched.set_watcher(user, watching)
|
2011-05-17 18:15:34 +02:00
|
|
|
|
2008-08-03 09:14:43 +00:00
|
|
|
respond_to do |format|
|
|
|
|
format.html { redirect_to :back }
|
2009-12-03 18:41:00 +00:00
|
|
|
format.js do
|
2011-05-17 19:51:17 +02:00
|
|
|
if params[:replace].present?
|
|
|
|
if params[:replace].is_a? Array
|
|
|
|
@replace_selectors = params[:replace]
|
|
|
|
else
|
|
|
|
@replace_selectors = params[:replace].split(',').map(&:strip)
|
2009-12-03 18:41:00 +00:00
|
|
|
end
|
2011-05-17 19:51:17 +02:00
|
|
|
else
|
|
|
|
@replace_selectors = ['#watcher']
|
2009-12-03 18:41:00 +00:00
|
|
|
end
|
2011-05-17 19:51:17 +02:00
|
|
|
@user = user
|
|
|
|
|
|
|
|
render :action => 'replace_selectors'
|
2009-12-03 18:41:00 +00:00
|
|
|
end
|
2008-08-03 09:14:43 +00:00
|
|
|
end
|
|
|
|
rescue ::ActionController::RedirectBackError
|
|
|
|
render :text => (watching ? 'Watcher added.' : 'Watcher removed.'), :layout => true
|
|
|
|
end
|
2007-04-21 12:08:31 +00:00
|
|
|
end
|