foreman_rh_cloud 6.0.42.1 → 6.0.42.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 38d6287736ecb0fe82ecd3506ba7a5c638b0359976c9948ace0e5d7fc1cda5b8
4
- data.tar.gz: 650285b17a358808f0e8d79bdb239a310b0468dff592848a390bd3201a5f6369
3
+ metadata.gz: 286d62e3c864ee4b0728bfc1c5d1d224e46ee0917d7a2ea517e096ea6dab0c5c
4
+ data.tar.gz: 1ce1d58a07bdc5d57acb5dab27e4441594605608a79fdfa82f029c6e6018211e
5
5
  SHA512:
6
- metadata.gz: 140f8b1c56d18863d22d97c8195b08f1f264b8b3ed2ead351c1f78d5b9b9eb779505cfe913b7c9360153f4bfb0c1c356c1e179e70211a3cf277b0bc47c7fcfc1
7
- data.tar.gz: 1b6a57cda764598e8a2a82567c8cc2cd653af3dc6af0e950ce3adca8b6961235e3b1057a4f4fbd8ae173db9b0515c1b97c8c3b4f272e4b96d8ff499bdcdac250
6
+ metadata.gz: 5375be3e72da24347196c842946f663464bdf8d367b592b682c604eb7373221addc0f43f49735941cc3cfc279ebffb87888284e21752ca4c2b9ba863e99e88c0
7
+ data.tar.gz: cc5d701cff558eaf96ea554a7d293fc5fe14e6d8c04daf05d537363dac759b7e611f8af66e780cb30e8856e2a696364a6b9b1efe58806b357f25d8c0f58b6954
@@ -33,6 +33,10 @@ module InsightsCloud::Api
33
33
  }, status: @cloud_response.code
34
34
  end
35
35
 
36
+ if @cloud_response.headers[:content_disposition]
37
+ return send_data @cloud_response, disposition: @cloud_response.headers[:content_disposition], type: @cloud_response.headers[:content_type]
38
+ end
39
+
36
40
  # Append redhat-specific headers
37
41
  @cloud_response.headers.each do |key, value|
38
42
  assign_header(response, @cloud_response, key, false) if key.to_s.start_with?('x_rh_')
@@ -41,17 +45,7 @@ module InsightsCloud::Api
41
45
  assign_header(response, @cloud_response, :x_resource_count, true)
42
46
  headers[Rack::ETAG] = @cloud_response.headers[:etag]
43
47
 
44
- if @cloud_response.headers[:content_disposition]
45
- # If there is a Content-Disposition header, it means we are forwarding binary data, send the raw data with proper
46
- # content type
47
- send_data @cloud_response, disposition: @cloud_response.headers[:content_disposition], type: @cloud_response.headers[:content_type]
48
- elsif @cloud_response.headers[:content_type] =~ /zip/
49
- # if there is no Content-Disposition, but the content type is binary according the content type,
50
- # forward the request as binry too
51
- send_data @cloud_response, type: @cloud_response.headers[:content_type]
52
- else
53
- render json: @cloud_response, status: @cloud_response.code
54
- end
48
+ render json: @cloud_response, status: @cloud_response.code
55
49
  end
56
50
 
57
51
  def branch_info
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ class FixRhCloudSettingsCategoryToDsl < ActiveRecord::Migration[6.0]
4
+ def up
5
+ Setting.where(category: 'Setting::RhCloud').update_all(category: 'Setting')
6
+ end
7
+ end
@@ -1,3 +1,3 @@
1
1
  module ForemanRhCloud
2
- VERSION = '6.0.42.1'.freeze
2
+ VERSION = '6.0.42.2'.freeze
3
3
  end
@@ -11,7 +11,7 @@ module InventorySync
11
11
  @per_page = result['per_page']
12
12
  @sub_ids = result["results"].map { |host| host['subscription_manager_id'] }
13
13
  @uuid_by_sub_id = Hash[result["results"].map { |host| [host['subscription_manager_id'], host['id']] }]
14
- @uuid_by_fqdn = Hash[result["results"].map { |host| [host['fqdn']&.downcase, host['id']] }]
14
+ @uuid_by_fqdn = Hash[result["results"].map { |host| [host['fqdn'].downcase, host['id']] }]
15
15
  end
16
16
 
17
17
  def status_hashes
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "foreman_rh_cloud",
3
- "version": "6.0.42.1",
3
+ "version": "6.0.42.2",
4
4
  "description": "Inventory Upload =============",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -72,17 +72,6 @@ module InsightsCloud::Api
72
72
  assert_equal etag, @response.headers[Rack::ETAG]
73
73
  end
74
74
 
75
- test "should set content type header to response from cloud" do
76
- req = RestClient::Request.new(:method => 'GET', :url => 'http://test.theforeman.org')
77
- net_http_resp = Net::HTTPResponse.new(1.0, 200, "OK")
78
- net_http_resp[:content_type] = 'application/zip'
79
- res = RestClient::Response.create(@body, net_http_resp, req)
80
- ::ForemanRhCloud::CloudRequestForwarder.any_instance.stubs(:forward_request).returns(res)
81
-
82
- get :forward_request, params: { "path" => "static/v1/release/insights-core.egg" }
83
- assert_equal net_http_resp[:content_type], @response.headers['Content-Type']
84
- end
85
-
86
75
  test "should handle failed authentication to cloud" do
87
76
  net_http_resp = Net::HTTPResponse.new(1.0, 401, "Unauthorized")
88
77
  res = RestClient::Response.create(@body, net_http_resp, @http_req)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foreman_rh_cloud
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.42.1
4
+ version: 6.0.42.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Foreman Red Hat Cloud team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-06 00:00:00.000000000 Z
11
+ date: 2022-11-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: katello
@@ -197,6 +197,7 @@ files:
197
197
  - db/migrate/20210720000001_remove_old_insights_statuses.foreman_rh_cloud.rb
198
198
  - db/migrate/20211027000001_create_task_output.foreman_rh_cloud.rb
199
199
  - db/migrate/20220321000001_add_unique_to_insights_rules.foreman_rh_cloud.rb
200
+ - db/migrate/20221102110254_fix_rh_cloud_settings_category_to_dsl.rb
200
201
  - db/seeds.d/179_ui_notifications.rb
201
202
  - db/seeds.d/50_job_templates.rb
202
203
  - lib/foreman_inventory_upload.rb