8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# File 'app/controllers/insights_cloud/ui_requests_controller.rb', line 8
def forward_request
begin
path_match = request.original_fullpath.match(%r{^/insights_cloud/(?<path>[^?]*)})&.[](:path)
path_to_forward = path_match || params.require(:path)
@cloud_response = ::ForemanRhCloud::InsightsApiForwarder.new.forward_request(
request,
path_to_forward,
controller_name,
User.current,
@organization,
@location
)
rescue RestClient::Exceptions::Timeout => e
response_obj = e.response.presence || e.exception
return render json: { message: response_obj.to_s, error: response_obj.to_s }, status: :gateway_timeout
rescue RestClient::Unauthorized => e
logger.warn("Forwarding request auth error: #{e}")
message = 'Authentication to the Insights Service failed.'
return render json: { message: message, error: message }, status: :unauthorized
rescue RestClient::NotModified => e
logger.info("Forwarding request not modified: #{e}")
message = 'Cloud request not modified'
return render json: { message: message, error: message }, status: :not_modified
rescue RestClient::ExceptionWithResponse => e
response_obj = e.response.presence || e.exception
code = response_obj.try(:code) || response_obj.try(:http_code) || 500
message = 'Cloud request failed'
return render json: {
:message => message,
:error => response_obj.to_s,
:headers => {},
:response => response_obj,
}, status: code
rescue StandardError => e
logger.warn("Cloud request failed with exception: #{e}")
return render json: { error: e.to_s }, status: :bad_gateway
end
@cloud_response..each do |key, _value|
(response, @cloud_response, key, false) if key.to_s.start_with?('x_rh_')
end
(response, @cloud_response, :x_resource_count, true)
[Rack::ETAG] = @cloud_response.[:etag]
if @cloud_response.[:content_disposition]
send_data @cloud_response, disposition: @cloud_response.[:content_disposition], type: @cloud_response.[:content_type]
elsif @cloud_response.[:content_type] =~ /zip/
send_data @cloud_response, type: @cloud_response.[:content_type]
else
render json: @cloud_response, status: @cloud_response.code
end
end
|