2011-08-31 12:43:49 +04:00
|
|
|
# Redmine - project management software
|
2012-05-05 16:56:53 +04:00
|
|
|
# Copyright (C) 2006-2012 Jean-Philippe Lang
|
2007-03-12 20:59:02 +03: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:43:49 +04:00
|
|
|
#
|
2007-03-12 20:59:02 +03: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:43:49 +04:00
|
|
|
#
|
2007-03-12 20:59:02 +03: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.
|
|
|
|
|
|
|
|
class RolesController < ApplicationController
|
2009-12-17 21:21:02 +03:00
|
|
|
layout 'admin'
|
2011-08-31 12:43:49 +04:00
|
|
|
|
2012-10-12 21:22:52 +04:00
|
|
|
before_filter :require_admin, :except => [:index, :show]
|
|
|
|
before_filter :require_admin_or_api_request, :only => [:index, :show]
|
|
|
|
before_filter :find_role, :only => [:show, :edit, :update, :destroy]
|
2012-11-30 11:48:47 +04:00
|
|
|
accept_api_auth :index, :show
|
2007-01-28 03:00:21 +03:00
|
|
|
|
2006-06-28 22:11:03 +04:00
|
|
|
def index
|
2012-02-06 14:06:32 +04:00
|
|
|
respond_to do |format|
|
|
|
|
format.html {
|
2012-12-17 22:23:30 +04:00
|
|
|
@role_pages, @roles = paginate Role.sorted, :per_page => 25
|
2012-02-06 14:06:32 +04:00
|
|
|
render :action => "index", :layout => false if request.xhr?
|
|
|
|
}
|
|
|
|
format.api {
|
|
|
|
@roles = Role.givable.all
|
|
|
|
}
|
|
|
|
end
|
2006-06-28 22:11:03 +04:00
|
|
|
end
|
|
|
|
|
2012-10-12 21:22:52 +04:00
|
|
|
def show
|
|
|
|
respond_to do |format|
|
|
|
|
format.api
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2006-06-28 22:11:03 +04:00
|
|
|
def new
|
2012-09-03 21:04:28 +04:00
|
|
|
# Prefills the form with 'Non member' role permissions by default
|
2007-12-02 15:58:07 +03:00
|
|
|
@role = Role.new(params[:role] || {:permissions => Role.non_member.permissions})
|
2012-09-03 21:04:28 +04:00
|
|
|
if params[:copy].present? && @copy_from = Role.find_by_id(params[:copy])
|
|
|
|
@role.copy_from(@copy_from)
|
|
|
|
end
|
2011-12-15 02:24:20 +04:00
|
|
|
@roles = Role.sorted.all
|
2011-12-10 03:29:58 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
@role = Role.new(params[:role])
|
2007-08-29 20:52:35 +04:00
|
|
|
if request.post? && @role.save
|
2008-03-15 11:27:38 +03:00
|
|
|
# workflow copy
|
|
|
|
if !params[:copy_workflow_from].blank? && (copy_from = Role.find_by_id(params[:copy_workflow_from]))
|
2012-07-15 18:12:17 +04:00
|
|
|
@role.workflow_rules.copy(copy_from)
|
2008-03-15 11:27:38 +03:00
|
|
|
end
|
2007-08-29 20:52:35 +04:00
|
|
|
flash[:notice] = l(:notice_successful_create)
|
2012-12-11 23:39:47 +04:00
|
|
|
redirect_to roles_path
|
2011-05-02 03:15:03 +04:00
|
|
|
else
|
2011-12-15 02:24:20 +04:00
|
|
|
@roles = Role.sorted.all
|
2011-12-10 03:29:58 +04:00
|
|
|
render :action => 'new'
|
2006-06-28 22:11:03 +04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
2011-12-10 03:29:58 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
if request.put? and @role.update_attributes(params[:role])
|
2006-07-30 14:47:02 +04:00
|
|
|
flash[:notice] = l(:notice_successful_update)
|
2012-12-11 23:39:47 +04:00
|
|
|
redirect_to roles_path
|
2011-05-02 03:15:03 +04:00
|
|
|
else
|
2011-12-10 03:29:58 +04:00
|
|
|
render :action => 'edit'
|
2006-06-28 22:11:03 +04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
2008-02-17 00:05:10 +03:00
|
|
|
@role.destroy
|
2012-12-11 23:39:47 +04:00
|
|
|
redirect_to roles_path
|
2008-02-17 00:05:10 +03:00
|
|
|
rescue
|
2010-04-03 15:54:24 +04:00
|
|
|
flash[:error] = l(:error_can_not_remove_role)
|
2012-12-11 23:39:47 +04:00
|
|
|
redirect_to roles_path
|
2007-03-12 20:59:02 +03:00
|
|
|
end
|
2011-08-31 12:43:49 +04:00
|
|
|
|
2011-12-10 03:29:58 +04:00
|
|
|
def permissions
|
2011-12-15 02:24:20 +04:00
|
|
|
@roles = Role.sorted.all
|
2007-08-29 20:52:35 +04:00
|
|
|
@permissions = Redmine::AccessControl.permissions.select { |p| !p.public? }
|
2007-04-08 00:27:19 +04:00
|
|
|
if request.post?
|
|
|
|
@roles.each do |role|
|
2007-08-29 20:52:35 +04:00
|
|
|
role.permissions = params[:permissions][role.id.to_s]
|
|
|
|
role.save
|
2007-04-08 00:27:19 +04:00
|
|
|
end
|
|
|
|
flash[:notice] = l(:notice_successful_update)
|
2012-12-11 23:39:47 +04:00
|
|
|
redirect_to roles_path
|
2007-04-08 00:27:19 +04:00
|
|
|
end
|
|
|
|
end
|
2011-12-10 03:29:58 +04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def find_role
|
|
|
|
@role = Role.find(params[:id])
|
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
render_404
|
|
|
|
end
|
2006-06-28 22:11:03 +04:00
|
|
|
end
|