scalingo 3.4.0 → 4.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/dependabot.yml +17 -0
- data/.github/workflows/publish.yml +6 -3
- data/.github/workflows/ruby.yml +3 -3
- data/.rubocop.yml +46 -17
- data/CHANGELOG.md +20 -1
- data/Gemfile +2 -0
- data/README.md +13 -62
- data/bin/console +11 -1
- data/bin/lint +2 -0
- data/bin/setup +21 -6
- data/bin/specs +2 -0
- data/lib/scalingo/api/client.rb +26 -53
- data/lib/scalingo/api/endpoint.rb +88 -11
- data/lib/scalingo/auth/keys.rb +4 -50
- data/lib/scalingo/auth/scm_integrations.rb +4 -51
- data/lib/scalingo/auth/tokens.rb +5 -72
- data/lib/scalingo/auth/two_factor_auth.rb +4 -55
- data/lib/scalingo/auth/user.rb +3 -38
- data/lib/scalingo/auth.rb +1 -1
- data/lib/scalingo/bearer_token.rb +16 -9
- data/lib/scalingo/billing/profile.rb +3 -40
- data/lib/scalingo/billing.rb +1 -1
- data/lib/scalingo/client.rb +21 -31
- data/lib/scalingo/configuration.rb +3 -27
- data/lib/scalingo/core_client.rb +9 -30
- data/lib/scalingo/database/backups.rb +9 -0
- data/lib/scalingo/database/databases.rb +8 -0
- data/lib/scalingo/database.rb +13 -0
- data/lib/scalingo/faraday/extract_meta.rb +33 -0
- data/lib/scalingo/faraday/extract_root_value.rb +18 -0
- data/lib/scalingo/faraday/response.rb +36 -0
- data/lib/scalingo/regional/addons.rb +18 -130
- data/lib/scalingo/regional/apps.rb +10 -103
- data/lib/scalingo/regional/autoscalers.rb +5 -64
- data/lib/scalingo/regional/collaborators.rb +4 -51
- data/lib/scalingo/regional/containers.rb +4 -51
- data/lib/scalingo/regional/deployments.rb +3 -38
- data/lib/scalingo/regional/domains.rb +5 -64
- data/lib/scalingo/regional/environment.rb +6 -77
- data/lib/scalingo/regional/events.rb +5 -50
- data/lib/scalingo/regional/logs.rb +10 -28
- data/lib/scalingo/regional/metrics.rb +2 -34
- data/lib/scalingo/regional/notifiers.rb +7 -90
- data/lib/scalingo/regional/operations.rb +5 -18
- data/lib/scalingo/regional/scm_repo_links.rb +8 -103
- data/lib/scalingo/regional.rb +1 -1
- data/lib/scalingo/token_holder.rb +1 -46
- data/lib/scalingo/version.rb +1 -1
- data/scalingo.gemspec +7 -7
- metadata +63 -285
- data/lib/scalingo/api/response.rb +0 -69
- data/lib/scalingo/regional_database/backups.rb +0 -44
- data/lib/scalingo/regional_database/databases.rb +0 -31
- data/lib/scalingo/regional_database.rb +0 -13
- data/samples/auth/keys/_meta.json +0 -13
- data/samples/auth/keys/all-200.json +0 -62
- data/samples/auth/keys/create-201.json +0 -67
- data/samples/auth/keys/create-422.json +0 -34
- data/samples/auth/keys/destroy-204.json +0 -19
- data/samples/auth/keys/destroy-404.json +0 -19
- data/samples/auth/keys/show-200.json +0 -60
- data/samples/auth/keys/show-404.json +0 -19
- data/samples/auth/scm_integrations/_meta.json +0 -14
- data/samples/auth/scm_integrations/all-200.json +0 -41
- data/samples/auth/scm_integrations/create-201.json +0 -41
- data/samples/auth/scm_integrations/create-422.json +0 -36
- data/samples/auth/scm_integrations/destroy-204.json +0 -15
- data/samples/auth/scm_integrations/destroy-404.json +0 -23
- data/samples/auth/scm_integrations/show-200.json +0 -34
- data/samples/auth/scm_integrations/show-404.json +0 -23
- data/samples/auth/tokens/_meta.json +0 -13
- data/samples/auth/tokens/all-200.json +0 -32
- data/samples/auth/tokens/create-201.json +0 -37
- data/samples/auth/tokens/destroy-204.json +0 -19
- data/samples/auth/tokens/destroy-404.json +0 -19
- data/samples/auth/tokens/exchange-200.json +0 -25
- data/samples/auth/tokens/exchange-401.json +0 -24
- data/samples/auth/tokens/renew-200.json +0 -32
- data/samples/auth/tokens/renew-404.json +0 -20
- data/samples/auth/two_factor_auth/_meta.json +0 -10
- data/samples/auth/two_factor_auth/disable-not-initiated.json +0 -23
- data/samples/auth/two_factor_auth/disable-success.json +0 -29
- data/samples/auth/two_factor_auth/initiate-already-enabled.json +0 -29
- data/samples/auth/two_factor_auth/initiate-success.json +0 -36
- data/samples/auth/two_factor_auth/initiate-wrong-provider.json +0 -29
- data/samples/auth/two_factor_auth/status.json +0 -29
- data/samples/auth/two_factor_auth/validate-not-initiated.json +0 -29
- data/samples/auth/two_factor_auth/validate-success.json +0 -49
- data/samples/auth/two_factor_auth/validate-wrong.json +0 -29
- data/samples/auth/user/_meta.json +0 -10
- data/samples/auth/user/self.json +0 -54
- data/samples/auth/user/stop-free-trial.json +0 -24
- data/samples/auth/user/update-200.json +0 -59
- data/samples/auth/user/update-422.json +0 -33
- data/samples/billing/profile/_meta.json +0 -23
- data/samples/billing/profile/create-201.json +0 -50
- data/samples/billing/profile/create-400.json +0 -27
- data/samples/billing/profile/create-422.json +0 -44
- data/samples/billing/profile/show-200.json +0 -41
- data/samples/billing/profile/show-404.json +0 -22
- data/samples/billing/profile/update-200.json +0 -47
- data/samples/billing/profile/update-422.json +0 -32
- data/samples/regional/addons/_meta.json +0 -22
- data/samples/regional/addons/categories-guest.json +0 -36
- data/samples/regional/addons/categories-logged.json +0 -37
- data/samples/regional/addons/destroy-204.json +0 -19
- data/samples/regional/addons/destroy-404.json +0 -24
- data/samples/regional/addons/find-200.json +0 -48
- data/samples/regional/addons/find-404.json +0 -24
- data/samples/regional/addons/for-200.json +0 -50
- data/samples/regional/addons/providers-guest.json +0 -588
- data/samples/regional/addons/providers-logged.json +0 -705
- data/samples/regional/addons/provision-201.json +0 -58
- data/samples/regional/addons/provision-400.json +0 -29
- data/samples/regional/addons/sso-200.json +0 -49
- data/samples/regional/addons/sso-404.json +0 -24
- data/samples/regional/addons/token-200.json +0 -49
- data/samples/regional/addons/token-404.json +0 -24
- data/samples/regional/addons/update-200.json +0 -58
- data/samples/regional/addons/update-404.json +0 -30
- data/samples/regional/apps/_meta.json +0 -52
- data/samples/regional/apps/all.json +0 -99
- data/samples/regional/apps/create-201.json +0 -66
- data/samples/regional/apps/create-422.json +0 -34
- data/samples/regional/apps/destroy-204.json +0 -19
- data/samples/regional/apps/destroy-404.json +0 -24
- data/samples/regional/apps/destroy-422.json +0 -27
- data/samples/regional/apps/find-200.json +0 -60
- data/samples/regional/apps/find-404.json +0 -24
- data/samples/regional/apps/logs_url.json +0 -62
- data/samples/regional/apps/rename-200.json +0 -65
- data/samples/regional/apps/rename-404.json +0 -29
- data/samples/regional/apps/rename-422.json +0 -33
- data/samples/regional/apps/transfer-200.json +0 -65
- data/samples/regional/apps/transfer-404.json +0 -27
- data/samples/regional/apps/transfer-422.json +0 -34
- data/samples/regional/apps/update-200.json +0 -66
- data/samples/regional/apps/update-stack-404.json +0 -30
- data/samples/regional/autoscalers/_meta.json +0 -27
- data/samples/regional/autoscalers/create-201.json +0 -49
- data/samples/regional/autoscalers/create-500.json +0 -32
- data/samples/regional/autoscalers/destroy-204.json +0 -20
- data/samples/regional/autoscalers/destroy-404.json +0 -25
- data/samples/regional/autoscalers/find-200.json +0 -39
- data/samples/regional/autoscalers/find-404.json +0 -25
- data/samples/regional/autoscalers/for-200.json +0 -41
- data/samples/regional/autoscalers/update-200.json +0 -45
- data/samples/regional/autoscalers/update-404.json +0 -31
- data/samples/regional/autoscalers/update-500.json +0 -30
- data/samples/regional/collaborators/_meta.json +0 -17
- data/samples/regional/collaborators/accept-200.json +0 -60
- data/samples/regional/collaborators/accept-400.json +0 -24
- data/samples/regional/collaborators/accept-404.json +0 -24
- data/samples/regional/collaborators/destroy-204.json +0 -19
- data/samples/regional/collaborators/destroy-404.json +0 -24
- data/samples/regional/collaborators/for-200.json +0 -34
- data/samples/regional/collaborators/invite-201.json +0 -37
- data/samples/regional/collaborators/invite-422.json +0 -34
- data/samples/regional/containers/_meta.json +0 -25
- data/samples/regional/containers/for-200.json +0 -39
- data/samples/regional/containers/restart-202.json +0 -28
- data/samples/regional/containers/restart-422.json +0 -33
- data/samples/regional/containers/scale-202.json +0 -48
- data/samples/regional/containers/scale-422.json +0 -36
- data/samples/regional/containers/sizes-guest.json +0 -115
- data/samples/regional/containers/sizes-logged.json +0 -116
- data/samples/regional/deployments/_meta.json +0 -8
- data/samples/regional/deployments/find-200.json +0 -45
- data/samples/regional/deployments/find-404.json +0 -24
- data/samples/regional/deployments/for-with-paging.json +0 -35
- data/samples/regional/deployments/for-without-pages.json +0 -56
- data/samples/regional/deployments/logs-200.json +0 -22
- data/samples/regional/deployments/logs-404.json +0 -24
- data/samples/regional/domains/_meta.json +0 -21
- data/samples/regional/domains/create-201.json +0 -44
- data/samples/regional/domains/create-422.json +0 -33
- data/samples/regional/domains/destroy-204.json +0 -19
- data/samples/regional/domains/destroy-404.json +0 -24
- data/samples/regional/domains/find-200.json +0 -38
- data/samples/regional/domains/find-404.json +0 -24
- data/samples/regional/domains/for-200.json +0 -40
- data/samples/regional/domains/update-200.json +0 -44
- data/samples/regional/domains/update-404.json +0 -30
- data/samples/regional/domains/update-422.json +0 -33
- data/samples/regional/environment/_meta.json +0 -43
- data/samples/regional/environment/bulk-destroy-204.json +0 -19
- data/samples/regional/environment/bulk-update-200.json +0 -70
- data/samples/regional/environment/create-201.json +0 -36
- data/samples/regional/environment/create-422.json +0 -37
- data/samples/regional/environment/destroy-204.json +0 -19
- data/samples/regional/environment/destroy-404.json +0 -24
- data/samples/regional/environment/for-200.json +0 -31
- data/samples/regional/environment/update-200.json +0 -35
- data/samples/regional/environment/update-404.json +0 -30
- data/samples/regional/events/_meta.json +0 -3
- data/samples/regional/events/all-200.json +0 -619
- data/samples/regional/events/categories-guest.json +0 -66
- data/samples/regional/events/categories-logged.json +0 -67
- data/samples/regional/events/for-200.json +0 -404
- data/samples/regional/events/types-guest.json +0 -288
- data/samples/regional/events/types-logged.json +0 -289
- data/samples/regional/logs/_meta.json +0 -11
- data/samples/regional/logs/archives-200.json +0 -28
- data/samples/regional/logs/get-guest-200.json +0 -18
- data/samples/regional/logs/get-logged-200.json +0 -19
- data/samples/regional/logs/get-with-limit-200.json +0 -18
- data/samples/regional/metrics/_meta.json +0 -15
- data/samples/regional/metrics/for-invalid-400.json +0 -23
- data/samples/regional/metrics/for-valid-cpu-200.json +0 -747
- data/samples/regional/metrics/for-valid-router-404.json +0 -23
- data/samples/regional/metrics/types-guest.json +0 -66
- data/samples/regional/metrics/types-logged.json +0 -67
- data/samples/regional/notifiers/_meta.json +0 -23
- data/samples/regional/notifiers/create-201.json +0 -55
- data/samples/regional/notifiers/create-404.json +0 -30
- data/samples/regional/notifiers/create-422.json +0 -36
- data/samples/regional/notifiers/destroy-204.json +0 -19
- data/samples/regional/notifiers/destroy-404.json +0 -24
- data/samples/regional/notifiers/find-200.json +0 -47
- data/samples/regional/notifiers/find-404.json +0 -24
- data/samples/regional/notifiers/for-200.json +0 -49
- data/samples/regional/notifiers/platforms-guest.json +0 -184
- data/samples/regional/notifiers/platforms-logged.json +0 -185
- data/samples/regional/notifiers/test-200.json +0 -22
- data/samples/regional/notifiers/test-404.json +0 -25
- data/samples/regional/notifiers/update-200.json +0 -53
- data/samples/regional/operations/_meta.json +0 -5
- data/samples/regional/operations/find-200.json +0 -31
- data/samples/regional/operations/find-404.json +0 -24
- data/samples/regional/scm_repo_links/_meta.json +0 -22
- data/samples/regional/scm_repo_links/create-201.json +0 -54
- data/samples/regional/scm_repo_links/destroy-204.json +0 -15
- data/samples/regional/scm_repo_links/manual-deploy-200.json +0 -32
- data/samples/regional/scm_repo_links/show-200.json +0 -43
- data/samples/regional/scm_repo_links/update-200.json +0 -50
- data/samples/regional_database/backups/_meta.json +0 -4
- data/samples/regional_database/backups/archive-200.json +0 -24
- data/samples/regional_database/backups/archive-400.json +0 -24
- data/samples/regional_database/backups/create-201.json +0 -32
- data/samples/regional_database/backups/create-400.json +0 -24
- data/samples/regional_database/backups/for-200.json +0 -52
- data/samples/regional_database/backups/for-400.json +0 -24
- data/samples/regional_database/databases/_meta.json +0 -3
- data/samples/regional_database/databases/find-200.json +0 -47
- data/samples/regional_database/databases/find-400.json +0 -24
- data/samples/regional_database/databases/upgrade-202.json +0 -39
- data/samples/regional_database/databases/upgrade-400.json +0 -24
- data/spec/scalingo/api/client_spec.rb +0 -256
- data/spec/scalingo/api/endpoint_spec.rb +0 -45
- data/spec/scalingo/api/response_spec.rb +0 -301
- data/spec/scalingo/auth/keys_spec.rb +0 -58
- data/spec/scalingo/auth/scm_integrations_spec.rb +0 -58
- data/spec/scalingo/auth/tokens_spec.rb +0 -74
- data/spec/scalingo/auth/two_factor_auth_spec.rb +0 -69
- data/spec/scalingo/auth/user_spec.rb +0 -31
- data/spec/scalingo/auth_spec.rb +0 -15
- data/spec/scalingo/bearer_token_spec.rb +0 -72
- data/spec/scalingo/billing/profile_spec.rb +0 -55
- data/spec/scalingo/billing_spec.rb +0 -11
- data/spec/scalingo/client_spec.rb +0 -93
- data/spec/scalingo/configuration_spec.rb +0 -57
- data/spec/scalingo/core_client_spec.rb +0 -23
- data/spec/scalingo/regional/addons_spec.rb +0 -169
- data/spec/scalingo/regional/apps_spec.rb +0 -137
- data/spec/scalingo/regional/autoscalers_spec.rb +0 -84
- data/spec/scalingo/regional/collaborators_spec.rb +0 -69
- data/spec/scalingo/regional/containers_spec.rb +0 -67
- data/spec/scalingo/regional/deployments_spec.rb +0 -45
- data/spec/scalingo/regional/domains_spec.rb +0 -84
- data/spec/scalingo/regional/environment_spec.rb +0 -77
- data/spec/scalingo/regional/events_spec.rb +0 -65
- data/spec/scalingo/regional/logs_spec.rb +0 -39
- data/spec/scalingo/regional/metrics_spec.rb +0 -46
- data/spec/scalingo/regional/notifiers_spec.rb +0 -113
- data/spec/scalingo/regional/operations_spec.rb +0 -27
- data/spec/scalingo/regional/scm_repo_links_spec.rb +0 -48
- data/spec/scalingo/regional_database/backups_spec.rb +0 -58
- data/spec/scalingo/regional_database/databases_spec.rb +0 -39
- data/spec/scalingo/regional_database_spec.rb +0 -11
- data/spec/scalingo/regional_spec.rb +0 -14
- data/spec/scalingo/token_holder_spec.rb +0 -81
@@ -2,82 +2,11 @@ require "scalingo/api/endpoint"
|
|
2
2
|
|
3
3
|
module Scalingo
|
4
4
|
class Regional::Environment < API::Endpoint
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
headers,
|
12
|
-
&block
|
13
|
-
)
|
14
|
-
|
15
|
-
unpack(:variables) { response }
|
16
|
-
end
|
17
|
-
|
18
|
-
def create(app_id, payload = {}, headers = nil, &block)
|
19
|
-
data = {variable: payload}
|
20
|
-
|
21
|
-
response = connection.post(
|
22
|
-
"apps/#{app_id}/variables",
|
23
|
-
data,
|
24
|
-
headers,
|
25
|
-
&block
|
26
|
-
)
|
27
|
-
|
28
|
-
unpack(:variable) { response }
|
29
|
-
end
|
30
|
-
|
31
|
-
def update(app_id, variable_id, value, headers = nil, &block)
|
32
|
-
data = {variable: {value: value}}
|
33
|
-
|
34
|
-
response = connection.patch(
|
35
|
-
"apps/#{app_id}/variables/#{variable_id}",
|
36
|
-
data,
|
37
|
-
headers,
|
38
|
-
&block
|
39
|
-
)
|
40
|
-
|
41
|
-
unpack(:variable) { response }
|
42
|
-
end
|
43
|
-
|
44
|
-
def destroy(app_id, variable_id, headers = nil, &block)
|
45
|
-
data = nil
|
46
|
-
|
47
|
-
response = connection.delete(
|
48
|
-
"apps/#{app_id}/variables/#{variable_id}",
|
49
|
-
data,
|
50
|
-
headers,
|
51
|
-
&block
|
52
|
-
)
|
53
|
-
|
54
|
-
unpack { response }
|
55
|
-
end
|
56
|
-
|
57
|
-
def bulk_update(app_id, variables, headers = nil, &block)
|
58
|
-
data = {variables: variables}
|
59
|
-
|
60
|
-
response = connection.put(
|
61
|
-
"apps/#{app_id}/variables",
|
62
|
-
data,
|
63
|
-
headers,
|
64
|
-
&block
|
65
|
-
)
|
66
|
-
|
67
|
-
unpack(:variables) { response }
|
68
|
-
end
|
69
|
-
|
70
|
-
def bulk_destroy(app_id, variable_ids, headers = nil, &block)
|
71
|
-
data = {variable_ids: variable_ids}
|
72
|
-
|
73
|
-
response = connection.delete(
|
74
|
-
"apps/#{app_id}/variables",
|
75
|
-
data,
|
76
|
-
headers,
|
77
|
-
&block
|
78
|
-
)
|
79
|
-
|
80
|
-
unpack { response }
|
81
|
-
end
|
5
|
+
get :list, "apps/{app_id}/variables"
|
6
|
+
post :create, "apps/{app_id}/variables", root_key: :variable
|
7
|
+
put :update, "apps/{app_id}/variables/{id}", root_key: :variable
|
8
|
+
delete :delete, "apps/{app_id}/variables/{id}"
|
9
|
+
put :bulk_update, "apps/{app_id}/variables", root_key: :variables
|
10
|
+
delete :bulk_destroy, "apps/{app_id}/variables", root_key: :variable_ids, params_as_body: true
|
82
11
|
end
|
83
12
|
end
|
@@ -1,55 +1,10 @@
|
|
1
1
|
module Scalingo
|
2
2
|
class Regional::Events < API::Endpoint
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
response = connection.get(
|
7
|
-
"events",
|
8
|
-
data,
|
9
|
-
headers,
|
10
|
-
&block
|
11
|
-
)
|
12
|
-
|
13
|
-
unpack(:events) { response }
|
14
|
-
end
|
15
|
-
|
16
|
-
def for(app_id, payload = {}, headers = nil, &block)
|
17
|
-
data = payload.compact
|
18
|
-
|
19
|
-
response = connection.get(
|
20
|
-
"apps/#{app_id}/events",
|
21
|
-
data,
|
22
|
-
headers,
|
23
|
-
&block
|
24
|
-
)
|
25
|
-
|
26
|
-
unpack(:events) { response }
|
27
|
-
end
|
28
|
-
|
29
|
-
def types(headers = nil, &block)
|
30
|
-
data = nil
|
31
|
-
|
32
|
-
response = connection(fallback_to_guest: true).get(
|
33
|
-
"event_types",
|
34
|
-
data,
|
35
|
-
headers,
|
36
|
-
&block
|
37
|
-
)
|
38
|
-
|
39
|
-
unpack(:event_types) { response }
|
40
|
-
end
|
41
|
-
|
42
|
-
def categories(headers = nil, &block)
|
43
|
-
data = nil
|
44
|
-
|
45
|
-
response = connection(fallback_to_guest: true).get(
|
46
|
-
"event_categories",
|
47
|
-
data,
|
48
|
-
headers,
|
49
|
-
&block
|
50
|
-
)
|
51
|
-
|
52
|
-
unpack(:event_categories) { response }
|
3
|
+
get :list, "events{?query*}", optional: [:app_id, :query] do |req, params|
|
4
|
+
# Can't rely on URI templates if we need a static part depending on a dynamic one
|
5
|
+
req.path = "apps/#{params[:app_id]}/#{req.path}" if params[:app_id]
|
53
6
|
end
|
7
|
+
get :types, "event_types"
|
8
|
+
get :categories, "event_categories"
|
54
9
|
end
|
55
10
|
end
|
@@ -1,38 +1,20 @@
|
|
1
1
|
module Scalingo
|
2
2
|
class Regional::Logs < API::Endpoint
|
3
|
-
|
4
|
-
data = payload.compact
|
3
|
+
get :archives, "apps/{app_id}/logs_archives"
|
5
4
|
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
)
|
12
|
-
|
13
|
-
unpack { response }
|
14
|
-
end
|
15
|
-
|
16
|
-
def archives(app_id, headers = nil, &block)
|
17
|
-
data = nil
|
18
|
-
|
19
|
-
response = connection.get(
|
20
|
-
"apps/#{app_id}/logs_archives",
|
21
|
-
data,
|
22
|
-
headers,
|
23
|
-
&block
|
24
|
-
)
|
25
|
-
|
26
|
-
unpack(:archives) { response }
|
5
|
+
def fetch(url, **params, &block)
|
6
|
+
request(:get, url, **params) do |req|
|
7
|
+
block&.call(req, params)
|
8
|
+
req.params[:n] = params[:n] if params[:n].present?
|
9
|
+
end
|
27
10
|
end
|
28
11
|
|
29
12
|
## Helper method to avoid having to manually chain two operations
|
30
|
-
def
|
31
|
-
|
32
|
-
|
33
|
-
return logs_response unless logs_response.successful?
|
13
|
+
def find(**params, &block)
|
14
|
+
params[:id] = params.delete(:app_id) if params[:app_id].present?
|
15
|
+
logs_response = client.apps.logs_url(**params)
|
34
16
|
|
35
|
-
|
17
|
+
fetch(logs_response.body, **params, &block)
|
36
18
|
end
|
37
19
|
end
|
38
20
|
end
|
@@ -4,39 +4,7 @@ require "active_support/core_ext/hash/indifferent_access"
|
|
4
4
|
|
5
5
|
module Scalingo
|
6
6
|
class Regional::Metrics < API::Endpoint
|
7
|
-
|
8
|
-
|
9
|
-
data = payload.except(:metric, :container_type, :container_index).compact
|
10
|
-
|
11
|
-
metric = payload[:metric]
|
12
|
-
url = "apps/#{app_id}/stats/#{metric}"
|
13
|
-
|
14
|
-
if payload[:container_type]
|
15
|
-
url = "#{url}/#{payload[:container_type]}"
|
16
|
-
url = "#{url}/#{payload[:container_index]}" if payload[:container_index]
|
17
|
-
end
|
18
|
-
|
19
|
-
response = connection.get(
|
20
|
-
url,
|
21
|
-
data,
|
22
|
-
headers,
|
23
|
-
&block
|
24
|
-
)
|
25
|
-
|
26
|
-
unpack { response }
|
27
|
-
end
|
28
|
-
|
29
|
-
def types(headers = nil, &block)
|
30
|
-
data = nil
|
31
|
-
|
32
|
-
response = connection(fallback_to_guest: true).get(
|
33
|
-
"features/metrics",
|
34
|
-
data,
|
35
|
-
headers,
|
36
|
-
&block
|
37
|
-
)
|
38
|
-
|
39
|
-
unpack(:metrics) { response }
|
40
|
-
end
|
7
|
+
get :list, "/apps/{app_id}/stats/{metric}{/container_type}{/container_index}", optional: [:container_type, :container_index]
|
8
|
+
get :types, "/features/metrics"
|
41
9
|
end
|
42
10
|
end
|
@@ -2,95 +2,12 @@ require "scalingo/api/endpoint"
|
|
2
2
|
|
3
3
|
module Scalingo
|
4
4
|
class Regional::Notifiers < API::Endpoint
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
&block
|
13
|
-
)
|
14
|
-
|
15
|
-
unpack(:notifiers) { response }
|
16
|
-
end
|
17
|
-
|
18
|
-
def find(app_id, notifier_id, headers = nil, &block)
|
19
|
-
data = nil
|
20
|
-
|
21
|
-
response = connection.get(
|
22
|
-
"apps/#{app_id}/notifiers/#{notifier_id}",
|
23
|
-
data,
|
24
|
-
headers,
|
25
|
-
&block
|
26
|
-
)
|
27
|
-
|
28
|
-
unpack(:notifier) { response }
|
29
|
-
end
|
30
|
-
|
31
|
-
def create(app_id, payload = {}, headers = nil, &block)
|
32
|
-
data = {notifier: payload}
|
33
|
-
|
34
|
-
response = connection.post(
|
35
|
-
"apps/#{app_id}/notifiers",
|
36
|
-
data,
|
37
|
-
headers,
|
38
|
-
&block
|
39
|
-
)
|
40
|
-
|
41
|
-
unpack(:notifier) { response }
|
42
|
-
end
|
43
|
-
|
44
|
-
def update(app_id, notifier_id, payload = {}, headers = nil, &block)
|
45
|
-
data = {notifier: payload}
|
46
|
-
|
47
|
-
response = connection.patch(
|
48
|
-
"apps/#{app_id}/notifiers/#{notifier_id}",
|
49
|
-
data,
|
50
|
-
headers,
|
51
|
-
&block
|
52
|
-
)
|
53
|
-
|
54
|
-
unpack(:notifier) { response }
|
55
|
-
end
|
56
|
-
|
57
|
-
def destroy(app_id, notifier_id, headers = nil, &block)
|
58
|
-
data = nil
|
59
|
-
|
60
|
-
response = connection.delete(
|
61
|
-
"apps/#{app_id}/notifiers/#{notifier_id}",
|
62
|
-
data,
|
63
|
-
headers,
|
64
|
-
&block
|
65
|
-
)
|
66
|
-
|
67
|
-
unpack { response }
|
68
|
-
end
|
69
|
-
|
70
|
-
def test(app_id, notifier_id, headers = nil, &block)
|
71
|
-
data = nil
|
72
|
-
|
73
|
-
response = connection.post(
|
74
|
-
"apps/#{app_id}/notifiers/#{notifier_id}/test",
|
75
|
-
data,
|
76
|
-
headers,
|
77
|
-
&block
|
78
|
-
)
|
79
|
-
|
80
|
-
unpack { response }
|
81
|
-
end
|
82
|
-
|
83
|
-
def platforms(headers = nil, &block)
|
84
|
-
data = nil
|
85
|
-
|
86
|
-
response = connection(fallback_to_guest: true).get(
|
87
|
-
"notification_platforms",
|
88
|
-
data,
|
89
|
-
headers,
|
90
|
-
&block
|
91
|
-
)
|
92
|
-
|
93
|
-
unpack(:notification_platforms) { response }
|
94
|
-
end
|
5
|
+
get :list, "/apps/{app_id}/notifiers"
|
6
|
+
get :find, "/apps/{app_id}/notifiers/{id}"
|
7
|
+
post :create, "/apps/{app_id}/notifiers", root_key: :notifier
|
8
|
+
put :update, "/apps/{app_id}/notifiers/{id}", root_key: :notifier
|
9
|
+
delete :delete, "/apps/{app_id}/notifiers/{id}"
|
10
|
+
get :platforms, "/notification_platforms"
|
11
|
+
post :test, "/apps/{app_id}/notifiers/{id}/test"
|
95
12
|
end
|
96
13
|
end
|
@@ -2,25 +2,12 @@ require "scalingo/api/endpoint"
|
|
2
2
|
|
3
3
|
module Scalingo
|
4
4
|
class Regional::Operations < API::Endpoint
|
5
|
-
|
6
|
-
get(
|
7
|
-
"apps/#{app_id}/operations/#{operation_id}",
|
8
|
-
headers,
|
9
|
-
&block
|
10
|
-
)
|
11
|
-
end
|
12
|
-
|
13
|
-
def get(url, headers = nil, &block)
|
14
|
-
data = nil
|
15
|
-
|
16
|
-
response = connection.get(
|
17
|
-
url,
|
18
|
-
data,
|
19
|
-
headers,
|
20
|
-
&block
|
21
|
-
)
|
5
|
+
get :find, "/apps/{app_id}/operations/{id}"
|
22
6
|
|
23
|
-
|
7
|
+
def fetch(url, **params, &block)
|
8
|
+
request(:get, url, **params) do |req|
|
9
|
+
block&.call(req, params)
|
10
|
+
end
|
24
11
|
end
|
25
12
|
end
|
26
13
|
end
|
@@ -2,108 +2,13 @@ require "scalingo/api/endpoint"
|
|
2
2
|
|
3
3
|
module Scalingo
|
4
4
|
class Regional::ScmRepoLinks < API::Endpoint
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
)
|
14
|
-
|
15
|
-
unpack(:scm_repo_link) { response }
|
16
|
-
end
|
17
|
-
|
18
|
-
def create(app_id, payload = {}, headers = nil, &block)
|
19
|
-
data = {scm_repo_link: payload}
|
20
|
-
|
21
|
-
response = connection.post(
|
22
|
-
"apps/#{app_id}/scm_repo_link",
|
23
|
-
data,
|
24
|
-
headers,
|
25
|
-
&block
|
26
|
-
)
|
27
|
-
|
28
|
-
unpack(:scm_repo_link) { response }
|
29
|
-
end
|
30
|
-
|
31
|
-
def update(app_id, payload = {}, headers = nil, &block)
|
32
|
-
data = {scm_repo_link: payload}
|
33
|
-
|
34
|
-
response = connection.patch(
|
35
|
-
"apps/#{app_id}/scm_repo_link",
|
36
|
-
data,
|
37
|
-
headers,
|
38
|
-
&block
|
39
|
-
)
|
40
|
-
|
41
|
-
unpack(:scm_repo_link) { response }
|
42
|
-
end
|
43
|
-
|
44
|
-
def destroy(app_id, headers = nil, &block)
|
45
|
-
data = nil
|
46
|
-
|
47
|
-
response = connection.delete(
|
48
|
-
"apps/#{app_id}/scm_repo_link",
|
49
|
-
data,
|
50
|
-
headers,
|
51
|
-
&block
|
52
|
-
)
|
53
|
-
|
54
|
-
unpack(:scm_repo_link) { response }
|
55
|
-
end
|
56
|
-
|
57
|
-
def deploy(app_id, branch, headers = nil, &block)
|
58
|
-
data = {branch: branch}
|
59
|
-
|
60
|
-
response = connection.post(
|
61
|
-
"apps/#{app_id}/scm_repo_link/manual_deploy",
|
62
|
-
data,
|
63
|
-
headers,
|
64
|
-
&block
|
65
|
-
)
|
66
|
-
|
67
|
-
unpack(:deployment) { response }
|
68
|
-
end
|
69
|
-
|
70
|
-
def review_app(review_app, pull_request_id, headers = nil, &block)
|
71
|
-
data = {pull_request_id: pull_request_id}
|
72
|
-
|
73
|
-
response = connection.post(
|
74
|
-
"apps/#{app_id}/scm_repo_link/manual_review_app",
|
75
|
-
data,
|
76
|
-
headers,
|
77
|
-
&block
|
78
|
-
)
|
79
|
-
|
80
|
-
unpack(:review_app) { response }
|
81
|
-
end
|
82
|
-
|
83
|
-
def branches(app_id, headers = nil, &block)
|
84
|
-
data = nil
|
85
|
-
|
86
|
-
response = connection.get(
|
87
|
-
"apps/#{app_id}/scm_repo_link/branches",
|
88
|
-
data,
|
89
|
-
headers,
|
90
|
-
&block
|
91
|
-
)
|
92
|
-
|
93
|
-
unpack(:branches) { response }
|
94
|
-
end
|
95
|
-
|
96
|
-
def pulls(app_id, headers = nil, &block)
|
97
|
-
data = nil
|
98
|
-
|
99
|
-
response = connection.get(
|
100
|
-
"apps/#{app_id}/scm_repo_link/pulls",
|
101
|
-
data,
|
102
|
-
headers,
|
103
|
-
&block
|
104
|
-
)
|
105
|
-
|
106
|
-
unpack(:pulls) { response }
|
107
|
-
end
|
5
|
+
get :find, "/apps/{app_id}/scm_repo_link"
|
6
|
+
post :create, "/apps/{app_id}/scm_repo_link", root_key: :scm_repo_link
|
7
|
+
put :update, "/apps/{app_id}/scm_repo_link", root_key: :scm_repo_link
|
8
|
+
delete :delete, "/apps/{app_id}/scm_repo_link"
|
9
|
+
get :branches, "/apps/{app_id}/scm_repo_link/branches"
|
10
|
+
get :pulls, "/apps/{app_id}/scm_repo_link/pulls"
|
11
|
+
post :deploy, "/apps/{app_id}/scm_repo_link/manual_deploy"
|
12
|
+
post :review_app, "/apps/{app_id}/scm_repo_link/manual_review_app"
|
108
13
|
end
|
109
14
|
end
|
data/lib/scalingo/regional.rb
CHANGED
@@ -4,59 +4,14 @@ module Scalingo
|
|
4
4
|
module TokenHolder
|
5
5
|
def self.included(base)
|
6
6
|
base.attr_reader :token
|
7
|
-
base.attr_reader :database_tokens
|
8
7
|
end
|
9
8
|
|
10
9
|
def token=(input)
|
11
|
-
@token =
|
12
|
-
end
|
13
|
-
|
14
|
-
def add_database_token(database_id, token)
|
15
|
-
@database_tokens ||= {}
|
16
|
-
@database_tokens[database_id] = bearer_token(token)
|
10
|
+
@token = input.is_a?(BearerToken) ? input : BearerToken.new(input.to_s)
|
17
11
|
end
|
18
12
|
|
19
13
|
def authenticated?
|
20
|
-
valid?(token)
|
21
|
-
end
|
22
|
-
|
23
|
-
def authenticated_for_database?(database_id)
|
24
|
-
return false if database_tokens.nil?
|
25
|
-
return false unless database_tokens.has_key?(database_id)
|
26
|
-
|
27
|
-
valid?(database_tokens[database_id])
|
28
|
-
end
|
29
|
-
|
30
|
-
def authenticate_with_bearer_token(bearer_token, expires_at:, raise_on_expired_token:)
|
31
|
-
self.token = build_bearer_token(bearer_token, expires_at: expires_at, raise_on_expired_token: raise_on_expired_token)
|
32
|
-
end
|
33
|
-
|
34
|
-
def authenticate_database_with_bearer_token(database_id, bearer_token, expires_at:, raise_on_expired_token:)
|
35
|
-
bearer_token = build_bearer_token(bearer_token, expires_at: expires_at, raise_on_expired_token: raise_on_expired_token)
|
36
|
-
|
37
|
-
add_database_token(database_id, bearer_token)
|
38
|
-
end
|
39
|
-
|
40
|
-
private
|
41
|
-
|
42
|
-
def valid?(token)
|
43
14
|
token.present? && !token.expired?
|
44
15
|
end
|
45
|
-
|
46
|
-
def bearer_token(token)
|
47
|
-
token.is_a?(BearerToken) ? token : BearerToken.new(token.to_s, raise_on_expired: config.raise_on_expired_token)
|
48
|
-
end
|
49
|
-
|
50
|
-
def build_bearer_token(bearer_token, expires_at:, raise_on_expired_token:)
|
51
|
-
return bearer_token unless expires_at
|
52
|
-
|
53
|
-
token = bearer_token.is_a?(BearerToken) ? bearer_token.value : bearer_token.to_s
|
54
|
-
|
55
|
-
BearerToken.new(
|
56
|
-
token,
|
57
|
-
expires_at: expires_at,
|
58
|
-
raise_on_expired: raise_on_expired_token,
|
59
|
-
)
|
60
|
-
end
|
61
16
|
end
|
62
17
|
end
|
data/lib/scalingo/version.rb
CHANGED
data/scalingo.gemspec
CHANGED
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
|
|
19
19
|
"changelog_uri" => "https://github.com/Scalingo/scalingo-ruby-api/blob/master/CHANGELOG.md",
|
20
20
|
"documentation_uri" => "https://developers.scalingo.com/",
|
21
21
|
"homepage_uri" => "https://www.scalingo.com/",
|
22
|
-
"source_code_uri" => "https://github.com/Scalingo/scalingo-ruby-api"
|
22
|
+
"source_code_uri" => "https://github.com/Scalingo/scalingo-ruby-api"
|
23
23
|
}
|
24
24
|
|
25
25
|
# Specify which files should be added to the gem when it is released.
|
@@ -32,18 +32,18 @@ Gem::Specification.new do |s|
|
|
32
32
|
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
33
33
|
s.require_paths = ["lib"]
|
34
34
|
|
35
|
-
s.
|
36
|
-
|
35
|
+
s.add_dependency "addressable", [">= 2.8.0", "< 3"]
|
37
36
|
s.add_dependency "activesupport", [">= 5", "< 8"]
|
38
|
-
s.add_dependency "faraday", "~>
|
39
|
-
s.add_dependency "faraday_middleware", "~> 1.0"
|
37
|
+
s.add_dependency "faraday", "~> 2.0"
|
40
38
|
s.add_dependency "multi_json", ">= 1.0.3", "~> 1.0"
|
39
|
+
s.add_dependency "jwt"
|
41
40
|
|
42
41
|
s.add_development_dependency "bundler", "~> 2.0"
|
42
|
+
s.add_development_dependency "dotenv"
|
43
43
|
s.add_development_dependency "rake", "~> 13.0"
|
44
44
|
s.add_development_dependency "rspec", "~> 3.0"
|
45
|
-
s.add_development_dependency "standard", "~> 1.
|
45
|
+
s.add_development_dependency "standard", "~> 1.32"
|
46
46
|
s.add_development_dependency "rubocop-rspec"
|
47
47
|
s.add_development_dependency "pry", "~> 0.14.1"
|
48
|
-
s.add_development_dependency "webmock", "~> 3.
|
48
|
+
s.add_development_dependency "webmock", "~> 3.19"
|
49
49
|
end
|