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.
|
|
|
|
#++
|
|
|
|
|
2010-08-19 22:16:54 +04:00
|
|
|
class ContextMenusController < ApplicationController
|
2011-05-30 22:52:25 +04:00
|
|
|
|
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)
|
2011-05-30 22:52:25 +04:00
|
|
|
|
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
|
|
|
|
@assignables = @project.assignable_users
|
|
|
|
@assignables << @issue.assigned_to if @issue && @issue.assigned_to && !@assignables.include?(@issue.assigned_to)
|
|
|
|
@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-05-30 22:52:25 +04:00
|
|
|
|
2010-08-19 22:16:54 +04:00
|
|
|
@priorities = IssuePriority.all.reverse
|
|
|
|
@statuses = IssueStatus.find(:all, :order => 'position')
|
|
|
|
@back = back_url
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2010-08-19 22:16:54 +04:00
|
|
|
render :layout => false
|
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2010-08-19 22:16:54 +04:00
|
|
|
end
|