shopify-cli 1.3.1 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (301) hide show
  1. checksums.yaml +4 -4
  2. data/.github/CODEOWNERS +2 -2
  3. data/.github/CONTRIBUTING.md +9 -1
  4. data/.github/PULL_REQUEST_TEMPLATE.md +10 -1
  5. data/.github/workflows/release.yml +61 -0
  6. data/.github/workflows/triage.yml +22 -0
  7. data/.gitignore +0 -1
  8. data/.rubocop.yml +61 -8
  9. data/.rubocop_todo.yml +11 -0
  10. data/.travis.yml +1 -0
  11. data/CHANGELOG.md +30 -0
  12. data/Gemfile +12 -11
  13. data/Gemfile.lock +39 -37
  14. data/README.md +39 -7
  15. data/RELEASING.md +19 -29
  16. data/Rakefile +32 -28
  17. data/bin/load_shopify.rb +6 -6
  18. data/bin/shopify +2 -2
  19. data/dev.yml +2 -2
  20. data/docs/_config.yml +1 -18
  21. data/docs/app/node/commands/index.md +2 -80
  22. data/docs/app/node/index.md +2 -33
  23. data/docs/app/rails/commands/index.md +2 -78
  24. data/docs/app/rails/index.md +2 -34
  25. data/docs/core/index.md +2 -84
  26. data/docs/getting-started/index.md +2 -25
  27. data/docs/getting-started/install/index.md +1 -118
  28. data/docs/getting-started/migrate/index.md +2 -94
  29. data/docs/getting-started/uninstall/index.md +2 -35
  30. data/docs/getting-started/upgrade/index.md +2 -39
  31. data/docs/help/start-app/index.md +2 -4
  32. data/docs/index.md +2 -24
  33. data/ext/shopify-cli/extconf.rb +7 -7
  34. data/install.sh +1 -1
  35. data/lib/docgen/markdown.rb +11 -11
  36. data/lib/{project_types/extension/graphql → graphql}/get_app_by_api_key.graphql +0 -0
  37. data/lib/project_types/extension/cli.rb +64 -47
  38. data/lib/project_types/extension/commands/build.rb +3 -3
  39. data/lib/project_types/extension/commands/create.rb +16 -9
  40. data/lib/project_types/extension/commands/extension_command.rb +8 -5
  41. data/lib/project_types/extension/commands/push.rb +8 -8
  42. data/lib/project_types/extension/commands/register.rb +19 -30
  43. data/lib/project_types/extension/commands/serve.rb +2 -2
  44. data/lib/project_types/extension/commands/tunnel.rb +12 -12
  45. data/lib/project_types/extension/extension_project.rb +4 -4
  46. data/lib/project_types/extension/extension_project_keys.rb +4 -4
  47. data/lib/project_types/extension/features/argo.rb +117 -0
  48. data/lib/project_types/extension/features/argo_config.rb +5 -5
  49. data/lib/project_types/extension/features/argo_dependencies.rb +5 -5
  50. data/lib/project_types/extension/features/argo_setup.rb +2 -2
  51. data/lib/project_types/extension/features/argo_setup_steps.rb +4 -4
  52. data/lib/project_types/extension/forms/create.rb +28 -34
  53. data/lib/project_types/extension/forms/questions/ask_app.rb +53 -0
  54. data/lib/project_types/extension/forms/questions/ask_name.rb +40 -0
  55. data/lib/project_types/extension/forms/questions/ask_type.rb +36 -0
  56. data/lib/project_types/extension/messages/messages.rb +53 -52
  57. data/lib/project_types/extension/models/lazy_specification_handler.rb +12 -0
  58. data/lib/project_types/extension/models/specification.rb +35 -0
  59. data/lib/project_types/extension/models/specification_handlers/checkout_post_purchase.rb +19 -0
  60. data/lib/project_types/extension/models/specification_handlers/default.rb +67 -0
  61. data/lib/project_types/extension/models/specifications.rb +77 -0
  62. data/lib/project_types/extension/tasks/configure_features.rb +52 -0
  63. data/lib/project_types/extension/tasks/converters/app_converter.rb +6 -6
  64. data/lib/project_types/extension/tasks/converters/registration_converter.rb +6 -6
  65. data/lib/project_types/extension/tasks/converters/validation_error_converter.rb +4 -4
  66. data/lib/project_types/extension/tasks/converters/version_converter.rb +7 -7
  67. data/lib/project_types/extension/tasks/create_extension.rb +4 -4
  68. data/lib/project_types/extension/tasks/fetch_specifications.rb +38 -0
  69. data/lib/project_types/extension/tasks/get_app.rb +4 -4
  70. data/lib/project_types/extension/tasks/get_apps.rb +3 -3
  71. data/lib/project_types/extension/tasks/update_draft.rb +4 -4
  72. data/lib/project_types/extension/tasks/user_errors.rb +4 -4
  73. data/lib/project_types/node/cli.rb +19 -16
  74. data/lib/project_types/node/commands/connect.rb +15 -0
  75. data/lib/project_types/node/commands/create.rb +46 -38
  76. data/lib/project_types/node/commands/deploy.rb +4 -4
  77. data/lib/project_types/node/commands/deploy/heroku.rb +24 -24
  78. data/lib/project_types/node/commands/generate.rb +9 -18
  79. data/lib/project_types/node/commands/open.rb +2 -2
  80. data/lib/project_types/node/commands/populate.rb +6 -6
  81. data/lib/project_types/node/commands/populate/customer.rb +5 -5
  82. data/lib/project_types/node/commands/populate/draft_order.rb +5 -5
  83. data/lib/project_types/node/commands/populate/product.rb +5 -5
  84. data/lib/project_types/node/commands/serve.rb +9 -9
  85. data/lib/project_types/node/commands/tunnel.rb +7 -7
  86. data/lib/project_types/node/forms/create.rb +7 -7
  87. data/lib/project_types/node/messages/messages.rb +19 -53
  88. data/lib/project_types/rails/cli.rb +21 -18
  89. data/lib/project_types/rails/commands/connect.rb +15 -0
  90. data/lib/project_types/rails/commands/create.rb +60 -54
  91. data/lib/project_types/rails/commands/deploy.rb +4 -4
  92. data/lib/project_types/rails/commands/deploy/heroku.rb +30 -30
  93. data/lib/project_types/rails/commands/generate.rb +7 -7
  94. data/lib/project_types/rails/commands/generate/webhook.rb +6 -6
  95. data/lib/project_types/rails/commands/open.rb +2 -2
  96. data/lib/project_types/rails/commands/populate.rb +6 -6
  97. data/lib/project_types/rails/commands/populate/customer.rb +5 -5
  98. data/lib/project_types/rails/commands/populate/draft_order.rb +5 -5
  99. data/lib/project_types/rails/commands/populate/product.rb +5 -5
  100. data/lib/project_types/rails/commands/serve.rb +11 -11
  101. data/lib/project_types/rails/commands/tunnel.rb +7 -7
  102. data/lib/project_types/rails/forms/create.rb +24 -24
  103. data/lib/project_types/rails/gem.rb +24 -24
  104. data/lib/project_types/rails/messages/messages.rb +12 -9
  105. data/lib/project_types/rails/ruby.rb +2 -2
  106. data/lib/project_types/script/cli.rb +42 -38
  107. data/lib/project_types/script/commands/create.rb +13 -10
  108. data/lib/project_types/script/commands/disable.rb +3 -3
  109. data/lib/project_types/script/commands/enable.rb +19 -9
  110. data/lib/project_types/script/commands/push.rb +10 -17
  111. data/lib/project_types/script/config/extension_points.yml +17 -12
  112. data/lib/project_types/script/errors.rb +38 -0
  113. data/lib/project_types/script/forms/create.rb +29 -5
  114. data/lib/project_types/script/graphql/app_script_update_or_create.graphql +12 -1
  115. data/lib/project_types/script/layers/application/build_script.rb +18 -19
  116. data/lib/project_types/script/layers/application/create_script.rb +13 -11
  117. data/lib/project_types/script/layers/application/disable_script.rb +2 -2
  118. data/lib/project_types/script/layers/application/enable_script.rb +2 -2
  119. data/lib/project_types/script/layers/application/extension_points.rb +24 -0
  120. data/lib/project_types/script/layers/application/project_dependencies.rb +4 -4
  121. data/lib/project_types/script/layers/application/push_script.rb +12 -18
  122. data/lib/project_types/script/layers/domain/errors.rb +7 -0
  123. data/lib/project_types/script/layers/domain/extension_point.rb +62 -7
  124. data/lib/project_types/script/layers/domain/metadata.rb +55 -0
  125. data/lib/project_types/script/layers/domain/push_package.rb +29 -6
  126. data/lib/project_types/script/layers/infrastructure/assemblyscript_project_creator.rb +19 -54
  127. data/lib/project_types/script/layers/infrastructure/assemblyscript_task_runner.rb +49 -18
  128. data/lib/project_types/script/layers/infrastructure/errors.rb +17 -1
  129. data/lib/project_types/script/layers/infrastructure/extension_point_repository.rb +12 -6
  130. data/lib/project_types/script/layers/infrastructure/project_creator.rb +2 -1
  131. data/lib/project_types/script/layers/infrastructure/push_package_repository.rb +20 -13
  132. data/lib/project_types/script/layers/infrastructure/rust_project_creator.rb +72 -0
  133. data/lib/project_types/script/layers/infrastructure/rust_task_runner.rb +59 -0
  134. data/lib/project_types/script/layers/infrastructure/script_service.rb +26 -16
  135. data/lib/project_types/script/layers/infrastructure/task_runner.rb +4 -3
  136. data/lib/project_types/script/messages/messages.rb +67 -10
  137. data/lib/project_types/script/script_project.rb +47 -16
  138. data/lib/project_types/script/ui/error_handler.rb +115 -45
  139. data/lib/project_types/script/ui/printing_spinner.rb +1 -1
  140. data/lib/project_types/script/ui/strict_spinner.rb +1 -1
  141. data/lib/project_types/theme/cli.rb +40 -0
  142. data/lib/project_types/theme/commands/connect.rb +54 -0
  143. data/lib/project_types/theme/commands/create.rb +48 -0
  144. data/lib/project_types/theme/commands/deploy.rb +38 -0
  145. data/lib/project_types/theme/commands/generate.rb +20 -0
  146. data/lib/project_types/theme/commands/generate/env.rb +79 -0
  147. data/lib/project_types/theme/commands/push.rb +55 -0
  148. data/lib/project_types/theme/commands/serve.rb +31 -0
  149. data/lib/project_types/theme/forms/connect.rb +34 -0
  150. data/lib/project_types/theme/forms/create.rb +22 -0
  151. data/lib/project_types/theme/messages/messages.rb +147 -0
  152. data/lib/project_types/theme/tasks/ensure_themekit_installed.rb +78 -0
  153. data/lib/project_types/theme/themekit.rb +113 -0
  154. data/lib/rubygems_plugin.rb +3 -3
  155. data/lib/shopify-cli/admin_api.rb +52 -12
  156. data/lib/shopify-cli/admin_api/populate_resource_command.rb +17 -17
  157. data/lib/shopify-cli/admin_api/schema.rb +3 -3
  158. data/lib/shopify-cli/api.rb +38 -37
  159. data/lib/shopify-cli/command.rb +1 -1
  160. data/lib/shopify-cli/commands.rb +9 -9
  161. data/lib/shopify-cli/commands/config.rb +28 -28
  162. data/lib/shopify-cli/commands/connect.rb +35 -18
  163. data/lib/shopify-cli/commands/create.rb +5 -5
  164. data/lib/shopify-cli/commands/help.rb +6 -6
  165. data/lib/shopify-cli/commands/logout.rb +3 -3
  166. data/lib/shopify-cli/commands/system.rb +40 -31
  167. data/lib/shopify-cli/commands/version.rb +2 -2
  168. data/lib/shopify-cli/context.rb +43 -22
  169. data/lib/shopify-cli/core.rb +4 -4
  170. data/lib/shopify-cli/core/entry_point.rb +6 -6
  171. data/lib/shopify-cli/core/executor.rb +1 -1
  172. data/lib/shopify-cli/core/help_resolver.rb +2 -2
  173. data/lib/shopify-cli/core/monorail.rb +21 -19
  174. data/lib/shopify-cli/db.rb +2 -2
  175. data/lib/shopify-cli/feature.rb +1 -3
  176. data/lib/shopify-cli/form.rb +1 -1
  177. data/lib/shopify-cli/git.rb +17 -17
  178. data/lib/shopify-cli/helpers.rb +1 -1
  179. data/lib/shopify-cli/helpers/haikunator.rb +1 -1
  180. data/lib/shopify-cli/heroku.rb +28 -28
  181. data/lib/shopify-cli/http_request.rb +27 -0
  182. data/lib/shopify-cli/js_deps.rb +13 -13
  183. data/lib/shopify-cli/js_system.rb +5 -5
  184. data/lib/shopify-cli/lazy_delegator.rb +55 -0
  185. data/lib/shopify-cli/messages/messages.rb +24 -10
  186. data/lib/shopify-cli/method_object.rb +104 -0
  187. data/lib/shopify-cli/oauth.rb +25 -25
  188. data/lib/shopify-cli/oauth/servlet.rb +9 -9
  189. data/lib/shopify-cli/options.rb +3 -3
  190. data/lib/shopify-cli/packager.rb +24 -24
  191. data/lib/shopify-cli/partners_api.rb +38 -16
  192. data/lib/shopify-cli/partners_api/organizations.rb +10 -10
  193. data/lib/shopify-cli/process_supervision.rb +8 -8
  194. data/lib/shopify-cli/project.rb +27 -23
  195. data/lib/shopify-cli/project_type.rb +21 -5
  196. data/lib/shopify-cli/resolve_constant.rb +25 -0
  197. data/lib/shopify-cli/resources.rb +1 -1
  198. data/lib/shopify-cli/resources/env_file.rb +9 -9
  199. data/lib/shopify-cli/result.rb +432 -0
  200. data/lib/shopify-cli/shopifolk.rb +84 -0
  201. data/lib/shopify-cli/sub_command.rb +1 -1
  202. data/lib/shopify-cli/task.rb +9 -1
  203. data/lib/shopify-cli/tasks.rb +7 -7
  204. data/lib/shopify-cli/tasks/create_api_client.rb +17 -6
  205. data/lib/shopify-cli/tasks/ensure_dev_store.rb +11 -11
  206. data/lib/shopify-cli/tasks/ensure_env.rb +18 -15
  207. data/lib/shopify-cli/tasks/ensure_loopback_url.rb +4 -4
  208. data/lib/shopify-cli/tasks/select_org_and_shop.rb +29 -24
  209. data/lib/shopify-cli/tasks/update_dashboard_urls.rb +10 -10
  210. data/lib/shopify-cli/transform_data_structure.rb +86 -0
  211. data/lib/shopify-cli/tunnel.rb +36 -30
  212. data/lib/shopify-cli/version.rb +1 -1
  213. data/lib/shopify_cli.rb +57 -51
  214. data/shopify-cli.gemspec +6 -6
  215. data/shopify.fish +1 -1
  216. data/shopify.sh +1 -1
  217. data/vendor/deps/cli-kit/REVISION +1 -1
  218. data/vendor/deps/cli-kit/lib/cli/kit/logger.rb +2 -2
  219. data/vendor/deps/cli-kit/lib/cli/kit/system.rb +3 -3
  220. data/vendor/deps/cli-ui/REVISION +1 -1
  221. data/vendor/deps/cli-ui/lib/cli/ui.rb +26 -22
  222. data/vendor/deps/cli-ui/lib/cli/ui/ansi.rb +4 -6
  223. data/vendor/deps/cli-ui/lib/cli/ui/frame.rb +3 -3
  224. data/vendor/deps/cli-ui/lib/cli/ui/frame/frame_stack.rb +8 -9
  225. data/vendor/deps/cli-ui/lib/cli/ui/frame/frame_style.rb +1 -1
  226. data/vendor/deps/cli-ui/lib/cli/ui/glyph.rb +1 -0
  227. data/vendor/deps/cli-ui/lib/cli/ui/printer.rb +15 -3
  228. data/vendor/deps/cli-ui/lib/cli/ui/prompt/interactive_options.rb +4 -11
  229. data/vendor/deps/cli-ui/lib/cli/ui/spinner.rb +3 -5
  230. data/vendor/deps/cli-ui/lib/cli/ui/terminal.rb +10 -10
  231. data/vendor/deps/cli-ui/lib/cli/ui/version.rb +1 -1
  232. data/vendor/deps/cli-ui/lib/cli/ui/wrap.rb +56 -0
  233. data/vendor/deps/webrick/.gitignore +9 -0
  234. data/vendor/deps/webrick/Gemfile +3 -0
  235. data/vendor/deps/webrick/LICENSE.txt +22 -0
  236. data/vendor/deps/webrick/README.md +61 -0
  237. data/vendor/deps/webrick/Rakefile +10 -0
  238. data/vendor/deps/webrick/lib/webrick.rb +232 -0
  239. data/vendor/deps/webrick/lib/webrick/accesslog.rb +157 -0
  240. data/vendor/deps/webrick/lib/webrick/cgi.rb +313 -0
  241. data/vendor/deps/webrick/lib/webrick/compat.rb +36 -0
  242. data/vendor/deps/webrick/lib/webrick/config.rb +158 -0
  243. data/vendor/deps/webrick/lib/webrick/cookie.rb +172 -0
  244. data/vendor/deps/webrick/lib/webrick/htmlutils.rb +30 -0
  245. data/vendor/deps/webrick/lib/webrick/httpauth.rb +96 -0
  246. data/vendor/deps/webrick/lib/webrick/httpauth/authenticator.rb +117 -0
  247. data/vendor/deps/webrick/lib/webrick/httpauth/basicauth.rb +116 -0
  248. data/vendor/deps/webrick/lib/webrick/httpauth/digestauth.rb +395 -0
  249. data/vendor/deps/webrick/lib/webrick/httpauth/htdigest.rb +132 -0
  250. data/vendor/deps/webrick/lib/webrick/httpauth/htgroup.rb +97 -0
  251. data/vendor/deps/webrick/lib/webrick/httpauth/htpasswd.rb +158 -0
  252. data/vendor/deps/webrick/lib/webrick/httpauth/userdb.rb +53 -0
  253. data/vendor/deps/webrick/lib/webrick/httpproxy.rb +354 -0
  254. data/vendor/deps/webrick/lib/webrick/httprequest.rb +636 -0
  255. data/vendor/deps/webrick/lib/webrick/httpresponse.rb +564 -0
  256. data/vendor/deps/webrick/lib/webrick/https.rb +152 -0
  257. data/vendor/deps/webrick/lib/webrick/httpserver.rb +294 -0
  258. data/vendor/deps/webrick/lib/webrick/httpservlet.rb +23 -0
  259. data/vendor/deps/webrick/lib/webrick/httpservlet/abstract.rb +152 -0
  260. data/vendor/deps/webrick/lib/webrick/httpservlet/cgi_runner.rb +47 -0
  261. data/vendor/deps/webrick/lib/webrick/httpservlet/cgihandler.rb +126 -0
  262. data/vendor/deps/webrick/lib/webrick/httpservlet/erbhandler.rb +88 -0
  263. data/vendor/deps/webrick/lib/webrick/httpservlet/filehandler.rb +552 -0
  264. data/vendor/deps/webrick/lib/webrick/httpservlet/prochandler.rb +47 -0
  265. data/vendor/deps/webrick/lib/webrick/httpstatus.rb +194 -0
  266. data/vendor/deps/webrick/lib/webrick/httputils.rb +512 -0
  267. data/vendor/deps/webrick/lib/webrick/httpversion.rb +76 -0
  268. data/vendor/deps/webrick/lib/webrick/log.rb +156 -0
  269. data/vendor/deps/webrick/lib/webrick/server.rb +381 -0
  270. data/vendor/deps/webrick/lib/webrick/ssl.rb +215 -0
  271. data/vendor/deps/webrick/lib/webrick/utils.rb +265 -0
  272. data/vendor/deps/webrick/lib/webrick/version.rb +18 -0
  273. data/vendor/deps/webrick/webrick.gemspec +74 -0
  274. data/vendor/gen/template/bin/update-deps +9 -9
  275. metadata +84 -29
  276. data/docs/Gemfile +0 -5
  277. data/docs/Gemfile.lock +0 -258
  278. data/docs/_data/nav.yml +0 -35
  279. data/docs/_includes/footer.html +0 -15
  280. data/docs/_includes/head.html +0 -19
  281. data/docs/_includes/sidebar_nav.html +0 -22
  282. data/docs/_includes/toc.html +0 -112
  283. data/docs/_layouts/default.html +0 -79
  284. data/docs/css/docs.css +0 -157
  285. data/docs/images/header.png +0 -0
  286. data/docs/installing-ruby.md +0 -28
  287. data/lib/project_types/extension/features/argo/admin.rb +0 -20
  288. data/lib/project_types/extension/features/argo/base.rb +0 -129
  289. data/lib/project_types/extension/features/argo/checkout.rb +0 -20
  290. data/lib/project_types/extension/forms/register.rb +0 -47
  291. data/lib/project_types/extension/models/type.rb +0 -81
  292. data/lib/project_types/extension/models/types/checkout_post_purchase.rb +0 -23
  293. data/lib/project_types/extension/models/types/product_subscription.rb +0 -24
  294. data/lib/project_types/node/commands/generate/billing.rb +0 -39
  295. data/lib/project_types/node/commands/generate/page.rb +0 -59
  296. data/lib/project_types/node/commands/generate/webhook.rb +0 -37
  297. data/lib/project_types/script/layers/domain/script.rb +0 -18
  298. data/lib/project_types/script/layers/infrastructure/assemblyscript_tsconfig.rb +0 -38
  299. data/lib/project_types/script/layers/infrastructure/script_repository.rb +0 -59
  300. data/lib/project_types/script/templates/ts/as-pect.config.js +0 -27
  301. data/lib/project_types/script/templates/ts/as-pect.d.ts +0 -1
