2010-08-19 22:16:54 +04:00
|
|
|
class ContextMenusController < ApplicationController
|
|
|
|
helper :watchers
|
2011-04-17 19:17:18 +04:00
|
|
|
helper :issues
|
2010-08-19 22:16:54 +04:00
|
|
|
|
|
|
|
def issues
|
2010-12-29 22:55:52 +03:00
|
|
|
@issues = Issue.visible.all(:conditions => {:id => params[:ids]}, :include => :project)
|
|
|
|
|
2010-08-19 22:16:54 +04:00
|
|
|
if (@issues.size == 1)
|
|
|
|
@issue = @issues.first
|
|
|
|
@allowed_statuses = @issue.new_statuses_allowed_to(User.current)
|
2010-09-03 23:54:24 +04:00
|
|
|
else
|
|
|
|
@allowed_statuses = @issues.map do |i|
|
|
|
|
i.new_statuses_allowed_to(User.current)
|
|
|
|
end.inject do |memo,s|
|
|
|
|
memo & s
|
|
|
|
end
|
2010-08-19 22:16:54 +04:00
|
|
|
end
|
2010-09-04 01:43:07 +04:00
|
|
|
@projects = @issues.collect(&:project).compact.uniq
|
|
|
|
@project = @projects.first if @projects.size == 1
|
2010-08-19 22:16:54 +04:00
|
|
|
|
2010-10-08 07:09:51 +04:00
|
|
|
@can = {:edit => User.current.allowed_to?(:edit_issues, @projects),
|
2010-08-19 22:16:54 +04:00
|
|
|
:log_time => (@project && User.current.allowed_to?(:log_time, @project)),
|
2010-10-08 07:09:51 +04:00
|
|
|
:update => (User.current.allowed_to?(:edit_issues, @projects) || (User.current.allowed_to?(:change_status, @projects) && !@allowed_statuses.blank?)),
|
2010-08-19 22:16:54 +04: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 09:11:28 +04:00
|
|
|
:delete => User.current.allowed_to?(:delete_issues, @projects)
|
2010-08-19 22:16:54 +04:00
|
|
|
}
|
|
|
|
if @project
|
2011-07-24 00:02:31 +04:00
|
|
|
if @issue
|
|
|
|
@assignables = @issue.assignable_users
|
|
|
|
else
|
|
|
|
@assignables = @project.assignable_users
|
|
|
|
end
|
2010-08-19 22:16:54 +04:00
|
|
|
@trackers = @project.trackers
|
2010-10-08 07:09:51 +04:00
|
|
|
else
|
|
|
|
#when multiple projects, we only keep the intersection of each set
|
|
|
|
@assignables = @projects.map(&:assignable_users).inject{|memo,a| memo & a}
|
|
|
|
@trackers = @projects.map(&:trackers).inject{|memo,t| memo & t}
|
2010-08-19 22:16:54 +04:00
|
|
|
end
|
|
|
|
|
2011-06-13 23:43:40 +04:00
|
|
|
@priorities = IssuePriority.active.reverse
|
2010-08-19 22:16:54 +04:00
|
|
|
@statuses = IssueStatus.find(:all, :order => 'position')
|
|
|
|
@back = back_url
|
|
|
|
|
|
|
|
render :layout => false
|
|
|
|
end
|
2011-04-04 15:53:03 +04:00
|
|
|
|
|
|
|
def time_entries
|
|
|
|
@time_entries = TimeEntry.all(
|
|
|
|
:conditions => {:id => params[:ids]}, :include => :project)
|
|
|
|
@projects = @time_entries.collect(&:project).compact.uniq
|
|
|
|
@project = @projects.first if @projects.size == 1
|
|
|
|
@activities = TimeEntryActivity.shared.active
|
|
|
|
@can = {:edit => User.current.allowed_to?(:log_time, @projects),
|
|
|
|
:update => User.current.allowed_to?(:log_time, @projects),
|
|
|
|
:delete => User.current.allowed_to?(:log_time, @projects)
|
|
|
|
}
|
|
|
|
@back = back_url
|
|
|
|
render :layout => false
|
|
|
|
end
|
2010-08-19 22:16:54 +04:00
|
|
|
end
|