aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/webapp/WEB-INF
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2017-01-18 20:58:21 +0100
committerSimon Brandhof <simon.brandhof@sonarsource.com>2017-01-19 10:12:20 +0100
commit12be2e48343981ffcaea57072c09eb3c27be30dc (patch)
treecc56dcc4b8a10e41848c1bda0df4e4eff377e614 /server/sonar-web/src/main/webapp/WEB-INF
parent399d34ae90fe771b5b8409dc3d8903e9353a37ea (diff)
downloadsonarqube-12be2e48343981ffcaea57072c09eb3c27be30dc.tar.gz
sonarqube-12be2e48343981ffcaea57072c09eb3c27be30dc.zip
SONAR-7289 Drop unused api/gwp_resources Ruby web service
It was used only by the MotionChart plugin, which is not compatible for a while
Diffstat (limited to 'server/sonar-web/src/main/webapp/WEB-INF')
-rw-r--r--server/sonar-web/src/main/webapp/WEB-INF/app/controllers/api/gwp_resources_controller.rb123
1 files changed, 0 insertions, 123 deletions
diff --git a/server/sonar-web/src/main/webapp/WEB-INF/app/controllers/api/gwp_resources_controller.rb b/server/sonar-web/src/main/webapp/WEB-INF/app/controllers/api/gwp_resources_controller.rb
deleted file mode 100644
index 90bb267704c..00000000000
--- a/server/sonar-web/src/main/webapp/WEB-INF/app/controllers/api/gwp_resources_controller.rb
+++ /dev/null
@@ -1,123 +0,0 @@
-#
-# SonarQube, open source software quality management tool.
-# Copyright (C) 2008-2016 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.
-#
-
-require "json"
-
-# Google Wire Protocol controller helper.
-# Used by the MotionChart plugin.
-class Api::GwpResourcesController < Api::ResourceRestController
-
- before_filter :parse_gwp_params
-
- EMPTY_HASH={}
- TYPE_BOOLEAN = :boolean
- TYPE_STRING = :string
- TYPE_DATE = :date
- TYPE_DATE_TIME = :datetime
- TYPE_NUMBER = :number
- TYPE_TIME_OF_DAY = :timeofday
-
- def parse_gwp_params
- # tqx sample : reqId:0
- tqx=params[:tqx]
- if tqx.nil?
- rest_gwp_error("Missing tqx parameter", "invalid_request")
- return
- end
- tqx_params = tqx.split(';')
- tqx_params.each do |tqx_param|
- param_key_val = tqx_param.split(':')
- params[param_key_val[0]] = param_key_val[1]
- end
- params[:format] = params[:out] if params[:out]
- params[:callback] = params[:responseHandler] if params[:responseHandler]
- end
-
- def rest_to_json(objects)
- data_table = {:cols => [], :rows => []}
- fill_gwp_data_table(objects, data_table)
- rest_gwp_ok(data_table)
- end
-
- def add_column(data_table, id, label, type)
- data_table[:cols] << {:id => id, :label => label, :type => type}
- end
-
- def new_row(data_table)
- row = {:c => []}
- data_table[:rows] << row
- row
- end
-
- def add_row_value(row, value, formatted_value = nil)
- if value
- if formatted_value
- row[:c] << {:v => value, :f => formatted_value}
- else
- row[:c] << {:v => value}
- end
- else
- row[:c] << EMPTY_HASH
- end
- end
-
- def rest_status_ko(msg, error_code)
- json = JSON({:reqId => params[:reqId], :status => 'error', :errors => { :reason => "internal_error", :message => msg }})
- render :json => jsonp(json), :status => error_code
- end
-
- def rest_gwp_ok(data_table)
- gwp_resp = {:reqId => params[:reqId], :status => 'ok'}
- gwp_resp[:table] = data_table if data_table[:rows].size > 0
- gwp_resp
- end
-
- private
-
- def rest_gwp_error(message, reason)
- json = JSON({:reqId => params[:reqId], :status => 'error', :errors => { :reason =>reason, :message => message }})
- render :json => jsonp(json), :status => 500
- end
-
-end
-
-class Api::GwpJsonTime
- @time
-
- def initialize(time)
- @time = time
- end
-
- def to_json(options = nil)
- "new Date(#{@time.year},#{@time.month-1},#{@time.day},#{@time.hour},#{@time.min},#{@time.sec})"
- end
-end
-
-class Api::GwpJsonDate
- @time
-
- def initialize(time)
- @time = time
- end
-
- def to_json(options = nil)
- "new Date(#{@time.year},#{@time.month-1},#{@time.day})"
- end
-end