@@ -1,10 +1,10 @@
1
- require 'cli/ui'
1
+ require "cli/ui"
2
2
 
3
3
  module Script
4
4
  module UI
5
5
  module ErrorHandler
6
6
  def self.display(failed_op:, cause_of_error:, help_suggestion:)
7
- $stderr.puts(CLI::UI.fmt(ShopifyCli::Context.message('script.error.generic')))
7
+ $stderr.puts(CLI::UI.fmt(ShopifyCli::Context.message("script.error.generic")))
8
8
  full_msg = failed_op ? failed_op.dup : ""
9
9
  full_msg << " #{cause_of_error}" if cause_of_error
10
10
  full_msg << " #{help_suggestion}" if help_suggestion
@@ -26,130 +26,200 @@ module Script
26
26
  case e
27
27
  when Errno::EACCES
28
28
  {
29
- cause_of_error: ShopifyCli::Context.message('script.error.eacces_cause'),
30
- help_suggestion: ShopifyCli::Context.message('script.error.eacces_help'),
29
+ cause_of_error: ShopifyCli::Context.message("script.error.eacces_cause"),
30
+ help_suggestion: ShopifyCli::Context.message("script.error.eacces_help"),
31
31
  }
32
32
  when Errno::ENOSPC
33
33
  {
34
- cause_of_error: ShopifyCli::Context.message('script.error.enospc_cause'),
35
- help_suggestion: ShopifyCli::Context.message('script.error.enospc_help'),
34
+ cause_of_error: ShopifyCli::Context.message("script.error.enospc_cause"),
35
+ help_suggestion: ShopifyCli::Context.message("script.error.enospc_help"),
36
36
  }
