shopify-cli 2.6.6 → 2.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.devcontainer.json +5 -0
- data/.github/DESIGN.md +1 -1
- data/.github/ISSUE_TEMPLATE.md +7 -0
- data/.vscode/extensions.json +5 -0
- data/.vscode/settings.json +9 -0
- data/CHANGELOG.md +12 -3
- data/CONTRIBUTING.md +1 -29
- data/{Dockerfile → Codespace.dockerfile} +0 -0
- data/Gemfile.lock +4 -4
- data/README.md +20 -99
- data/Tests.dockerfile +35 -0
- data/assets/logo.png +0 -0
- data/dev.yml +0 -3
- data/docs/README.md +13 -0
- data/docs/contributors/testing.md +27 -0
- data/docs/users/installation.md +46 -0
- data/{THEMEKIT_MIGRATION.md → docs/users/migrate-from-themekit.md} +1 -1
- data/lib/project_types/extension/cli.rb +6 -3
- data/lib/project_types/extension/commands/create.rb +5 -6
- data/lib/project_types/extension/commands/extension_command.rb +1 -1
- data/lib/project_types/extension/features/argo_serve.rb +9 -23
- data/lib/project_types/extension/forms/questions/ask_template.rb +1 -5
- data/lib/project_types/extension/models/development_server_requirements.rb +2 -3
- data/lib/project_types/extension/models/server_config/app.rb +13 -0
- data/lib/project_types/extension/models/server_config/development.rb +5 -4
- data/lib/project_types/extension/models/server_config/development_renderer.rb +1 -1
- data/lib/project_types/extension/models/server_config/development_resource.rb +13 -0
- data/lib/project_types/extension/models/server_config/extension.rb +3 -1
- data/lib/project_types/extension/models/server_config/root.rb +4 -1
- data/lib/project_types/extension/tasks/convert_server_config.rb +65 -0
- data/lib/project_types/extension/tasks/ensure_resource_url.rb +39 -0
- data/lib/project_types/extension/tasks/merge_server_config.rb +32 -0
- data/lib/project_types/extension/tasks/run_extension_command.rb +10 -9
- data/lib/project_types/node/cli.rb +0 -16
- data/lib/project_types/node/forms/create.rb +5 -5
- data/lib/project_types/node/messages/messages.rb +2 -144
- data/lib/project_types/php/cli.rb +0 -11
- data/lib/project_types/php/forms/create.rb +5 -6
- data/lib/project_types/php/messages/messages.rb +2 -161
- data/lib/project_types/rails/cli.rb +0 -16
- data/lib/project_types/rails/commands/create.rb +1 -1
- data/lib/project_types/rails/forms/create.rb +5 -6
- data/lib/project_types/rails/messages/messages.rb +6 -151
- data/lib/project_types/script/cli.rb +1 -1
- data/lib/project_types/script/commands/create.rb +1 -1
- data/lib/project_types/script/commands/push.rb +1 -1
- data/lib/project_types/theme/cli.rb +1 -1
- data/lib/project_types/theme/commands/check.rb +1 -1
- data/lib/project_types/theme/commands/delete.rb +1 -1
- data/lib/project_types/theme/commands/init.rb +1 -1
- data/lib/project_types/theme/commands/language_server.rb +1 -1
- data/lib/project_types/theme/commands/package.rb +1 -1
- data/lib/project_types/theme/commands/publish.rb +1 -1
- data/lib/project_types/theme/commands/pull.rb +1 -1
- data/lib/project_types/theme/commands/push.rb +1 -1
- data/lib/project_types/theme/commands/serve.rb +9 -3
- data/lib/project_types/theme/messages/messages.rb +5 -1
- data/lib/shopify_cli/admin_api/populate_resource_command.rb +1 -1
- data/lib/shopify_cli/api.rb +7 -2
- data/lib/shopify_cli/app_type_detector.rb +24 -20
- data/lib/shopify_cli/command/app_sub_command.rb +10 -0
- data/lib/shopify_cli/command/project_command.rb +18 -0
- data/lib/shopify_cli/command/sub_command.rb +19 -0
- data/lib/shopify_cli/command.rb +7 -2
- data/lib/shopify_cli/commands/app/connect.rb +22 -0
- data/lib/shopify_cli/commands/app/create/node.rb +38 -0
- data/lib/shopify_cli/commands/app/create/php.rb +36 -0
- data/lib/shopify_cli/commands/app/create/rails.rb +40 -0
- data/lib/shopify_cli/commands/app/create.rb +28 -0
- data/lib/shopify_cli/commands/app/deploy.rb +49 -0
- data/lib/shopify_cli/commands/app/open.rb +19 -0
- data/lib/shopify_cli/commands/app/serve.rb +49 -0
- data/lib/shopify_cli/commands/app/tunnel.rb +43 -0
- data/lib/shopify_cli/commands/app.rb +29 -0
- data/lib/shopify_cli/commands/config.rb +2 -2
- data/lib/shopify_cli/commands.rb +1 -0
- data/lib/shopify_cli/constants.rb +4 -0
- data/lib/shopify_cli/exception_reporter.rb +3 -4
- data/lib/shopify_cli/git.rb +12 -1
- data/lib/shopify_cli/github/issue_url_generator.rb +19 -0
- data/lib/shopify_cli/github.rb +5 -0
- data/lib/shopify_cli/messages/messages.rb +252 -8
- data/lib/shopify_cli/project.rb +5 -1
- data/lib/shopify_cli/project_commands.rb +1 -1
- data/lib/shopify_cli/services/app/connect_service.rb +25 -0
- data/lib/shopify_cli/services/app/create/node_service.rb +153 -0
- data/lib/shopify_cli/services/app/create/php_service.rb +152 -0
- data/lib/shopify_cli/services/app/create/rails_service.rb +213 -0
- data/lib/shopify_cli/services/app/deploy/heroku/node_service.rb +101 -0
- data/lib/shopify_cli/services/app/deploy/heroku/php_service.rb +135 -0
- data/lib/shopify_cli/services/app/deploy/heroku/rails_service.rb +120 -0
- data/lib/shopify_cli/services/app/open_service.rb +19 -0
- data/lib/shopify_cli/services/app/serve/node_service.rb +42 -0
- data/lib/shopify_cli/services/app/serve/php_service.rb +46 -0
- data/lib/shopify_cli/services/app/serve/rails_service.rb +48 -0
- data/lib/shopify_cli/services/app/tunnel/auth_service.rb +21 -0
- data/lib/shopify_cli/services/app/tunnel/start_service.rb +20 -0
- data/lib/shopify_cli/services/app/tunnel/stop_service.rb +20 -0
- data/lib/shopify_cli/services.rb +31 -0
- data/lib/shopify_cli/theme/dev_server/local_assets.rb +1 -1
- data/lib/shopify_cli/theme/dev_server.rb +8 -2
- data/lib/shopify_cli/version.rb +1 -1
- data/lib/shopify_cli.rb +1 -2
- data/shopify-cli.gemspec +1 -1
- data/shopify-dev +18 -0
- data/utilities/constants.rb +7 -0
- data/utilities/docker/container.rb +10 -3
- data/utilities/docker.rb +2 -2
- data/utilities/utilities.rb +1 -0
- metadata +49 -48
- data/docs/_config.yml +0 -2
- data/docs/app/node/commands/index.md +0 -4
- data/docs/app/node/index.md +0 -4
- data/docs/app/rails/commands/index.md +0 -4
- data/docs/app/rails/index.md +0 -4
- data/docs/core/index.md +0 -4
- data/docs/getting-started/index.md +0 -4
- data/docs/getting-started/install/index.md +0 -4
- data/docs/getting-started/migrate/index.md +0 -4
- data/docs/getting-started/uninstall/index.md +0 -4
- data/docs/getting-started/upgrade/index.md +0 -4
- data/docs/help/start-app/index.md +0 -4
- data/docs/index.md +0 -4
- data/install.sh +0 -7
- data/lib/project_types/extension/tasks/converters/server_config_converter.rb +0 -30
- data/lib/project_types/extension/tasks/load_server_config.rb +0 -28
- data/lib/project_types/node/commands/connect.rb +0 -21
- data/lib/project_types/node/commands/create.rb +0 -125
- data/lib/project_types/node/commands/deploy/heroku.rb +0 -96
- data/lib/project_types/node/commands/deploy.rb +0 -32
- data/lib/project_types/node/commands/generate.rb +0 -22
- data/lib/project_types/node/commands/open.rb +0 -18
- data/lib/project_types/node/commands/serve.rb +0 -45
- data/lib/project_types/node/commands/tunnel.rb +0 -41
- data/lib/project_types/php/commands/connect.rb +0 -19
- data/lib/project_types/php/commands/create.rb +0 -143
- data/lib/project_types/php/commands/deploy/heroku.rb +0 -129
- data/lib/project_types/php/commands/deploy.rb +0 -32
- data/lib/project_types/php/commands/open.rb +0 -16
- data/lib/project_types/php/commands/serve.rb +0 -48
- data/lib/project_types/php/commands/tunnel.rb +0 -37
- data/lib/project_types/rails/commands/connect.rb +0 -21
- data/lib/project_types/rails/commands/deploy/heroku.rb +0 -115
- data/lib/project_types/rails/commands/deploy.rb +0 -32
- data/lib/project_types/rails/commands/generate/webhook.rb +0 -42
- data/lib/project_types/rails/commands/generate.rb +0 -60
- data/lib/project_types/rails/commands/open.rb +0 -18
- data/lib/project_types/rails/commands/serve.rb +0 -51
- data/lib/project_types/rails/commands/tunnel.rb +0 -41
- data/lib/shopify_cli/sub_command.rb +0 -17
- data/shopify.fish +0 -12
- data/shopify.sh +0 -11
@@ -0,0 +1,213 @@
|
|
1
|
+
require "semantic/semantic"
|
2
|
+
|
3
|
+
module ShopifyCLI
|
4
|
+
module Services
|
5
|
+
module App
|
6
|
+
module Create
|
7
|
+
class RailsService < BaseService
|
8
|
+
USER_AGENT_CODE = <<~USERAGENT
|
9
|
+
module ShopifyAPI
|
10
|
+
class Base < ActiveResource::Base
|
11
|
+
self.headers['User-Agent'] << " | ShopifyApp/\#{ShopifyApp::VERSION} | Shopify CLI"
|
12
|
+
end
|
13
|
+
end
|
14
|
+
USERAGENT
|
15
|
+
|
16
|
+
DEFAULT_RAILS_FLAGS = %w(--skip-spring)
|
17
|
+
|
18
|
+
attr_reader :name, :organization_id, :store_domain, :type, :db, :rails_opts, :context
|
19
|
+
|
20
|
+
def initialize(name:, organization_id:, store_domain:, type:, db:, rails_opts:, context:)
|
21
|
+
@name = name
|
22
|
+
@organization_id = organization_id
|
23
|
+
@store_domain = store_domain
|
24
|
+
@type = type
|
25
|
+
@db = db
|
26
|
+
@rails_opts = rails_opts
|
27
|
+
@context = context
|
28
|
+
super()
|
29
|
+
end
|
30
|
+
|
31
|
+
def call
|
32
|
+
form_options = {
|
33
|
+
name: name,
|
34
|
+
organization_id: organization_id,
|
35
|
+
shop_domain: store_domain,
|
36
|
+
type: type,
|
37
|
+
}
|
38
|
+
form_options[:db] = db unless db.nil?
|
39
|
+
form_options[:rails_opts] = rails_opts unless rails_opts.nil?
|
40
|
+
form = form_data(form_options)
|
41
|
+
|
42
|
+
ruby_version = Rails::Ruby.version(context)
|
43
|
+
context.abort(context.message("core.app.create.rails.error.invalid_ruby_version")) unless
|
44
|
+
ruby_version.satisfies?("~>2.5") || ruby_version.satisfies?("~>3.0.0")
|
45
|
+
|
46
|
+
check_node
|
47
|
+
check_yarn
|
48
|
+
|
49
|
+
build(form.name, form.db)
|
50
|
+
set_custom_ua
|
51
|
+
ShopifyCLI::Project.write(
|
52
|
+
context,
|
53
|
+
project_type: "rails",
|
54
|
+
organization_id: form.organization_id,
|
55
|
+
)
|
56
|
+
|
57
|
+
api_client = if ShopifyCLI::Environment.acceptance_test?
|
58
|
+
{
|
59
|
+
"apiKey" => "public_api_key",
|
60
|
+
"apiSecretKeys" => [
|
61
|
+
{
|
62
|
+
"secret" => "api_secret_key",
|
63
|
+
},
|
64
|
+
],
|
65
|
+
}
|
66
|
+
else
|
67
|
+
ShopifyCLI::Tasks::CreateApiClient.call(
|
68
|
+
context,
|
69
|
+
org_id: form.organization_id,
|
70
|
+
title: form.name,
|
71
|
+
type: form.type,
|
72
|
+
)
|
73
|
+
end
|
74
|
+
|
75
|
+
ShopifyCLI::Resources::EnvFile.new(
|
76
|
+
api_key: api_client["apiKey"],
|
77
|
+
secret: api_client["apiSecretKeys"].first["secret"],
|
78
|
+
shop: form.shop_domain,
|
79
|
+
scopes: "write_products,write_customers,write_draft_orders",
|
80
|
+
).write(context)
|
81
|
+
|
82
|
+
partners_url = ShopifyCLI::PartnersAPI.partners_url_for(form.organization_id, api_client["id"])
|
83
|
+
|
84
|
+
context.puts(context.message("apps.create.info.created", form.name, partners_url))
|
85
|
+
context.puts(context.message("apps.create.info.serve", form.name, ShopifyCLI::TOOL_NAME))
|
86
|
+
unless ShopifyCLI::Shopifolk.acting_as_shopify_organization?
|
87
|
+
context.puts(context.message("apps.create.info.install", partners_url, form.name))
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
91
|
+
private
|
92
|
+
|
93
|
+
def form_data(form_options)
|
94
|
+
if ShopifyCLI::Environment.acceptance_test?
|
95
|
+
Struct.new(:name, :organization_id, :type, :shop_domain, :db, keyword_init: true).new(
|
96
|
+
name: form_options[:name],
|
97
|
+
organization_id: "123",
|
98
|
+
shop_domain: "test.shopify.io",
|
99
|
+
type: "public",
|
100
|
+
db: form_options[:db]
|
101
|
+
)
|
102
|
+
else
|
103
|
+
Rails::Forms::Create.ask(context, [], form_options)
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
107
|
+
def check_node
|
108
|
+
cmd_path = context.which("node")
|
109
|
+
if cmd_path.nil?
|
110
|
+
context.abort(context.message("core.app.create.rails.error.node_required")) unless context.windows?
|
111
|
+
context.puts("{{x}} {{red:" + context.message("core.app.create.rails.error.node_required") + "}}")
|
112
|
+
context.puts(context.message("core.app.create.rails.info.open_new_shell", "node"))
|
113
|
+
raise ShopifyCLI::AbortSilent
|
114
|
+
end
|
115
|
+
|
116
|
+
version, stat = context.capture2e("node", "-v")
|
117
|
+
unless stat.success?
|
118
|
+
context.abort(context.message("core.app.create.rails.error.node_version_failure")) unless context.windows?
|
119
|
+
# execution stops above if not Windows
|
120
|
+
context.puts("{{x}} {{red:" + context.message("core.app.create.rails.error.node_version_failure") + "}}")
|
121
|
+
context.puts(context.message("core.app.create.rails.info.open_new_shell", "node"))
|
122
|
+
raise ShopifyCLI::AbortSilent
|
123
|
+
end
|
124
|
+
|
125
|
+
context.done(context.message("core.app.create.rails.node_version", version))
|
126
|
+
end
|
127
|
+
|
128
|
+
def check_yarn
|
129
|
+
cmd_path = context.which("yarn")
|
130
|
+
if cmd_path.nil?
|
131
|
+
context.abort(context.message("core.app.create.rails.error.yarn_required")) unless context.windows?
|
132
|
+
context.puts("{{x}} {{red:" + context.message("core.app.create.rails.error.yarn_required") + "}}")
|
133
|
+
context.puts(context.message("core.app.create.rails.info.open_new_shell", "yarn"))
|
134
|
+
raise ShopifyCLI::AbortSilent
|
135
|
+
end
|
136
|
+
|
137
|
+
version, stat = context.capture2e("yarn", "-v")
|
138
|
+
unless stat.success?
|
139
|
+
context.abort(context.message("core.app.create.rails.error.yarn_version_failure")) unless context.windows?
|
140
|
+
context.puts("{{x}} {{red:" + context.message("core.app.create.rails.error.yarn_version_failure") + "}}")
|
141
|
+
context.puts(context.message("core.app.create.rails.info.open_new_shell", "yarn"))
|
142
|
+
raise ShopifyCLI::AbortSilent
|
143
|
+
end
|
144
|
+
|
145
|
+
context.done(context.message("core.app.create.rails.yarn_version", version))
|
146
|
+
end
|
147
|
+
|
148
|
+
def build(name, db)
|
149
|
+
context.abort(context.message("core.app.create.rails.error.install_failure",
|
150
|
+
"rails")) unless install_gem("rails",
|
151
|
+
"<6.1")
|
152
|
+
context.abort(context.message("core.app.create.rails.error.install_failure", "bundler ~>2.0")) unless
|
153
|
+
install_gem("bundler", "~>2.0")
|
154
|
+
|
155
|
+
full_path = File.join(context.root, name)
|
156
|
+
context.abort(context.message("core.app.create.rails.error.dir_exists", name)) if Dir.exist?(full_path)
|
157
|
+
|
158
|
+
CLI::UI::Frame.open(context.message("core.app.create.rails.generating_app", name)) do
|
159
|
+
new_command = %w(rails new)
|
160
|
+
new_command += DEFAULT_RAILS_FLAGS
|
161
|
+
new_command << "--database=#{db}"
|
162
|
+
new_command += rails_opts.split unless rails_opts.nil?
|
163
|
+
new_command << name
|
164
|
+
|
165
|
+
syscall(new_command)
|
166
|
+
end
|
167
|
+
|
168
|
+
context.root = full_path
|
169
|
+
|
170
|
+
File.open(File.join(context.root, ".gitignore"), "a") { |f| f.write(".env") }
|
171
|
+
|
172
|
+
context.puts(context.message("core.app.create.rails.adding_shopify_gem"))
|
173
|
+
File.open(File.join(context.root, "Gemfile"), "a") do |f|
|
174
|
+
f.puts "\ngem 'shopify_app', '>=17.0.3'"
|
175
|
+
end
|
176
|
+
CLI::UI::Frame.open(context.message("core.app.create.rails.running_bundle_install")) do
|
177
|
+
syscall(%w(bundle install))
|
178
|
+
end
|
179
|
+
|
180
|
+
CLI::UI::Frame.open(context.message("core.app.create.rails.running_generator")) do
|
181
|
+
syscall(%w(rails generate shopify_app --new-shopify-cli-app))
|
182
|
+
end
|
183
|
+
|
184
|
+
CLI::UI::Frame.open(context.message("core.app.create.rails.running_migrations")) do
|
185
|
+
syscall(%w(rails db:create))
|
186
|
+
syscall(%w(rails db:migrate RAILS_ENV=development))
|
187
|
+
end
|
188
|
+
|
189
|
+
unless File.exist?(File.join(context.root, "config/webpacker.yml"))
|
190
|
+
CLI::UI::Frame.open(context.message("core.app.create.rails.running_webpacker_install")) do
|
191
|
+
syscall(%w(rails webpacker:install))
|
192
|
+
end
|
193
|
+
end
|
194
|
+
end
|
195
|
+
|
196
|
+
def set_custom_ua
|
197
|
+
ua_path = File.join("config", "initializers", "user_agent.rb")
|
198
|
+
context.write(ua_path, USER_AGENT_CODE)
|
199
|
+
end
|
200
|
+
|
201
|
+
def syscall(args)
|
202
|
+
args[0] = Rails::Gem.binary_path_for(context, args[0])
|
203
|
+
context.system(*args, chdir: context.root)
|
204
|
+
end
|
205
|
+
|
206
|
+
def install_gem(name, version = nil)
|
207
|
+
Rails::Gem.install(context, name, version)
|
208
|
+
end
|
209
|
+
end
|
210
|
+
end
|
211
|
+
end
|
212
|
+
end
|
213
|
+
end
|
@@ -0,0 +1,101 @@
|
|
1
|
+
module ShopifyCLI
|
2
|
+
module Services
|
3
|
+
module App
|
4
|
+
module Deploy
|
5
|
+
module Heroku
|
6
|
+
class NodeService < BaseService
|
7
|
+
attr_reader :context
|
8
|
+
|
9
|
+
def initialize(context:)
|
10
|
+
@context = context
|
11
|
+
super()
|
12
|
+
end
|
13
|
+
|
14
|
+
def call
|
15
|
+
spin_group = CLI::UI::SpinGroup.new
|
16
|
+
heroku_service = ShopifyCLI::Heroku.new(context)
|
17
|
+
|
18
|
+
spin_group.add(context.message("core.app.deploy.heroku.downloading")) do |spinner|
|
19
|
+
heroku_service.download
|
20
|
+
spinner.update_title(context.message("core.app.deploy.heroku.downloaded"))
|
21
|
+
end
|
22
|
+
spin_group.wait
|
23
|
+
|
24
|
+
install_message = context.message(
|
25
|
+
context.windows? ? "core.app.deploy.heroku.installing_windows" : "core.app.deploy.heroku.installing"
|
26
|
+
)
|
27
|
+
spin_group.add(install_message) do |spinner|
|
28
|
+
heroku_service.install
|
29
|
+
spinner.update_title(context.message("core.app.deploy.heroku.installed"))
|
30
|
+
end
|
31
|
+
spin_group.wait
|
32
|
+
|
33
|
+
spin_group.add(context.message("core.app.deploy.heroku.git.checking")) do |spinner|
|
34
|
+
ShopifyCLI::Git.init(context)
|
35
|
+
spinner.update_title(context.message("core.app.deploy.heroku.git.initialized"))
|
36
|
+
end
|
37
|
+
spin_group.wait
|
38
|
+
|
39
|
+
if (account = heroku_service.whoami)
|
40
|
+
context.puts(context.message("core.app.deploy.heroku.authenticated_with_account", account))
|
41
|
+
else
|
42
|
+
CLI::UI::Frame.open(
|
43
|
+
context.message("core.app.deploy.heroku.authenticating"),
|
44
|
+
success_text: context.message("core.app.deploy.heroku.authenticated")
|
45
|
+
) do
|
46
|
+
heroku_service.authenticate
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
if (app_name = heroku_service.app)
|
51
|
+
context.puts(context.message("core.app.deploy.heroku.app.selected", app_name))
|
52
|
+
else
|
53
|
+
app_type = CLI::UI::Prompt.ask(context.message("core.app.deploy.heroku.app.no_apps_found")) do |handler|
|
54
|
+
handler.option(context.message("core.app.deploy.heroku.app.create")) { :new }
|
55
|
+
handler.option(context.message("core.app.deploy.heroku.app.select")) { :existing }
|
56
|
+
end
|
57
|
+
|
58
|
+
if app_type == :existing
|
59
|
+
app_name = CLI::UI::Prompt.ask(context.message("core.app.deploy.heroku.app.name"))
|
60
|
+
CLI::UI::Frame.open(
|
61
|
+
context.message("core.app.deploy.heroku.app.selecting", app_name),
|
62
|
+
success_text: context.message("core.app.deploy.heroku.app.selected", app_name)
|
63
|
+
) do
|
64
|
+
heroku_service.select_existing_app(app_name)
|
65
|
+
end
|
66
|
+
elsif app_type == :new
|
67
|
+
CLI::UI::Frame.open(
|
68
|
+
context.message("core.app.deploy.heroku.app.creating"),
|
69
|
+
success_text: context.message("core.app.deploy.heroku.app.created")
|
70
|
+
) do
|
71
|
+
heroku_service.create_new_app
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
branches = ShopifyCLI::Git.branches(context)
|
77
|
+
if branches.length == 1
|
78
|
+
branch_to_deploy = branches[0]
|
79
|
+
context.puts(context.message("core.app.deploy.heroku.git.branch_selected", branch_to_deploy))
|
80
|
+
else
|
81
|
+
prompt_question = context.message("core.app.deploy.heroku.git.what_branch")
|
82
|
+
branch_to_deploy = CLI::UI::Prompt.ask(prompt_question) do |handler|
|
83
|
+
branches.each do |branch|
|
84
|
+
handler.option(branch) { branch }
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
CLI::UI::Frame.open(
|
90
|
+
context.message("core.app.deploy.heroku.deploying"),
|
91
|
+
success_text: context.message("core.app.deploy.heroku.deployed")
|
92
|
+
) do
|
93
|
+
heroku_service.deploy(branch_to_deploy)
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
100
|
+
end
|
101
|
+
end
|
@@ -0,0 +1,135 @@
|
|
1
|
+
module ShopifyCLI
|
2
|
+
module Services
|
3
|
+
module App
|
4
|
+
module Deploy
|
5
|
+
module Heroku
|
6
|
+
class PHPService < BaseService
|
7
|
+
attr_reader :context
|
8
|
+
|
9
|
+
def initialize(context:)
|
10
|
+
@context = context
|
11
|
+
super()
|
12
|
+
end
|
13
|
+
|
14
|
+
def call
|
15
|
+
spin_group = CLI::UI::SpinGroup.new
|
16
|
+
heroku_service = ShopifyCLI::Heroku.new(context)
|
17
|
+
|
18
|
+
spin_group.add(context.message("core.app.deploy.heroku.downloading")) do |spinner|
|
19
|
+
heroku_service.download
|
20
|
+
spinner.update_title(context.message("core.app.deploy.heroku.downloaded"))
|
21
|
+
end
|
22
|
+
spin_group.wait
|
23
|
+
|
24
|
+
install_message = context.message(
|
25
|
+
context.windows? ? "core.app.deploy.heroku.installing_windows" : "core.app.deploy.heroku.installing"
|
26
|
+
)
|
27
|
+
spin_group.add(install_message) do |spinner|
|
28
|
+
heroku_service.install
|
29
|
+
spinner.update_title(context.message("core.app.deploy.heroku.installed"))
|
30
|
+
end
|
31
|
+
spin_group.wait
|
32
|
+
|
33
|
+
spin_group.add(context.message("core.app.deploy.heroku.git.checking")) do |spinner|
|
34
|
+
ShopifyCLI::Git.init(context)
|
35
|
+
spinner.update_title(context.message("core.app.deploy.heroku.git.initialized"))
|
36
|
+
end
|
37
|
+
spin_group.wait
|
38
|
+
|
39
|
+
if (account = heroku_service.whoami)
|
40
|
+
context.puts(context.message("core.app.deploy.heroku.authenticated_with_account", account))
|
41
|
+
else
|
42
|
+
CLI::UI::Frame.open(
|
43
|
+
context.message("core.app.deploy.heroku.authenticating"),
|
44
|
+
success_text: context.message("core.app.deploy.heroku.authenticated")
|
45
|
+
) do
|
46
|
+
heroku_service.authenticate
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
if (app_name = heroku_service.app)
|
51
|
+
context.puts(context.message("core.app.deploy.heroku.app.selected", app_name))
|
52
|
+
else
|
53
|
+
app_type = CLI::UI::Prompt.ask(context.message("core.app.deploy.heroku.app.no_apps_found")) do |handler|
|
54
|
+
handler.option(context.message("core.app.deploy.heroku.app.create")) { :new }
|
55
|
+
handler.option(context.message("core.app.deploy.heroku.app.select")) { :existing }
|
56
|
+
end
|
57
|
+
|
58
|
+
if app_type == :existing
|
59
|
+
app_name = CLI::UI::Prompt.ask(context.message("core.app.deploy.heroku.app.name"))
|
60
|
+
CLI::UI::Frame.open(
|
61
|
+
context.message("core.app.deploy.heroku.app.selecting", app_name),
|
62
|
+
success_text: context.message("core.app.deploy.heroku.app.selected", app_name)
|
63
|
+
) do
|
64
|
+
heroku_service.select_existing_app(app_name)
|
65
|
+
end
|
66
|
+
elsif app_type == :new
|
67
|
+
CLI::UI::Frame.open(
|
68
|
+
context.message("core.app.deploy.heroku.app.creating"),
|
69
|
+
success_text: context.message("core.app.deploy.heroku.app.created")
|
70
|
+
) do
|
71
|
+
heroku_service.create_new_app
|
72
|
+
app_name = heroku_service.app
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
branches = ShopifyCLI::Git.branches(context)
|
78
|
+
if branches.length == 1
|
79
|
+
branch_to_deploy = branches[0]
|
80
|
+
context.puts(context.message("core.app.deploy.heroku.git.branch_selected", branch_to_deploy))
|
81
|
+
else
|
82
|
+
prompt_question = context.message("core.app.deploy.heroku.git.what_branch")
|
83
|
+
branch_to_deploy = CLI::UI::Prompt.ask(prompt_question) do |handler|
|
84
|
+
branches.each do |branch|
|
85
|
+
handler.option(branch) { branch }
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
app_url = "https://#{app_name}.herokuapp.com"
|
91
|
+
|
92
|
+
CLI::UI::Frame.open(
|
93
|
+
context.message("core.app.deploy.heroku.app.setting_configs"),
|
94
|
+
success_text: context.message("core.app.deploy.heroku.app.configs_set")
|
95
|
+
) do
|
96
|
+
allowed_configs = [/SHOPIFY_API_KEY/, /SHOPIFY_API_SECRET/, /SCOPES/, /HOST/]
|
97
|
+
|
98
|
+
ShopifyCLI::Project.current.env.to_h.each do |config, value|
|
99
|
+
next unless allowed_configs.any? { |pattern| pattern.match?(config) }
|
100
|
+
|
101
|
+
value = app_url if config == "HOST"
|
102
|
+
|
103
|
+
current = heroku_service.get_config(config)
|
104
|
+
heroku_service.set_config(config, value) if current.nil? || current != value
|
105
|
+
end
|
106
|
+
|
107
|
+
current_key = heroku_service.get_config("APP_KEY")
|
108
|
+
if current_key.nil? || current_key.empty?
|
109
|
+
output, status = context.capture2e("php", "artisan", "key:generate", "--show")
|
110
|
+
|
111
|
+
abort_message = context.message("core.app.deploy.heroku.php.error.generate_app_key")
|
112
|
+
context.abort(abort_message) unless status.success?
|
113
|
+
|
114
|
+
heroku_service.set_config("APP_KEY", output.strip) if status.success?
|
115
|
+
end
|
116
|
+
|
117
|
+
heroku_service.add_buildpacks(["heroku/php", "heroku/nodejs"])
|
118
|
+
end
|
119
|
+
|
120
|
+
CLI::UI::Frame.open(
|
121
|
+
context.message("core.app.deploy.heroku.deploying"),
|
122
|
+
success_text: context.message("core.app.deploy.heroku.deployed")
|
123
|
+
) do
|
124
|
+
heroku_service.deploy(branch_to_deploy)
|
125
|
+
end
|
126
|
+
|
127
|
+
heroku_command = heroku_service.heroku_command
|
128
|
+
context.puts(context.message("core.app.deploy.heroku.php.post_deploy", app_url, heroku_command))
|
129
|
+
end
|
130
|
+
end
|
131
|
+
end
|
132
|
+
end
|
133
|
+
end
|
134
|
+
end
|
135
|
+
end
|
@@ -0,0 +1,120 @@
|
|
1
|
+
module ShopifyCLI
|
2
|
+
module Services
|
3
|
+
module App
|
4
|
+
module Deploy
|
5
|
+
module Heroku
|
6
|
+
class RailsService < BaseService
|
7
|
+
DB_CHECK_CMD = 'bundle exec rails runner "puts ActiveRecord::Base.connection.adapter_name.downcase"'
|
8
|
+
|
9
|
+
attr_reader :context
|
10
|
+
|
11
|
+
def initialize(context:)
|
12
|
+
@context = context
|
13
|
+
super()
|
14
|
+
end
|
15
|
+
|
16
|
+
def call
|
17
|
+
CLI::UI::Frame.open(context.message("core.app.deploy.heroku.rails.db_check.validating")) do
|
18
|
+
CLI::UI::Spinner.spin(context.message("core.app.deploy.heroku.rails.db_check.checking")) do |spinner|
|
19
|
+
db_type, err = check_db(context)
|
20
|
+
context.abort(context.message(err)) unless err.nil?
|
21
|
+
spinner.update_title(context.message("core.app.deploy.heroku.rails.db_check.validated", db_type))
|
22
|
+
end
|
23
|
+
true
|
24
|
+
end
|
25
|
+
|
26
|
+
spin_group = CLI::UI::SpinGroup.new
|
27
|
+
heroku_service = ShopifyCLI::Heroku.new(context)
|
28
|
+
|
29
|
+
spin_group.add(context.message("core.app.deploy.heroku.downloading")) do |spinner|
|
30
|
+
heroku_service.download
|
31
|
+
spinner.update_title(context.message("core.app.deploy.heroku.downloaded"))
|
32
|
+
end
|
33
|
+
spin_group.wait
|
34
|
+
|
35
|
+
spin_group.add(context.message("core.app.deploy.heroku.installing")) do |spinner|
|
36
|
+
heroku_service.install
|
37
|
+
spinner.update_title(context.message("core.app.deploy.heroku.installed"))
|
38
|
+
end
|
39
|
+
spin_group.add(context.message("core.app.deploy.heroku.git.checking")) do |spinner|
|
40
|
+
ShopifyCLI::Git.init(context)
|
41
|
+
spinner.update_title(context.message("core.app.deploy.heroku.git.initialized"))
|
42
|
+
end
|
43
|
+
spin_group.wait
|
44
|
+
|
45
|
+
if (account = heroku_service.whoami)
|
46
|
+
context.puts(context.message("core.app.deploy.heroku.authenticated_with_account", account))
|
47
|
+
else
|
48
|
+
CLI::UI::Frame.open(
|
49
|
+
context.message("core.app.deploy.heroku.authenticating"),
|
50
|
+
success_text: context.message("core.app.deploy.heroku.authenticated")
|
51
|
+
) do
|
52
|
+
heroku_service.authenticate
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
if (app_name = heroku_service.app)
|
57
|
+
context.puts(context.message("core.app.deploy.heroku.app.selected", app_name))
|
58
|
+
else
|
59
|
+
app_type = CLI::UI::Prompt.ask(context.message("core.app.deploy.heroku.app.no_apps_found")) do |handler|
|
60
|
+
handler.option(context.message("core.app.deploy.heroku.app.create")) { :new }
|
61
|
+
handler.option(context.message("core.app.deploy.heroku.app.select")) { :existing }
|
62
|
+
end
|
63
|
+
|
64
|
+
if app_type == :existing
|
65
|
+
app_name = CLI::UI::Prompt.ask(context.message("core.app.deploy.heroku.app.name"))
|
66
|
+
CLI::UI::Frame.open(
|
67
|
+
context.message("core.app.deploy.heroku.app.selecting", app_name),
|
68
|
+
success_text: context.message("core.app.deploy.heroku.app.selected", app_name)
|
69
|
+
) do
|
70
|
+
heroku_service.select_existing_app(app_name)
|
71
|
+
end
|
72
|
+
elsif app_type == :new
|
73
|
+
CLI::UI::Frame.open(
|
74
|
+
context.message("core.app.deploy.heroku.app.creating"),
|
75
|
+
success_text: context.message("core.app.deploy.heroku.app.created")
|
76
|
+
) do
|
77
|
+
heroku_service.create_new_app
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
branches = ShopifyCLI::Git.branches(context)
|
83
|
+
if branches.length == 1
|
84
|
+
branch_to_deploy = branches[0]
|
85
|
+
context.puts(context.message("core.app.deploy.heroku.git.branch_selected", branch_to_deploy))
|
86
|
+
else
|
87
|
+
prompt_question = context.message("core.app.deploy.heroku.git.what_branch")
|
88
|
+
branch_to_deploy = CLI::UI::Prompt.ask(prompt_question) do |handler|
|
89
|
+
branches.each do |branch|
|
90
|
+
handler.option(branch) { branch }
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
95
|
+
CLI::UI::Frame.open(
|
96
|
+
context.message("core.app.deploy.heroku.deploying"),
|
97
|
+
success_text: context.message("core.app.deploy.heroku.deployed")
|
98
|
+
) do
|
99
|
+
heroku_service.deploy(branch_to_deploy)
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
private
|
104
|
+
|
105
|
+
def check_db(context)
|
106
|
+
out, stat = context.capture2e(DB_CHECK_CMD)
|
107
|
+
if stat.success? && out.strip == "sqlite"
|
108
|
+
["sqlite", "core.app.deploy.heroku.rails.db_check.sqlite"]
|
109
|
+
elsif !stat.success?
|
110
|
+
[nil, "core.app.deploy.heroku.rails.db_check.problem"]
|
111
|
+
else
|
112
|
+
[out.strip, nil]
|
113
|
+
end
|
114
|
+
end
|
115
|
+
end
|
116
|
+
end
|
117
|
+
end
|
118
|
+
end
|
119
|
+
end
|
120
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
module ShopifyCLI
|
2
|
+
module Services
|
3
|
+
module App
|
4
|
+
class OpenService < BaseService
|
5
|
+
attr_reader :project, :context
|
6
|
+
|
7
|
+
def initialize(project:, context:)
|
8
|
+
@project = project
|
9
|
+
@context = context
|
10
|
+
super()
|
11
|
+
end
|
12
|
+
|
13
|
+
def call
|
14
|
+
context.open_url!("#{project.env.host}/login?shop=#{project.env.shop}")
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
module ShopifyCLI
|
2
|
+
module Services
|
3
|
+
module App
|
4
|
+
module Serve
|
5
|
+
class NodeService < BaseService
|
6
|
+
attr_accessor :host, :port, :context
|
7
|
+
|
8
|
+
def initialize(host:, port:, context:)
|
9
|
+
@host = host
|
10
|
+
@port = port
|
11
|
+
@context = context
|
12
|
+
super()
|
13
|
+
end
|
14
|
+
|
15
|
+
def call
|
16
|
+
project = ShopifyCLI::Project.current
|
17
|
+
url = host || ShopifyCLI::Tunnel.start(context)
|
18
|
+
raise ShopifyCLI::Abort,
|
19
|
+
context.message("core.app.serve.error.host_must_be_https") if url.match(/^https/i).nil?
|
20
|
+
project.env.update(context, :host, url)
|
21
|
+
ShopifyCLI::Tasks::UpdateDashboardURLS.call(
|
22
|
+
context,
|
23
|
+
url: url,
|
24
|
+
callback_url: "/auth/callback",
|
25
|
+
)
|
26
|
+
|
27
|
+
if project.env.shop
|
28
|
+
project_url = "#{project.env.host}/auth?shop=#{project.env.shop}"
|
29
|
+
context.puts("\n" + context.message("core.app.serve.open_info", project_url) + "\n")
|
30
|
+
end
|
31
|
+
|
32
|
+
CLI::UI::Frame.open(context.message("core.app.serve.running_server")) do
|
33
|
+
env = project.env.to_h
|
34
|
+
env["PORT"] = port.to_s
|
35
|
+
context.system("npm run dev", env: env)
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
module ShopifyCLI
|
2
|
+
module Services
|
3
|
+
module App
|
4
|
+
module Serve
|
5
|
+
class PHPService < BaseService
|
6
|
+
attr_accessor :host, :port, :context
|
7
|
+
|
8
|
+
def initialize(host:, port:, context:)
|
9
|
+
@host = host
|
10
|
+
@port = port
|
11
|
+
@context = context
|
12
|
+
super()
|
13
|
+
end
|
14
|
+
|
15
|
+
def call
|
16
|
+
project = ShopifyCLI::Project.current
|
17
|
+
url = host || ShopifyCLI::Tunnel.start(context, port: port)
|
18
|
+
raise ShopifyCLI::Abort,
|
19
|
+
context.message("core.app.serve.error.host_must_be_https") if url.match(/^https/i).nil?
|
20
|
+
project.env.update(context, :host, url)
|
21
|
+
ShopifyCLI::Tasks::UpdateDashboardURLS.call(
|
22
|
+
context,
|
23
|
+
url: url,
|
24
|
+
callback_url: "/auth/callback",
|
25
|
+
)
|
26
|
+
|
27
|
+
if project.env.shop
|
28
|
+
project_url = "#{project.env.host}/login?shop=#{project.env.shop}"
|
29
|
+
context.puts("\n" + context.message("core.app.serve.open_info", project_url) + "\n")
|
30
|
+
end
|
31
|
+
|
32
|
+
CLI::UI::Frame.open(context.message("core.app.serve.running_server")) do
|
33
|
+
if ShopifyCLI::ProcessSupervision.running?(:npm_watch)
|
34
|
+
ShopifyCLI::ProcessSupervision.stop(:npm_watch)
|
35
|
+
end
|
36
|
+
ShopifyCLI::ProcessSupervision.start(:npm_watch, "npm run watch", force_spawn: true)
|
37
|
+
|
38
|
+
env = project.env.to_h
|
39
|
+
context.system("php", "artisan", "serve", "--port", port.to_s, env: env)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|