shopify-cli 1.5.0 → 1.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (305) hide show
  1. checksums.yaml +4 -4
  2. data/.github/PULL_REQUEST_TEMPLATE.md +1 -0
  3. data/.rubocop_todo.yml +15 -2
  4. data/.travis.yml +1 -0
  5. data/CHANGELOG.md +26 -0
  6. data/Gemfile +12 -12
  7. data/Gemfile.lock +14 -14
  8. data/README.md +39 -7
  9. data/Rakefile +32 -28
  10. data/bin/load_shopify.rb +6 -6
  11. data/bin/shopify +2 -2
  12. data/dev.yml +5 -2
  13. data/docs/_config.yml +1 -18
  14. data/docs/app/node/commands/index.md +2 -80
  15. data/docs/app/node/index.md +2 -33
  16. data/docs/app/rails/commands/index.md +2 -78
  17. data/docs/app/rails/index.md +2 -34
  18. data/docs/core/index.md +2 -84
  19. data/docs/getting-started/index.md +2 -25
  20. data/docs/getting-started/install/index.md +1 -118
  21. data/docs/getting-started/migrate/index.md +2 -94
  22. data/docs/getting-started/uninstall/index.md +2 -35
  23. data/docs/getting-started/upgrade/index.md +2 -39
  24. data/docs/help/start-app/index.md +2 -4
  25. data/docs/index.md +2 -24
  26. data/ext/shopify-cli/extconf.rb +7 -7
  27. data/install.sh +1 -1
  28. data/lib/docgen/markdown.rb +12 -12
  29. data/lib/graphql/extension_create.graphql +17 -2
  30. data/lib/graphql/fetch_specifications.graphql +14 -0
  31. data/lib/{project_types/extension/graphql → graphql}/get_app_by_api_key.graphql +0 -0
  32. data/lib/project_types/extension/cli.rb +56 -48
  33. data/lib/project_types/extension/commands/build.rb +3 -3
  34. data/lib/project_types/extension/commands/create.rb +17 -10
  35. data/lib/project_types/extension/commands/extension_command.rb +14 -7
  36. data/lib/project_types/extension/commands/push.rb +10 -10
  37. data/lib/project_types/extension/commands/register.rb +22 -32
  38. data/lib/project_types/extension/commands/serve.rb +1 -7
  39. data/lib/project_types/extension/commands/tunnel.rb +12 -12
  40. data/lib/project_types/extension/extension_project.rb +22 -7
  41. data/lib/project_types/extension/extension_project_keys.rb +5 -4
  42. data/lib/project_types/extension/features/argo.rb +123 -0
  43. data/lib/project_types/extension/features/argo_config.rb +5 -5
  44. data/lib/project_types/extension/features/argo_dependencies.rb +5 -5
  45. data/lib/project_types/extension/features/argo_renderer_package.rb +32 -0
  46. data/lib/project_types/extension/features/argo_serve.rb +69 -0
  47. data/lib/project_types/extension/features/argo_setup.rb +2 -2
  48. data/lib/project_types/extension/features/argo_setup_steps.rb +4 -4
  49. data/lib/project_types/extension/forms/create.rb +28 -34
  50. data/lib/project_types/extension/forms/questions/ask_app.rb +53 -0
  51. data/lib/project_types/extension/forms/questions/ask_name.rb +40 -0
  52. data/lib/project_types/extension/forms/questions/ask_type.rb +47 -0
  53. data/lib/project_types/extension/messages/message_loading.rb +3 -1
  54. data/lib/project_types/extension/messages/messages.rb +55 -52
  55. data/lib/project_types/extension/models/lazy_specification_handler.rb +12 -0
  56. data/lib/project_types/extension/models/registration.rb +1 -0
  57. data/lib/project_types/extension/models/specification.rb +39 -0
  58. data/lib/project_types/extension/models/specification_handlers/checkout_post_purchase.rb +19 -0
  59. data/lib/project_types/extension/models/specification_handlers/default.rb +75 -0
  60. data/lib/project_types/extension/models/specifications.rb +88 -0
  61. data/lib/project_types/extension/tasks/configure_features.rb +54 -0
  62. data/lib/project_types/extension/tasks/converters/app_converter.rb +6 -6
  63. data/lib/project_types/extension/tasks/converters/registration_converter.rb +8 -6
  64. data/lib/project_types/extension/tasks/converters/validation_error_converter.rb +4 -4
  65. data/lib/project_types/extension/tasks/converters/version_converter.rb +7 -7
  66. data/lib/project_types/extension/tasks/create_extension.rb +4 -4
  67. data/lib/project_types/extension/tasks/fetch_specifications.rb +18 -0
  68. data/lib/project_types/extension/tasks/get_app.rb +4 -4
  69. data/lib/project_types/extension/tasks/get_apps.rb +3 -3
  70. data/lib/project_types/extension/tasks/update_draft.rb +4 -4
  71. data/lib/project_types/extension/tasks/user_errors.rb +4 -4
  72. data/lib/project_types/node/cli.rb +19 -19
  73. data/lib/project_types/node/commands/connect.rb +3 -3
  74. data/lib/project_types/node/commands/create.rb +42 -38
  75. data/lib/project_types/node/commands/deploy.rb +4 -4
  76. data/lib/project_types/node/commands/deploy/heroku.rb +24 -24
  77. data/lib/project_types/node/commands/generate.rb +3 -34
  78. data/lib/project_types/node/commands/open.rb +2 -2
  79. data/lib/project_types/node/commands/populate.rb +6 -6
  80. data/lib/project_types/node/commands/populate/customer.rb +5 -5
  81. data/lib/project_types/node/commands/populate/draft_order.rb +5 -5
  82. data/lib/project_types/node/commands/populate/product.rb +5 -5
  83. data/lib/project_types/node/commands/serve.rb +9 -9
  84. data/lib/project_types/node/commands/tunnel.rb +7 -7
  85. data/lib/project_types/node/forms/create.rb +17 -8
  86. data/lib/project_types/node/messages/messages.rb +13 -47
  87. data/lib/project_types/rails/cli.rb +21 -21
  88. data/lib/project_types/rails/commands/connect.rb +3 -3
  89. data/lib/project_types/rails/commands/create.rb +56 -54
  90. data/lib/project_types/rails/commands/deploy.rb +4 -4
  91. data/lib/project_types/rails/commands/deploy/heroku.rb +30 -30
  92. data/lib/project_types/rails/commands/generate.rb +7 -7
  93. data/lib/project_types/rails/commands/generate/webhook.rb +6 -6
  94. data/lib/project_types/rails/commands/open.rb +2 -2
  95. data/lib/project_types/rails/commands/populate.rb +6 -6
  96. data/lib/project_types/rails/commands/populate/customer.rb +5 -5
  97. data/lib/project_types/rails/commands/populate/draft_order.rb +5 -5
  98. data/lib/project_types/rails/commands/populate/product.rb +5 -5
  99. data/lib/project_types/rails/commands/serve.rb +11 -11
  100. data/lib/project_types/rails/commands/tunnel.rb +7 -7
  101. data/lib/project_types/rails/forms/create.rb +35 -25
  102. data/lib/project_types/rails/gem.rb +24 -24
  103. data/lib/project_types/rails/messages/messages.rb +6 -5
  104. data/lib/project_types/rails/ruby.rb +2 -2
  105. data/lib/project_types/script/cli.rb +38 -39
  106. data/lib/project_types/script/commands/create.rb +12 -14
  107. data/lib/project_types/script/commands/push.rb +10 -17
  108. data/lib/project_types/script/config/extension_points.yml +29 -10
  109. data/lib/project_types/script/errors.rb +1 -2
  110. data/lib/project_types/script/forms/create.rb +18 -5
  111. data/lib/project_types/script/graphql/app_script_update_or_create.graphql +9 -1
  112. data/lib/project_types/script/graphql/script_service_proxy.graphql +1 -2
  113. data/lib/project_types/script/layers/application/build_script.rb +10 -7
  114. data/lib/project_types/script/layers/application/create_script.rb +37 -25
  115. data/lib/project_types/script/layers/application/extension_points.rb +25 -0
  116. data/lib/project_types/script/layers/application/project_dependencies.rb +4 -4
  117. data/lib/project_types/script/layers/application/push_script.rb +13 -18
  118. data/lib/project_types/script/layers/domain/config_ui.rb +16 -0
  119. data/lib/project_types/script/layers/domain/errors.rb +20 -0
  120. data/lib/project_types/script/layers/domain/extension_point.rb +82 -11
  121. data/lib/project_types/script/layers/domain/metadata.rb +48 -0
  122. data/lib/project_types/script/layers/domain/push_package.rb +25 -6
  123. data/lib/project_types/script/layers/domain/script_project.rb +34 -0
  124. data/lib/project_types/script/layers/infrastructure/assemblyscript_project_creator.rb +42 -13
  125. data/lib/project_types/script/layers/infrastructure/assemblyscript_task_runner.rb +24 -49
  126. data/lib/project_types/script/layers/infrastructure/errors.rb +32 -19
  127. data/lib/project_types/script/layers/infrastructure/extension_point_repository.rb +12 -6
  128. data/lib/project_types/script/layers/infrastructure/project_creator.rb +2 -1
  129. data/lib/project_types/script/layers/infrastructure/push_package_repository.rb +22 -17
  130. data/lib/project_types/script/layers/infrastructure/rust_project_creator.rb +72 -0
  131. data/lib/project_types/script/layers/infrastructure/rust_task_runner.rb +59 -0
  132. data/lib/project_types/script/layers/infrastructure/script_project_repository.rb +145 -0
  133. data/lib/project_types/script/layers/infrastructure/script_service.rb +32 -75
  134. data/lib/project_types/script/layers/infrastructure/task_runner.rb +4 -3
  135. data/lib/project_types/script/messages/messages.rb +58 -59
  136. data/lib/project_types/script/ui/error_handler.rb +115 -72
  137. data/lib/project_types/script/ui/printing_spinner.rb +1 -1
  138. data/lib/project_types/script/ui/strict_spinner.rb +1 -1
  139. data/lib/project_types/theme/cli.rb +40 -0
  140. data/lib/project_types/theme/commands/connect.rb +54 -0
  141. data/lib/project_types/theme/commands/create.rb +48 -0
  142. data/lib/project_types/theme/commands/deploy.rb +38 -0
  143. data/lib/project_types/theme/commands/generate.rb +20 -0
  144. data/lib/project_types/theme/commands/generate/env.rb +79 -0
  145. data/lib/project_types/theme/commands/push.rb +55 -0
  146. data/lib/project_types/theme/commands/serve.rb +31 -0
  147. data/lib/project_types/theme/forms/connect.rb +34 -0
  148. data/lib/project_types/theme/forms/create.rb +22 -0
  149. data/lib/project_types/theme/messages/messages.rb +147 -0
  150. data/lib/project_types/theme/tasks/ensure_themekit_installed.rb +78 -0
  151. data/lib/project_types/theme/themekit.rb +113 -0
  152. data/lib/rubygems_plugin.rb +3 -3
  153. data/lib/shopify-cli/admin_api.rb +52 -12
  154. data/lib/shopify-cli/admin_api/populate_resource_command.rb +17 -17
  155. data/lib/shopify-cli/admin_api/schema.rb +3 -3
  156. data/lib/shopify-cli/api.rb +34 -31
  157. data/lib/shopify-cli/command.rb +1 -1
  158. data/lib/shopify-cli/commands.rb +9 -9
  159. data/lib/shopify-cli/commands/config.rb +28 -52
  160. data/lib/shopify-cli/commands/connect.rb +10 -10
  161. data/lib/shopify-cli/commands/create.rb +5 -5
  162. data/lib/shopify-cli/commands/help.rb +6 -6
  163. data/lib/shopify-cli/commands/logout.rb +3 -3
  164. data/lib/shopify-cli/commands/system.rb +33 -33
  165. data/lib/shopify-cli/commands/version.rb +2 -2
  166. data/lib/shopify-cli/context.rb +71 -22
  167. data/lib/shopify-cli/core.rb +4 -4
  168. data/lib/shopify-cli/core/entry_point.rb +5 -5
  169. data/lib/shopify-cli/core/executor.rb +1 -1
  170. data/lib/shopify-cli/core/help_resolver.rb +2 -2
  171. data/lib/shopify-cli/core/monorail.rb +16 -16
  172. data/lib/shopify-cli/db.rb +2 -2
  173. data/lib/shopify-cli/feature.rb +1 -3
  174. data/lib/shopify-cli/form.rb +1 -1
  175. data/lib/shopify-cli/git.rb +17 -17
  176. data/lib/shopify-cli/helpers.rb +1 -1
  177. data/lib/shopify-cli/helpers/haikunator.rb +1 -1
  178. data/lib/shopify-cli/heroku.rb +28 -28
  179. data/lib/shopify-cli/http_request.rb +21 -9
  180. data/lib/shopify-cli/js_deps.rb +12 -12
  181. data/lib/shopify-cli/js_system.rb +5 -5
  182. data/lib/shopify-cli/lazy_delegator.rb +55 -0
  183. data/lib/shopify-cli/messages/messages.rb +9 -16
  184. data/lib/shopify-cli/method_object.rb +104 -0
  185. data/lib/shopify-cli/oauth.rb +25 -25
  186. data/lib/shopify-cli/oauth/servlet.rb +9 -9
  187. data/lib/shopify-cli/options.rb +3 -3
  188. data/lib/shopify-cli/packager.rb +24 -24
  189. data/lib/shopify-cli/partners_api.rb +24 -18
  190. data/lib/shopify-cli/partners_api/organizations.rb +10 -10
  191. data/lib/shopify-cli/process_supervision.rb +7 -7
  192. data/lib/shopify-cli/project.rb +16 -16
  193. data/lib/shopify-cli/project_type.rb +4 -4
  194. data/lib/shopify-cli/resolve_constant.rb +25 -0
  195. data/lib/shopify-cli/resources.rb +1 -1
  196. data/lib/shopify-cli/resources/env_file.rb +9 -9
  197. data/lib/shopify-cli/result.rb +432 -0
  198. data/lib/shopify-cli/shopifolk.rb +6 -8
  199. data/lib/shopify-cli/sub_command.rb +1 -1
  200. data/lib/shopify-cli/task.rb +3 -3
  201. data/lib/shopify-cli/tasks.rb +7 -7
  202. data/lib/shopify-cli/tasks/create_api_client.rb +5 -5
  203. data/lib/shopify-cli/tasks/ensure_dev_store.rb +12 -12
  204. data/lib/shopify-cli/tasks/ensure_env.rb +15 -15
  205. data/lib/shopify-cli/tasks/ensure_loopback_url.rb +4 -4
  206. data/lib/shopify-cli/tasks/select_org_and_shop.rb +25 -24
  207. data/lib/shopify-cli/tasks/update_dashboard_urls.rb +10 -10
  208. data/lib/shopify-cli/transform_data_structure.rb +86 -0
  209. data/lib/shopify-cli/tunnel.rb +36 -30
  210. data/lib/shopify-cli/version.rb +1 -1
  211. data/lib/shopify_cli.rb +57 -52
  212. data/shopify-cli.gemspec +6 -6
  213. data/shopify.fish +1 -1
  214. data/shopify.sh +1 -1
  215. data/vendor/deps/cli-kit/REVISION +1 -1
  216. data/vendor/deps/cli-kit/lib/cli/kit/logger.rb +2 -2
  217. data/vendor/deps/cli-kit/lib/cli/kit/system.rb +3 -3
  218. data/vendor/deps/cli-ui/REVISION +1 -1
  219. data/vendor/deps/cli-ui/lib/cli/ui.rb +26 -22
  220. data/vendor/deps/cli-ui/lib/cli/ui/ansi.rb +4 -6
  221. data/vendor/deps/cli-ui/lib/cli/ui/frame.rb +3 -3
  222. data/vendor/deps/cli-ui/lib/cli/ui/frame/frame_stack.rb +8 -9
  223. data/vendor/deps/cli-ui/lib/cli/ui/frame/frame_style.rb +1 -1
  224. data/vendor/deps/cli-ui/lib/cli/ui/glyph.rb +1 -0
  225. data/vendor/deps/cli-ui/lib/cli/ui/printer.rb +15 -3
  226. data/vendor/deps/cli-ui/lib/cli/ui/prompt/interactive_options.rb +4 -11
  227. data/vendor/deps/cli-ui/lib/cli/ui/spinner.rb +3 -5
  228. data/vendor/deps/cli-ui/lib/cli/ui/terminal.rb +10 -10
  229. data/vendor/deps/cli-ui/lib/cli/ui/version.rb +1 -1
  230. data/vendor/deps/cli-ui/lib/cli/ui/wrap.rb +56 -0
  231. data/vendor/deps/webrick/.gitignore +9 -0
  232. data/vendor/deps/webrick/Gemfile +3 -0
  233. data/vendor/deps/webrick/LICENSE.txt +22 -0
  234. data/vendor/deps/webrick/README.md +61 -0
  235. data/vendor/deps/webrick/Rakefile +10 -0
  236. data/vendor/deps/webrick/lib/webrick.rb +232 -0
  237. data/vendor/deps/webrick/lib/webrick/accesslog.rb +157 -0
  238. data/vendor/deps/webrick/lib/webrick/cgi.rb +313 -0
  239. data/vendor/deps/webrick/lib/webrick/compat.rb +36 -0
  240. data/vendor/deps/webrick/lib/webrick/config.rb +158 -0
  241. data/vendor/deps/webrick/lib/webrick/cookie.rb +172 -0
  242. data/vendor/deps/webrick/lib/webrick/htmlutils.rb +30 -0
  243. data/vendor/deps/webrick/lib/webrick/httpauth.rb +96 -0
  244. data/vendor/deps/webrick/lib/webrick/httpauth/authenticator.rb +117 -0
  245. data/vendor/deps/webrick/lib/webrick/httpauth/basicauth.rb +116 -0
  246. data/vendor/deps/webrick/lib/webrick/httpauth/digestauth.rb +395 -0
  247. data/vendor/deps/webrick/lib/webrick/httpauth/htdigest.rb +132 -0
  248. data/vendor/deps/webrick/lib/webrick/httpauth/htgroup.rb +97 -0
  249. data/vendor/deps/webrick/lib/webrick/httpauth/htpasswd.rb +158 -0
  250. data/vendor/deps/webrick/lib/webrick/httpauth/userdb.rb +53 -0
  251. data/vendor/deps/webrick/lib/webrick/httpproxy.rb +354 -0
  252. data/vendor/deps/webrick/lib/webrick/httprequest.rb +636 -0
  253. data/vendor/deps/webrick/lib/webrick/httpresponse.rb +564 -0
  254. data/vendor/deps/webrick/lib/webrick/https.rb +152 -0
  255. data/vendor/deps/webrick/lib/webrick/httpserver.rb +294 -0
  256. data/vendor/deps/webrick/lib/webrick/httpservlet.rb +23 -0
  257. data/vendor/deps/webrick/lib/webrick/httpservlet/abstract.rb +152 -0
  258. data/vendor/deps/webrick/lib/webrick/httpservlet/cgi_runner.rb +47 -0
  259. data/vendor/deps/webrick/lib/webrick/httpservlet/cgihandler.rb +126 -0
  260. data/vendor/deps/webrick/lib/webrick/httpservlet/erbhandler.rb +88 -0
  261. data/vendor/deps/webrick/lib/webrick/httpservlet/filehandler.rb +552 -0
  262. data/vendor/deps/webrick/lib/webrick/httpservlet/prochandler.rb +47 -0
  263. data/vendor/deps/webrick/lib/webrick/httpstatus.rb +194 -0
  264. data/vendor/deps/webrick/lib/webrick/httputils.rb +512 -0
  265. data/vendor/deps/webrick/lib/webrick/httpversion.rb +76 -0
  266. data/vendor/deps/webrick/lib/webrick/log.rb +156 -0
  267. data/vendor/deps/webrick/lib/webrick/server.rb +381 -0
  268. data/vendor/deps/webrick/lib/webrick/ssl.rb +215 -0
  269. data/vendor/deps/webrick/lib/webrick/utils.rb +265 -0
  270. data/vendor/deps/webrick/lib/webrick/version.rb +18 -0
  271. data/vendor/deps/webrick/webrick.gemspec +74 -0
  272. data/vendor/gen/template/bin/update-deps +9 -9
  273. metadata +83 -35
  274. data/docs/Gemfile +0 -5
  275. data/docs/Gemfile.lock +0 -258
  276. data/docs/_data/nav.yml +0 -35
  277. data/docs/_includes/footer.html +0 -15
  278. data/docs/_includes/head.html +0 -19
  279. data/docs/_includes/sidebar_nav.html +0 -22
  280. data/docs/_includes/toc.html +0 -112
  281. data/docs/_layouts/default.html +0 -79
  282. data/docs/css/docs.css +0 -157
  283. data/docs/images/header.png +0 -0
  284. data/docs/installing-ruby.md +0 -28
  285. data/lib/project_types/extension/features/argo/admin.rb +0 -20
  286. data/lib/project_types/extension/features/argo/base.rb +0 -129
  287. data/lib/project_types/extension/features/argo/checkout.rb +0 -20
  288. data/lib/project_types/extension/forms/register.rb +0 -47
  289. data/lib/project_types/extension/models/type.rb +0 -81
  290. data/lib/project_types/extension/models/types/checkout_post_purchase.rb +0 -23
  291. data/lib/project_types/extension/models/types/product_subscription.rb +0 -24
  292. data/lib/project_types/node/commands/generate/billing.rb +0 -39
  293. data/lib/project_types/node/commands/generate/page.rb +0 -59
  294. data/lib/project_types/node/commands/generate/webhook.rb +0 -37
  295. data/lib/project_types/script/commands/disable.rb +0 -25
  296. data/lib/project_types/script/commands/enable.rb +0 -78
  297. data/lib/project_types/script/graphql/shop_script_delete.graphql +0 -14
  298. data/lib/project_types/script/graphql/shop_script_update_or_create.graphql +0 -28
  299. data/lib/project_types/script/layers/application/disable_script.rb +0 -21
  300. data/lib/project_types/script/layers/application/enable_script.rb +0 -23
  301. data/lib/project_types/script/layers/domain/script.rb +0 -18
  302. data/lib/project_types/script/layers/infrastructure/script_repository.rb +0 -47
  303. data/lib/project_types/script/script_project.rb +0 -54
  304. data/lib/project_types/script/templates/ts/as-pect.config.js +0 -27
  305. data/lib/project_types/script/templates/ts/as-pect.d.ts +0 -1