37
37
  when ShopifyCli::OAuth::Error
38
38
  {
39
- cause_of_error: ShopifyCli::Context.message('script.error.oauth_cause'),
40
- help_suggestion: ShopifyCli::Context.message('script.error.oauth_help'),
39
+ cause_of_error: ShopifyCli::Context.message("script.error.oauth_cause"),
40
+ help_suggestion: ShopifyCli::Context.message("script.error.oauth_help"),
41
41
  }
42
42
  when Errors::InvalidContextError
43
43
  {
44
- cause_of_error: ShopifyCli::Context.message('script.error.invalid_context_cause'),
45
- help_suggestion: ShopifyCli::Context.message('script.error.invalid_context_help'),
44
+ cause_of_error: ShopifyCli::Context.message("script.error.invalid_context_cause"),
45
+ help_suggestion: ShopifyCli::Context.message("script.error.invalid_context_help"),
46
+ }
47
+ when Errors::InvalidConfigProps
48
+ {
49
+ cause_of_error: ShopifyCli::Context.message("script.error.invalid_config_props_cause"),
50
+ help_suggestion: ShopifyCli::Context.message("script.error.invalid_config_props_help"),
46
51
  }
47
52
  when Errors::InvalidConfigYAMLError
48
53
  {
49
- cause_of_error: ShopifyCli::Context.message('script.error.invalid_config', e.config_file),
54
+ cause_of_error: ShopifyCli::Context.message("script.error.invalid_config", e.config_file),
55
+ }
56
+ when Errors::InvalidLanguageError
57
+ {
58
+ cause_of_error: ShopifyCli::Context.message("script.error.invalid_language_cause", e.language),
59
+ help_suggestion: ShopifyCli::Context.message(
60
+ "script.error.invalid_language_help",
61
+ Script::Layers::Application::ExtensionPoints.languages(type: e.extension_point_type).join(", ")
62
+ ),
63
+ }
64
+ when Errors::InvalidConfigUiDefinitionError
65
+ {
66
+ cause_of_error: ShopifyCli::Context
67
+ .message("script.error.invalid_config_ui_definition_cause", e.filename),
68
+ help_suggestion: ShopifyCli::Context.message("script.error.invalid_config_ui_definition_help"),
69
+ }
70
+ when Errors::MissingSpecifiedConfigUiDefinitionError
71
+ {
72
+ cause_of_error: ShopifyCli::Context
73
+ .message("script.error.missing_config_ui_definition_cause", e.filename),
74
+ help_suggestion: ShopifyCli::Context.message("script.error.missing_config_ui_definition_help"),
50
75
  }
