2019-03-15 01:32:57 +00:00
|
|
|
# frozen_string_literal: false
|
|
|
|
|
|
2012-05-05 12:56:53 +00:00
|
|
|
# Redmine - project management software
|
2017-06-25 08:40:31 +00:00
|
|
|
# Copyright (C) 2006-2017 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
|
|
|
|
2016-07-14 07:27:31 +00:00
|
|
|
before_action :find_issues, :only => :issues
|
2013-06-11 18:33:06 +00:00
|
|
|
|
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
|
|
|
}
|
2016-06-28 20:31:08 +00:00
|
|
|
|
|
|
|
|
@assignables = @issues.map(&:assignable_users).reduce(:&)
|
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
|
|
|
|
2019-03-15 07:50:50 +00:00
|
|
|
params = CGI.parse(@back)
|
|
|
|
|
@columns = params["c[]"]
|
|
|
|
|
|
2012-02-09 18:22:11 +00:00
|
|
|
@options_by_custom_field = {}
|
|
|
|
|
if @can[:edit]
|
2016-10-23 11:48:52 +00:00
|
|
|
custom_fields = @issues.map(&:editable_custom_fields).reduce(:&).reject(&:multiple?).select {|field| field.format.bulk_edit_supported}
|
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
|
2016-11-18 08:19:11 +00:00
|
|
|
@time_entries = TimeEntry.where(:id => params[:ids]).
|
|
|
|
|
preload(:project => :time_entry_activities).
|
|
|
|
|
preload(:user).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
|
2016-11-18 08:19:11 +00:00
|
|
|
@activities = @projects.map(&:activities).reduce(:&)
|
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]
|
2016-10-23 11:51:26 +00:00
|
|
|
custom_fields = @time_entries.map(&:editable_custom_fields).reduce(:&).reject(&:multiple?).select {|field| field.format.bulk_edit_supported}
|
2014-07-29 17:52:27 +00:00
|
|
|
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
|