| 
									
										
										
										
											2012-05-05 12:56:53 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							| 
									
										
										
										
											2013-01-12 09:29:31 +00:00
										 |  |  | # Copyright (C) 2006-2013  Jean-Philippe Lang | 
					
						
							| 
									
										
										
										
											2012-05-05 12:56:53 +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. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # 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. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-19 18:16:54 +00:00
										 |  |  | class ContextMenusController < ApplicationController | 
					
						
							|  |  |  |   helper :watchers | 
					
						
							| 
									
										
										
										
											2011-04-17 15:17:18 +00:00
										 |  |  |   helper :issues | 
					
						
							| 
									
										
										
										
											2011-08-30 13:03:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-11 18:33:06 +00:00
										 |  |  |   before_filter :find_issues, :only => :issues | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-19 18:16:54 +00:00
										 |  |  |   def issues | 
					
						
							|  |  |  |     if (@issues.size == 1) | 
					
						
							|  |  |  |       @issue = @issues.first | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2012-07-08 13:31:22 +00:00
										 |  |  |     @issue_ids = @issues.map(&:id).sort | 
					
						
							| 
									
										
										
										
											2012-02-09 19:51:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 20:06:36 +00:00
										 |  |  |     @allowed_statuses = @issues.map(&:new_statuses_allowed_to).reduce(:&) | 
					
						
							| 
									
										
										
										
											2010-08-19 18:16:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-08 03:09:51 +00:00
										 |  |  |     @can = {:edit => User.current.allowed_to?(:edit_issues, @projects), | 
					
						
							| 
									
										
										
										
											2010-08-19 18:16:54 +00:00
										 |  |  |             :log_time => (@project && User.current.allowed_to?(:log_time, @project)), | 
					
						
							| 
									
										
										
										
											2010-10-08 03:09:51 +00:00
										 |  |  |             :update => (User.current.allowed_to?(:edit_issues, @projects) || (User.current.allowed_to?(:change_status, @projects) && !@allowed_statuses.blank?)), | 
					
						
							| 
									
										
										
										
											2010-08-19 18:16:54 +00:00
										 |  |  |             :move => (@project && User.current.allowed_to?(:move_issues, @project)), | 
					
						
							|  |  |  |             :copy => (@issue && @project.trackers.include?(@issue.tracker) && User.current.allowed_to?(:add_issues, @project)), | 
					
						
							| 
									
										
										
										
											2010-10-07 05:11:28 +00:00
										 |  |  |             :delete => User.current.allowed_to?(:delete_issues, @projects) | 
					
						
							| 
									
										
										
										
											2010-08-19 18:16:54 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |     if @project | 
					
						
							| 
									
										
										
										
											2011-07-23 20:02:31 +00:00
										 |  |  |       if @issue | 
					
						
							|  |  |  |         @assignables = @issue.assignable_users | 
					
						
							|  |  |  |       else | 
					
						
							|  |  |  |         @assignables = @project.assignable_users | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2010-08-19 18:16:54 +00:00
										 |  |  |       @trackers = @project.trackers | 
					
						
							| 
									
										
										
										
											2010-10-08 03:09:51 +00:00
										 |  |  |     else | 
					
						
							|  |  |  |       #when multiple projects, we only keep the intersection of each set | 
					
						
							| 
									
										
										
										
											2012-02-09 20:06:36 +00:00
										 |  |  |       @assignables = @projects.map(&:assignable_users).reduce(:&) | 
					
						
							|  |  |  |       @trackers = @projects.map(&:trackers).reduce(:&) | 
					
						
							| 
									
										
										
										
											2010-08-19 18:16:54 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2012-07-08 13:19:46 +00:00
										 |  |  |     @versions = @projects.map {|p| p.shared_versions.open}.reduce(:&) | 
					
						
							| 
									
										
										
										
											2011-08-30 13:03:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-13 19:43:40 +00:00
										 |  |  |     @priorities = IssuePriority.active.reverse | 
					
						
							| 
									
										
										
										
											2010-08-19 18:16:54 +00:00
										 |  |  |     @back = back_url | 
					
						
							| 
									
										
										
										
											2011-08-30 13:03:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 18:22:11 +00:00
										 |  |  |     @options_by_custom_field = {} | 
					
						
							|  |  |  |     if @can[:edit] | 
					
						
							| 
									
										
										
										
											2012-02-09 20:06:36 +00:00
										 |  |  |       custom_fields = @issues.map(&:available_custom_fields).reduce(:&).select do |f| | 
					
						
							| 
									
										
										
										
											2012-02-09 18:22:11 +00:00
										 |  |  |         %w(bool list user version).include?(f.field_format) && !f.multiple? | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |       custom_fields.each do |field| | 
					
						
							|  |  |  |         values = field.possible_values_options(@projects) | 
					
						
							|  |  |  |         if values.any? | 
					
						
							|  |  |  |           @options_by_custom_field[field] = values | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-05 12:20:07 +00:00
										 |  |  |     @safe_attributes = @issues.map(&:safe_attribute_names).reduce(:&) | 
					
						
							| 
									
										
										
										
											2010-08-19 18:16:54 +00:00
										 |  |  |     render :layout => false | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-04-04 11:53:03 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   def time_entries | 
					
						
							| 
									
										
										
										
											2013-06-12 19:13:25 +00:00
										 |  |  |     @time_entries = TimeEntry.where(:id => params[:ids]).preload(:project).to_a | 
					
						
							| 
									
										
										
										
											2013-01-20 16:04:25 +00:00
										 |  |  |     (render_404; return) unless @time_entries.present? | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-04 11:53:03 +00:00
										 |  |  |     @projects = @time_entries.collect(&:project).compact.uniq | 
					
						
							|  |  |  |     @project = @projects.first if @projects.size == 1
 | 
					
						
							|  |  |  |     @activities = TimeEntryActivity.shared.active | 
					
						
							| 
									
										
										
										
											2011-11-24 21:31:21 +00:00
										 |  |  |     @can = {:edit   => User.current.allowed_to?(:edit_time_entries, @projects), | 
					
						
							|  |  |  |             :delete => User.current.allowed_to?(:edit_time_entries, @projects) | 
					
						
							| 
									
										
										
										
											2011-04-04 11:53:03 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |     @back = back_url | 
					
						
							|  |  |  |     render :layout => false | 
					
						
							| 
									
										
										
										
											2011-08-30 13:03:57 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2010-08-19 18:16:54 +00:00
										 |  |  | end |