51
76
  when Errors::InvalidScriptNameError
52
77
  {
53
- cause_of_error: ShopifyCli::Context.message('script.error.invalid_script_name_cause'),
54
- help_suggestion: ShopifyCli::Context.message('script.error.invalid_script_name_help'),
78
+ cause_of_error: ShopifyCli::Context.message("script.error.invalid_script_name_cause"),
79
+ help_suggestion: ShopifyCli::Context.message("script.error.invalid_script_name_help"),
55
80
  }
56
81
  when Errors::NoExistingAppsError
57
82
  {
58
- cause_of_error: ShopifyCli::Context.message('script.error.no_existing_apps_cause'),
59
- help_suggestion: ShopifyCli::Context.message('script.error.no_existing_apps_help'),
83
+ cause_of_error: ShopifyCli::Context.message("script.error.no_existing_apps_cause"),
84
+ help_suggestion: ShopifyCli::Context.message("script.error.no_existing_apps_help"),
60
85
  }
61
86
  when Errors::NoExistingOrganizationsError
62
87
  {
63
- cause_of_error: ShopifyCli::Context.message('script.error.no_existing_orgs_cause'),
64
- help_suggestion: ShopifyCli::Context.message('script.error.no_existing_orgs_help'),
88
+ cause_of_error: ShopifyCli::Context.message("script.error.no_existing_orgs_cause"),
89
+ help_suggestion: ShopifyCli::Context.message("script.error.no_existing_orgs_help"),
65
90
  }
