| 
									
										
										
										
											2019-03-16 09:37:35 +00:00
										 |  |  | # frozen_string_literal: true | 
					
						
							| 
									
										
										
										
											2019-03-15 01:32:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-31 12:18:53 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							| 
									
										
										
										
											2020-03-03 00:24:10 +00:00
										 |  |  | # Copyright (C) 2006-2020  Jean-Philippe Lang | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +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. | 
					
						
							| 
									
										
										
										
											2011-08-31 12:18:53 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  | # 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. | 
					
						
							| 
									
										
										
										
											2011-08-31 12:18:53 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  | # 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. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  | class IssueCategoriesController < ApplicationController | 
					
						
							| 
									
										
										
										
											2008-01-19 11:53:43 +00:00
										 |  |  |   menu_item :settings | 
					
						
							| 
									
										
										
										
											2010-03-17 15:41:58 +00:00
										 |  |  |   model_object IssueCategory | 
					
						
							| 
									
										
										
										
											2016-07-14 07:27:31 +00:00
										 |  |  |   before_action :find_model_object, :except => [:index, :new, :create] | 
					
						
							|  |  |  |   before_action :find_project_from_association, :except => [:index, :new, :create] | 
					
						
							|  |  |  |   before_action :find_project_by_project_id, :only => [:index, :new, :create] | 
					
						
							|  |  |  |   before_action :authorize | 
					
						
							| 
									
										
										
										
											2011-11-20 17:09:01 +00:00
										 |  |  |   accept_api_auth :index, :show, :create, :update, :destroy | 
					
						
							| 
									
										
										
										
											2012-10-12 22:57:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-20 17:09:01 +00:00
										 |  |  |   def index | 
					
						
							|  |  |  |     respond_to do |format| | 
					
						
							| 
									
										
										
										
											2012-12-11 17:51:30 +00:00
										 |  |  |       format.html { redirect_to_settings_in_projects } | 
					
						
							| 
									
										
										
										
											2014-10-22 17:37:16 +00:00
										 |  |  |       format.api { @categories = @project.issue_categories.to_a } | 
					
						
							| 
									
										
										
										
											2011-11-20 17:09:01 +00:00
										 |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def show | 
					
						
							|  |  |  |     respond_to do |format| | 
					
						
							| 
									
										
										
										
											2012-12-11 17:51:30 +00:00
										 |  |  |       format.html { redirect_to_settings_in_projects } | 
					
						
							| 
									
										
										
										
											2011-11-20 17:09:01 +00:00
										 |  |  |       format.api | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-31 12:18:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-06 18:43:00 +00:00
										 |  |  |   def new | 
					
						
							| 
									
										
										
										
											2012-03-06 18:59:32 +00:00
										 |  |  |     @category = @project.issue_categories.build | 
					
						
							|  |  |  |     @category.safe_attributes = params[:issue_category] | 
					
						
							| 
									
										
										
										
											2012-05-24 17:31:53 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     respond_to do |format| | 
					
						
							|  |  |  |       format.html | 
					
						
							| 
									
										
										
										
											2012-07-19 16:43:33 +00:00
										 |  |  |       format.js | 
					
						
							| 
									
										
										
										
											2012-05-24 17:31:53 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2011-11-20 15:55:19 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def create | 
					
						
							| 
									
										
										
										
											2012-03-06 18:59:32 +00:00
										 |  |  |     @category = @project.issue_categories.build | 
					
						
							|  |  |  |     @category.safe_attributes = params[:issue_category] | 
					
						
							| 
									
										
										
										
											2011-11-20 15:55:19 +00:00
										 |  |  |     if @category.save | 
					
						
							|  |  |  |       respond_to do |format| | 
					
						
							|  |  |  |         format.html do | 
					
						
							|  |  |  |           flash[:notice] = l(:notice_successful_create) | 
					
						
							| 
									
										
										
										
											2012-12-11 17:51:30 +00:00
										 |  |  |           redirect_to_settings_in_projects | 
					
						
							| 
									
										
										
										
											2010-03-06 18:43:00 +00:00
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2012-07-19 16:43:33 +00:00
										 |  |  |         format.js | 
					
						
							| 
									
										
										
										
											2011-11-20 17:09:01 +00:00
										 |  |  |         format.api { render :action => 'show', :status => :created, :location => issue_category_path(@category) } | 
					
						
							| 
									
										
										
										
											2011-11-20 15:55:19 +00:00
										 |  |  |       end | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |       respond_to do |format| | 
					
						
							|  |  |  |         format.html { render :action => 'new'} | 
					
						
							| 
									
										
										
										
											2012-07-19 16:43:33 +00:00
										 |  |  |         format.js   { render :action => 'new'} | 
					
						
							| 
									
										
										
										
											2011-11-20 17:09:01 +00:00
										 |  |  |         format.api { render_validation_errors(@category) } | 
					
						
							| 
									
										
										
										
											2010-03-06 18:43:00 +00:00
										 |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-31 12:18:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  |   def edit | 
					
						
							| 
									
										
										
										
											2011-11-20 15:55:19 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def update | 
					
						
							| 
									
										
										
										
											2012-03-06 18:59:32 +00:00
										 |  |  |     @category.safe_attributes = params[:issue_category] | 
					
						
							|  |  |  |     if @category.save | 
					
						
							| 
									
										
										
										
											2011-11-20 17:09:01 +00:00
										 |  |  |       respond_to do |format| | 
					
						
							| 
									
										
										
										
											2020-11-09 13:24:29 +00:00
										 |  |  |         format.html do | 
					
						
							| 
									
										
										
										
											2011-11-20 17:09:01 +00:00
										 |  |  |           flash[:notice] = l(:notice_successful_update) | 
					
						
							| 
									
										
										
										
											2012-12-11 17:51:30 +00:00
										 |  |  |           redirect_to_settings_in_projects | 
					
						
							| 
									
										
										
										
											2020-11-09 13:24:29 +00:00
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2012-07-14 08:13:55 +00:00
										 |  |  |         format.api { render_api_ok } | 
					
						
							| 
									
										
										
										
											2011-11-20 17:09:01 +00:00
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2011-11-20 15:55:19 +00:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2011-11-20 17:09:01 +00:00
										 |  |  |       respond_to do |format| | 
					
						
							|  |  |  |         format.html { render :action => 'edit' } | 
					
						
							|  |  |  |         format.api { render_validation_errors(@category) } | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def destroy | 
					
						
							| 
									
										
										
										
											2007-09-15 16:52:32 +00:00
										 |  |  |     @issue_count = @category.issues.size | 
					
						
							| 
									
										
										
										
											2012-10-12 22:57:15 +00:00
										 |  |  |     if @issue_count == 0 || params[:todo] || api_request? | 
					
						
							| 
									
										
										
										
											2011-11-20 17:09:01 +00:00
										 |  |  |       reassign_to = nil | 
					
						
							|  |  |  |       if params[:reassign_to_id] && (params[:todo] == 'reassign' || params[:todo].blank?) | 
					
						
							|  |  |  |         reassign_to = @project.issue_categories.find_by_id(params[:reassign_to_id]) | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2007-09-15 16:52:32 +00:00
										 |  |  |       @category.destroy(reassign_to) | 
					
						
							| 
									
										
										
										
											2011-11-20 17:09:01 +00:00
										 |  |  |       respond_to do |format| | 
					
						
							| 
									
										
										
										
											2012-12-11 17:51:30 +00:00
										 |  |  |         format.html { redirect_to_settings_in_projects } | 
					
						
							| 
									
										
										
										
											2012-07-14 08:13:55 +00:00
										 |  |  |         format.api { render_api_ok } | 
					
						
							| 
									
										
										
										
											2011-11-20 17:09:01 +00:00
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2011-05-01 23:15:03 +00:00
										 |  |  |       return | 
					
						
							| 
									
										
										
										
											2007-09-15 16:52:32 +00:00
										 |  |  |     end | 
					
						
							|  |  |  |     @categories = @project.issue_categories - [@category] | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-11 17:51:30 +00:00
										 |  |  |   private | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def redirect_to_settings_in_projects | 
					
						
							|  |  |  |     redirect_to settings_project_path(@project, :tab => 'categories') | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-17 15:41:58 +00:00
										 |  |  |   # Wrap ApplicationController's find_model_object method to set | 
					
						
							|  |  |  |   # @category instead of just @issue_category | 
					
						
							|  |  |  |   def find_model_object | 
					
						
							|  |  |  |     super | 
					
						
							|  |  |  |     @category = @object | 
					
						
							| 
									
										
										
										
											2011-08-31 12:18:53 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  | end |