| 
									
										
										
										
											2008-09-28 12:03:17 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							| 
									
										
										
										
											2012-05-05 12:56:53 +00:00
										 |  |  | # Copyright (C) 2006-2012  Jean-Philippe Lang | 
					
						
							| 
									
										
										
										
											2008-09-28 12:03:17 +00: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-31 08:45:01 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2008-09-28 12:03:17 +00: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-31 08:45:01 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2008-09-28 12:03:17 +00: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 WorkflowsController < ApplicationController | 
					
						
							| 
									
										
										
										
											2009-12-17 18:21:02 +00:00
										 |  |  |   layout 'admin' | 
					
						
							| 
									
										
										
										
											2011-08-31 08:45:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-15 15:37:49 +00:00
										 |  |  |   before_filter :require_admin, :find_roles, :find_trackers | 
					
						
							| 
									
										
										
										
											2011-08-31 08:45:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-28 12:03:17 +00:00
										 |  |  |   def index | 
					
						
							| 
									
										
										
										
											2012-07-15 14:12:17 +00:00
										 |  |  |     @workflow_counts = WorkflowTransition.count_by_tracker_and_role | 
					
						
							| 
									
										
										
										
											2008-09-28 12:03:17 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-31 08:45:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-28 12:03:17 +00:00
										 |  |  |   def edit | 
					
						
							| 
									
										
										
										
											2012-07-15 15:39:36 +00:00
										 |  |  |     @role = Role.find_by_id(params[:role_id]) if params[:role_id] | 
					
						
							|  |  |  |     @tracker = Tracker.find_by_id(params[:tracker_id]) if params[:tracker_id] | 
					
						
							| 
									
										
										
										
											2011-08-31 08:45:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-28 12:03:17 +00:00
										 |  |  |     if request.post? | 
					
						
							| 
									
										
										
										
											2012-07-15 14:12:17 +00:00
										 |  |  |       WorkflowTransition.destroy_all( ["role_id=? and tracker_id=?", @role.id, @tracker.id]) | 
					
						
							| 
									
										
										
										
											2011-02-20 15:38:07 +00:00
										 |  |  |       (params[:issue_status] || []).each { |status_id, transitions| | 
					
						
							|  |  |  |         transitions.each { |new_status_id, options| | 
					
						
							|  |  |  |           author = options.is_a?(Array) && options.include?('author') && !options.include?('always') | 
					
						
							|  |  |  |           assignee = options.is_a?(Array) && options.include?('assignee') && !options.include?('always') | 
					
						
							| 
									
										
										
										
											2012-07-15 14:12:17 +00:00
										 |  |  |           WorkflowTransition.create(:role_id => @role.id, :tracker_id => @tracker.id, :old_status_id => status_id, :new_status_id => new_status_id, :author => author, :assignee => assignee) | 
					
						
							| 
									
										
										
										
											2008-09-28 12:03:17 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |       if @role.save | 
					
						
							| 
									
										
										
										
											2012-07-15 15:50:57 +00:00
										 |  |  |         redirect_to :action => 'edit', :role_id => @role, :tracker_id => @tracker, :used_statuses_only => params[:used_statuses_only] | 
					
						
							| 
									
										
										
										
											2011-02-20 15:38:07 +00:00
										 |  |  |         return | 
					
						
							| 
									
										
										
										
											2008-09-28 12:03:17 +00:00
										 |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2011-08-31 08:45:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-18 15:41:32 +00:00
										 |  |  |     @used_statuses_only = (params[:used_statuses_only] == '0' ? false : true) | 
					
						
							|  |  |  |     if @tracker && @used_statuses_only && @tracker.issue_statuses.any? | 
					
						
							|  |  |  |       @statuses = @tracker.issue_statuses | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2012-07-15 15:35:02 +00:00
										 |  |  |     @statuses ||= IssueStatus.sorted.all | 
					
						
							| 
									
										
										
										
											2011-08-31 08:45:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-20 15:38:07 +00:00
										 |  |  |     if @tracker && @role && @statuses.any? | 
					
						
							| 
									
										
										
										
											2012-07-15 15:36:45 +00:00
										 |  |  |       workflows = WorkflowTransition.where(:role_id => @role.id, :tracker_id => @tracker.id).all | 
					
						
							| 
									
										
										
										
											2011-02-20 15:38:07 +00:00
										 |  |  |       @workflows = {} | 
					
						
							|  |  |  |       @workflows['always'] = workflows.select {|w| !w.author && !w.assignee} | 
					
						
							|  |  |  |       @workflows['author'] = workflows.select {|w| w.author} | 
					
						
							|  |  |  |       @workflows['assignee'] = workflows.select {|w| w.assignee} | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2008-09-28 12:03:17 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-31 08:45:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-15 14:12:17 +00:00
										 |  |  |   def permissions | 
					
						
							| 
									
										
										
										
											2012-07-15 15:39:36 +00:00
										 |  |  |     @role = Role.find_by_id(params[:role_id]) if params[:role_id] | 
					
						
							|  |  |  |     @tracker = Tracker.find_by_id(params[:tracker_id]) if params[:tracker_id] | 
					
						
							| 
									
										
										
										
											2012-07-15 14:12:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-15 15:46:14 +00:00
										 |  |  |     if request.post? && @role && @tracker | 
					
						
							|  |  |  |       WorkflowPermission.replace_permissions(@tracker, @role, params[:permissions] || {}) | 
					
						
							| 
									
										
										
										
											2012-07-15 15:50:57 +00:00
										 |  |  |       redirect_to :action => 'permissions', :role_id => @role, :tracker_id => @tracker, :used_statuses_only => params[:used_statuses_only] | 
					
						
							| 
									
										
										
										
											2012-07-15 15:46:14 +00:00
										 |  |  |       return | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2012-07-15 14:12:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-15 15:46:14 +00:00
										 |  |  |     @used_statuses_only = (params[:used_statuses_only] == '0' ? false : true) | 
					
						
							|  |  |  |     if @tracker && @used_statuses_only && @tracker.issue_statuses.any? | 
					
						
							| 
									
										
										
										
											2012-07-15 14:12:17 +00:00
										 |  |  |       @statuses = @tracker.issue_statuses | 
					
						
							| 
									
										
										
										
											2012-07-15 15:46:14 +00:00
										 |  |  |     end | 
					
						
							|  |  |  |     @statuses ||= IssueStatus.sorted.all | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if @role && @tracker | 
					
						
							| 
									
										
										
										
											2012-07-15 14:12:17 +00:00
										 |  |  |       @fields = (Tracker::CORE_FIELDS_ALL - @tracker.disabled_core_fields).map {|field| [field, l("field_"+field.sub(/_id$/, ''))]} | 
					
						
							|  |  |  |       @custom_fields = @tracker.custom_fields | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       @permissions = WorkflowPermission.where(:tracker_id => @tracker.id, :role_id => @role.id).all.inject({}) do |h, w| | 
					
						
							|  |  |  |         h[w.old_status_id] ||= {} | 
					
						
							|  |  |  |         h[w.old_status_id][w.field_name] = w.rule | 
					
						
							|  |  |  |         h | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |       @statuses.each {|status| @permissions[status.id] ||= {}} | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-12 10:06:07 +00:00
										 |  |  |   def copy | 
					
						
							| 
									
										
										
										
											2011-08-31 08:45:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-19 12:40:43 +00:00
										 |  |  |     if params[:source_tracker_id].blank? || params[:source_tracker_id] == 'any' | 
					
						
							|  |  |  |       @source_tracker = nil | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |       @source_tracker = Tracker.find_by_id(params[:source_tracker_id].to_i) | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     if params[:source_role_id].blank? || params[:source_role_id] == 'any' | 
					
						
							|  |  |  |       @source_role = nil | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |       @source_role = Role.find_by_id(params[:source_role_id].to_i) | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2011-08-31 08:45:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-12 10:06:07 +00:00
										 |  |  |     @target_trackers = params[:target_tracker_ids].blank? ? nil : Tracker.find_all_by_id(params[:target_tracker_ids]) | 
					
						
							|  |  |  |     @target_roles = params[:target_role_ids].blank? ? nil : Role.find_all_by_id(params[:target_role_ids]) | 
					
						
							| 
									
										
										
										
											2011-08-31 08:45:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-12 10:06:07 +00:00
										 |  |  |     if request.post? | 
					
						
							|  |  |  |       if params[:source_tracker_id].blank? || params[:source_role_id].blank? || (@source_tracker.nil? && @source_role.nil?) | 
					
						
							|  |  |  |         flash.now[:error] = l(:error_workflow_copy_source) | 
					
						
							|  |  |  |       elsif @target_trackers.nil? || @target_roles.nil? | 
					
						
							|  |  |  |         flash.now[:error] = l(:error_workflow_copy_target) | 
					
						
							|  |  |  |       else | 
					
						
							| 
									
										
										
										
											2012-07-15 14:12:17 +00:00
										 |  |  |         WorkflowRule.copy(@source_tracker, @source_role, @target_trackers, @target_roles) | 
					
						
							| 
									
										
										
										
											2009-12-12 10:06:07 +00:00
										 |  |  |         flash[:notice] = l(:notice_successful_update) | 
					
						
							|  |  |  |         redirect_to :action => 'copy', :source_tracker_id => @source_tracker, :source_role_id => @source_role | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2010-03-04 05:33:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   private | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def find_roles | 
					
						
							| 
									
										
										
										
											2012-07-15 15:36:45 +00:00
										 |  |  |     @roles = Role.sorted.all | 
					
						
							| 
									
										
										
										
											2010-03-04 05:33:45 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-31 08:45:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-04 05:33:45 +00:00
										 |  |  |   def find_trackers | 
					
						
							| 
									
										
										
										
											2012-07-15 15:36:45 +00:00
										 |  |  |     @trackers = Tracker.sorted.all | 
					
						
							| 
									
										
										
										
											2010-03-04 05:33:45 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2008-09-28 12:03:17 +00:00
										 |  |  | end |