66
91
  when Errors::NoExistingStoresError
67
92
  {
68
- cause_of_error: ShopifyCli::Context.message('script.error.no_existing_stores_cause'),
93
+ cause_of_error: ShopifyCli::Context.message("script.error.no_existing_stores_cause"),
69
94
  help_suggestion: ShopifyCli::Context.message(
70
- 'script.error.no_existing_stores_help',
95
+ "script.error.no_existing_stores_help",
71
96
  organization_id: e.organization_id
72
97
  ),
73
98
  }
74
99
  when Errors::ScriptProjectAlreadyExistsError
75
100
  {
76
- cause_of_error: ShopifyCli::Context.message('script.error.project_exists_cause'),
77
- help_suggestion: ShopifyCli::Context.message('script.error.project_exists_help'),
101
+ cause_of_error: ShopifyCli::Context.message("script.error.project_exists_cause"),
102
+ help_suggestion: ShopifyCli::Context.message("script.error.project_exists_help"),
103
+ }
104
+ when Errors::DeprecatedEPError
105
+ {
106
+ cause_of_error: ShopifyCli::Context.message("script.error.deprecated_ep", e.ep),
107
+ help_suggestion: ShopifyCli::Context.message("script.error.deprecated_ep_cause"),
78
108
  }
79
109
  when Layers::Domain::Errors::InvalidExtensionPointError
