shopify-cli 1.4.1 → 1.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/CODEOWNERS +2 -2
- data/.github/CONTRIBUTING.md +9 -1
- data/.github/PULL_REQUEST_TEMPLATE.md +3 -2
- data/.github/workflows/release.yml +0 -1
- data/.github/workflows/triage.yml +22 -0
- data/.rubocop.yml +21 -7
- data/.rubocop_todo.yml +2 -15
- data/.travis.yml +1 -1
- data/CHANGELOG.md +28 -0
- data/Gemfile +12 -11
- data/Gemfile.lock +17 -14
- data/README.md +39 -7
- data/RELEASING.md +5 -13
- data/Rakefile +32 -28
- data/bin/load_shopify.rb +6 -6
- data/bin/shopify +2 -2
- data/dev.yml +2 -2
- data/docs/_config.yml +1 -18
- data/docs/app/node/commands/index.md +2 -80
- data/docs/app/node/index.md +2 -33
- data/docs/app/rails/commands/index.md +2 -78
- data/docs/app/rails/index.md +2 -34
- data/docs/core/index.md +2 -84
- data/docs/getting-started/index.md +2 -25
- data/docs/getting-started/install/index.md +1 -118
- data/docs/getting-started/migrate/index.md +2 -94
- data/docs/getting-started/uninstall/index.md +2 -35
- data/docs/getting-started/upgrade/index.md +2 -39
- data/docs/help/start-app/index.md +2 -4
- data/docs/index.md +2 -24
- data/ext/shopify-cli/extconf.rb +7 -7
- data/install.sh +1 -1
- data/lib/docgen/markdown.rb +12 -12
- data/lib/graphql/fetch_specifications.graphql +14 -0
- data/lib/{project_types/extension/graphql → graphql}/get_app_by_api_key.graphql +0 -0
- data/lib/project_types/extension/cli.rb +54 -47
- data/lib/project_types/extension/commands/build.rb +3 -3
- data/lib/project_types/extension/commands/create.rb +17 -10
- data/lib/project_types/extension/commands/extension_command.rb +12 -5
- data/lib/project_types/extension/commands/push.rb +8 -8
- data/lib/project_types/extension/commands/register.rb +19 -30
- data/lib/project_types/extension/commands/serve.rb +31 -3
- data/lib/project_types/extension/commands/tunnel.rb +12 -12
- data/lib/project_types/extension/extension_project.rb +8 -4
- data/lib/project_types/extension/extension_project_keys.rb +4 -4
- data/lib/project_types/extension/features/argo.rb +117 -0
- data/lib/project_types/extension/features/argo_config.rb +5 -5
- data/lib/project_types/extension/features/argo_dependencies.rb +5 -5
- data/lib/project_types/extension/features/argo_setup.rb +2 -2
- data/lib/project_types/extension/features/argo_setup_steps.rb +4 -4
- data/lib/project_types/extension/forms/create.rb +28 -34
- data/lib/project_types/extension/forms/questions/ask_app.rb +53 -0
- data/lib/project_types/extension/forms/questions/ask_name.rb +40 -0
- data/lib/project_types/extension/forms/questions/ask_type.rb +47 -0
- data/lib/project_types/extension/messages/messages.rb +55 -52
- data/lib/project_types/extension/models/lazy_specification_handler.rb +12 -0
- data/lib/project_types/extension/models/specification.rb +37 -0
- data/lib/project_types/extension/models/specification_handlers/checkout_post_purchase.rb +19 -0
- data/lib/project_types/extension/models/specification_handlers/default.rb +67 -0
- data/lib/project_types/extension/models/specifications.rb +88 -0
- data/lib/project_types/extension/tasks/configure_features.rb +52 -0
- data/lib/project_types/extension/tasks/converters/app_converter.rb +6 -6
- data/lib/project_types/extension/tasks/converters/registration_converter.rb +6 -6
- data/lib/project_types/extension/tasks/converters/validation_error_converter.rb +4 -4
- data/lib/project_types/extension/tasks/converters/version_converter.rb +7 -7
- data/lib/project_types/extension/tasks/create_extension.rb +4 -4
- data/lib/project_types/extension/tasks/fetch_specifications.rb +18 -0
- data/lib/project_types/extension/tasks/get_app.rb +4 -4
- data/lib/project_types/extension/tasks/get_apps.rb +3 -3
- data/lib/project_types/extension/tasks/update_draft.rb +4 -4
- data/lib/project_types/extension/tasks/user_errors.rb +4 -4
- data/lib/project_types/node/cli.rb +19 -16
- data/lib/project_types/node/commands/connect.rb +15 -0
- data/lib/project_types/node/commands/create.rb +44 -41
- data/lib/project_types/node/commands/deploy.rb +4 -4
- data/lib/project_types/node/commands/deploy/heroku.rb +24 -24
- data/lib/project_types/node/commands/generate.rb +9 -18
- data/lib/project_types/node/commands/open.rb +2 -2
- data/lib/project_types/node/commands/populate.rb +6 -6
- data/lib/project_types/node/commands/populate/customer.rb +5 -5
- data/lib/project_types/node/commands/populate/draft_order.rb +5 -5
- data/lib/project_types/node/commands/populate/product.rb +5 -5
- data/lib/project_types/node/commands/serve.rb +9 -9
- data/lib/project_types/node/commands/tunnel.rb +7 -7
- data/lib/project_types/node/forms/create.rb +17 -8
- data/lib/project_types/node/messages/messages.rb +20 -53
- data/lib/project_types/rails/cli.rb +21 -18
- data/lib/project_types/rails/commands/connect.rb +15 -0
- data/lib/project_types/rails/commands/create.rb +58 -57
- data/lib/project_types/rails/commands/deploy.rb +4 -4
- data/lib/project_types/rails/commands/deploy/heroku.rb +30 -30
- data/lib/project_types/rails/commands/generate.rb +7 -7
- data/lib/project_types/rails/commands/generate/webhook.rb +6 -6
- data/lib/project_types/rails/commands/open.rb +2 -2
- data/lib/project_types/rails/commands/populate.rb +6 -6
- data/lib/project_types/rails/commands/populate/customer.rb +5 -5
- data/lib/project_types/rails/commands/populate/draft_order.rb +5 -5
- data/lib/project_types/rails/commands/populate/product.rb +5 -5
- data/lib/project_types/rails/commands/serve.rb +11 -11
- data/lib/project_types/rails/commands/tunnel.rb +7 -7
- data/lib/project_types/rails/forms/create.rb +35 -25
- data/lib/project_types/rails/gem.rb +24 -24
- data/lib/project_types/rails/messages/messages.rb +13 -9
- data/lib/project_types/rails/ruby.rb +2 -2
- data/lib/project_types/script/cli.rb +44 -38
- data/lib/project_types/script/commands/create.rb +15 -10
- data/lib/project_types/script/commands/disable.rb +3 -3
- data/lib/project_types/script/commands/enable.rb +19 -9
- data/lib/project_types/script/commands/push.rb +10 -17
- data/lib/project_types/script/config/extension_points.yml +30 -12
- data/lib/project_types/script/errors.rb +22 -0
- data/lib/project_types/script/forms/create.rb +29 -5
- data/lib/project_types/script/graphql/app_script_update_or_create.graphql +12 -1
- data/lib/project_types/script/layers/application/build_script.rb +19 -19
- data/lib/project_types/script/layers/application/create_script.rb +45 -12
- data/lib/project_types/script/layers/application/disable_script.rb +2 -2
- data/lib/project_types/script/layers/application/enable_script.rb +2 -2
- data/lib/project_types/script/layers/application/extension_points.rb +24 -0
- data/lib/project_types/script/layers/application/project_dependencies.rb +4 -4
- data/lib/project_types/script/layers/application/push_script.rb +15 -18
- data/lib/project_types/script/layers/domain/config_ui.rb +16 -0
- data/lib/project_types/script/layers/domain/errors.rb +23 -0
- data/lib/project_types/script/layers/domain/extension_point.rb +67 -7
- data/lib/project_types/script/layers/domain/metadata.rb +55 -0
- data/lib/project_types/script/layers/domain/push_package.rb +29 -6
- data/lib/project_types/script/layers/infrastructure/assemblyscript_project_creator.rb +45 -55
- data/lib/project_types/script/layers/infrastructure/assemblyscript_task_runner.rb +41 -45
- data/lib/project_types/script/layers/infrastructure/config_ui_repository.rb +46 -0
- data/lib/project_types/script/layers/infrastructure/errors.rb +32 -5
- data/lib/project_types/script/layers/infrastructure/extension_point_repository.rb +12 -6
- data/lib/project_types/script/layers/infrastructure/project_creator.rb +2 -1
- data/lib/project_types/script/layers/infrastructure/push_package_repository.rb +20 -13
- data/lib/project_types/script/layers/infrastructure/rust_project_creator.rb +72 -0
- data/lib/project_types/script/layers/infrastructure/rust_task_runner.rb +59 -0
- data/lib/project_types/script/layers/infrastructure/script_service.rb +39 -17
- data/lib/project_types/script/layers/infrastructure/task_runner.rb +4 -3
- data/lib/project_types/script/messages/messages.rb +76 -10
- data/lib/project_types/script/script_project.rb +26 -16
- data/lib/project_types/script/ui/error_handler.rb +135 -50
- data/lib/project_types/script/ui/printing_spinner.rb +1 -1
- data/lib/project_types/script/ui/strict_spinner.rb +1 -1
- data/lib/project_types/theme/cli.rb +40 -0
- data/lib/project_types/theme/commands/connect.rb +54 -0
- data/lib/project_types/theme/commands/create.rb +48 -0
- data/lib/project_types/theme/commands/deploy.rb +38 -0
- data/lib/project_types/theme/commands/generate.rb +20 -0
- data/lib/project_types/theme/commands/generate/env.rb +79 -0
- data/lib/project_types/theme/commands/push.rb +55 -0
- data/lib/project_types/theme/commands/serve.rb +31 -0
- data/lib/project_types/theme/forms/connect.rb +34 -0
- data/lib/project_types/theme/forms/create.rb +22 -0
- data/lib/project_types/theme/messages/messages.rb +147 -0
- data/lib/project_types/theme/tasks/ensure_themekit_installed.rb +78 -0
- data/lib/project_types/theme/themekit.rb +113 -0
- data/lib/rubygems_plugin.rb +3 -3
- data/lib/shopify-cli/admin_api.rb +52 -12
- data/lib/shopify-cli/admin_api/populate_resource_command.rb +17 -17
- data/lib/shopify-cli/admin_api/schema.rb +3 -3
- data/lib/shopify-cli/api.rb +36 -31
- data/lib/shopify-cli/command.rb +1 -1
- data/lib/shopify-cli/commands.rb +9 -9
- data/lib/shopify-cli/commands/config.rb +28 -28
- data/lib/shopify-cli/commands/connect.rb +35 -18
- data/lib/shopify-cli/commands/create.rb +5 -5
- data/lib/shopify-cli/commands/help.rb +6 -6
- data/lib/shopify-cli/commands/logout.rb +3 -3
- data/lib/shopify-cli/commands/system.rb +33 -33
- data/lib/shopify-cli/commands/version.rb +2 -2
- data/lib/shopify-cli/context.rb +43 -22
- data/lib/shopify-cli/core.rb +4 -4
- data/lib/shopify-cli/core/entry_point.rb +5 -5
- data/lib/shopify-cli/core/executor.rb +1 -1
- data/lib/shopify-cli/core/help_resolver.rb +2 -2
- data/lib/shopify-cli/core/monorail.rb +17 -16
- data/lib/shopify-cli/db.rb +2 -2
- data/lib/shopify-cli/feature.rb +1 -3
- data/lib/shopify-cli/form.rb +1 -1
- data/lib/shopify-cli/git.rb +17 -17
- data/lib/shopify-cli/helpers.rb +1 -1
- data/lib/shopify-cli/helpers/haikunator.rb +1 -1
- data/lib/shopify-cli/heroku.rb +28 -28
- data/lib/shopify-cli/http_request.rb +21 -9
- data/lib/shopify-cli/js_deps.rb +13 -13
- data/lib/shopify-cli/js_system.rb +5 -5
- data/lib/shopify-cli/lazy_delegator.rb +55 -0
- data/lib/shopify-cli/messages/messages.rb +21 -10
- data/lib/shopify-cli/method_object.rb +104 -0
- data/lib/shopify-cli/oauth.rb +25 -25
- data/lib/shopify-cli/oauth/servlet.rb +9 -9
- data/lib/shopify-cli/options.rb +3 -3
- data/lib/shopify-cli/packager.rb +24 -24
- data/lib/shopify-cli/partners_api.rb +38 -16
- data/lib/shopify-cli/partners_api/organizations.rb +10 -10
- data/lib/shopify-cli/process_supervision.rb +8 -8
- data/lib/shopify-cli/project.rb +27 -23
- data/lib/shopify-cli/project_type.rb +21 -5
- data/lib/shopify-cli/resolve_constant.rb +25 -0
- data/lib/shopify-cli/resources.rb +1 -1
- data/lib/shopify-cli/resources/env_file.rb +9 -9
- data/lib/shopify-cli/result.rb +432 -0
- data/lib/shopify-cli/shopifolk.rb +35 -18
- data/lib/shopify-cli/sub_command.rb +1 -1
- data/lib/shopify-cli/task.rb +9 -1
- data/lib/shopify-cli/tasks.rb +7 -7
- data/lib/shopify-cli/tasks/create_api_client.rb +13 -4
- data/lib/shopify-cli/tasks/ensure_dev_store.rb +12 -12
- data/lib/shopify-cli/tasks/ensure_env.rb +18 -15
- data/lib/shopify-cli/tasks/ensure_loopback_url.rb +4 -4
- data/lib/shopify-cli/tasks/select_org_and_shop.rb +28 -24
- data/lib/shopify-cli/tasks/update_dashboard_urls.rb +10 -10
- data/lib/shopify-cli/transform_data_structure.rb +86 -0
- data/lib/shopify-cli/tunnel.rb +36 -30
- data/lib/shopify-cli/version.rb +1 -1
- data/lib/shopify_cli.rb +57 -52
- data/shopify-cli.gemspec +6 -6
- data/shopify.fish +1 -1
- data/shopify.sh +1 -1
- data/vendor/deps/cli-kit/REVISION +1 -1
- data/vendor/deps/cli-kit/lib/cli/kit/logger.rb +2 -2
- data/vendor/deps/cli-kit/lib/cli/kit/system.rb +3 -3
- data/vendor/deps/cli-ui/REVISION +1 -1
- data/vendor/deps/cli-ui/lib/cli/ui.rb +26 -22
- data/vendor/deps/cli-ui/lib/cli/ui/ansi.rb +4 -6
- data/vendor/deps/cli-ui/lib/cli/ui/frame.rb +3 -3
- data/vendor/deps/cli-ui/lib/cli/ui/frame/frame_stack.rb +8 -9
- data/vendor/deps/cli-ui/lib/cli/ui/frame/frame_style.rb +1 -1
- data/vendor/deps/cli-ui/lib/cli/ui/glyph.rb +1 -0
- data/vendor/deps/cli-ui/lib/cli/ui/printer.rb +15 -3
- data/vendor/deps/cli-ui/lib/cli/ui/prompt/interactive_options.rb +4 -11
- data/vendor/deps/cli-ui/lib/cli/ui/spinner.rb +3 -5
- data/vendor/deps/cli-ui/lib/cli/ui/terminal.rb +10 -10
- data/vendor/deps/cli-ui/lib/cli/ui/version.rb +1 -1
- data/vendor/deps/cli-ui/lib/cli/ui/wrap.rb +56 -0
- data/vendor/deps/webrick/.gitignore +9 -0
- data/vendor/deps/webrick/Gemfile +3 -0
- data/vendor/deps/webrick/LICENSE.txt +22 -0
- data/vendor/deps/webrick/README.md +61 -0
- data/vendor/deps/webrick/Rakefile +10 -0
- data/vendor/deps/webrick/lib/webrick.rb +232 -0
- data/vendor/deps/webrick/lib/webrick/accesslog.rb +157 -0
- data/vendor/deps/webrick/lib/webrick/cgi.rb +313 -0
- data/vendor/deps/webrick/lib/webrick/compat.rb +36 -0
- data/vendor/deps/webrick/lib/webrick/config.rb +158 -0
- data/vendor/deps/webrick/lib/webrick/cookie.rb +172 -0
- data/vendor/deps/webrick/lib/webrick/htmlutils.rb +30 -0
- data/vendor/deps/webrick/lib/webrick/httpauth.rb +96 -0
- data/vendor/deps/webrick/lib/webrick/httpauth/authenticator.rb +117 -0
- data/vendor/deps/webrick/lib/webrick/httpauth/basicauth.rb +116 -0
- data/vendor/deps/webrick/lib/webrick/httpauth/digestauth.rb +395 -0
- data/vendor/deps/webrick/lib/webrick/httpauth/htdigest.rb +132 -0
- data/vendor/deps/webrick/lib/webrick/httpauth/htgroup.rb +97 -0
- data/vendor/deps/webrick/lib/webrick/httpauth/htpasswd.rb +158 -0
- data/vendor/deps/webrick/lib/webrick/httpauth/userdb.rb +53 -0
- data/vendor/deps/webrick/lib/webrick/httpproxy.rb +354 -0
- data/vendor/deps/webrick/lib/webrick/httprequest.rb +636 -0
- data/vendor/deps/webrick/lib/webrick/httpresponse.rb +564 -0
- data/vendor/deps/webrick/lib/webrick/https.rb +152 -0
- data/vendor/deps/webrick/lib/webrick/httpserver.rb +294 -0
- data/vendor/deps/webrick/lib/webrick/httpservlet.rb +23 -0
- data/vendor/deps/webrick/lib/webrick/httpservlet/abstract.rb +152 -0
- data/vendor/deps/webrick/lib/webrick/httpservlet/cgi_runner.rb +47 -0
- data/vendor/deps/webrick/lib/webrick/httpservlet/cgihandler.rb +126 -0
- data/vendor/deps/webrick/lib/webrick/httpservlet/erbhandler.rb +88 -0
- data/vendor/deps/webrick/lib/webrick/httpservlet/filehandler.rb +552 -0
- data/vendor/deps/webrick/lib/webrick/httpservlet/prochandler.rb +47 -0
- data/vendor/deps/webrick/lib/webrick/httpstatus.rb +194 -0
- data/vendor/deps/webrick/lib/webrick/httputils.rb +512 -0
- data/vendor/deps/webrick/lib/webrick/httpversion.rb +76 -0
- data/vendor/deps/webrick/lib/webrick/log.rb +156 -0
- data/vendor/deps/webrick/lib/webrick/server.rb +381 -0
- data/vendor/deps/webrick/lib/webrick/ssl.rb +215 -0
- data/vendor/deps/webrick/lib/webrick/utils.rb +265 -0
- data/vendor/deps/webrick/lib/webrick/version.rb +18 -0
- data/vendor/deps/webrick/webrick.gemspec +74 -0
- data/vendor/gen/template/bin/update-deps +9 -9
- metadata +83 -29
- data/docs/Gemfile +0 -5
- data/docs/Gemfile.lock +0 -258
- data/docs/_data/nav.yml +0 -35
- data/docs/_includes/footer.html +0 -15
- data/docs/_includes/head.html +0 -19
- data/docs/_includes/sidebar_nav.html +0 -22
- data/docs/_includes/toc.html +0 -112
- data/docs/_layouts/default.html +0 -79
- data/docs/css/docs.css +0 -157
- data/docs/images/header.png +0 -0
- data/docs/installing-ruby.md +0 -28
- data/lib/project_types/extension/features/argo/admin.rb +0 -20
- data/lib/project_types/extension/features/argo/base.rb +0 -129
- data/lib/project_types/extension/features/argo/checkout.rb +0 -20
- data/lib/project_types/extension/forms/register.rb +0 -47
- data/lib/project_types/extension/models/type.rb +0 -81
- data/lib/project_types/extension/models/types/checkout_post_purchase.rb +0 -23
- data/lib/project_types/extension/models/types/product_subscription.rb +0 -24
- data/lib/project_types/node/commands/generate/billing.rb +0 -39
- data/lib/project_types/node/commands/generate/page.rb +0 -59
- data/lib/project_types/node/commands/generate/webhook.rb +0 -37
- data/lib/project_types/script/layers/domain/script.rb +0 -18
- data/lib/project_types/script/layers/infrastructure/assemblyscript_tsconfig.rb +0 -38
- data/lib/project_types/script/layers/infrastructure/script_repository.rb +0 -59
- data/lib/project_types/script/templates/ts/as-pect.config.js +0 -27
- data/lib/project_types/script/templates/ts/as-pect.d.ts +0 -1
@@ -21,7 +21,7 @@ module ShopifyCli
|
|
21
21
|
end
|
22
22
|
|
23
23
|
def load_type(current_type, shallow = false)
|
24
|
-
filepath = File.join(ShopifyCli::ROOT,
|
24
|
+
filepath = File.join(ShopifyCli::ROOT, "lib", "project_types", current_type.to_s, "cli.rb")
|
25
25
|
return unless File.exist?(filepath)
|
26
26
|
@shallow_load = shallow
|
27
27
|
@current_type = current_type
|
@@ -32,7 +32,7 @@ module ShopifyCli
|
|
32
32
|
end
|
33
33
|
|
34
34
|
def load_all
|
35
|
-
Dir.glob(File.join(ShopifyCli::ROOT,
|
35
|
+
Dir.glob(File.join(ShopifyCli::ROOT, "lib", "project_types", "*", "cli.rb")).map do |filepath|
|
36
36
|
load_type(filepath.split(File::Separator)[-2].to_sym, true)
|
37
37
|
end
|
38
38
|
end
|
@@ -45,8 +45,11 @@ module ShopifyCli
|
|
45
45
|
File.join(ShopifyCli::PROJECT_TYPES_DIR, project_type.to_s, path)
|
46
46
|
end
|
47
47
|
|
48
|
-
def
|
48
|
+
def title(name)
|
49
49
|
@project_name = name
|
50
|
+
end
|
51
|
+
|
52
|
+
def creator(command_const)
|
50
53
|
@project_creator_command_class = command_const
|
51
54
|
ShopifyCli::Commands::Create.subcommand(command_const, @project_type)
|
52
55
|
end
|
@@ -55,17 +58,30 @@ module ShopifyCli
|
|
55
58
|
const_get(@project_creator_command_class)
|
56
59
|
end
|
57
60
|
|
61
|
+
def connector(command_const)
|
62
|
+
@project_connector_command_class = command_const
|
63
|
+
ShopifyCli::Commands::Connect.subcommand(command_const, @project_type)
|
64
|
+
end
|
65
|
+
|
66
|
+
def connect_command
|
67
|
+
if @project_connector_command_class.nil?
|
68
|
+
nil
|
69
|
+
else
|
70
|
+
const_get(@project_connector_command_class)
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
58
74
|
def register_command(const, cmd)
|
59
75
|
return if project_load_shallow
|
60
76
|
Context.new.abort(
|
61
|
-
Context.message(
|
77
|
+
Context.message("core.project_type.error.cannot_override_core", cmd, const)
|
62
78
|
) if Commands.core_command?(cmd)
|
63
79
|
Commands.register(const, cmd)
|
64
80
|
end
|
65
81
|
|
66
82
|
def register_task(task, name)
|
67
83
|
return if project_load_shallow
|
68
|
-
ShopifyCli::
|
84
|
+
ShopifyCli::Tasks.register(task, name)
|
69
85
|
end
|
70
86
|
|
71
87
|
def register_messages(messages)
|
@@ -0,0 +1,25 @@
|
|
1
|
+
##
|
2
|
+
# `ResolveConstant` implements constant resolution. It is implemented as a
|
3
|
+
# `MethodObject` and therefore returns a result object. By default, constants
|
4
|
+
# are resolved relative to `Kernal`, but the top-level namespace is
|
5
|
+
# configurable:
|
6
|
+
#
|
7
|
+
# ShopifyCli::Resolve.call(:object).value # => Object
|
8
|
+
# ShopifyCli::Resolve.call('minitest/test').value # => MiniTest::Test
|
9
|
+
# ShopifyCli::Resolve.call(:test, namespace: MiniTest) # => MiniTest::Test
|
10
|
+
#
|
11
|
+
module ShopifyCli
|
12
|
+
class ResolveConstant
|
13
|
+
include ShopifyCli::MethodObject
|
14
|
+
property! :namespace, accepts: ->(ns) { ns.respond_to?(:const_get) }, default: Kernel
|
15
|
+
|
16
|
+
def call(name)
|
17
|
+
name
|
18
|
+
.to_s
|
19
|
+
.split(%r{/|:{2}})
|
20
|
+
.map { |const_name| const_name.split(/[_-]/).map(&:capitalize).join("") }
|
21
|
+
.join("::")
|
22
|
+
.yield_self { |const_name| namespace.const_get(const_name) }
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -4,13 +4,13 @@ module ShopifyCli
|
|
4
4
|
module Resources
|
5
5
|
class EnvFile
|
6
6
|
include SmartProperties
|
7
|
-
FILENAME =
|
7
|
+
FILENAME = ".env"
|
8
8
|
KEY_MAP = {
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
9
|
+
"SHOPIFY_API_KEY" => :api_key,
|
10
|
+
"SHOPIFY_API_SECRET" => :secret,
|
11
|
+
"SHOP" => :shop,
|
12
|
+
"SCOPES" => :scopes,
|
13
|
+
"HOST" => :host,
|
14
14
|
}
|
15
15
|
|
16
16
|
class << self
|
@@ -72,7 +72,7 @@ module ShopifyCli
|
|
72
72
|
|
73
73
|
def write(ctx)
|
74
74
|
spin_group = CLI::UI::SpinGroup.new
|
75
|
-
spin_group.add(ctx.message(
|
75
|
+
spin_group.add(ctx.message("core.env_file.saving_header", FILENAME)) do |spinner|
|
76
76
|
output = []
|
77
77
|
KEY_MAP.each do |key, value|
|
78
78
|
output << "#{key}=#{send(value)}" if send(value)
|
@@ -80,9 +80,9 @@ module ShopifyCli
|
|
80
80
|
extra.each do |key, value|
|
81
81
|
output << "#{key}=#{value}"
|
82
82
|
end
|
83
|
-
ctx.print_task(ctx.message(
|
83
|
+
ctx.print_task(ctx.message("core.env_file.saving", FILENAME))
|
84
84
|
ctx.write(FILENAME, output.join("\n") + "\n")
|
85
|
-
spinner.update_title(ctx.message(
|
85
|
+
spinner.update_title(ctx.message("core.env_file.saved", FILENAME))
|
86
86
|
end
|
87
87
|
spin_group.wait
|
88
88
|
end
|
@@ -0,0 +1,432 @@
|
|
1
|
+
module ShopifyCli
|
2
|
+
##
|
3
|
+
# This module defines two containers for wrapping the result of an action. One
|
4
|
+
# for signifying the successful execution of an action and one for signifying
|
5
|
+
# a failure. Both containers implement the same API, which has been designed
|
6
|
+
# to simplify transforming a result through a series of steps and centralize
|
7
|
+
# the error handling in one place. The implementation is heavily inspired by a
|
8
|
+
# concept known as result monads in other languages. Consider the following
|
9
|
+
# example that uses lambda expressions as stand-ins for more complex method
|
10
|
+
# objects:
|
11
|
+
#
|
12
|
+
# require 'open-uri'
|
13
|
+
# Todo = Struct.new(:title, :completed)
|
14
|
+
#
|
15
|
+
# fetch_data = ->(url) { open(url) }
|
16
|
+
# parse_data = ->(json) { JSON.parse(json) }
|
17
|
+
# build_todo = ->(attrs) do
|
18
|
+
# Todo.new(attrs.fetch(:title), attrs.fetch(:completed))
|
19
|
+
# end
|
20
|
+
#
|
21
|
+
# Result.wrap(&fetch_data)
|
22
|
+
# .call("https://jsonplaceholder.typicode.com/todos/1")
|
23
|
+
# .then(&parse_data)
|
24
|
+
# .then(&build_todo)
|
25
|
+
# .map(&:title)
|
26
|
+
# .unwrap(nil) # => String | nil
|
27
|
+
#
|
28
|
+
# If everything goes well, this code returns the title of the to do that is
|
29
|
+
# being fetched from `https://jsonplaceholder.typicode.com/todos/1`. However,
|
30
|
+
# there are several possible failure scenarios:
|
31
|
+
#
|
32
|
+
# * fetching the data could fail due to a network error,
|
33
|
+
# * the data returned from the server might not be valid JSON, or
|
34
|
+
# * the data is valid but does not have the right shape.
|
35
|
+
#
|
36
|
+
# If any of these scenarios arises, all subsequent `then` and `map` blocks are
|
37
|
+
# skipped until the result is either unwrapped or we manually recover from the
|
38
|
+
# failure by specifying a `rescue` clause:
|
39
|
+
#
|
40
|
+
# Result.wrap { raise "Boom!" }
|
41
|
+
# .rescue { |e| e.message.upcase }
|
42
|
+
# .unwrap(nil) # => "BOOM!"
|
43
|
+
#
|
44
|
+
# In the event of a failure that hasn't been rescued from,
|
45
|
+
# `unwrap` returns the fallback value specified by the caller:
|
46
|
+
#
|
47
|
+
# Result.wrap { raise "Boom!" }.unwrap(nil) # => nil
|
48
|
+
# Result.wrap { raise "Boom!" }.unwrap { |e| e.message } # => "Boom!"
|
49
|
+
#
|
50
|
+
module Result
|
51
|
+
class Error < RuntimeError; end
|
52
|
+
class UnexpectedSuccess < Error; end
|
53
|
+
class UnexpectedFailure < Error; end
|
54
|
+
|
55
|
+
##
|
56
|
+
# Implements a container for wrapping a success value. The main purpose of
|
57
|
+
# the container is to support further transformations of the result and
|
58
|
+
# centralize error handling should any of the subsequent transformations
|
59
|
+
# fail:
|
60
|
+
#
|
61
|
+
# result = Result
|
62
|
+
# .new("{}")
|
63
|
+
# .then { |json| JSON.parse(json) }
|
64
|
+
# .tap do |result|
|
65
|
+
# result.success? # => true
|
66
|
+
# result.value # => {}
|
67
|
+
# .then { |data| data.fetch(:firstname) }
|
68
|
+
# .tap do |result|
|
69
|
+
# result.failure? # => true
|
70
|
+
# result.error # => KeyError
|
71
|
+
# end
|
72
|
+
#
|
73
|
+
# `Success` implements two transformation functions: `then` and `map`. The
|
74
|
+
# former makes no assumption regarding the return value of the
|
75
|
+
# transformation. The latter on the other hand expects the transformation to
|
76
|
+
# be successful. If this assumption is violated, program execution is
|
77
|
+
# interrupted and an error is raised. As the purpose of result objects is to
|
78
|
+
# guard against exactly that. This is generally a flaw and requires the code
|
79
|
+
# to either be hardened or to substitute the call to `map` with a call to
|
80
|
+
# `then`. `map` should only be used for transformations that cannot fail and
|
81
|
+
# when the caller wants to state exactly that fact.
|
82
|
+
#
|
83
|
+
class Success
|
84
|
+
attr_reader :value
|
85
|
+
|
86
|
+
##
|
87
|
+
# initializes a new `Success` from an arbitrary value.
|
88
|
+
def initialize(value)
|
89
|
+
@value = value
|
90
|
+
end
|
91
|
+
|
92
|
+
##
|
93
|
+
# always returns true to indicate that this result represents a success.
|
94
|
+
#
|
95
|
+
def success?
|
96
|
+
true
|
97
|
+
end
|
98
|
+
|
99
|
+
##
|
100
|
+
# always returns false to indicate that this result represents a success.
|
101
|
+
#
|
102
|
+
def failure?
|
103
|
+
false
|
104
|
+
end
|
105
|
+
|
106
|
+
##
|
107
|
+
# raises an `UnexpectedSuccess` as a `Success` does not carry an error
|
108
|
+
# value.
|
109
|
+
#
|
110
|
+
def error
|
111
|
+
raise UnexpectedSuccess
|
112
|
+
end
|
113
|
+
|
114
|
+
##
|
115
|
+
# returns a new `Success` wrapping the result of the given block. The
|
116
|
+
# block is called with the current value. If the block raises an exception
|
117
|
+
# or returns a `Failure`, an exception is raised. `map` assumes any
|
118
|
+
# transformation to succeed. Transformations that are expected to fail under
|
119
|
+
# certain conditions should only be transformed using `then`:
|
120
|
+
#
|
121
|
+
# Success
|
122
|
+
# .new(nil)
|
123
|
+
# .map { |n| n + 1 } # => raises NoMethodError
|
124
|
+
#
|
125
|
+
# Therefore, map should only be used here if the previous success value is
|
126
|
+
# guaranteed to be a number or if the block handles nil cases properly:
|
127
|
+
#
|
128
|
+
# Success
|
129
|
+
# .new(nil)
|
130
|
+
# .map { |n| (n || 0) + 1 }
|
131
|
+
# .value # => 1
|
132
|
+
#
|
133
|
+
def map(&block)
|
134
|
+
self.then(&block).tap do |result|
|
135
|
+
return result if result.success?
|
136
|
+
|
137
|
+
result.unwrap { |error| error }.tap do |error|
|
138
|
+
case error
|
139
|
+
when Exception
|
140
|
+
raise error
|
141
|
+
else
|
142
|
+
raise UnexpectedFailure, error
|
143
|
+
end
|
144
|
+
end
|
145
|
+
end
|
146
|
+
end
|
147
|
+
|
148
|
+
##
|
149
|
+
# returns a new result by wrapping the return value of the block. The
|
150
|
+
# block is invoked with the current success value. The result can either
|
151
|
+
# be a `Success` or a `Failure`. The former is the default. The latter
|
152
|
+
# occurs when executing the block either
|
153
|
+
#
|
154
|
+
# - raised an exception,
|
155
|
+
# - returned an instance of a subclass of `Exception`, or
|
156
|
+
# - returned a `Failure`.
|
157
|
+
#
|
158
|
+
# The example below illustrates this behavior:
|
159
|
+
#
|
160
|
+
# result = Success
|
161
|
+
# .new(1)
|
162
|
+
# .then { |n| n + 1 }
|
163
|
+
# .tap do |result|
|
164
|
+
# result.success? # => true
|
165
|
+
# result.value # => 2
|
166
|
+
# end
|
167
|
+
#
|
168
|
+
# result.then { |n| n / 0 }.error # => ZeroDivisionError
|
169
|
+
# result.then { RuntimeError.new }.error # => RuntimeError
|
170
|
+
# result.then { Failure.new("Boom!") }.error # => "Boom!"
|
171
|
+
#
|
172
|
+
def then(&block)
|
173
|
+
Result.wrap(&block).call(@value)
|
174
|
+
end
|
175
|
+
|
176
|
+
##
|
177
|
+
# is a no-op and simply returns itself. Only a `Failure` can be
|
178
|
+
# transformed using `rescue`.
|
179
|
+
#
|
180
|
+
def rescue
|
181
|
+
self
|
182
|
+
end
|
183
|
+
|
184
|
+
##
|
185
|
+
# returns the success value and ignores the fallback value that was either
|
186
|
+
# provided as a method argument or by passing a block. However, the caller
|
187
|
+
# is still required to specify a fallback value to ensure that in the
|
188
|
+
# event of a `Failure` program execution can continue in a controlled
|
189
|
+
# manner:
|
190
|
+
#
|
191
|
+
# Success.new(1).unwrap(0) => 1
|
192
|
+
#
|
193
|
+
def unwrap(*args, &block)
|
194
|
+
raise ArgumentError, "expected either a fallback value or a block" unless (args.length == 1) ^ block
|
195
|
+
@value
|
196
|
+
end
|
197
|
+
end
|
198
|
+
|
199
|
+
##
|
200
|
+
# Implements a container for wrapping an error value. In many cases, the
|
201
|
+
# error value is going to be an exception but other values are fully
|
202
|
+
# supported:
|
203
|
+
#
|
204
|
+
# Failure
|
205
|
+
# .new(RuntimeError.new("Something went wrong"))
|
206
|
+
# .error # => RuntimeError.new
|
207
|
+
#
|
208
|
+
# Failure
|
209
|
+
# .new("Something went wrong")
|
210
|
+
# .error # => "Something went wrong"
|
211
|
+
#
|
212
|
+
# `Failure` does not support transformations with `then` and `map`. When any
|
213
|
+
# of these two methods is invoked on a `Failure`, the `Failure` itself is
|
214
|
+
# returned unless it is rescued from or unwrapped. This enables the caller to
|
215
|
+
# build optimistic transformation chains and defer error handling:
|
216
|
+
#
|
217
|
+
# Failure
|
218
|
+
# .new(nil)
|
219
|
+
# .then { |json| JSON.parse(json) } # Ignored
|
220
|
+
# .then(&:with_indifferent_access) # Ignored
|
221
|
+
# .then { |data| data.values_at(:firstname, :lastname) } # Ignored
|
222
|
+
# .unwrap(Person.new("John", "Doe")) # => Person
|
223
|
+
#
|
224
|
+
# Alternatively, we could rescue from the error and then proceed with the
|
225
|
+
# remaining transformations:
|
226
|
+
#
|
227
|
+
# Person = Struct.new(:firstname, :lastname)
|
228
|
+
# Failure
|
229
|
+
# .new(nil)
|
230
|
+
# .then { |json| JSON.parse(json) } # Ignored
|
231
|
+
# .then(&:with_indifferent_access) # Ignored
|
232
|
+
# .rescue { {firstname: "John", lastname: "Doe" }}
|
233
|
+
# .then { |data| data.values_at(:firstname, :lastname) } # Executed
|
234
|
+
# .then { |members| Person.new(*members) } # Executed
|
235
|
+
# .unwrap(nil) # => Person
|
236
|
+
#
|
237
|
+
class Failure
|
238
|
+
attr_reader :error
|
239
|
+
|
240
|
+
##
|
241
|
+
# initializes a new `Failure` from an arbitrary value. In many cases, this
|
242
|
+
# value is going to be an instance of a subclass of `Exception` but any
|
243
|
+
# type is supported.
|
244
|
+
#
|
245
|
+
def initialize(error)
|
246
|
+
@error = error
|
247
|
+
end
|
248
|
+
|
249
|
+
##
|
250
|
+
# always returns `false` to indicate that this result represents a failure.
|
251
|
+
#
|
252
|
+
def success?
|
253
|
+
false
|
254
|
+
end
|
255
|
+
|
256
|
+
##
|
257
|
+
# Always returns `true` to indicate that this result represents a failure.
|
258
|
+
#
|
259
|
+
def failure?
|
260
|
+
true
|
261
|
+
end
|
262
|
+
|
263
|
+
##
|
264
|
+
# raises an `ShopifyCli::Result::UnexpectedError` as a
|
265
|
+
# `ShopifyCli::Result::Failure` does not carry a success value.
|
266
|
+
#
|
267
|
+
def value
|
268
|
+
raise UnexpectedFailure
|
269
|
+
end
|
270
|
+
|
271
|
+
##
|
272
|
+
# is a no-op and simply returns itself. This is essential to skip
|
273
|
+
# transformation steps in a chain once an error has occurred.
|
274
|
+
#
|
275
|
+
def map
|
276
|
+
self
|
277
|
+
end
|
278
|
+
|
279
|
+
##
|
280
|
+
# is a no-op and simply returns itself. This is essential to skip
|
281
|
+
# transformation steps in a chain once an error has occurred.
|
282
|
+
#
|
283
|
+
def then
|
284
|
+
self
|
285
|
+
end
|
286
|
+
|
287
|
+
##
|
288
|
+
# can be used to recover from a failure or produce a new failure with a
|
289
|
+
# different error.
|
290
|
+
#
|
291
|
+
# Failure
|
292
|
+
# .new("Something went wrong")
|
293
|
+
# .rescue { |msg| [msg, "but we fixed it!"].join(" "") }
|
294
|
+
# .tap do |result|
|
295
|
+
# result.success? # => true
|
296
|
+
# result.value # => "Something went wrong but we fixed it!"
|
297
|
+
# end
|
298
|
+
#
|
299
|
+
# `rescue` is opinionated when it comes to the return value of the block.
|
300
|
+
# If the return value is an `Exception` – either one that was raised or an
|
301
|
+
# instance of a subclass of `Exception` – a `Failure` is returned. Any
|
302
|
+
# other value results in a `Success` unless the value has been explicitly
|
303
|
+
# wrapped in a `Failure`:
|
304
|
+
#
|
305
|
+
# Failure
|
306
|
+
# .new(RuntimeError.new)
|
307
|
+
# .rescue { "All good! "}
|
308
|
+
# .success? # => true
|
309
|
+
#
|
310
|
+
# Failure
|
311
|
+
# .new(RuntimeError.new)
|
312
|
+
# .rescue { Failure.new("Still broken!") }
|
313
|
+
# .success? # => false
|
314
|
+
#
|
315
|
+
def rescue(&block)
|
316
|
+
Result.wrap(&block).call(@error)
|
317
|
+
end
|
318
|
+
|
319
|
+
##
|
320
|
+
# returns the fallback value specified by the caller. The fallback value
|
321
|
+
# can be provided as a method argument or as a block. If a block is given,
|
322
|
+
# it receives the error as its first and only argument:
|
323
|
+
#
|
324
|
+
# failure = Failure.new(RuntimeError.new("Something went wrong!"))
|
325
|
+
#
|
326
|
+
# failure.unwrap(nil) # => nil
|
327
|
+
# failure.unwrap { |e| e.message } # => "Something went wrong!"
|
328
|
+
#
|
329
|
+
# #### Parameters
|
330
|
+
#
|
331
|
+
# * `*args` should be an `Array` with zero or one element
|
332
|
+
# * `&block` should be a Proc that takes zero or one argument
|
333
|
+
#
|
334
|
+
# #### Raises
|
335
|
+
#
|
336
|
+
# * `ArgumentError` if both a fallback argument and a block is provided
|
337
|
+
#
|
338
|
+
def unwrap(*args, &block)
|
339
|
+
raise ArgumentError, "expected either a fallback value or a block" unless (args.length == 1) ^ block
|
340
|
+
block ? block.call(@error) : args.pop
|
341
|
+
end
|
342
|
+
end
|
343
|
+
|
344
|
+
##
|
345
|
+
# wraps the given value into a `ShopifyCli::Result::Success` container
|
346
|
+
#
|
347
|
+
# #### Parameters
|
348
|
+
#
|
349
|
+
# * `value` a value of arbitrary type
|
350
|
+
#
|
351
|
+
def self.success(value)
|
352
|
+
Result::Success.new(value)
|
353
|
+
end
|
354
|
+
|
355
|
+
##
|
356
|
+
# wraps the given value into a `ShopifyCli::Result::Failure` container
|
357
|
+
#
|
358
|
+
# #### Parameters
|
359
|
+
#
|
360
|
+
# * `error` a value of arbitrary type
|
361
|
+
#
|
362
|
+
def self.failure(error)
|
363
|
+
Result::Failure.new(error)
|
364
|
+
end
|
365
|
+
|
366
|
+
##
|
367
|
+
# takes either a value or a block and chooses the appropriate result
|
368
|
+
# container based on the type of the value or the type of the block's return
|
369
|
+
# value. If the type is an exception, it is wrapped in a
|
370
|
+
# `ShopifyCli::Result::Failure` and otherwise in a
|
371
|
+
# `ShopifyCli::Result::Success`. If a block was provided instead of value, a
|
372
|
+
# `Proc` is returned and the result wrapping doesn't occur until the block
|
373
|
+
# is invoked.
|
374
|
+
#
|
375
|
+
# #### Parameters
|
376
|
+
#
|
377
|
+
# * `*args` should be an `Array` with zero or one element
|
378
|
+
# * `&block` should be a `Proc` that takes zero or one argument
|
379
|
+
#
|
380
|
+
# #### Returns
|
381
|
+
#
|
382
|
+
# Returns either a `Result::Success`, `Result::Failure` or a `Proc` that
|
383
|
+
# produces one of the former when invoked.
|
384
|
+
#
|
385
|
+
# #### Examples
|
386
|
+
#
|
387
|
+
# Result.wrap(1) # => ShopifyCli::Result::Success
|
388
|
+
# Result.wrap(RuntimeError.new) # => ShopifyCli::Result::Failure
|
389
|
+
#
|
390
|
+
# Result.wrap { 1 } # => Proc
|
391
|
+
# Result.wrap { 1 }.call # => ShopifyCli::Result::Success
|
392
|
+
# Result.wrap { raise }.call # => ShopifyCli::Result::Failure
|
393
|
+
#
|
394
|
+
# Result.wrap { |s| s.upcase }.call("hello").tap do |result|
|
395
|
+
# result # => Result::Success
|
396
|
+
# result.value # => "HELLO"
|
397
|
+
# end
|
398
|
+
#
|
399
|
+
def self.wrap(*values, &block)
|
400
|
+
raise ArgumentError, "expected either a value or a block" unless (values.length == 1) ^ block
|
401
|
+
|
402
|
+
if values.length == 1
|
403
|
+
values.pop.yield_self do |value|
|
404
|
+
case value
|
405
|
+
when Result::Success, Result::Failure
|
406
|
+
value
|
407
|
+
when NilClass, Exception
|
408
|
+
Result.failure(value)
|
409
|
+
else
|
410
|
+
Result.success(value)
|
411
|
+
end
|
412
|
+
end
|
413
|
+
else
|
414
|
+
->(*args) do
|
415
|
+
begin
|
416
|
+
wrap(block.call(*args))
|
417
|
+
rescue Exception => error # rubocop:disable Lint/RescueException
|
418
|
+
wrap(error)
|
419
|
+
end
|
420
|
+
end
|
421
|
+
end
|
422
|
+
end
|
423
|
+
|
424
|
+
##
|
425
|
+
# Wraps the given block and invokes it with the passed arguments.
|
426
|
+
#
|
427
|
+
def self.call(*args, &block)
|
428
|
+
raise ArgumentError, "expected a block" unless block
|
429
|
+
wrap(&block).call(*args)
|
430
|
+
end
|
431
|
+
end
|
432
|
+
end
|