@@ -0,0 +1,36 @@
1
+ # frozen_string_literal: true
2
+ #
3
+ # compat.rb -- cross platform compatibility
4
+ #
5
+ # Author: IPR -- Internet Programming with Ruby -- writers
6
+ # Copyright (c) 2002 GOTOU Yuuzou
7
+ # Copyright (c) 2002 Internet Programming with Ruby writers. All rights
8
+ # reserved.
9
+ #
10
+ # $IPR: compat.rb,v 1.6 2002/10/01 17:16:32 gotoyuzo Exp $
11
+
12
+ ##
13
+ # System call error module used by webrick for cross platform compatibility.
14
+ #
15
+ # EPROTO:: protocol error
16
+ # ECONNRESET:: remote host reset the connection request
17
+ # ECONNABORTED:: Client sent TCP reset (RST) before server has accepted the
18
+ # connection requested by client.
19
+ #
20
+ module Errno
21
+ ##
22
+ # Protocol error.
23
+
24
+ class EPROTO < SystemCallError; end
25
+
26
+ ##
27
+ # Remote host reset the connection request.
28
+
29
+ class ECONNRESET < SystemCallError; end
30
+
31
+ ##
32
+ # Client sent TCP reset (RST) before server has accepted the connection
33
+ # requested by client.
34
+
35
+ class ECONNABORTED < SystemCallError; end
36
+ end
@@ -0,0 +1,158 @@
1
+ # frozen_string_literal: true
2
+ #
3
+ # config.rb -- Default configurations.
4
+ #
5
+ # Author: IPR -- Internet Programming with Ruby -- writers
6
+ # Copyright (c) 2000, 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou
7
+ # Copyright (c) 2003 Internet Programming with Ruby writers. All rights
8
+ # reserved.
9
+ #
10
+ # $IPR: config.rb,v 1.52 2003/07/22 19:20:42 gotoyuzo Exp $
11
+
12
+ require_relative 'version'
13
+ require_relative 'httpversion'
14
+ require_relative 'httputils'
15
+ require_relative 'utils'
16
+ require_relative 'log'
17
+
18
+ module WEBrick
19
+ module Config
20
+ LIBDIR = File::dirname(__FILE__) # :nodoc:
21
+
22
+ # for GenericServer
23
+ General = Hash.new { |hash, key|
24
+ case key
25
+ when :ServerName
26
+ hash[key] = Utils.getservername
27
+ else
28
+ nil
29
+ end
30
+ }.update(
31
+ :BindAddress => nil, # "0.0.0.0" or "::" or nil
32
+ :Port => nil, # users MUST specify this!!
33
+ :MaxClients => 100, # maximum number of the concurrent connections
34
+ :ServerType => nil, # default: WEBrick::SimpleServer
35
+ :Logger => nil, # default: WEBrick::Log.new
36
+ :ServerSoftware => "WEBrick/#{WEBrick::VERSION} " +
37
+ "(Ruby/#{RUBY_VERSION}/#{RUBY_RELEASE_DATE})",
38
+ :TempDir => ENV['TMPDIR']||ENV['TMP']||ENV['TEMP']||'/tmp',
39
+ :DoNotListen => false,
40
+ :StartCallback => nil,
41
+ :StopCallback => nil,
42
+ :AcceptCallback => nil,
43
+ :DoNotReverseLookup => true,
44
+ :ShutdownSocketWithoutClose => false,
45
+ )
46
+
47
+ # for HTTPServer, HTTPRequest, HTTPResponse ...
48
+ HTTP = General.dup.update(
49
+ :Port => 80,
50
+ :RequestTimeout => 30,
51
+ :HTTPVersion => HTTPVersion.new("1.1"),
52
+ :AccessLog => nil,
53
+ :MimeTypes => HTTPUtils::DefaultMimeTypes,
54
+ :DirectoryIndex => ["index.html","index.htm","index.cgi","index.rhtml"],
55
+ :DocumentRoot => nil,
56
+ :DocumentRootOptions => { :FancyIndexing => true },
57
+ :RequestCallback => nil,
58
+ :ServerAlias => nil,
59
+ :InputBufferSize => 65536, # input buffer size in reading request body
60
+ :OutputBufferSize => 65536, # output buffer size in sending File or IO
61
+
62
+ # for HTTPProxyServer
63
+ :ProxyAuthProc => nil,
64
+ :ProxyContentHandler => nil,
65
+ :ProxyVia => true,
66
+ :ProxyTimeout => true,
67
+ :ProxyURI => nil,
68
+
69
+ :CGIInterpreter => nil,
70
+ :CGIPathEnv => nil,
71
+
72
+ # workaround: if Request-URIs contain 8bit chars,
73
+ # they should be escaped before calling of URI::parse().
74
+ :Escape8bitURI => false
75
+ )
76
+
77
+ ##
78
+ # Default configuration for WEBrick::HTTPServlet::FileHandler
79
+ #
80
+ # :AcceptableLanguages::
81
+ # Array of languages allowed for accept-language. There is no default
82
+ # :DirectoryCallback::
83
+ # Allows preprocessing of directory requests. There is no default
84
+ # callback.
85
+ # :FancyIndexing::
86
+ # If true, show an index for directories. The default is true.
87
+ # :FileCallback::
88
+ # Allows preprocessing of file requests. There is no default callback.
89
+ # :HandlerCallback::
90
+ # Allows preprocessing of requests. There is no default callback.
91
+ # :HandlerTable::
92
+ # Maps file suffixes to file handlers. DefaultFileHandler is used by
93
+ # default but any servlet can be used.
94
+ # :NondisclosureName::
95
+ # Do not show files matching this array of globs. .ht* and *~ are
96
+ # excluded by default.
97
+ # :UserDir::
98
+ # Directory inside ~user to serve content from for /~user requests.
99
+ # Only works if mounted on /. Disabled by default.
100
+
101
+ FileHandler = {
102
+ :NondisclosureName => [".ht*", "*~"],
103
+ :FancyIndexing => false,
104
+ :HandlerTable => {},
105
+ :HandlerCallback => nil,
106
+ :DirectoryCallback => nil,
107
+ :FileCallback => nil,
108
+ :UserDir => nil, # e.g. "public_html"
109
+ :AcceptableLanguages => [] # ["en", "ja", ... ]
110
+ }
111
+
112
+ ##
113
+ # Default configuration for WEBrick::HTTPAuth::BasicAuth
114
+ #
115
+ # :AutoReloadUserDB:: Reload the user database provided by :UserDB
116
+ # automatically?
117
+
118
+ BasicAuth = {
119
+ :AutoReloadUserDB => true,
120
+ }
121
+
122
+ ##
123
+ # Default configuration for WEBrick::HTTPAuth::DigestAuth.
124
+ #
125
+ # :Algorithm:: MD5, MD5-sess (default), SHA1, SHA1-sess
126
+ # :Domain:: An Array of URIs that define the protected space
127
+ # :Qop:: 'auth' for authentication, 'auth-int' for integrity protection or
128
+ # both
129
+ # :UseOpaque:: Should the server send opaque values to the client? This
130
+ # helps prevent replay attacks.
131
+ # :CheckNc:: Should the server check the nonce count? This helps the
132
+ # server detect replay attacks.
133
+ # :UseAuthenticationInfoHeader:: Should the server send an
134
+ # AuthenticationInfo header?
135
+ # :AutoReloadUserDB:: Reload the user database provided by :UserDB
136
+ # automatically?
137
+ # :NonceExpirePeriod:: How long should we store used nonces? Default is
138
+ # 30 minutes.
139
+ # :NonceExpireDelta:: How long is a nonce valid? Default is 1 minute
140
+ # :InternetExplorerHack:: Hack which allows Internet Explorer to work.
141
+ # :OperaHack:: Hack which allows Opera to work.
142
+
143
+ DigestAuth = {
144
+ :Algorithm => 'MD5-sess', # or 'MD5'
145
+ :Domain => nil, # an array includes domain names.
146
+ :Qop => [ 'auth' ], # 'auth' or 'auth-int' or both.
147
+ :UseOpaque => true,
148
+ :UseNextNonce => false,
149
+ :CheckNc => false,
150
+ :UseAuthenticationInfoHeader => true,
151
+ :AutoReloadUserDB => true,
152
+ :NonceExpirePeriod => 30*60,
153
+ :NonceExpireDelta => 60,
154
+ :InternetExplorerHack => true,
155
+ :OperaHack => true,
156
+ }
157
+ end
158
+ end
@@ -0,0 +1,172 @@
1
+ # frozen_string_literal: true
2
+ #
3
+ # cookie.rb -- Cookie class
4
+ #
5
+ # Author: IPR -- Internet Programming with Ruby -- writers
6
+ # Copyright (c) 2000, 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou
7
+ # Copyright (c) 2002 Internet Programming with Ruby writers. All rights
8
+ # reserved.
9
+ #
10
+ # $IPR: cookie.rb,v 1.16 2002/09/21 12:23:35 gotoyuzo Exp $
11
+
12
+ require 'time'
13
+ require_relative 'httputils'
14
+
15
+ module WEBrick
16
+
17
+ ##
18
+ # Processes HTTP cookies
19
+
20
+ class Cookie
21
+
22
+ ##
23
+ # The cookie name
24
+
25
+ attr_reader :name
26
+
27
+ ##
28
+ # The cookie value
29
+
30
+ attr_accessor :value
31
+
32
+ ##
33
+ # The cookie version
34
+
35
+ attr_accessor :version
36
+
37
+ ##
38
+ # The cookie domain
39
+ attr_accessor :domain
40
+
41
+ ##
42
+ # The cookie path
43
+
44
+ attr_accessor :path
45
+
46
+ ##
47
+ # Is this a secure cookie?
48
+
49
+ attr_accessor :secure
50
+
51
+ ##
52
+ # The cookie comment
53
+
54
+ attr_accessor :comment
55
+
56
+ ##
57
+ # The maximum age of the cookie
58
+
59
+ attr_accessor :max_age
60
+
61
+ #attr_accessor :comment_url, :discard, :port
62
+
63
+ ##
64
+ # Creates a new cookie with the given +name+ and +value+
65
+
66
+ def initialize(name, value)
67
+ @name = name
68
+ @value = value
69
+ @version = 0 # Netscape Cookie
70
+
71
+ @domain = @path = @secure = @comment = @max_age =
72
+ @expires = @comment_url = @discard = @port = nil
73
+ end
74
+
75
+ ##
76
+ # Sets the cookie expiration to the time +t+. The expiration time may be
77
+ # a false value to disable expiration or a Time or HTTP format time string
78
+ # to set the expiration date.
79
+
80
+ def expires=(t)
81
+ @expires = t && (t.is_a?(Time) ? t.httpdate : t.to_s)
82
+ end
83
+
84
+ ##
85
+ # Retrieves the expiration time as a Time
86
+
87
+ def expires
88
+ @expires && Time.parse(@expires)
89
+ end
90
+
91
+ ##
92
+ # The cookie string suitable for use in an HTTP header
93
+
94
+ def to_s
95
+ ret = +""
96
+ ret << @name << "=" << @value
97
+ ret << "; " << "Version=" << @version.to_s if @version > 0
98
+ ret << "; " << "Domain=" << @domain if @domain
99
+ ret << "; " << "Expires=" << @expires if @expires
100
+ ret << "; " << "Max-Age=" << @max_age.to_s if @max_age
101
+ ret << "; " << "Comment=" << @comment if @comment
102
+ ret << "; " << "Path=" << @path if @path
103
+ ret << "; " << "Secure" if @secure
104
+ ret
105
+ end
106
+
107
+ ##
108
+ # Parses a Cookie field sent from the user-agent. Returns an array of
109
+ # cookies.
110
+
111
+ def self.parse(str)
112
+ if str
113
+ ret = []
114
+ cookie = nil
115
+ ver = 0
116
+ str.split(/;\s+/).each{|x|
117
+ key, val = x.split(/=/,2)
118
+ val = val ? HTTPUtils::dequote(val) : ""
119
+ case key
120
+ when "$Version"; ver = val.to_i
121
+ when "$Path"; cookie.path = val
122
+ when "$Domain"; cookie.domain = val
123
+ when "$Port"; cookie.port = val
124
+ else
125
+ ret << cookie if cookie
126
+ cookie = self.new(key, val)
127
+ cookie.version = ver
128
+ end
129
+ }
130
+ ret << cookie if cookie
131
+ ret
132
+ end
133
+ end
134
+
135
+ ##
136
+ # Parses the cookie in +str+
137
+
138
+ def self.parse_set_cookie(str)
139
+ cookie_elem = str.split(/;/)
140
+ first_elem = cookie_elem.shift
141
+ first_elem.strip!
142
+ key, value = first_elem.split(/=/, 2)
143
+ cookie = new(key, HTTPUtils.dequote(value))
144
+ cookie_elem.each{|pair|
145
+ pair.strip!
146
+ key, value = pair.split(/=/, 2)
147
+ if value
148
+ value = HTTPUtils.dequote(value.strip)
149
+ end
150
+ case key.downcase
151
+ when "domain" then cookie.domain = value
152
+ when "path" then cookie.path = value
153
+ when "expires" then cookie.expires = value
154
+ when "max-age" then cookie.max_age = Integer(value)
155
+ when "comment" then cookie.comment = value
156
+ when "version" then cookie.version = Integer(value)
157
+ when "secure" then cookie.secure = true
158
+ end
159
+ }
160
+ return cookie
161
+ end
162
+
163
+ ##
164
+ # Parses the cookies in +str+
165
+
166
+ def self.parse_set_cookies(str)
167
+ return str.split(/,(?=[^;,]*=)|,$/).collect{|c|
168
+ parse_set_cookie(c)
169
+ }
170
+ end
171
+ end
172
+ end
@@ -0,0 +1,30 @@
1
+ # frozen_string_literal: true
2
+ #--
3
+ # htmlutils.rb -- HTMLUtils Module
4
+ #
5
+ # Author: IPR -- Internet Programming with Ruby -- writers
6
+ # Copyright (c) 2000, 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou
7
+ # Copyright (c) 2002 Internet Programming with Ruby writers. All rights
8
+ # reserved.
9
+ #
10
+ # $IPR: htmlutils.rb,v 1.7 2002/09/21 12:23:35 gotoyuzo Exp $
11
+
12
+ module WEBrick
13
+ module HTMLUtils
14
+
15
+ ##
16
+ # Escapes &, ", > and < in +string+
17
+
18
+ def escape(string)
19
+ return "" unless string
20
+ str = string.b
21
+ str.gsub!(/&/n, '&amp;')
22
+ str.gsub!(/\"/n, '&quot;')
23
+ str.gsub!(/>/n, '&gt;')
24
+ str.gsub!(/</n, '&lt;')
25
+ str.force_encoding(string.encoding)
26
+ end
27
+ module_function :escape
28
+
29
+ end
30
+ end
@@ -0,0 +1,96 @@
1
+ # frozen_string_literal: true
2
+ #
3
+ # httpauth.rb -- HTTP access authentication
4
+ #
5
+ # Author: IPR -- Internet Programming with Ruby -- writers
6
+ # Copyright (c) 2000, 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou
7
+ # Copyright (c) 2002 Internet Programming with Ruby writers. All rights
8
+ # reserved.
9
+ #
10
+ # $IPR: httpauth.rb,v 1.14 2003/07/22 19:20:42 gotoyuzo Exp $
11
+
12
+ require_relative 'httpauth/basicauth'
13
+ require_relative 'httpauth/digestauth'
14
+ require_relative 'httpauth/htpasswd'
15
+ require_relative 'httpauth/htdigest'
16
+ require_relative 'httpauth/htgroup'
17
+
18
+ module WEBrick
19
+
20
+ ##
21
+ # HTTPAuth provides both basic and digest authentication.
22
+ #
23
+ # To enable authentication for requests in WEBrick you will need a user
24
+ # database and an authenticator. To start, here's an Htpasswd database for
25
+ # use with a DigestAuth authenticator:
26
+ #
27
+ # config = { :Realm => 'DigestAuth example realm' }
28
+ #
29
+ # htpasswd = WEBrick::HTTPAuth::Htpasswd.new 'my_password_file'
30
+ # htpasswd.auth_type = WEBrick::HTTPAuth::DigestAuth
31
+ # htpasswd.set_passwd config[:Realm], 'username', 'password'
32
+ # htpasswd.flush
33
+ #
34
+ # The +:Realm+ is used to provide different access to different groups
35
+ # across several resources on a server. Typically you'll need only one
36
+ # realm for a server.
37
+ #
38
+ # This database can be used to create an authenticator:
39
+ #
40
+ # config[:UserDB] = htpasswd
41
+ #
42
+ # digest_auth = WEBrick::HTTPAuth::DigestAuth.new config
43
+ #
44
+ # To authenticate a request call #authenticate with a request and response
45
+ # object in a servlet:
46
+ #
47
+ # def do_GET req, res
48
+ # @authenticator.authenticate req, res
49
+ # end
50
+ #
51
+ # For digest authentication the authenticator must not be created every
52
+ # request, it must be passed in as an option via WEBrick::HTTPServer#mount.
53
+
54
+ module HTTPAuth
55
+ module_function
56
+
57
+ def _basic_auth(req, res, realm, req_field, res_field, err_type,
58
+ block) # :nodoc:
59
+ user = pass = nil
60
+ if /^Basic\s+(.*)/o =~ req[req_field]
61
+ userpass = $1
62
+ user, pass = userpass.unpack("m*")[0].split(":", 2)
63
+ end
64
+ if block.call(user, pass)
65
+ req.user = user
66
+ return
67
+ end
68
+ res[res_field] = "Basic realm=\"#{realm}\""
69
+ raise err_type
70
+ end
71
+
72
+ ##
73
+ # Simple wrapper for providing basic authentication for a request. When
74
+ # called with a request +req+, response +res+, authentication +realm+ and
75
+ # +block+ the block will be called with a +username+ and +password+. If
76
+ # the block returns true the request is allowed to continue, otherwise an
77
+ # HTTPStatus::Unauthorized error is raised.
78
+
79
+ def basic_auth(req, res, realm, &block) # :yield: username, password
80
+ _basic_auth(req, res, realm, "Authorization", "WWW-Authenticate",
81
+ HTTPStatus::Unauthorized, block)
82
+ end
83
+
84
+ ##
85
+ # Simple wrapper for providing basic authentication for a proxied request.
86
+ # When called with a request +req+, response +res+, authentication +realm+
87
+ # and +block+ the block will be called with a +username+ and +password+.
88
+ # If the block returns true the request is allowed to continue, otherwise
89
+ # an HTTPStatus::ProxyAuthenticationRequired error is raised.
90
+
91
+ def proxy_basic_auth(req, res, realm, &block) # :yield: username, password
92
+ _basic_auth(req, res, realm, "Proxy-Authorization", "Proxy-Authenticate",
93
+ HTTPStatus::ProxyAuthenticationRequired, block)
94
+ end
95
+ end
96
+ end