80
110
  {
81
- cause_of_error: ShopifyCli::Context.message('script.error.invalid_extension_cause', e.type),
111
+ cause_of_error: ShopifyCli::Context.message("script.error.invalid_extension_cause", e.type),
82
112
  help_suggestion: ShopifyCli::Context.message(
83
- 'script.error.invalid_extension_help',
84
- Script::Layers::Application::ExtensionPoints.types.join(', ')
113
+ "script.error.invalid_extension_help",
114
+ Script::Layers::Application::ExtensionPoints.types.join(", ")
85
115
  ),
86
116
  }
87
117
  when Layers::Domain::Errors::ScriptNotFoundError
88
118
  {
89
119
  cause_of_error: ShopifyCli::Context.message(
90
- 'script.error.script_not_found_cause',
120
+ "script.error.script_not_found_cause",
91
121
  e.script_name,
92
122
  e.extension_point_type
93
123
  ),
94
124
  }
125
+ when Layers::Domain::Errors::ServiceFailureError
126
+ {
127
+ cause_of_error: ShopifyCli::Context.message("script.error.service_failure_cause"),
128
+ help_suggestion: ShopifyCli::Context.message("script.error.service_failure_help"),
129
+ }
130
+ when Layers::Domain::Errors::MetadataValidationError
131
+ {
132
+ cause_of_error: ShopifyCli::Context.message("script.error.metadata_validation_cause"),
133
+ help_suggestion: ShopifyCli::Context.message("script.error.metadata_validation_help"),
134
+ }
135
+ when Layers::Domain::Errors::MetadataNotFoundError
136
+ {
137
+ cause_of_error: ShopifyCli::Context.message("script.error.metadata_not_found_cause"),
138
+ help_suggestion: ShopifyCli::Context.message("script.error.metadata_not_found_help"),
139
+ }
95
140
  when Layers::Infrastructure::Errors::AppNotInstalledError
96
141
  {
97
- cause_of_error: ShopifyCli::Context.message('script.error.app_not_installed_cause'),
142
+ cause_of_error: ShopifyCli::Context.message("script.error.app_not_installed_cause"),
98
143
  }
99
144
  when Layers::Infrastructure::Errors::AppScriptNotPushedError,
100
145
  Layers::Infrastructure::Errors::AppScriptUndefinedError
101
146
  {
102
- cause_of_error: ShopifyCli::Context.message('script.error.app_script_not_pushed_help'),
147
+ cause_of_error: ShopifyCli::Context.message("script.error.app_script_not_pushed_help"),
103
148
  }
104
149
  when Layers::Infrastructure::Errors::BuildError
105
150
  {
106
- cause_of_error: ShopifyCli::Context.message('script.error.build_error_cause'),
107
- help_suggestion: ShopifyCli::Context.message('script.error.build_error_help'),
151
+ cause_of_error: ShopifyCli::Context.message("script.error.build_error_cause"),
152
+ help_suggestion: ShopifyCli::Context.message("script.error.build_error_help"),
108
153
  }
109
154
  when Layers::Infrastructure::Errors::DependencyInstallError
110
155
  {
111
- cause_of_error: ShopifyCli::Context.message('script.error.dependency_install_cause'),
112
- help_suggestion: ShopifyCli::Context.message('script.error.dependency_install_help'),
156
+ cause_of_error: ShopifyCli::Context.message("script.error.dependency_install_cause"),
157
+ help_suggestion: ShopifyCli::Context.message("script.error.dependency_install_help"),
158
+ }
159
+ when Layers::Infrastructure::Errors::EmptyResponseError
160
+ {
161
+ cause_of_error: ShopifyCli::Context.message("script.error.failed_api_request_cause"),
162
+ help_suggestion: ShopifyCli::Context.message("script.error.failed_api_request_help"),
113
163
  }
114
164
  when Layers::Infrastructure::Errors::ForbiddenError
115
165
  {
116
- cause_of_error: ShopifyCli::Context.message('script.error.forbidden_error_cause'),
166
+ cause_of_error: ShopifyCli::Context.message("script.error.forbidden_error_cause"),
117
167
  }
118
168
  when Layers::Infrastructure::Errors::GraphqlError
119
169
  {
120
- cause_of_error: ShopifyCli::Context.message('script.error.graphql_error_cause', e.errors.join(', ')),
121
- help_suggestion: ShopifyCli::Context.message('script.error.graphql_error_help'),
170
+ cause_of_error: ShopifyCli::Context.message("script.error.graphql_error_cause", e.errors.join(", ")),
171
+ help_suggestion: ShopifyCli::Context.message("script.error.graphql_error_help"),
122
172
  }
123
173
  when Layers::Infrastructure::Errors::ScriptRepushError
