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
@@ -1,21 +1,21 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
-
require
|
2
|
+
require "shopify_cli"
|
3
3
|
|
4
4
|
module Rails
|
5
5
|
module Commands
|
6
6
|
class Deploy < ShopifyCli::Command
|
7
|
-
subcommand :Heroku,
|
7
|
+
subcommand :Heroku, "heroku", Project.project_filepath("commands/deploy/heroku")
|
8
8
|
|
9
9
|
def call(*)
|
10
10
|
@ctx.puts(self.class.help)
|
11
11
|
end
|
12
12
|
|
13
13
|
def self.help
|
14
|
-
ShopifyCli::Context.message(
|
14
|
+
ShopifyCli::Context.message("rails.deploy.help", ShopifyCli::TOOL_NAME)
|
15
15
|
end
|
16
16
|
|
17
17
|
def self.extended_help
|
18
|
-
ShopifyCli::Context.message(
|
18
|
+
ShopifyCli::Context.message("rails.deploy.extended_help", ShopifyCli::TOOL_NAME)
|
19
19
|
end
|
20
20
|
end
|
21
21
|
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
-
require
|
2
|
+
require "shopify_cli"
|
3
3
|
|
4
4
|
module Rails
|
5
5
|
module Commands
|
@@ -8,15 +8,15 @@ module Rails
|
|
8
8
|
DB_CHECK_CMD = 'bundle exec rails runner "puts ActiveRecord::Base.connection.adapter_name.downcase"'
|
9
9
|
|
10
10
|
def self.help
|
11
|
-
ShopifyCli::Context.message(
|
11
|
+
ShopifyCli::Context.message("rails.deploy.heroku.help", ShopifyCli::TOOL_NAME)
|
12
12
|
end
|
13
13
|
|
14
14
|
def call(*)
|
15
|
-
CLI::UI::Frame.open(@ctx.message(
|
16
|
-
CLI::UI::Spinner.spin(@ctx.message(
|
15
|
+
CLI::UI::Frame.open(@ctx.message("rails.deploy.heroku.db_check.validating")) do
|
16
|
+
CLI::UI::Spinner.spin(@ctx.message("rails.deploy.heroku.db_check.checking")) do |spinner|
|
17
17
|
db_type, err = check_db(@ctx)
|
18
18
|
@ctx.abort(@ctx.message(err)) unless err.nil?
|
19
|
-
spinner.update_title(@ctx.message(
|
19
|
+
spinner.update_title(@ctx.message("rails.deploy.heroku.db_check.validated", db_type))
|
20
20
|
end
|
21
21
|
true
|
22
22
|
end
|
@@ -24,53 +24,53 @@ module Rails
|
|
24
24
|
spin_group = CLI::UI::SpinGroup.new
|
25
25
|
heroku_service = ShopifyCli::Heroku.new(@ctx)
|
26
26
|
|
27
|
-
spin_group.add(@ctx.message(
|
27
|
+
spin_group.add(@ctx.message("rails.deploy.heroku.downloading")) do |spinner|
|
28
28
|
heroku_service.download
|
29
|
-
spinner.update_title(@ctx.message(
|
29
|
+
spinner.update_title(@ctx.message("rails.deploy.heroku.downloaded"))
|
30
30
|
end
|
31
31
|
spin_group.wait
|
32
32
|
|
33
|
-
spin_group.add(@ctx.message(
|
33
|
+
spin_group.add(@ctx.message("rails.deploy.heroku.installing")) do |spinner|
|
34
34
|
heroku_service.install
|
35
|
-
spinner.update_title(@ctx.message(
|
35
|
+
spinner.update_title(@ctx.message("rails.deploy.heroku.installed"))
|
36
36
|
end
|
37
|
-
spin_group.add(@ctx.message(
|
37
|
+
spin_group.add(@ctx.message("rails.deploy.heroku.git.checking")) do |spinner|
|
38
38
|
ShopifyCli::Git.init(@ctx)
|
39
|
-
spinner.update_title(@ctx.message(
|
39
|
+
spinner.update_title(@ctx.message("rails.deploy.heroku.git.initialized"))
|
40
40
|
end
|
41
41
|
spin_group.wait
|
42
42
|
|
43
43
|
if (account = heroku_service.whoami)
|
44
|
-
@ctx.puts(@ctx.message(
|
44
|
+
@ctx.puts(@ctx.message("rails.deploy.heroku.authenticated_with_account", account))
|
45
45
|
else
|
46
46
|
CLI::UI::Frame.open(
|
47
|
-
@ctx.message(
|
48
|
-
success_text: @ctx.message(
|
47
|
+
@ctx.message("rails.deploy.heroku.authenticating"),
|
48
|
+
success_text: @ctx.message("rails.deploy.heroku.authenticated")
|
49
49
|
) do
|
50
50
|
heroku_service.authenticate
|
51
51
|
end
|
52
52
|
end
|
53
53
|
|
54
54
|
if (app_name = heroku_service.app)
|
55
|
-
@ctx.puts(@ctx.message(
|
55
|
+
@ctx.puts(@ctx.message("rails.deploy.heroku.app.selected", app_name))
|
56
56
|
else
|
57
|
-
app_type = CLI::UI::Prompt.ask(@ctx.message(
|
58
|
-
handler.option(@ctx.message(
|
59
|
-
handler.option(@ctx.message(
|
57
|
+
app_type = CLI::UI::Prompt.ask(@ctx.message("rails.deploy.heroku.app.no_apps_found")) do |handler|
|
58
|
+
handler.option(@ctx.message("rails.deploy.heroku.app.create")) { :new }
|
59
|
+
handler.option(@ctx.message("rails.deploy.heroku.app.select")) { :existing }
|
60
60
|
end
|
61
61
|
|
62
62
|
if app_type == :existing
|
63
|
-
app_name = CLI::UI::Prompt.ask(@ctx.message(
|
63
|
+
app_name = CLI::UI::Prompt.ask(@ctx.message("rails.deploy.heroku.app.name"))
|
64
64
|
CLI::UI::Frame.open(
|
65
|
-
@ctx.message(
|
66
|
-
success_text: @ctx.message(
|
65
|
+
@ctx.message("rails.deploy.heroku.app.selecting", app_name),
|
66
|
+
success_text: @ctx.message("rails.deploy.heroku.app.selected", app_name)
|
67
67
|
) do
|
68
68
|
heroku_service.select_existing_app(app_name)
|
69
69
|
end
|
70
70
|
elsif app_type == :new
|
71
71
|
CLI::UI::Frame.open(
|
72
|
-
@ctx.message(
|
73
|
-
success_text: @ctx.message(
|
72
|
+
@ctx.message("rails.deploy.heroku.app.creating"),
|
73
|
+
success_text: @ctx.message("rails.deploy.heroku.app.created")
|
74
74
|
) do
|
75
75
|
heroku_service.create_new_app
|
76
76
|
end
|
@@ -80,9 +80,9 @@ module Rails
|
|
80
80
|
branches = ShopifyCli::Git.branches(@ctx)
|
81
81
|
if branches.length == 1
|
82
82
|
branch_to_deploy = branches[0]
|
83
|
-
@ctx.puts(@ctx.message(
|
83
|
+
@ctx.puts(@ctx.message("rails.deploy.heroku.git.branch_selected", branch_to_deploy))
|
84
84
|
else
|
85
|
-
branch_to_deploy = CLI::UI::Prompt.ask(@ctx.message(
|
85
|
+
branch_to_deploy = CLI::UI::Prompt.ask(@ctx.message("rails.deploy.heroku.git.what_branch")) do |handler|
|
86
86
|
branches.each do |branch|
|
87
87
|
handler.option(branch) { branch }
|
88
88
|
end
|
@@ -90,8 +90,8 @@ module Rails
|
|
90
90
|
end
|
91
91
|
|
92
92
|
CLI::UI::Frame.open(
|
93
|
-
@ctx.message(
|
94
|
-
success_text: @ctx.message(
|
93
|
+
@ctx.message("rails.deploy.heroku.deploying"),
|
94
|
+
success_text: @ctx.message("rails.deploy.heroku.deployed")
|
95
95
|
) do
|
96
96
|
heroku_service.deploy(branch_to_deploy)
|
97
97
|
end
|
@@ -99,10 +99,10 @@ module Rails
|
|
99
99
|
|
100
100
|
def check_db(ctx)
|
101
101
|
out, stat = ctx.capture2e(DB_CHECK_CMD)
|
102
|
-
if stat.success? && out.strip ==
|
103
|
-
[
|
102
|
+
if stat.success? && out.strip == "sqlite"
|
103
|
+
["sqlite", "rails.deploy.heroku.db_check.sqlite"]
|
104
104
|
elsif !stat.success?
|
105
|
-
[nil,
|
105
|
+
[nil, "rails.deploy.heroku.db_check.problem"]
|
106
106
|
else
|
107
107
|
[out.strip, nil]
|
108
108
|
end
|
@@ -1,17 +1,17 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
-
require
|
2
|
+
require "shopify_cli"
|
3
3
|
|
4
4
|
module Rails
|
5
5
|
module Commands
|
6
6
|
class Generate < ShopifyCli::Command
|
7
|
-
subcommand :Webhook,
|
7
|
+
subcommand :Webhook, "webhook", Project.project_filepath("commands/generate/webhook")
|
8
8
|
|
9
9
|
def call(*)
|
10
10
|
@ctx.puts(self.class.help)
|
11
11
|
end
|
12
12
|
|
13
13
|
def self.help
|
14
|
-
ShopifyCli::Context.message(
|
14
|
+
ShopifyCli::Context.message("rails.generate.help", ShopifyCli::TOOL_NAME)
|
15
15
|
end
|
16
16
|
|
17
17
|
def self.extended_help
|
@@ -24,7 +24,7 @@ module Rails
|
|
24
24
|
end
|
25
25
|
extended_help += "\n"
|
26
26
|
end
|
27
|
-
extended_help += ShopifyCli::Context.message(
|
27
|
+
extended_help += ShopifyCli::Context.message("rails.generate.extended_help", ShopifyCli::TOOL_NAME)
|
28
28
|
end
|
29
29
|
|
30
30
|
def self.run_generate(script, name, ctx)
|
@@ -38,11 +38,11 @@ module Rails
|
|
38
38
|
def self.response(code, name, ctx)
|
39
39
|
case code
|
40
40
|
when 1
|
41
|
-
ctx.message(
|
41
|
+
ctx.message("rails.generate.error.generic", name)
|
42
42
|
when 2
|
43
|
-
ctx.message(
|
43
|
+
ctx.message("rails.generate.error.name_exists", name)
|
44
44
|
else
|
45
|
-
ctx.message(
|
45
|
+
ctx.message("rails.error.generic")
|
46
46
|
end
|
47
47
|
end
|
48
48
|
end
|
@@ -1,5 +1,5 @@
|
|
1
|
-
require
|
2
|
-
require
|
1
|
+
require "shopify_cli"
|
2
|
+
require "json"
|
3
3
|
module Rails
|
4
4
|
module Commands
|
5
5
|
class Generate
|
@@ -7,16 +7,16 @@ module Rails
|
|
7
7
|
def call(args, _name)
|
8
8
|
selected_type = args.first
|
9
9
|
schema = ShopifyCli::AdminAPI::Schema.get(@ctx)
|
10
|
-
webhooks = schema.get_names_from_type(
|
10
|
+
webhooks = schema.get_names_from_type("WebhookSubscriptionTopic")
|
11
11
|
unless selected_type && webhooks.include?(selected_type)
|
12
|
-
selected_type = CLI::UI::Prompt.ask(@ctx.message(
|
12
|
+
selected_type = CLI::UI::Prompt.ask(@ctx.message("rails.generate.webhook.select")) do |handler|
|
13
13
|
webhooks.each do |type|
|
14
14
|
handler.option(type) { type }
|
15
15
|
end
|
16
16
|
end
|
17
17
|
end
|
18
18
|
spin_group = CLI::UI::SpinGroup.new
|
19
|
-
spin_group.add(@ctx.message(
|
19
|
+
spin_group.add(@ctx.message("rails.generate.webhook.selected", selected_type)) do |spinner|
|
20
20
|
Rails::Commands::Generate.run_generate(generate_command(selected_type), selected_type, @ctx)
|
21
21
|
spinner.update_title("{{green:#{selected_type}}} config/initializers/shopify_app.rb")
|
22
22
|
end
|
@@ -24,7 +24,7 @@ module Rails
|
|
24
24
|
end
|
25
25
|
|
26
26
|
def self.help
|
27
|
-
ShopifyCli::Context.message(
|
27
|
+
ShopifyCli::Context.message("rails.generate.webhook.help", ShopifyCli::TOOL_NAME)
|
28
28
|
end
|
29
29
|
|
30
30
|
def generate_command(selected_type)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
require
|
1
|
+
require "shopify_cli"
|
2
2
|
|
3
3
|
module Rails
|
4
4
|
module Commands
|
@@ -9,7 +9,7 @@ module Rails
|
|
9
9
|
end
|
10
10
|
|
11
11
|
def self.help
|
12
|
-
ShopifyCli::Context.message(
|
12
|
+
ShopifyCli::Context.message("rails.open.help", ShopifyCli::TOOL_NAME)
|
13
13
|
end
|
14
14
|
end
|
15
15
|
end
|
@@ -1,22 +1,22 @@
|
|
1
|
-
require
|
1
|
+
require "shopify_cli"
|
2
2
|
|
3
3
|
module Rails
|
4
4
|
module Commands
|
5
5
|
class Populate < ShopifyCli::Command
|
6
|
-
subcommand :Product,
|
7
|
-
subcommand :Customer,
|
8
|
-
subcommand :DraftOrder,
|
6
|
+
subcommand :Product, "products", Project.project_filepath("commands/populate/product")
|
7
|
+
subcommand :Customer, "customers", Project.project_filepath("commands/populate/customer")
|
8
|
+
subcommand :DraftOrder, "draftorders", Project.project_filepath("commands/populate/draft_order")
|
9
9
|
|
10
10
|
def call(_args, _name)
|
11
11
|
@ctx.puts(self.class.help)
|
12
12
|
end
|
13
13
|
|
14
14
|
def self.help
|
15
|
-
ShopifyCli::Context.message(
|
15
|
+
ShopifyCli::Context.message("rails.populate.help", ShopifyCli::TOOL_NAME)
|
16
16
|
end
|
17
17
|
|
18
18
|
def self.extended_help
|
19
|
-
ShopifyCli::Context.message(
|
19
|
+
ShopifyCli::Context.message("rails.populate.extended_help", ShopifyCli::TOOL_NAME)
|
20
20
|
end
|
21
21
|
end
|
22
22
|
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
require
|
1
|
+
require "shopify_cli"
|
2
2
|
|
3
3
|
module Rails
|
4
4
|
module Commands
|
@@ -15,11 +15,11 @@ module Rails
|
|
15
15
|
end
|
16
16
|
|
17
17
|
def message(data)
|
18
|
-
ret = data[
|
19
|
-
id = ShopifyCli::API.gid_to_id(ret[
|
18
|
+
ret = data["customerCreate"]["customer"]
|
19
|
+
id = ShopifyCli::API.gid_to_id(ret["id"])
|
20
20
|
@ctx.message(
|
21
|
-
|
22
|
-
ret[
|
21
|
+
"rails.populate.customer.added",
|
22
|
+
ret["displayName"],
|
23
23
|
ShopifyCli::Project.current.env.shop,
|
24
24
|
admin_url,
|
25
25
|
id
|
@@ -1,4 +1,4 @@
|
|
1
|
-
require
|
1
|
+
require "shopify_cli"
|
2
2
|
|
3
3
|
module Rails
|
4
4
|
module Commands
|
@@ -11,16 +11,16 @@ module Rails
|
|
11
11
|
lineItems: [{
|
12
12
|
originalUnitPrice: price,
|
13
13
|
quantity: 1,
|
14
|
-
weight: { value: 10, unit:
|
14
|
+
weight: { value: 10, unit: "GRAMS" },
|
15
15
|
title: ShopifyCli::Helpers::Haikunator.title,
|
16
16
|
}],
|
17
17
|
}
|
18
18
|
end
|
19
19
|
|
20
20
|
def message(data)
|
21
|
-
ret = data[
|
22
|
-
id = ShopifyCli::API.gid_to_id(ret[
|
23
|
-
@ctx.message(
|
21
|
+
ret = data["draftOrderCreate"]["draftOrder"]
|
22
|
+
id = ShopifyCli::API.gid_to_id(ret["id"])
|
23
|
+
@ctx.message("rails.populate.draft_order.added", ShopifyCli::Project.current.env.shop, admin_url, id)
|
24
24
|
end
|
25
25
|
end
|
26
26
|
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
require
|
1
|
+
require "shopify_cli"
|
2
2
|
|
3
3
|
module Rails
|
4
4
|
module Commands
|
@@ -14,11 +14,11 @@ module Rails
|
|
14
14
|
end
|
15
15
|
|
16
16
|
def message(data)
|
17
|
-
ret = data[
|
18
|
-
id = ShopifyCli::API.gid_to_id(ret[
|
17
|
+
ret = data["productCreate"]["product"]
|
18
|
+
id = ShopifyCli::API.gid_to_id(ret["id"])
|
19
19
|
@ctx.message(
|
20
|
-
|
21
|
-
ret[
|
20
|
+
"rails.populate.product.added",
|
21
|
+
ret["title"],
|
22
22
|
ShopifyCli::Project.current.env.shop,
|
23
23
|
admin_url,
|
24
24
|
id
|
@@ -5,15 +5,15 @@ module Rails
|
|
5
5
|
prerequisite_task :ensure_env, :ensure_dev_store
|
6
6
|
|
7
7
|
options do |parser, flags|
|
8
|
-
parser.on(
|
9
|
-
flags[:host] = h.gsub('"',
|
8
|
+
parser.on("--host=HOST") do |h|
|
9
|
+
flags[:host] = h.gsub('"', "")
|
10
10
|
end
|
11
11
|
end
|
12
12
|
|
13
13
|
def call(*)
|
14
14
|
project = ShopifyCli::Project.current
|
15
15
|
url = options.flags[:host] || ShopifyCli::Tunnel.start(@ctx)
|
16
|
-
@ctx.abort(@ctx.message(
|
16
|
+
@ctx.abort(@ctx.message("rails.serve.error.host_must_be_https")) if url.match(/^https/i).nil?
|
17
17
|
project.env.update(@ctx, :host, url)
|
18
18
|
ShopifyCli::Tasks::UpdateDashboardURLS.call(
|
19
19
|
@ctx,
|
@@ -23,28 +23,28 @@ module Rails
|
|
23
23
|
|
24
24
|
if project.env.shop
|
25
25
|
project_url = "#{project.env.host}/login?shop=#{project.env.shop}"
|
26
|
-
@ctx.puts("\n" + @ctx.message(
|
26
|
+
@ctx.puts("\n" + @ctx.message("rails.serve.open_info", project_url) + "\n")
|
27
27
|
end
|
28
28
|
|
29
|
-
CLI::UI::Frame.open(@ctx.message(
|
29
|
+
CLI::UI::Frame.open(@ctx.message("rails.serve.running_server")) do
|
30
30
|
env = ShopifyCli::Project.current.env.to_h
|
31
|
-
env.delete(
|
32
|
-
env[
|
33
|
-
env[
|
31
|
+
env.delete("HOST")
|
32
|
+
env["PORT"] = ShopifyCli::Tunnel::PORT.to_s
|
33
|
+
env["GEM_PATH"] = Gem.gem_path(@ctx)
|
34
34
|
if @ctx.windows?
|
35
35
|
@ctx.system("ruby bin\\rails server", env: env)
|
36
36
|
else
|
37
|
-
@ctx.system(
|
37
|
+
@ctx.system("bin/rails server", env: env)
|
38
38
|
end
|
39
39
|
end
|
40
40
|
end
|
41
41
|
|
42
42
|
def self.help
|
43
|
-
ShopifyCli::Context.message(
|
43
|
+
ShopifyCli::Context.message("rails.serve.help", ShopifyCli::TOOL_NAME)
|
44
44
|
end
|
45
45
|
|
46
46
|
def self.extended_help
|
47
|
-
ShopifyCli::Context.message(
|
47
|
+
ShopifyCli::Context.message("rails.serve.extended_help", ShopifyCli::TOOL_NAME)
|
48
48
|
end
|
49
49
|
end
|
50
50
|
end
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require
|
3
|
+
require "shopify_cli"
|
4
4
|
|
5
5
|
module Rails
|
6
6
|
module Commands
|
@@ -10,17 +10,17 @@ module Rails
|
|
10
10
|
def call(args, _name)
|
11
11
|
subcommand = args.shift
|
12
12
|
case subcommand
|
13
|
-
when
|
13
|
+
when "auth"
|
14
14
|
token = args.shift
|
15
15
|
if token.nil?
|
16
|
-
@ctx.puts(@ctx.message(
|
16
|
+
@ctx.puts(@ctx.message("rails.tunnel.error.token_argument_missing"))
|
17
17
|
@ctx.puts("#{self.class.help}\n#{self.class.extended_help}")
|
18
18
|
else
|
19
19
|
ShopifyCli::Tunnel.auth(@ctx, token)
|
20
20
|
end
|
21
|
-
when
|
21
|
+
when "start"
|
22
22
|
ShopifyCli::Tunnel.start(@ctx)
|
23
|
-
when
|
23
|
+
when "stop"
|
24
24
|
ShopifyCli::Tunnel.stop(@ctx)
|
25
25
|
else
|
26
26
|
@ctx.puts(self.class.help)
|
@@ -28,11 +28,11 @@ module Rails
|
|
28
28
|
end
|
29
29
|
|
30
30
|
def self.help
|
31
|
-
ShopifyCli::Context.message(
|
31
|
+
ShopifyCli::Context.message("rails.tunnel.help", ShopifyCli::TOOL_NAME)
|
32
32
|
end
|
33
33
|
|
34
34
|
def self.extended_help
|
35
|
-
ShopifyCli::Context.message(
|
35
|
+
ShopifyCli::Context.message("rails.tunnel.extended_help", ShopifyCli::TOOL_NAME)
|
36
36
|
end
|
37
37
|
end
|
38
38
|
end
|