From 71d96685b3d707e1eb22cc34ed478e5ed9dec498 Mon Sep 17 00:00:00 2001 From: Teryk Bellahsene Date: Mon, 7 Sep 2015 11:00:04 +0200 Subject: [PATCH] Delete Ruby code in the permission domain --- .../controllers/api/permissions_controller.rb | 98 ------ .../permission_templates_controller.rb | 329 ------------------ .../app/controllers/permissions_controller.rb | 71 ---- .../_default_templates_form.html.erb | 29 -- .../_delete_form.html.erb | 25 -- .../_edit_groups.html.erb | 43 --- .../permission_templates/_edit_users.html.erb | 37 -- .../_permission_template_form.html.erb | 38 -- .../views/roles/_apply_template_form.html.erb | 49 --- .../app/views/roles/_edit_groups.html.erb | 43 --- .../app/views/roles/_edit_users.html.erb | 37 -- .../WEB-INF/app/views/roles/_tabs.html.erb | 13 - 12 files changed, 812 deletions(-) delete mode 100644 server/sonar-web/src/main/webapp/WEB-INF/app/controllers/api/permissions_controller.rb delete mode 100644 server/sonar-web/src/main/webapp/WEB-INF/app/controllers/permission_templates_controller.rb delete mode 100644 server/sonar-web/src/main/webapp/WEB-INF/app/controllers/permissions_controller.rb delete mode 100644 server/sonar-web/src/main/webapp/WEB-INF/app/views/permission_templates/_default_templates_form.html.erb delete mode 100644 server/sonar-web/src/main/webapp/WEB-INF/app/views/permission_templates/_delete_form.html.erb delete mode 100644 server/sonar-web/src/main/webapp/WEB-INF/app/views/permission_templates/_edit_groups.html.erb delete mode 100644 server/sonar-web/src/main/webapp/WEB-INF/app/views/permission_templates/_edit_users.html.erb delete mode 100644 server/sonar-web/src/main/webapp/WEB-INF/app/views/permission_templates/_permission_template_form.html.erb delete mode 100644 server/sonar-web/src/main/webapp/WEB-INF/app/views/roles/_apply_template_form.html.erb delete mode 100644 server/sonar-web/src/main/webapp/WEB-INF/app/views/roles/_edit_groups.html.erb delete mode 100644 server/sonar-web/src/main/webapp/WEB-INF/app/views/roles/_edit_users.html.erb delete mode 100644 server/sonar-web/src/main/webapp/WEB-INF/app/views/roles/_tabs.html.erb diff --git a/server/sonar-web/src/main/webapp/WEB-INF/app/controllers/api/permissions_controller.rb b/server/sonar-web/src/main/webapp/WEB-INF/app/controllers/api/permissions_controller.rb deleted file mode 100644 index 5f1e79ea51b..00000000000 --- a/server/sonar-web/src/main/webapp/WEB-INF/app/controllers/api/permissions_controller.rb +++ /dev/null @@ -1,98 +0,0 @@ -# -# SonarQube, open source software quality management tool. -# Copyright (C) 2008-2014 SonarSource -# mailto:contact AT sonarsource DOT com -# -# SonarQube is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# -# SonarQube 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 -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser 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. -# - -# -# Since 3.7 -# -class Api::PermissionsController < Api::ApiController - - # - # POST /api/permissions/add - # - # -- Mandatory parameters - # 'permission' is the key of the permission to add. - # For global permissions, available values are : admin, profileadmin, shareDashboard, scan, dryRunScan, provisioning. - # For component permissions, available values are : user, codeviewer, admin, issueadmin. - # 'user' is the user identifier (login) - # OR - # 'group' is the group identifier (group name or 'anyone') - # - # -- Optional parameters - # 'component' is the component key on which add the permission. If null, the permission should be a global permission. - # - # -- Example - # curl -X POST -v -u admin:admin 'http://localhost:9000/api/permissions/add?permission=shareDashboard&user=new_user' - # - # -- Notes - # An exception will be raised if both a user and a group are provided - # Requests that attempt to add an already configured permission will be silently ignored - # - # since 3.7 - # 'component' parameter and 'provisioning' permission have been added in 4.0 - # 'issueadmin' permission has been added in 4.1 - # - def add - verify_post_request - require_parameters :permission - require_one_of :group, :user - Internal.permissions.addPermission(params) - hash = {:user => params[:user], :group => params[:group], :permission => params[:permission]} - respond_to do |format| - format.json { render :json => jsonp(hash), :status => 200 } - format.xml { render :xml => hash.to_xml(:skip_types => true, :root => 'sonar', :status => 200) } - end - end - - # - # POST /api/permissions/remove - # - # -- Mandatory parameters - # 'permission' is the key of the permission to add. - # For global permissions, available values are : admin, profileadmin, shareDashboard, scan, dryRunScan, provisioning. - # For component permissions, available values are : user, codeviewer, admin. - # 'user' is the user identifier (login) - # OR - # 'group' is the group identifier (group name or 'anyone') - # - # -- Optional parameters - # 'component' is the component key on which add the permission. If null, the permission should be a global permission. - # - # -- Example - # curl -X POST -v -u admin:admin 'http://localhost:9000/api/permissions/remove?permission=shareDashboard&user=new_user' - # - # -- Notes - # An exception will be raised if both a user and a group are provided - # Requests that attempt to remove a non-existing permission will be silently ignored - # - # since 3.7 - # 'component' parameter and 'provisioning' permission have been added in 4.0 - # - def remove - verify_post_request - require_parameters :permission, (params[:user].nil? ? :group : :user) - Internal.permissions.removePermission(params) - hash = {:user => params[:user], :group => params[:group], :permission => params[:permission]} - respond_to do |format| - format.json { render :json => jsonp(hash), :status => 200 } - format.xml { render :xml => hash.to_xml(:skip_types => true, :root => 'sonar', :status => 200) } - end - end - -end diff --git a/server/sonar-web/src/main/webapp/WEB-INF/app/controllers/permission_templates_controller.rb b/server/sonar-web/src/main/webapp/WEB-INF/app/controllers/permission_templates_controller.rb deleted file mode 100644 index 4babd23a90f..00000000000 --- a/server/sonar-web/src/main/webapp/WEB-INF/app/controllers/permission_templates_controller.rb +++ /dev/null @@ -1,329 +0,0 @@ -# -# SonarQube, open source software quality management tool. -# Copyright (C) 2008-2014 SonarSource -# mailto:contact AT sonarsource DOT com -# -# SonarQube is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# -# SonarQube 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 -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser 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. -# - -# -# @since 3.7 -# -# Note : do NOT use @template as an instance variable -# as it is a reserved variable in Rails -# -class PermissionTemplatesController < ApplicationController - - helper RolesHelper - include RolesHelper - - SECTION = Navigation::SECTION_CONFIGURATION - - before_filter :admin_required - - # - # GET - # - def index - all_templates = Internal.permission_templates.selectAllPermissionTemplates - - @permission_templates = get_templates_and_permissions(all_templates) - @root_qualifiers = get_root_qualifiers - @default_templates = get_default_templates_per_qualifier(@root_qualifiers) - end - - # - # GET /permission_templates/search_users?permission=&template=