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
|
|
|
#
|
2012-01-03 23:36:40 +04:00
|
|
|
# Copyright (C) 2010-2012 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 WatchersController < ApplicationController
|
2008-08-03 13:14:43 +04:00
|
|
|
before_filter :find_project
|
|
|
|
before_filter :require_login, :check_project_privacy, :only => [:watch, :unwatch]
|
2009-10-25 15:11:53 +03:00
|
|
|
before_filter :authorize, :only => [:new, :destroy]
|
2010-12-14 20:11:48 +03:00
|
|
|
before_filter :authorize_access_to_object, :only => [:new, :destroy]
|
2012-01-18 22:26:03 +04:00
|
|
|
|
2008-08-03 13:14:43 +04:00
|
|
|
verify :method => :post,
|
|
|
|
:only => [ :watch, :unwatch ],
|
|
|
|
:render => { :nothing => true, :status => :method_not_allowed }
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2008-08-03 13:14:43 +04:00
|
|
|
def watch
|
2009-12-13 17:48:28 +03:00
|
|
|
if @watched.respond_to?(:visible?) && !@watched.visible?(User.current)
|
|
|
|
render_403
|
|
|
|
else
|
|
|
|
set_watcher(User.current, true)
|
|
|
|
end
|
2008-08-03 13:14:43 +04:00
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2008-08-03 13:14:43 +04:00
|
|
|
def unwatch
|
|
|
|
set_watcher(User.current, false)
|
2007-04-21 16:08:31 +04:00
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2008-08-03 13:14:43 +04:00
|
|
|
def new
|
2010-12-04 01:43:03 +03:00
|
|
|
params[:user_ids].each do |user_id|
|
|
|
|
@watcher = Watcher.new((params[:watcher] || {}).merge({:user_id => user_id}))
|
|
|
|
@watcher.watchable = @watched
|
|
|
|
@watcher.save if request.post?
|
|
|
|
end if params[:user_ids].present?
|
2012-01-18 22:26:03 +04:00
|
|
|
|
2007-05-13 23:43:35 +04:00
|
|
|
respond_to do |format|
|
2008-06-29 23:56:20 +04:00
|
|
|
format.html { redirect_to :back }
|
2008-08-03 13:14:43 +04:00
|
|
|
format.js do
|
|
|
|
render :update do |page|
|
|
|
|
page.replace_html 'watchers', :partial => 'watchers/watchers', :locals => {:watched => @watched}
|
|
|
|
end
|
|
|
|
end
|
2007-05-13 23:43:35 +04:00
|
|
|
end
|
2008-08-03 13:14:43 +04:00
|
|
|
rescue ::ActionController::RedirectBackError
|
|
|
|
render :text => 'Watcher added.', :layout => true
|
2007-04-21 16:08:31 +04:00
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2009-10-25 15:11:53 +03:00
|
|
|
def destroy
|
2011-04-19 22:49:49 +04:00
|
|
|
@watched.set_watcher(Principal.find(params[:user_id]), false) if request.post?
|
2009-10-25 15:11:53 +03:00
|
|
|
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 22:52:25 +04:00
|
|
|
|
2007-04-21 16:08:31 +04:00
|
|
|
private
|
|
|
|
def find_project
|
2007-05-13 23:43:35 +04: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 16:08:31 +04:00
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2008-08-03 13:14:43 +04:00
|
|
|
def set_watcher(user, watching)
|
|
|
|
@watched.set_watcher(user, watching)
|
2011-05-17 20:15:34 +04:00
|
|
|
|
2008-08-03 13:14:43 +04:00
|
|
|
respond_to do |format|
|
|
|
|
format.html { redirect_to :back }
|
2009-12-03 21:41:00 +03:00
|
|
|
format.js do
|
2011-05-17 21:51:17 +04: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 21:41:00 +03:00
|
|
|
end
|
2011-05-17 21:51:17 +04:00
|
|
|
else
|
|
|
|
@replace_selectors = ['#watcher']
|
2009-12-03 21:41:00 +03:00
|
|
|
end
|
2011-05-17 21:51:17 +04:00
|
|
|
@user = user
|
|
|
|
|
|
|
|
render :action => 'replace_selectors'
|
2009-12-03 21:41:00 +03:00
|
|
|
end
|
2008-08-03 13:14:43 +04:00
|
|
|
end
|
|
|
|
rescue ::ActionController::RedirectBackError
|
|
|
|
render :text => (watching ? 'Watcher added.' : 'Watcher removed.'), :layout => true
|
|
|
|
end
|
2010-12-14 20:11:48 +03:00
|
|
|
|
|
|
|
def authorize_access_to_object
|
2010-12-14 20:16:45 +03:00
|
|
|
permission = ''
|
|
|
|
case params[:action]
|
|
|
|
when 'new'
|
|
|
|
permission << 'add_'
|
|
|
|
when 'destroy'
|
|
|
|
permission << 'delete_'
|
2010-12-14 20:11:48 +03:00
|
|
|
end
|
|
|
|
|
2010-12-14 20:16:45 +03:00
|
|
|
# Ends up like: :delete_wiki_page_watchers
|
|
|
|
permission << "#{@watched.class.name.underscore}_watchers"
|
|
|
|
|
|
|
|
if User.current.allowed_to?(permission.to_sym, @project)
|
|
|
|
return true
|
|
|
|
else
|
|
|
|
deny_access
|
|
|
|
end
|
2010-12-14 20:11:48 +03:00
|
|
|
end
|
2012-01-18 22:26:03 +04:00
|
|
|
|
2007-04-21 16:08:31 +04:00
|
|
|
end
|