Project

General

Profile

Download (2.6 KB) Statistics
| Branch: | Tag: | Revision:
# redMine - project management software
# Copyright (C) 2006 Jean-Philippe Lang
#
# 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.

class RolesController < ApplicationController
include Foreman::Controller::AutoCompleteSearch
include Foreman::Controller::Parameters::Role
before_action :find_resource, :only => [ :clone, :edit, :update, :destroy, :disable_filters_overriding ]

def index
params[:order] ||= 'name'
@roles = Role.authorized(:view_roles).search_for(params[:search], :order => params[:order]).paginate(:page => params[:page], :per_page => params[:per_page])
end

def new
@role = Role.new
end

def create
@role = role_from_form

if @role.save
process_success
else
if cloning?
@cloned_role = true
@original_role_id = params[:original_role_id]
end
process_error
end
end

def clone
@cloned_role = true
@original_role_id = @role.id
@role = Role.new
render :action => :new
end

def edit
end

def update
if @role.update(role_params)
process_success
else
process_error
end
end

def destroy
if @role.destroy
process_success
else
process_error
end
end

def disable_filters_overriding
@role.disable_filters_overriding
process_success :success_msg => _('Filters overriding has been disabled')
end

private

def action_permission
case params[:action]
when 'clone'
'view'
when 'disable_filters_overriding'
'edit'
else
super
end
end

def role_from_form
if cloning?
new_role = Role.find(params[:original_role_id]).clone
new_role.name = params[:role][:name]
new_role.organization_ids = params[:role][:organization_ids]
new_role.location_ids = params[:role][:location_ids]
new_role.builtin = 0
else
new_role = Role.new(role_params)
end

new_role
end

def cloning?
params[:original_role_id].present?
end
end
(46-46/58)