| 
									
										
										
										
											2012-05-05 12:56:53 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							| 
									
										
										
										
											2016-03-13 10:30:10 +00:00
										 |  |  | # Copyright (C) 2006-2016  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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-05 13:45:10 +00:00
										 |  |  |     @can = {:edit => @issues.all?(&:attributes_editable?), | 
					
						
							| 
									
										
										
										
											2010-08-19 18:16:54 +00:00
										 |  |  |             :log_time => (@project && User.current.allowed_to?(:log_time, @project)), | 
					
						
							| 
									
										
										
										
											2015-02-08 12:07:00 +00:00
										 |  |  |             :copy => User.current.allowed_to?(:copy_issues, @projects) && Issue.allowed_target_projects.any?, | 
					
						
							| 
									
										
										
										
											2016-04-09 07:37:49 +00:00
										 |  |  |             :add_watchers => User.current.allowed_to?(:add_issue_watchers, @projects), | 
					
						
							| 
									
										
										
										
											2016-06-05 13:45:10 +00:00
										 |  |  |             :delete => @issues.all?(&:deletable?) | 
					
						
							| 
									
										
										
										
											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-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(:&) | 
					
						
							| 
									
										
										
										
											2010-08-19 18:16:54 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2016-05-30 18:20:13 +00:00
										 |  |  |     @trackers = @projects.map {|p| Issue.allowed_target_trackers(p) }.reduce(:&) | 
					
						
							| 
									
										
										
										
											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] | 
					
						
							| 
									
										
										
										
											2014-05-02 07:32:41 +00:00
										 |  |  |       custom_fields = @issues.map(&:editable_custom_fields).reduce(:&).reject(&:multiple?) | 
					
						
							| 
									
										
										
										
											2012-02-09 18:22:11 +00:00
										 |  |  |       custom_fields.each do |field| | 
					
						
							|  |  |  |         values = field.possible_values_options(@projects) | 
					
						
							| 
									
										
										
										
											2013-12-14 08:57:30 +00:00
										 |  |  |         if values.present? | 
					
						
							| 
									
										
										
										
											2012-02-09 18:22:11 +00:00
										 |  |  |           @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? | 
					
						
							| 
									
										
										
										
											2014-07-29 17:52:27 +00:00
										 |  |  |     if (@time_entries.size == 1) | 
					
						
							|  |  |  |       @time_entry = @time_entries.first | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2013-01-20 16:04:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							| 
									
										
										
										
											2015-05-09 10:10:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     edit_allowed = @time_entries.all? {|t| t.editable_by?(User.current)} | 
					
						
							|  |  |  |     @can = {:edit => edit_allowed, :delete => edit_allowed} | 
					
						
							| 
									
										
										
										
											2011-04-04 11:53:03 +00:00
										 |  |  |     @back = back_url | 
					
						
							| 
									
										
										
										
											2014-07-29 17:52:27 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     @options_by_custom_field = {} | 
					
						
							|  |  |  |     if @can[:edit] | 
					
						
							|  |  |  |       custom_fields = @time_entries.map(&:editable_custom_fields).reduce(:&).reject(&:multiple?) | 
					
						
							|  |  |  |       custom_fields.each do |field| | 
					
						
							|  |  |  |         values = field.possible_values_options(@projects) | 
					
						
							|  |  |  |         if values.present? | 
					
						
							|  |  |  |           @options_by_custom_field[field] = values | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-04 11:53:03 +00:00
										 |  |  |     render :layout => false | 
					
						
							| 
									
										
										
										
											2011-08-30 13:03:57 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2010-08-19 18:16:54 +00:00
										 |  |  | end |