124
174
  {
125
- cause_of_error: ShopifyCli::Context.message('script.error.script_repush_cause', e.api_key),
126
- help_suggestion: ShopifyCli::Context.message('script.error.script_repush_help'),
175
+ cause_of_error: ShopifyCli::Context.message("script.error.script_repush_cause", e.api_key),
176
+ help_suggestion: ShopifyCli::Context.message("script.error.script_repush_help"),
177
+ }
178
+ when Layers::Infrastructure::Errors::ScriptServiceUserError
179
+ {
180
+ cause_of_error: ShopifyCli::Context.message("script.error.user_error_cause"),
181
+ help_suggestion: ShopifyCli::Context.message("script.error.user_error_help"),
127
182
  }
128
183
  when Layers::Infrastructure::Errors::ShopAuthenticationError
129
184
  {
130
- cause_of_error: ShopifyCli::Context.message('script.error.shop_auth_cause'),
131
- help_suggestion: ShopifyCli::Context.message('script.error.shop_auth_help'),
185
+ cause_of_error: ShopifyCli::Context.message("script.error.shop_auth_cause"),
186
+ help_suggestion: ShopifyCli::Context.message("script.error.shop_auth_help"),
132
187
  }
133
188
  when Layers::Infrastructure::Errors::ShopScriptConflictError
134
189
  {
135
- cause_of_error: ShopifyCli::Context.message('script.error.shop_script_conflict_cause'),
136
- help_suggestion: ShopifyCli::Context.message('script.error.shop_script_conflict_help'),
190
+ cause_of_error: ShopifyCli::Context.message("script.error.shop_script_conflict_cause"),
191
+ help_suggestion: ShopifyCli::Context.message("script.error.shop_script_conflict_help"),
137
192
  }
138
193
  when Layers::Infrastructure::Errors::ShopScriptUndefinedError
139
194
  {
140
- cause_of_error: ShopifyCli::Context.message('script.error.shop_script_undefined_cause'),
195
+ cause_of_error: ShopifyCli::Context.message("script.error.shop_script_undefined_cause"),
141
196
  }
142
197
  when Layers::Infrastructure::Errors::PackagesOutdatedError
143
198
  {
144
199
  cause_of_error: ShopifyCli::Context.message(
145
- 'script.error.packages_outdated_cause',
146
- e.outdated_packages.join(', ')
200
+ "script.error.packages_outdated_cause",
201
+ e.outdated_packages.join(", ")
147
202
  ),
148
203
  help_suggestion: ShopifyCli::Context.message(
149
- 'script.error.packages_outdated_help',
150
- e.outdated_packages.collect { |package| "#{package}@latest" }.join(' ')
204
+ "script.error.packages_outdated_help",
205
+ e.outdated_packages.collect { |package| "#{package}@latest" }.join(" ")
151
206
  ),
152
207
  }
208
+ when Layers::Infrastructure::Errors::BuildScriptNotFoundError
209
+ {
210
+ cause_of_error: ShopifyCli::Context.message("script.error.build_script_not_found"),
211
+ help_suggestion: ShopifyCli::Context.message("script.error.build_script_suggestion"),
212
+ }
213
+ when Layers::Infrastructure::Errors::InvalidBuildScriptError
214
+ {
215
+ cause_of_error: ShopifyCli::Context.message("script.error.invalid_build_script"),
216
+ help_suggestion: ShopifyCli::Context.message("script.error.build_script_suggestion"),
217
+ }
218
+ when Layers::Infrastructure::Errors::WebAssemblyBinaryNotFoundError
219
+ {
220
+ cause_of_error: ShopifyCli::Context.message("script.error.web_assembly_binary_not_found"),
221
+ help_suggestion: ShopifyCli::Context.message("script.error.web_assembly_binary_not_found_suggestion"),
222
+ }
153
223
  end
154
224
  end
155
225
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
- require 'shopify_cli'
2
+ require "shopify_cli"
3
3
 
4
4
  module Script
5
5
  module UI
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'shopify_cli'
3
+ require "shopify_cli"
4
4
 
5
5
  module Script
6
6
  module UI
