zuora_connect 2.0.5zj → 2.0.5
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 +4 -4
- data/app/controllers/zuora_connect/static_controller.rb +17 -4
- data/app/helpers/zuora_connect/application_helper.rb +0 -10
- data/app/models/zuora_connect/app_instance_base.rb +66 -109
- data/app/models/zuora_connect/telegraf.rb +2 -2
- data/app/models/zuora_connect/zuora_user.rb +0 -1
- data/app/views/zuora_connect/static/invalid_app_instance_error.html.erb +65 -0
- data/app/views/zuora_connect/static/invalid_launch_request.html.erb +81 -0
- data/app/views/zuora_connect/static/launch.html.erb +75 -74
- data/app/views/zuora_connect/static/permission_error.html.erb +80 -0
- data/app/views/zuora_connect/static/session_error.html.erb +63 -0
- data/config/routes.rb +2 -0
- data/lib/middleware/request_id_middleware.rb +1 -1
- data/lib/resque/plugins/custom_logger.rb +1 -1
- data/lib/zuora_connect.rb +42 -59
- data/lib/zuora_connect/configuration.rb +3 -3
- data/lib/zuora_connect/controllers/helpers.rb +183 -253
- data/lib/zuora_connect/engine.rb +1 -2
- data/lib/zuora_connect/railtie.rb +6 -10
- data/lib/zuora_connect/version.rb +1 -1
- data/lib/zuora_connect/views/helpers.rb +9 -0
- metadata +54 -54
- data/app/views/zuora_connect/static/error_handled.html.erb +0 -77
- data/app/views/zuora_connect/static/error_unhandled.erb +0 -82
- data/config/initializers/patches.rb +0 -9
- data/db/migrate/20190520232222_add_unique_index.rb +0 -6
- data/lib/middleware/json_parse_errors.rb +0 -22
data/lib/zuora_connect/engine.rb
CHANGED
@@ -12,7 +12,7 @@ module ZuoraConnect
|
|
12
12
|
Rails.application.routes.prepend do
|
13
13
|
mount ZuoraConnect::Engine, at: "/connect"
|
14
14
|
match '/api/connect/health', via: :all, to: 'zuora_connect/static#health'
|
15
|
-
match '/api/connect/internal/data', via: :all, to: 'zuora_connect/static#metrics'
|
15
|
+
match '/api/connect/internal/data', via: :all, to: 'zuora_connect/static#metrics'
|
16
16
|
end
|
17
17
|
end
|
18
18
|
|
@@ -27,7 +27,6 @@ module ZuoraConnect
|
|
27
27
|
initializer "connect.helpers" do
|
28
28
|
ActiveSupport.on_load(:action_controller) do
|
29
29
|
include ZuoraConnect::Controllers::Helpers
|
30
|
-
helper ZuoraConnect::ApplicationHelper
|
31
30
|
end
|
32
31
|
end
|
33
32
|
end
|
@@ -1,6 +1,5 @@
|
|
1
1
|
require 'middleware/metrics_middleware'
|
2
2
|
require 'middleware/request_id_middleware'
|
3
|
-
require 'middleware/json_parse_errors'
|
4
3
|
|
5
4
|
module ZuoraConnect
|
6
5
|
class Railtie < Rails::Railtie
|
@@ -26,22 +25,19 @@ module ZuoraConnect
|
|
26
25
|
initializer "zuora_connect.configure_rails_initialization" do |app|
|
27
26
|
app.middleware.insert_after Rack::Sendfile, ZuoraConnect::MetricsMiddleware
|
28
27
|
app.middleware.insert_after ActionDispatch::RequestId, ZuoraConnect::RequestIdMiddleware
|
29
|
-
app.config.middleware.use ZuoraConnect::JsonParseErrors
|
30
28
|
end
|
31
29
|
|
32
30
|
# hook to process_action
|
33
31
|
ActiveSupport::Notifications.subscribe('process_action.action_controller', ZuoraConnect::PageRequest.new)
|
34
32
|
|
35
33
|
initializer(:rails_stdout_logging, before: :initialize_logger) do
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
34
|
+
if Rails.env != 'development' && !ENV['DEIS_APP'].blank?
|
35
|
+
require 'lograge'
|
36
|
+
|
37
|
+
Rails.configuration.logger = ZuoraConnect.custom_logger(name: "Rails")
|
38
|
+
|
40
39
|
Rails.configuration.lograge.enabled = true
|
41
40
|
Rails.configuration.colorize_logging = false
|
42
|
-
end
|
43
|
-
|
44
|
-
if Rails.configuration.lograge.enabled
|
45
41
|
if Rails.configuration.logger.class.to_s == 'Ougai::Logger'
|
46
42
|
Rails.configuration.lograge.formatter = Class.new do |fmt|
|
47
43
|
def fmt.call(data)
|
@@ -54,7 +50,7 @@ module ZuoraConnect
|
|
54
50
|
exceptions = %w(controller action format id)
|
55
51
|
items = {
|
56
52
|
#time: event.time.strftime('%FT%T.%6N'),
|
57
|
-
params: event.payload[:params].
|
53
|
+
params: event.payload[:params].except(*exceptions).to_json.to_s
|
58
54
|
}
|
59
55
|
items.merge!({exception_object: event.payload[:exception_object]}) if event.payload[:exception_object].present?
|
60
56
|
items.merge!({exception: event.payload[:exception]}) if event.payload[:exception].present?
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zuora_connect
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Connect Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-06-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: apartment
|
@@ -39,59 +39,59 @@ dependencies:
|
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
42
|
+
name: zuora_api
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
47
|
+
version: 1.6.43
|
48
|
+
- - "~>"
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: 1.6.43
|
48
51
|
type: :runtime
|
49
52
|
prerelease: false
|
50
53
|
version_requirements: !ruby/object:Gem::Requirement
|
51
54
|
requirements:
|
52
55
|
- - ">="
|
53
56
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
57
|
+
version: 1.6.43
|
58
|
+
- - "~>"
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: 1.6.43
|
55
61
|
- !ruby/object:Gem::Dependency
|
56
|
-
name:
|
62
|
+
name: httparty
|
57
63
|
requirement: !ruby/object:Gem::Requirement
|
58
64
|
requirements:
|
59
65
|
- - ">="
|
60
66
|
- !ruby/object:Gem::Version
|
61
|
-
version:
|
67
|
+
version: 0.16.4
|
62
68
|
- - "~>"
|
63
69
|
- !ruby/object:Gem::Version
|
64
|
-
version:
|
70
|
+
version: 0.16.4
|
65
71
|
type: :runtime
|
66
72
|
prerelease: false
|
67
73
|
version_requirements: !ruby/object:Gem::Requirement
|
68
74
|
requirements:
|
69
75
|
- - ">="
|
70
76
|
- !ruby/object:Gem::Version
|
71
|
-
version:
|
77
|
+
version: 0.16.4
|
72
78
|
- - "~>"
|
73
79
|
- !ruby/object:Gem::Version
|
74
|
-
version:
|
80
|
+
version: 0.16.4
|
75
81
|
- !ruby/object:Gem::Dependency
|
76
|
-
name:
|
82
|
+
name: bundler
|
77
83
|
requirement: !ruby/object:Gem::Requirement
|
78
84
|
requirements:
|
79
|
-
- - ">="
|
80
|
-
- !ruby/object:Gem::Version
|
81
|
-
version: 0.16.4
|
82
85
|
- - "~>"
|
83
86
|
- !ruby/object:Gem::Version
|
84
|
-
version:
|
87
|
+
version: '1.12'
|
85
88
|
type: :runtime
|
86
89
|
prerelease: false
|
87
90
|
version_requirements: !ruby/object:Gem::Requirement
|
88
91
|
requirements:
|
89
|
-
- - ">="
|
90
|
-
- !ruby/object:Gem::Version
|
91
|
-
version: 0.16.4
|
92
92
|
- - "~>"
|
93
93
|
- !ruby/object:Gem::Version
|
94
|
-
version:
|
94
|
+
version: '1.12'
|
95
95
|
- !ruby/object:Gem::Dependency
|
96
96
|
name: lograge
|
97
97
|
requirement: !ruby/object:Gem::Requirement
|
@@ -308,13 +308,14 @@ files:
|
|
308
308
|
- app/models/zuora_connect/zuora_user.rb
|
309
309
|
- app/views/layouts/zuora_connect/application.html.erb
|
310
310
|
- app/views/sql/refresh_aggregate_table.txt
|
311
|
-
- app/views/zuora_connect/static/
|
312
|
-
- app/views/zuora_connect/static/
|
311
|
+
- app/views/zuora_connect/static/invalid_app_instance_error.html.erb
|
312
|
+
- app/views/zuora_connect/static/invalid_launch_request.html.erb
|
313
313
|
- app/views/zuora_connect/static/launch.html.erb
|
314
|
+
- app/views/zuora_connect/static/permission_error.html.erb
|
315
|
+
- app/views/zuora_connect/static/session_error.html.erb
|
314
316
|
- config/initializers/apartment.rb
|
315
317
|
- config/initializers/aws.rb
|
316
318
|
- config/initializers/object_method_hooks.rb
|
317
|
-
- config/initializers/patches.rb
|
318
319
|
- config/initializers/postgresql_adapter.rb
|
319
320
|
- config/initializers/prometheus.rb
|
320
321
|
- config/initializers/redis.rb
|
@@ -334,11 +335,9 @@ files:
|
|
334
335
|
- db/migrate/20180301052853_add_catalog_attempted_at.rb
|
335
336
|
- db/migrate/20181206162339_add_fields_to_instance.rb
|
336
337
|
- db/migrate/20190520232221_add_zuora_user_table_and_alter_app_instance_id_table.rb
|
337
|
-
- db/migrate/20190520232222_add_unique_index.rb
|
338
338
|
- lib/logging/connect_formatter.rb
|
339
339
|
- lib/metrics/influx/point_value.rb
|
340
340
|
- lib/metrics/net.rb
|
341
|
-
- lib/middleware/json_parse_errors.rb
|
342
341
|
- lib/middleware/metrics_middleware.rb
|
343
342
|
- lib/middleware/request_id_middleware.rb
|
344
343
|
- lib/resque/additions.rb
|
@@ -354,6 +353,7 @@ files:
|
|
354
353
|
- lib/zuora_connect/exceptions.rb
|
355
354
|
- lib/zuora_connect/railtie.rb
|
356
355
|
- lib/zuora_connect/version.rb
|
356
|
+
- lib/zuora_connect/views/helpers.rb
|
357
357
|
- test/controllers/zuora_connect/api/v1/app_instance_controller_test.rb
|
358
358
|
- test/dummy/README.rdoc
|
359
359
|
- test/dummy/Rakefile
|
@@ -409,53 +409,53 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
409
409
|
version: '0'
|
410
410
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
411
411
|
requirements:
|
412
|
-
- - "
|
412
|
+
- - ">="
|
413
413
|
- !ruby/object:Gem::Version
|
414
|
-
version:
|
414
|
+
version: '0'
|
415
415
|
requirements: []
|
416
416
|
rubygems_version: 3.0.3
|
417
417
|
signing_key:
|
418
418
|
specification_version: 4
|
419
419
|
summary: Summary of Connect.
|
420
420
|
test_files:
|
421
|
+
- test/lib/generators/zuora_connect/datatable_generator_test.rb
|
421
422
|
- test/integration/navigation_test.rb
|
422
|
-
- test/
|
423
|
+
- test/test_helper.rb
|
424
|
+
- test/models/zuora_connect/app_instance_test.rb
|
423
425
|
- test/fixtures/zuora_connect/app_instances.yml
|
424
|
-
- test/
|
425
|
-
- test/
|
426
|
+
- test/controllers/zuora_connect/api/v1/app_instance_controller_test.rb
|
427
|
+
- test/zuora_connect_test.rb
|
428
|
+
- test/dummy/README.rdoc
|
429
|
+
- test/dummy/Rakefile
|
426
430
|
- test/dummy/app/assets/stylesheets/application.css
|
427
431
|
- test/dummy/app/assets/javascripts/application.js
|
432
|
+
- test/dummy/app/controllers/application_controller.rb
|
428
433
|
- test/dummy/app/helpers/application_helper.rb
|
429
|
-
- test/dummy/
|
430
|
-
- test/dummy/
|
431
|
-
- test/dummy/bin/rake
|
432
|
-
- test/dummy/bin/rails
|
433
|
-
- test/dummy/config/routes.rb
|
434
|
-
- test/dummy/config/environment.rb
|
435
|
-
- test/dummy/config/application.rb
|
436
|
-
- test/dummy/config/boot.rb
|
437
|
-
- test/dummy/config/database.yml
|
434
|
+
- test/dummy/app/views/layouts/application.html.erb
|
435
|
+
- test/dummy/config/environments/test.rb
|
438
436
|
- test/dummy/config/environments/production.rb
|
439
437
|
- test/dummy/config/environments/development.rb
|
440
|
-
- test/dummy/config/
|
441
|
-
- test/dummy/config/
|
442
|
-
- test/dummy/config/locales/en.yml
|
443
|
-
- test/dummy/config/initializers/inflections.rb
|
444
|
-
- test/dummy/config/initializers/backtrace_silencers.rb
|
445
|
-
- test/dummy/config/initializers/mime_types.rb
|
446
|
-
- test/dummy/config/initializers/filter_parameter_logging.rb
|
438
|
+
- test/dummy/config/database.yml
|
439
|
+
- test/dummy/config/routes.rb
|
447
440
|
- test/dummy/config/initializers/assets.rb
|
448
441
|
- test/dummy/config/initializers/cookies_serializer.rb
|
442
|
+
- test/dummy/config/initializers/mime_types.rb
|
443
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
444
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
449
445
|
- test/dummy/config/initializers/session_store.rb
|
450
446
|
- test/dummy/config/initializers/wrap_parameters.rb
|
451
|
-
- test/dummy/
|
447
|
+
- test/dummy/config/initializers/inflections.rb
|
448
|
+
- test/dummy/config/locales/en.yml
|
449
|
+
- test/dummy/config/environment.rb
|
450
|
+
- test/dummy/config/application.rb
|
451
|
+
- test/dummy/config/boot.rb
|
452
|
+
- test/dummy/config/secrets.yml
|
453
|
+
- test/dummy/bin/setup
|
454
|
+
- test/dummy/bin/rails
|
455
|
+
- test/dummy/bin/bundle
|
456
|
+
- test/dummy/bin/rake
|
457
|
+
- test/dummy/config.ru
|
458
|
+
- test/dummy/public/422.html
|
452
459
|
- test/dummy/public/500.html
|
460
|
+
- test/dummy/public/favicon.ico
|
453
461
|
- test/dummy/public/404.html
|
454
|
-
- test/dummy/public/422.html
|
455
|
-
- test/dummy/Rakefile
|
456
|
-
- test/dummy/README.rdoc
|
457
|
-
- test/dummy/config.ru
|
458
|
-
- test/lib/generators/zuora_connect/datatable_generator_test.rb
|
459
|
-
- test/test_helper.rb
|
460
|
-
- test/zuora_connect_test.rb
|
461
|
-
- test/models/zuora_connect/app_instance_test.rb
|
@@ -1,77 +0,0 @@
|
|
1
|
-
<html>
|
2
|
-
<head>
|
3
|
-
<title>Handled Error</title>
|
4
|
-
<meta name="viewport" content="width=device-width,initial-scale=1">
|
5
|
-
<style>
|
6
|
-
body {
|
7
|
-
background-color: white;
|
8
|
-
color: #2E2F30;
|
9
|
-
text-align: center;
|
10
|
-
font-family: arial, sans-serif;
|
11
|
-
margin: 0;
|
12
|
-
}
|
13
|
-
|
14
|
-
div.dialog {
|
15
|
-
width: 95%;
|
16
|
-
max-width: 33em;
|
17
|
-
margin: 4em auto 0;
|
18
|
-
}
|
19
|
-
|
20
|
-
div.dialog > div {
|
21
|
-
border: 1px solid #CCC;
|
22
|
-
border-right-color: #999;
|
23
|
-
border-left-color: #999;
|
24
|
-
border-bottom-color: #BBB;
|
25
|
-
border-top: #3D4B5A solid 4px;
|
26
|
-
border-top-left-radius: 9px;
|
27
|
-
border-top-right-radius: 9px;
|
28
|
-
background-color: white;
|
29
|
-
padding: 7px 12% 0;
|
30
|
-
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
31
|
-
}
|
32
|
-
|
33
|
-
h1 {
|
34
|
-
font-size: 100%;
|
35
|
-
color: #3D4B5A;
|
36
|
-
line-height: 1.5em;
|
37
|
-
}
|
38
|
-
div.dialog > p {
|
39
|
-
margin: 0 0 1em;
|
40
|
-
padding: 1em;
|
41
|
-
background-color: #F7F7F7;
|
42
|
-
border: 1px solid #CCC;
|
43
|
-
border-right-color: #999;
|
44
|
-
border-left-color: #999;
|
45
|
-
border-bottom-color: #999;
|
46
|
-
border-bottom-left-radius: 4px;
|
47
|
-
border-bottom-right-radius: 4px;
|
48
|
-
border-top-color: #DADADA;
|
49
|
-
color: #666;
|
50
|
-
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
51
|
-
}
|
52
|
-
</style>
|
53
|
-
</head>
|
54
|
-
|
55
|
-
<body>
|
56
|
-
<% if defined?(exception) %>
|
57
|
-
<div class="dialog" style='max-width: 74em;'>
|
58
|
-
<div><h1><%= exception.class %> - '<%= exception.message %>'</h1></div>
|
59
|
-
<p style='text-align: left;'>
|
60
|
-
<% exception.backtrace.each do |line| %>
|
61
|
-
<%= line %><br>
|
62
|
-
<% end %>
|
63
|
-
</p>
|
64
|
-
</div>
|
65
|
-
<% elsif defined?(message) && defined?(title) %>
|
66
|
-
<div class="dialog">
|
67
|
-
<div><h1><%= title %></h1></div>
|
68
|
-
<p><%= message.html_safe %></p>
|
69
|
-
</div>
|
70
|
-
<% else %>
|
71
|
-
<div class="dialog">
|
72
|
-
<div><h1>The launch url was invalid</h1></div>
|
73
|
-
<p>Please try relaunching this application</p>
|
74
|
-
</div>
|
75
|
-
<% end %>
|
76
|
-
</body>
|
77
|
-
</html>
|
@@ -1,82 +0,0 @@
|
|
1
|
-
<html>
|
2
|
-
<head>
|
3
|
-
<title>We're sorry, but something went wrong</title>
|
4
|
-
<meta name="viewport" content="width=device-width,initial-scale=1">
|
5
|
-
<style>
|
6
|
-
body {
|
7
|
-
background-color: #EFEFEF;
|
8
|
-
color: #2E2F30;
|
9
|
-
text-align: center;
|
10
|
-
font-family: arial, sans-serif;
|
11
|
-
margin: 0;
|
12
|
-
}
|
13
|
-
|
14
|
-
div.dialog {
|
15
|
-
width: 95%;
|
16
|
-
max-width: 33em;
|
17
|
-
margin: 4em auto 0;
|
18
|
-
}
|
19
|
-
|
20
|
-
div.dialog > div {
|
21
|
-
border: 1px solid #CCC;
|
22
|
-
border-right-color: #999;
|
23
|
-
border-left-color: #999;
|
24
|
-
border-bottom-color: #BBB;
|
25
|
-
border-top: #B00100 solid 4px;
|
26
|
-
border-top-left-radius: 9px;
|
27
|
-
border-top-right-radius: 9px;
|
28
|
-
background-color: white;
|
29
|
-
padding: 7px 12% 0;
|
30
|
-
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
31
|
-
}
|
32
|
-
|
33
|
-
h1 {
|
34
|
-
font-size: 100%;
|
35
|
-
color: #730E15;
|
36
|
-
line-height: 1.5em;
|
37
|
-
}
|
38
|
-
|
39
|
-
div.dialog > p {
|
40
|
-
margin: 0 0 1em;
|
41
|
-
padding: 1em;
|
42
|
-
background-color: #F7F7F7;
|
43
|
-
border: 1px solid #CCC;
|
44
|
-
border-right-color: #999;
|
45
|
-
border-left-color: #999;
|
46
|
-
border-bottom-color: #999;
|
47
|
-
border-bottom-left-radius: 4px;
|
48
|
-
border-bottom-right-radius: 4px;
|
49
|
-
border-top-color: #DADADA;
|
50
|
-
color: #666;
|
51
|
-
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
52
|
-
}
|
53
|
-
</style>
|
54
|
-
</head>
|
55
|
-
|
56
|
-
<body>
|
57
|
-
<!-- This file lives in public/500.html -->
|
58
|
-
<% if defined?(exception) %>
|
59
|
-
<div class="dialog" style='max-width: 74em;'>
|
60
|
-
<div><h1><%= exception.class %> - '<%= exception.message %>'</h1></div>
|
61
|
-
<p style='text-align: left;'>
|
62
|
-
<% last_line = false %>
|
63
|
-
<% exception.backtrace.each do |line| %>
|
64
|
-
<% ending = last_line && !line.include?(Rails.root.to_s) ? false : true %>
|
65
|
-
<% break if !ending%>
|
66
|
-
<% if ending %>
|
67
|
-
<%= line %><br>
|
68
|
-
<% end %>
|
69
|
-
<% last_line = line.include?(Rails.root.to_s) %>
|
70
|
-
<% end %>
|
71
|
-
</p>
|
72
|
-
</div>
|
73
|
-
<% else %>
|
74
|
-
<div class="dialog">
|
75
|
-
<div>
|
76
|
-
<h1>The launch url was invalid</h1>
|
77
|
-
</div>
|
78
|
-
<p>Please try relaunching this application</p>
|
79
|
-
</div>
|
80
|
-
<% end %>
|
81
|
-
</body>
|
82
|
-
</html>
|