@@ -0,0 +1,40 @@
1
+ # frozen_string_literal: true
2
+ module Theme
3
+ class Project < ShopifyCli::ProjectType
4
+ hidden_feature
5
+
6
+ title("Theme")
7
+ creator("Theme::Commands::Create")
8
+ connector("Theme::Commands::Connect")
9
+
10
+ register_command("Theme::Commands::Deploy", "deploy")
11
+ register_command("Theme::Commands::Generate", "generate")
12
+ register_command("Theme::Commands::Push", "push")
13
+ register_command("Theme::Commands::Serve", "serve")
14
+
15
+ register_task("Theme::Tasks::EnsureThemekitInstalled", :ensure_themekit_installed)
16
+
17
+ require Project.project_filepath("messages/messages")
18
+ register_messages(Theme::Messages::MESSAGES)
19
+ end
20
+
21
+ module Commands
22
+ autoload :Connect, Project.project_filepath("commands/connect")
23
+ autoload :Create, Project.project_filepath("commands/create")
24
+ autoload :Deploy, Project.project_filepath("commands/deploy")
25
+ autoload :Generate, Project.project_filepath("commands/generate")
26
+ autoload :Push, Project.project_filepath("commands/push")
27
+ autoload :Serve, Project.project_filepath("commands/serve")
28
+ end
29
+
30
+ module Tasks
31
+ autoload :EnsureThemekitInstalled, Project.project_filepath("tasks/ensure_themekit_installed")
32
+ end
33
+
34
+ module Forms
35
+ autoload :Create, Project.project_filepath("forms/create")
36
+ autoload :Connect, Project.project_filepath("forms/connect")
37
+ end
38
+
39
+ autoload :Themekit, Project.project_filepath("themekit")
40
+ end
@@ -0,0 +1,54 @@
1
+ # frozen_string_literal: true
2
+ module Theme
3
+ module Commands
4
+ class Connect < ShopifyCli::SubCommand
5
+ prerequisite_task :ensure_themekit_installed
6
+
7
+ options do |parser, flags|
8
+ parser.on("--store=STORE") { |url| flags[:store] = url }
9
+ parser.on("--password=PASSWORD") { |p| flags[:password] = p }
10
+ parser.on("--themeid=THEME_ID") { |id| flags[:themeid] = id }
11
+ parser.on("--env=ENV") { |env| flags[:env] = env }
12
+ end
13
+
14
+ def call(args, _name)
15
+ if ShopifyCli::Project.has_current?
16
+ @ctx.abort(@ctx.message("theme.connect.inside_project"))
17
+ end
18
+
19
+ form = Forms::Connect.ask(@ctx, args, options.flags)
20
+ return @ctx.puts(self.class.help) if form.nil?
21
+
22
+ build(form.store, form.password, form.themeid, form.name, form.env)
23
+ ShopifyCli::Project.write(@ctx,
24
+ project_type: "theme",
25
+ organization_id: nil)
26
+
27
+ @ctx.done(@ctx.message("theme.connect.connected", form.name, form.store, @ctx.root))
28
+ end
29
+
30
+ def self.help
31
+ ShopifyCli::Context.message("theme.connect.help", ShopifyCli::TOOL_NAME, ShopifyCli::TOOL_NAME)
32
+ end
33
+
34
+ private
35
+
36
+ def build(store, password, themeid, name, env)
37
+ if @ctx.dir_exist?(name)
38
+ @ctx.abort(@ctx.message("theme.connect.duplicate"))
39
+ end
40
+
41
+ @ctx.mkdir_p(name)
42
+ @ctx.chdir(name)
43
+
44
+ CLI::UI::Frame.open(@ctx.message("theme.connect.connect")) do
45
+ unless Themekit.connect(@ctx, store: store, password: password, themeid: themeid, env: env)
46
+ @ctx.chdir("..")
47
+ @ctx.rm_rf(name)
48
+ @ctx.abort(@ctx.message("theme.connect.failed"))
49
+ end
50
+ end
51
+ end
52
+ end
53
+ end
54
+ end
@@ -0,0 +1,48 @@
1
+ # frozen_string_literal: true
2
+ module Theme
3
+ module Commands
4
+ class Create < ShopifyCli::SubCommand
5
+ prerequisite_task :ensure_themekit_installed
6
+
7
+ options do |parser, flags|
8
+ parser.on("--name=NAME") { |t| flags[:title] = t }
9
+ parser.on("--password=PASSWORD") { |p| flags[:password] = p }
10
+ parser.on("--store=STORE") { |url| flags[:store] = url }
11
+ parser.on("--env=ENV") { |env| flags[:env] = env }
12
+ end
13
+
14
+ def call(args, _name)
15
+ form = Forms::Create.ask(@ctx, args, options.flags)
16
+ return @ctx.puts(self.class.help) if form.nil?
17
+
18
+ build(form.name, form.password, form.store, form.env)
19
+ ShopifyCli::Project.write(@ctx,
20
+ project_type: "theme",
21
+ organization_id: nil) # private apps are different
22
+
23
+ @ctx.done(@ctx.message("theme.create.info.created", form.name, form.store, @ctx.root))
24
+ end
25
+
26
+ def self.help
27
+ ShopifyCli::Context.message("theme.create.help", ShopifyCli::TOOL_NAME, ShopifyCli::TOOL_NAME)
28
+ end
29
+
30
+ private
31
+
32
+ def build(name, password, store, env)
33
+ @ctx.abort(@ctx.message("theme.create.duplicate_theme")) if @ctx.dir_exist?(name)
34
+
35
+ @ctx.mkdir_p(name)
36
+ @ctx.chdir(name)
37
+
38
+ CLI::UI::Frame.open(@ctx.message("theme.create.creating_theme", name)) do
39
+ unless Themekit.create(@ctx, name: name, password: password, store: store, env: env)
40
+ @ctx.chdir("..")
41
+ @ctx.rm_rf(name)
42
+ @ctx.abort(@ctx.message("theme.create.failed"))
43
+ end
44
+ end
45
+ end
46
+ end
47
+ end
48
+ end
@@ -0,0 +1,38 @@
1
+ # frozen_string_literal: true
2
+ module Theme
3
+ module Commands
4
+ class Deploy < ShopifyCli::Command
5
+ prerequisite_task :ensure_themekit_installed
6
+
7
+ options do |parser, flags|
8
+ parser.on("--env=ENV") { |env| flags[:env] = env }
9
+ parser.on("--allow-live") { flags["allow_live"] = true }
10
+ end
11
+
12
+ def call(*)
13
+ CLI::UI::Frame.open(@ctx.message("theme.deploy.deploying")) do
14
+ unless CLI::UI::Prompt.confirm(@ctx.message("theme.deploy.confirmation"))
15
+ @ctx.abort(@ctx.message("theme.deploy.abort"))
16
+ end
17
+
18
+ if options.flags[:env]
19
+ env = options.flags[:env]
20
+ options.flags.delete(:env)
21
+ end
22
+
23
+ flags = Themekit.add_flags(options.flags)
24
+
25
+ unless Themekit.deploy(@ctx, flags: flags, env: env)
26
+ @ctx.abort(@ctx.message("theme.deploy.error"))
27
+ end
28
+ end
29
+
30
+ @ctx.done(@ctx.message("theme.deploy.info.deployed"))
31
+ end
32
+
33
+ def self.help
34
+ ShopifyCli::Context.message("theme.deploy.help", ShopifyCli::TOOL_NAME, ShopifyCli::TOOL_NAME)
35
+ end
36
+ end
37
+ end
38
+ end