shopify_api 4.9.0 → 9.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (281) hide show
  1. checksums.yaml +5 -5
  2. data/.github/CODEOWNERS +1 -0
  3. data/.github/ISSUE_TEMPLATE.md +36 -0
  4. data/.github/probots.yml +2 -0
  5. data/.github/workflows/build.yml +41 -0
  6. data/.gitignore +5 -1
  7. data/.rubocop.yml +28 -0
  8. data/.rubocop_todo.yml +75 -0
  9. data/CHANGELOG.md +491 -0
  10. data/CONTRIBUTING.md +1 -1
  11. data/Gemfile +6 -2
  12. data/Gemfile.lock +151 -0
  13. data/Gemfile_ar41 +5 -0
  14. data/Gemfile_ar50 +5 -0
  15. data/Gemfile_ar51 +5 -0
  16. data/Gemfile_ar_master +0 -1
  17. data/README.md +492 -100
  18. data/RELEASING +10 -9
  19. data/Rakefile +21 -5
  20. data/SECURITY.md +59 -0
  21. data/docker-compose.yml +13 -0
  22. data/docs/_config.yml +1 -0
  23. data/docs/_includes/footer.html +28 -0
  24. data/docs/_includes/head.html +28 -0
  25. data/docs/_layouts/index.html +57 -0
  26. data/docs/graphql.md +241 -0
  27. data/docs/index.md +639 -0
  28. data/lib/active_resource/connection_ext.rb +1 -0
  29. data/lib/active_resource/detailed_log_subscriber.rb +43 -7
  30. data/lib/active_resource/json_errors.rb +8 -2
  31. data/lib/shopify_api.rb +16 -6
  32. data/lib/shopify_api/api_access.rb +57 -0
  33. data/lib/shopify_api/api_version.rb +206 -0
  34. data/lib/shopify_api/connection.rb +7 -4
  35. data/lib/shopify_api/countable.rb +3 -2
  36. data/lib/shopify_api/disable_prefix_check.rb +31 -0
  37. data/lib/shopify_api/events.rb +2 -1
  38. data/lib/shopify_api/graphql.rb +103 -0
  39. data/lib/shopify_api/graphql/http_client.rb +22 -0
  40. data/lib/shopify_api/graphql/railtie.rb +17 -0
  41. data/lib/shopify_api/graphql/task.rake +100 -0
  42. data/lib/shopify_api/limits.rb +9 -9
  43. data/lib/shopify_api/message_enricher.rb +25 -0
  44. data/lib/shopify_api/meta.rb +14 -0
  45. data/lib/shopify_api/metafields.rb +5 -4
  46. data/lib/shopify_api/paginated_collection.rb +69 -0
  47. data/lib/shopify_api/pagination_link_headers.rb +34 -0
  48. data/lib/shopify_api/resources.rb +3 -1
  49. data/lib/shopify_api/resources/abandoned_checkout.rb +7 -0
  50. data/lib/shopify_api/resources/access_scope.rb +10 -0
  51. data/lib/shopify_api/resources/access_token.rb +1 -0
  52. data/lib/shopify_api/resources/address.rb +1 -0
  53. data/lib/shopify_api/resources/announcement.rb +2 -1
  54. data/lib/shopify_api/resources/api_permission.rb +9 -0
  55. data/lib/shopify_api/resources/application_charge.rb +1 -0
  56. data/lib/shopify_api/resources/application_credit.rb +1 -0
  57. data/lib/shopify_api/resources/array_base.rb +13 -0
  58. data/lib/shopify_api/resources/article.rb +3 -2
  59. data/lib/shopify_api/resources/asset.rb +28 -23
  60. data/lib/shopify_api/resources/assigned_fulfillment_order.rb +16 -0
  61. data/lib/shopify_api/resources/base.rb +101 -24
  62. data/lib/shopify_api/resources/billing_address.rb +2 -1
  63. data/lib/shopify_api/resources/blog.rb +2 -1
  64. data/lib/shopify_api/resources/carrier_service.rb +1 -0
  65. data/lib/shopify_api/resources/cart.rb +2 -1
  66. data/lib/shopify_api/resources/checkout.rb +27 -1
  67. data/lib/shopify_api/resources/collect.rb +2 -0
  68. data/lib/shopify_api/resources/collection.rb +14 -0
  69. data/lib/shopify_api/resources/collection_listing.rb +11 -1
  70. data/lib/shopify_api/resources/collection_publication.rb +10 -0
  71. data/lib/shopify_api/resources/comment.rb +20 -5
  72. data/lib/shopify_api/resources/country.rb +1 -0
  73. data/lib/shopify_api/resources/currency.rb +6 -0
  74. data/lib/shopify_api/resources/custom_collection.rb +7 -6
  75. data/lib/shopify_api/resources/customer.rb +2 -1
  76. data/lib/shopify_api/resources/customer_group.rb +1 -0
  77. data/lib/shopify_api/resources/{customer_invite_message.rb → customer_invite.rb} +1 -0
  78. data/lib/shopify_api/resources/customer_saved_search.rb +4 -1
  79. data/lib/shopify_api/resources/discount_code.rb +1 -0
  80. data/lib/shopify_api/resources/discount_code_batch.rb +34 -0
  81. data/lib/shopify_api/resources/draft_order.rb +1 -0
  82. data/lib/shopify_api/resources/draft_order_invoice.rb +1 -0
  83. data/lib/shopify_api/resources/event.rb +2 -0
  84. data/lib/shopify_api/resources/fulfillment.rb +46 -3
  85. data/lib/shopify_api/resources/fulfillment_event.rb +2 -1
  86. data/lib/shopify_api/resources/fulfillment_order.rb +151 -0
  87. data/lib/shopify_api/resources/fulfillment_order_locations_for_move.rb +5 -0
  88. data/lib/shopify_api/resources/fulfillment_request.rb +1 -0
  89. data/lib/shopify_api/resources/fulfillment_service.rb +1 -0
  90. data/lib/shopify_api/resources/fulfillment_v2.rb +21 -0
  91. data/lib/shopify_api/resources/gift_card.rb +1 -0
  92. data/lib/shopify_api/resources/image.rb +4 -3
  93. data/lib/shopify_api/resources/inventory_item.rb +6 -0
  94. data/lib/shopify_api/resources/inventory_level.rb +54 -0
  95. data/lib/shopify_api/resources/line_item.rb +10 -1
  96. data/lib/shopify_api/resources/location.rb +4 -0
  97. data/lib/shopify_api/resources/marketing_event.rb +3 -0
  98. data/lib/shopify_api/resources/metafield.rb +2 -0
  99. data/lib/shopify_api/resources/note_attribute.rb +1 -0
  100. data/lib/shopify_api/resources/option.rb +1 -0
  101. data/lib/shopify_api/resources/order.rb +25 -5
  102. data/lib/shopify_api/resources/order_risk.rb +1 -0
  103. data/lib/shopify_api/resources/page.rb +1 -0
  104. data/lib/shopify_api/resources/payment.rb +7 -0
  105. data/lib/shopify_api/resources/payment_details.rb +1 -0
  106. data/lib/shopify_api/resources/ping.rb +3 -0
  107. data/lib/shopify_api/resources/policy.rb +1 -0
  108. data/lib/shopify_api/resources/price_rule.rb +1 -1
  109. data/lib/shopify_api/resources/product.rb +33 -7
  110. data/lib/shopify_api/resources/product_listing.rb +9 -1
  111. data/lib/shopify_api/resources/product_publication.rb +10 -0
  112. data/lib/shopify_api/resources/province.rb +1 -0
  113. data/lib/shopify_api/resources/publication.rb +5 -0
  114. data/lib/shopify_api/resources/receipt.rb +1 -0
  115. data/lib/shopify_api/resources/recurring_application_charge.rb +4 -1
  116. data/lib/shopify_api/resources/redirect.rb +1 -0
  117. data/lib/shopify_api/resources/refund.rb +6 -4
  118. data/lib/shopify_api/resources/report.rb +1 -0
  119. data/lib/shopify_api/resources/resource_feedback.rb +1 -1
  120. data/lib/shopify_api/resources/rule.rb +1 -0
  121. data/lib/shopify_api/resources/script_tag.rb +1 -0
  122. data/lib/shopify_api/resources/shipping_address.rb +1 -0
  123. data/lib/shopify_api/resources/shipping_line.rb +2 -1
  124. data/lib/shopify_api/resources/shipping_rate.rb +7 -0
  125. data/lib/shopify_api/resources/shipping_zone.rb +1 -0
  126. data/lib/shopify_api/resources/shop.rb +10 -7
  127. data/lib/shopify_api/resources/smart_collection.rb +3 -3
  128. data/lib/shopify_api/resources/storefront_access_token.rb +1 -0
  129. data/lib/shopify_api/resources/tax_line.rb +1 -0
  130. data/lib/shopify_api/resources/tax_service.rb +1 -0
  131. data/lib/shopify_api/resources/tender_transaction.rb +6 -0
  132. data/lib/shopify_api/resources/theme.rb +1 -0
  133. data/lib/shopify_api/resources/transaction.rb +1 -0
  134. data/lib/shopify_api/resources/usage_charge.rb +1 -0
  135. data/lib/shopify_api/resources/user.rb +1 -0
  136. data/lib/shopify_api/resources/variant.rb +35 -0
  137. data/lib/shopify_api/resources/webhook.rb +1 -0
  138. data/lib/shopify_api/session.rb +109 -45
  139. data/lib/shopify_api/version.rb +2 -1
  140. data/lib/verify_docs.rb +8 -0
  141. data/service.yml +8 -0
  142. data/shopify_api.gemspec +19 -8
  143. data/test/abandoned_checkouts_test.rb +29 -0
  144. data/test/access_scope_test.rb +23 -0
  145. data/test/access_token_test.rb +6 -5
  146. data/test/active_resource/json_errors_test.rb +6 -6
  147. data/test/api_access_test.rb +153 -0
  148. data/test/api_permission_test.rb +9 -0
  149. data/test/api_version_test.rb +157 -0
  150. data/test/application_charge_test.rb +30 -27
  151. data/test/application_credit_test.rb +10 -9
  152. data/test/article_test.rb +34 -35
  153. data/test/asset_test.rb +14 -6
  154. data/test/assigned_fulfillment_order_test.rb +78 -0
  155. data/test/base_test.rb +147 -59
  156. data/test/blog_test.rb +4 -3
  157. data/test/carrier_service_test.rb +7 -6
  158. data/test/cart_test.rb +2 -1
  159. data/test/checkouts_test.rb +72 -4
  160. data/test/collect_test.rb +4 -3
  161. data/test/collection_listing_test.rb +56 -13
  162. data/test/collection_publication_test.rb +40 -0
  163. data/test/collection_test.rb +50 -0
  164. data/test/countable_test.rb +3 -2
  165. data/test/currency_test.rb +21 -0
  166. data/test/custom_collection_test.rb +4 -3
  167. data/test/customer_saved_search_test.rb +18 -8
  168. data/test/customer_test.rb +22 -14
  169. data/test/detailed_log_subscriber_test.rb +113 -19
  170. data/test/discount_code_batch_test.rb +41 -0
  171. data/test/discount_code_test.rb +22 -16
  172. data/test/draft_order_test.rb +68 -52
  173. data/test/fixtures/abandoned_checkout.json +184 -0
  174. data/test/fixtures/abandoned_checkouts.json +186 -0
  175. data/test/fixtures/access_scopes.json +10 -0
  176. data/test/fixtures/api_versions.json +38 -0
  177. data/test/fixtures/apis.json +42 -0
  178. data/test/fixtures/assigned_fulfillment_orders.json +80 -0
  179. data/test/fixtures/checkout.json +160 -0
  180. data/test/fixtures/checkouts.json +25 -49
  181. data/test/fixtures/collection.json +17 -0
  182. data/test/fixtures/collection_listing_product_ids2.json +1 -0
  183. data/test/fixtures/collection_products.json +47 -0
  184. data/test/fixtures/collection_publication.json +11 -0
  185. data/test/fixtures/collection_publications.json +13 -0
  186. data/test/fixtures/currencies.json +25 -0
  187. data/test/fixtures/discount_code_batch.json +14 -0
  188. data/test/fixtures/discount_code_batch_discount_codes.json +21 -0
  189. data/test/fixtures/fulfillment_order.json +39 -0
  190. data/test/fixtures/fulfillment_order_locations_for_move.json +18 -0
  191. data/test/fixtures/fulfillment_orders.json +80 -0
  192. data/test/fixtures/fulfillments.json +53 -0
  193. data/test/fixtures/graphql/2019-10.json +1083 -0
  194. data/test/fixtures/graphql/dummy_schema.rb +16 -0
  195. data/test/fixtures/graphql/unstable.json +1083 -0
  196. data/test/fixtures/inventory_level.json +7 -0
  197. data/test/fixtures/inventory_levels.json +24 -0
  198. data/test/fixtures/order_with_properties.json +373 -0
  199. data/test/fixtures/payment.json +7 -0
  200. data/test/fixtures/payments.json +9 -0
  201. data/test/fixtures/ping/conversation.json +1 -0
  202. data/test/fixtures/ping/failed_delivery_confirmation.json +1 -0
  203. data/test/fixtures/ping/message.json +1 -0
  204. data/test/fixtures/ping/successful_delivery_confirmation.json +1 -0
  205. data/test/fixtures/product_listing_product_ids.json +1 -1
  206. data/test/fixtures/product_listing_product_ids2.json +1 -0
  207. data/test/fixtures/product_publication.json +11 -0
  208. data/test/fixtures/product_publications.json +13 -0
  209. data/test/fixtures/publications.json +9 -0
  210. data/test/fixtures/shipping_rates.json +12 -0
  211. data/test/fixtures/smart_collection_products.json +155 -0
  212. data/test/fixtures/tender_transactions.json +52 -0
  213. data/test/fulfillment_event_test.rb +31 -26
  214. data/test/fulfillment_order_test.rb +530 -0
  215. data/test/fulfillment_order_test_helper.rb +8 -0
  216. data/test/fulfillment_request_test.rb +10 -8
  217. data/test/fulfillment_service_test.rb +13 -12
  218. data/test/fulfillment_test.rb +198 -20
  219. data/test/fulfillment_v2_test.rb +66 -0
  220. data/test/gift_card_test.rb +6 -4
  221. data/test/graphql/http_client_test.rb +26 -0
  222. data/test/graphql_test.rb +190 -0
  223. data/test/image_test.rb +19 -17
  224. data/test/inventory_level_test.rb +68 -0
  225. data/test/lib/webmock_extensions/last_request.rb +16 -0
  226. data/test/limits_test.rb +4 -3
  227. data/test/location_test.rb +15 -0
  228. data/test/marketing_event_test.rb +21 -21
  229. data/test/message_enricher_test.rb +45 -0
  230. data/test/meta_test.rb +47 -0
  231. data/test/metafield_test.rb +30 -20
  232. data/test/order_risk_test.rb +17 -16
  233. data/test/order_test.rb +110 -17
  234. data/test/pagination_test.rb +290 -0
  235. data/test/payment_test.rb +19 -0
  236. data/test/policy_test.rb +6 -5
  237. data/test/price_rule_test.rb +20 -15
  238. data/test/product_listing_test.rb +72 -15
  239. data/test/product_publication_test.rb +40 -0
  240. data/test/product_test.rb +80 -19
  241. data/test/publication_test.rb +12 -0
  242. data/test/recurring_application_charge_test.rb +105 -50
  243. data/test/redirect_test.rb +4 -3
  244. data/test/refund_test.rb +22 -17
  245. data/test/report_test.rb +12 -10
  246. data/test/resource_feedback_test.rb +14 -13
  247. data/test/script_tag_test.rb +10 -9
  248. data/test/session_test.rb +497 -111
  249. data/test/shipping_rate_test.rb +17 -0
  250. data/test/shipping_zone_test.rb +4 -3
  251. data/test/shop_test.rb +47 -33
  252. data/test/smart_collection_test.rb +5 -4
  253. data/test/storefront_access_token_test.rb +13 -15
  254. data/test/tax_service_test.rb +7 -3
  255. data/test/tender_transaction_test.rb +18 -0
  256. data/test/test_helper.rb +98 -67
  257. data/test/transaction_test.rb +4 -3
  258. data/test/usage_charge_test.rb +12 -8
  259. data/test/user_test.rb +4 -3
  260. data/test/variant_test.rb +50 -20
  261. data/test/webhook_test.rb +10 -7
  262. metadata +196 -37
  263. data/.travis.yml +0 -36
  264. data/CHANGELOG +0 -292
  265. data/Gemfile_ar30 +0 -6
  266. data/Gemfile_ar31 +0 -6
  267. data/Gemfile_ar32 +0 -6
  268. data/Gemfile_ar40 +0 -6
  269. data/bin/shopify +0 -3
  270. data/lib/active_resource/base_ext.rb +0 -21
  271. data/lib/active_resource/disable_prefix_check.rb +0 -36
  272. data/lib/active_resource/to_query.rb +0 -10
  273. data/lib/shopify_api/json_format.rb +0 -18
  274. data/lib/shopify_api/resources/discount.rb +0 -11
  275. data/lib/shopify_api/resources/o_auth.rb +0 -9
  276. data/test/discount_test.rb +0 -52
  277. data/test/fixtures/discount.json +0 -17
  278. data/test/fixtures/discount_disabled.json +0 -17
  279. data/test/fixtures/discounts.json +0 -34
  280. data/test/fixtures/o_auth_revoke.json +0 -5
  281. data/test/o_auth_test.rb +0 -8
data/CONTRIBUTING.md CHANGED
@@ -3,6 +3,6 @@ Submitting Issues
3
3
 
4
4
  Please open an issue here if you encounter a specific bug with this API client library or if something is documented here https://docs.shopify.com/api but is missing from this package.
5
5
 
6
- General questions about the Shopify API and usage of this package (not neccessarily a bug) should be posted on the [Shopify forums](https://ecommerce.shopify.com/c/shopify-apis-and-technology).
6
+ General questions about the Shopify API and usage of this package (not necessarily a bug) should be posted on the [Shopify forums](https://ecommerce.shopify.com/c/shopify-apis-and-technology).
7
7
 
8
8
  When in doubt, post on the forum first. You'll likely have your questions answered more quickly if you post there; more people monitor the forum than Github.
data/Gemfile CHANGED
@@ -1,6 +1,10 @@
1
+ # frozen_string_literal: true
1
2
  source "https://rubygems.org"
2
3
 
3
4
  gemspec
4
5
 
5
- gem "activeresource", "~> 4.1"
6
- gem "rack", "< 2" if RUBY_VERSION < "2.2"
6
+ gem "activeresource", "~> 5.1"
7
+
8
+ group :docs, optional: true do
9
+ gem "jekyll"
10
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,151 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ shopify_api (9.4.1)
5
+ activeresource (>= 4.1.0, < 6.0.0)
6
+ graphql-client
7
+ rack
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ activemodel (6.0.3.1)
13
+ activesupport (= 6.0.3.1)
14
+ activemodel-serializers-xml (1.0.2)
15
+ activemodel (> 5.x)
16
+ activesupport (> 5.x)
17
+ builder (~> 3.1)
18
+ activeresource (5.1.1)
19
+ activemodel (>= 5.0, < 7)
20
+ activemodel-serializers-xml (~> 1.0)
21
+ activesupport (>= 5.0, < 7)
22
+ activesupport (6.0.3.1)
23
+ concurrent-ruby (~> 1.0, >= 1.0.2)
24
+ i18n (>= 0.7, < 2)
25
+ minitest (~> 5.1)
26
+ tzinfo (~> 1.1)
27
+ zeitwerk (~> 2.2, >= 2.2.2)
28
+ addressable (2.7.0)
29
+ public_suffix (>= 2.0.2, < 5.0)
30
+ ast (2.4.1)
31
+ builder (3.2.4)
32
+ byebug (11.1.3)
33
+ coderay (1.1.2)
34
+ colorator (1.1.0)
35
+ concurrent-ruby (1.1.6)
36
+ crack (0.4.3)
37
+ safe_yaml (~> 1.0.0)
38
+ em-websocket (0.5.1)
39
+ eventmachine (>= 0.12.9)
40
+ http_parser.rb (~> 0.6.0)
41
+ eventmachine (1.2.7)
42
+ ffi (1.12.2)
43
+ forwardable-extended (2.6.0)
44
+ graphql (1.12.6)
45
+ graphql-client (0.16.0)
46
+ activesupport (>= 3.0)
47
+ graphql (~> 1.8)
48
+ hashdiff (1.0.1)
49
+ http_parser.rb (0.6.0)
50
+ i18n (1.8.2)
51
+ concurrent-ruby (~> 1.0)
52
+ jekyll (4.1.0)
53
+ addressable (~> 2.4)
54
+ colorator (~> 1.0)
55
+ em-websocket (~> 0.5)
56
+ i18n (~> 1.0)
57
+ jekyll-sass-converter (~> 2.0)
58
+ jekyll-watch (~> 2.0)
59
+ kramdown (~> 2.1)
60
+ kramdown-parser-gfm (~> 1.0)
61
+ liquid (~> 4.0)
62
+ mercenary (~> 0.4.0)
63
+ pathutil (~> 0.9)
64
+ rouge (~> 3.0)
65
+ safe_yaml (~> 1.0)
66
+ terminal-table (~> 1.8)
67
+ jekyll-sass-converter (2.1.0)
68
+ sassc (> 2.0.1, < 3.0)
69
+ jekyll-watch (2.2.1)
70
+ listen (~> 3.0)
71
+ kramdown (2.3.1)
72
+ rexml
73
+ kramdown-parser-gfm (1.1.0)
74
+ kramdown (~> 2.0)
75
+ liquid (4.0.3)
76
+ listen (3.2.1)
77
+ rb-fsevent (~> 0.10, >= 0.10.3)
78
+ rb-inotify (~> 0.9, >= 0.9.10)
79
+ mercenary (0.4.0)
80
+ method_source (1.0.0)
81
+ minitest (5.14.1)
82
+ mocha (1.11.2)
83
+ parallel (1.19.2)
84
+ parser (2.7.2.0)
85
+ ast (~> 2.4.1)
86
+ pathutil (0.16.2)
87
+ forwardable-extended (~> 2.6)
88
+ pry (0.13.1)
89
+ coderay (~> 1.1)
90
+ method_source (~> 1.0)
91
+ pry-byebug (3.9.0)
92
+ byebug (~> 11.0)
93
+ pry (~> 0.13.0)
94
+ public_suffix (4.0.5)
95
+ rack (2.2.3)
96
+ rainbow (3.0.0)
97
+ rake (13.0.1)
98
+ rb-fsevent (0.10.4)
99
+ rb-inotify (0.10.1)
100
+ ffi (~> 1.0)
101
+ regexp_parser (1.8.2)
102
+ rexml (3.2.4)
103
+ rouge (3.19.0)
104
+ rubocop (0.93.1)
105
+ parallel (~> 1.10)
106
+ parser (>= 2.7.1.5)
107
+ rainbow (>= 2.2.2, < 4.0)
108
+ regexp_parser (>= 1.8)
109
+ rexml
110
+ rubocop-ast (>= 0.6.0)
111
+ ruby-progressbar (~> 1.7)
112
+ unicode-display_width (>= 1.4.0, < 2.0)
113
+ rubocop-ast (0.8.0)
114
+ parser (>= 2.7.1.5)
115
+ rubocop-shopify (1.0.6)
116
+ rubocop (>= 0.92, < 0.94)
117
+ ruby-progressbar (1.10.1)
118
+ safe_yaml (1.0.5)
119
+ sassc (2.3.0)
120
+ ffi (~> 1.9)
121
+ terminal-table (1.8.0)
122
+ unicode-display_width (~> 1.1, >= 1.1.1)
123
+ thread_safe (0.3.6)
124
+ timecop (0.9.1)
125
+ tzinfo (1.2.7)
126
+ thread_safe (~> 0.1)
127
+ unicode-display_width (1.7.0)
128
+ webmock (3.8.3)
129
+ addressable (>= 2.3.6)
130
+ crack (>= 0.3.2)
131
+ hashdiff (>= 0.4.0, < 2.0.0)
132
+ zeitwerk (2.3.0)
133
+
134
+ PLATFORMS
135
+ ruby
136
+
137
+ DEPENDENCIES
138
+ activeresource (~> 5.1)
139
+ jekyll
140
+ minitest (>= 4.0)
141
+ mocha (>= 1.4.0)
142
+ pry
143
+ pry-byebug
144
+ rake
145
+ rubocop-shopify
146
+ shopify_api!
147
+ timecop
148
+ webmock
149
+
150
+ BUNDLED WITH
151
+ 2.1.4
data/Gemfile_ar41 ADDED
@@ -0,0 +1,5 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
4
+
5
+ gem "activeresource", "4.1.0"
data/Gemfile_ar50 ADDED
@@ -0,0 +1,5 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
4
+
5
+ gem "activeresource", "5.0.0"
data/Gemfile_ar51 ADDED
@@ -0,0 +1,5 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
4
+
5
+ gem "activeresource", "~> 5.1"
data/Gemfile_ar_master CHANGED
@@ -3,4 +3,3 @@ source "https://rubygems.org"
3
3
  gemspec
4
4
 
5
5
  gem 'activeresource', git: 'git://github.com/rails/activeresource'
6
- gem "rack", "< 2" if RUBY_VERSION < "2.2"
data/README.md CHANGED
@@ -1,31 +1,67 @@
1
1
  Shopify API
2
2
  ===========
3
- [![Version][gem]][gem_url] [![Build Status](https://travis-ci.org/Shopify/shopify_api.svg?branch=master)](https://travis-ci.org/Shopify/shopify_api)
3
+ [![Version][gem]][gem_url] [![Build Status](https://github.com/Shopify/shopify_api/workflows/CI/badge.svg?branch=master)](https://github.com/Shopify/shopify_api/actions)
4
4
 
5
5
  [gem]: https://img.shields.io/gem/v/shopify_api.svg
6
6
  [gem_url]: https://rubygems.org/gems/shopify_api
7
7
 
8
-
9
- The Shopify API gem allows Ruby developers to programmatically access the admin section of Shopify stores.
10
-
11
- The API is implemented as JSON over HTTP using all four verbs (GET/POST/PUT/DELETE). Each resource, like Order, Product, or Collection, has its own URL and is manipulated in isolation. In other words, we’ve tried to make the API follow the REST principles as much as possible.
12
-
13
- ## Usage
14
-
15
- ### Requirements
16
-
17
- All API usage happens through Shopify applications, created by either shop owners for their own shops, or by Shopify Partners for use by other shop owners:
18
-
19
- * Shop owners can create applications for themselves through their own admin: https://docs.shopify.com/api/authentication/creating-a-private-app
8
+ The Shopify API gem allows Ruby developers to access the admin section of Shopify stores programmatically.
9
+
10
+ The best way to consume the Shopify API is through GraphQL, which enables high volume mutations, bulk operations, and access to all new features.
11
+
12
+ The REST API is implemented as JSON over HTTP using all four verbs (GET/POST/PUT/DELETE). Each resource, like Order, Product, or Collection, has a distinct URL and is manipulated in isolation. In other words, we’ve tried to make the API follow the REST principles as much as possible.
13
+
14
+ - [Shopify API](#shopify-api)
15
+ - [Usage](#usage)
16
+ - [Requirements](#requirements)
17
+ - [Ruby version](#ruby-version)
18
+ - [Installation](#installation)
19
+ - [Getting Started](#getting-started)
20
+ - [1) Create an app](#1-create-an-app)
21
+ - [2A) Private Apps](#2a-private-apps)
22
+ - [2B) Public and Custom Apps](#2b-public-and-custom-apps)
23
+ - [3) Requesting access from a shop](#3-requesting-access-from-a-shop)
24
+ - [4) Trading your `code` for an access token.](#4-trading-your-code-for-an-access-token)
25
+ - [5) Activating the session](#5-activating-the-session)
26
+ - [6A) Making requests to the GraphQL API](#6a-making-requests-to-the-graphql-api)
27
+ - [Note: the GraphQL client has improved and changed in version 9.0. See the client documentation for full usage details and a [migration guide](docs/graphql.md#migration-guide).](#note-the-graphql-client-has-improved-and-changed-in-version-90-see-the-client-documentation-for-full-usage-details-and-a-migration-guide)
28
+ - [6B) Making requests to the REST API](#6b-making-requests-to-the-rest-api)
29
+ - [Console](#console)
30
+ - [Thread safety](#thread-safety)
31
+ - [Bulk Operations](#bulk-operations)
32
+ - [Example](#example)
33
+ - [1) Start the bulk operation](#1-start-the-bulk-operation)
34
+ - [Step 2) Poll the status of the bulk operation](#step-2-poll-the-status-of-the-bulk-operation)
35
+ - [Step 3) Retrieve your data](#step-3-retrieve-your-data)
36
+ - [Pagination](#pagination)
37
+ - [Breaking Change Notices](#breaking-change-notices)
38
+ - [Breaking change notice for version 8.0.0](#breaking-change-notice-for-version-800)
39
+ - [Breaking change notice for version 7.0.0](#breaking-change-notice-for-version-700)
40
+ - [Changes to ShopifyAPI::Session](#changes-to-shopifyapisession)
41
+ - [Changes to how to define resources](#changes-to-how-to-define-resources)
42
+ - [URL construction](#url-construction)
43
+ - [URLs that have not changed](#urls-that-have-not-changed)
44
+ - [Using Development Version](#using-development-version)
45
+ - [Logging](#logging)
46
+ - [Additional Resources](#additional-resources)
47
+ - [Copyright](#copyright)
48
+
49
+ # Usage
50
+
51
+ ## Requirements
52
+
53
+ All API usage happens through Shopify applications, created by either shop owners for their shops, or by Shopify Partners for use by other shop owners:
54
+
55
+ * Shop owners can create applications for themselves through their admin: https://shopify.dev/tutorials/authenticate-a-private-app-with-shopify-admin#generate-private-app-credentials
20
56
  * Shopify Partners create applications through their admin: http://app.shopify.com/services/partners
21
57
 
22
- For more information and detailed documentation about the API visit http://api.shopify.com
58
+ For more information and detailed documentation about the API visit https://developers.shopify.com/
23
59
 
24
- #### Ruby version
60
+ ### Ruby version
25
61
 
26
- This gem requires Ruby 2.3.1 as of version 4.3. If you need to use an older Ruby version then update your `Gemfile` to lock onto an older release than 4.3.
62
+ This gem requires Ruby 2.4 as of version 7.0.
27
63
 
28
- ### Installation
64
+ ## Installation
29
65
 
30
66
  Add `shopify_api` to your `Gemfile`:
31
67
 
@@ -39,41 +75,69 @@ Or install via [gem](http://rubygems.org/)
39
75
  gem install shopify_api
40
76
  ```
41
77
 
42
- #### Rails 5
43
-
44
- shopify_api is compatible with Rails 5 but since the latest ActiveResource release (4.1) is locked on Rails 4.x, you'll need to use the unreleased master version:
78
+ Once the gem is installed, it must be added to your project by placing the following line in your app :
45
79
 
46
80
  ```ruby
47
- gem 'shopify_api'
48
- gem 'activeresource', github: 'rails/activeresource'
81
+ require 'shopify_api'
49
82
  ```
50
83
 
51
- ### Getting Started
84
+ ## Getting Started
85
+
86
+ ShopifyAPI sessions need to be configured with a fully authorized URL of a particular store before they can start making API calls. To obtain that URL, you can follow these steps:
52
87
 
53
- ShopifyAPI uses ActiveResource to communicate with the REST web service. ActiveResource has to be configured with a fully authorized URL of a particular store first. To obtain that URL you can follow these steps:
88
+ ### 1) Create an app
54
89
 
55
- 1. First create a new application in either the partners admin or your store admin. For a private App you'll need the API_KEY and the PASSWORD otherwise you'll need the API_KEY and SHARED_SECRET.
90
+ First, create a new application in either the partners admin or your store admin.
56
91
 
57
- If you're not sure how to create a new application in the partner/store admin and/or if you're not sure how to generate the required credentials, you can [read the related shopify docs](https://docs.shopify.com/api/guides/api-credentials) on the same.
92
+ **Private apps** are used for merchant-owned scripts and apps that run silently in the background on a single shop. Private apps aren't able to render any content in the admin. Private apps are created through the store admin.
58
93
 
59
- 2. For a private App you just need to set the base site url as follows:
94
+ **Custom apps** are also used for a single shop, but they have access to [app extensions](https://shopify.dev/docs/app-extensions) that allow the app to render content in the admin and are managed and created through the partners dashboard.
95
+
96
+ **Public apps** can be installed on many stores, and can be added to the Shopify App Store to generate revenue for the developer.
97
+
98
+ For a private app, you'll need the API_KEY and the PASSWORD; otherwise, you'll need the API_KEY and SHARED_SECRET.
99
+
100
+ If you're not sure how to create a new application in the partner admin, visit the [tutorial in our documentation](https://shopify.dev/tutorials/authenticate-a-public-app-with-oauth#generate-credentials-from-your-partner-dashboard). For the instructions on generating a private app, visit the [tutorial on generating private credentials](https://shopify.dev/tutorials/authenticate-a-private-app-with-shopify-admin#generate-credentials-from-the-shopify-admin)
101
+
102
+ ### 2A) Private Apps
103
+
104
+ For a private App you just need to set the base site url as follows:
60
105
 
61
106
  ```ruby
62
- shop_url = "https://#{API_KEY}:#{PASSWORD}@#{SHOP_NAME}.myshopify.com/admin"
107
+ shop_url = "https://#{API_KEY}:#{PASSWORD}@#{SHOP_NAME}.myshopify.com"
63
108
  ShopifyAPI::Base.site = shop_url
109
+ ShopifyAPI::Base.api_version = '<version_name>' # find the latest stable api_version here: https://shopify.dev/concepts/about-apis/versioning
64
110
  ```
65
111
 
66
- That's it, you're done, skip to step 6 and start using the API!
112
+ That's it; you're done! Next, skip to step 6 and start using the API!
67
113
 
68
- For a partner app you will need to supply two parameters to the Session class before you instantiate it:
114
+ ### 2B) Public and Custom Apps
115
+
116
+ For public and custom apps, you will need to supply two parameters to the Session class before you instantiate it:
69
117
 
70
118
  ```ruby
71
119
  ShopifyAPI::Session.setup(api_key: API_KEY, secret: SHARED_SECRET)
72
120
  ```
73
121
 
74
- Shopify maintains [`omniauth-shopify-oauth2`](https://github.com/Shopify/omniauth-shopify-oauth2) which securely wraps the OAuth flow and interactions with Shopify (steps 3 and 4 above). Using this gem is the recommended way to use OAuth authentication in your application.
122
+ Shopify maintains [`omniauth-shopify-oauth2`](https://github.com/Shopify/omniauth-shopify-oauth2), which simplifies and securely wraps the OAuth flow and interactions with Shopify. Using this gem is the recommended way to use OAuth authentication in your application.
123
+
124
+ ### 3) Requesting access from a shop
125
+
126
+ Public and Custom apps need an access token from each shop to access that shop's data. Getting an access token is a two-stage process. The first stage is to redirect the merchant to a **permission URL** to grant access to the app.
127
+
128
+ We've added the `create_permission_url` method to make this easier :
129
+
130
+ ```ruby
131
+ # We need to instantiate the session object before using it
132
+ shopify_session = ShopifyAPI::Session.new(domain: "#{SHOP_NAME}.myshopify.com", api_version: api_version, token: nil)
133
+
134
+ # Then, create a permission URL with the session
135
+ permission_url = shopify_session.create_permission_url(scope, "https://my_redirect_uri.com", { state: "My Nonce" })
136
+ ```
137
+
138
+ After creating the permission URL, the user should be directed to this URL to approve the app.
75
139
 
76
- 3. In order to access a shop's data, apps need an access token from that specific shop. This is a two-stage process. Before interacting with a shop for the first time an app should redirect the user to the following URL:
140
+ Under the hood, the `create_permission_url` method is preparing the app to make the following request :
77
141
 
78
142
  ```
79
143
  GET https://SHOP_NAME.myshopify.com/admin/oauth/authorize
@@ -82,91 +146,106 @@ ShopifyAPI uses ActiveResource to communicate with the REST web service. ActiveR
82
146
  with the following parameters:
83
147
 
84
148
  * ``client_id`` – Required – The API key for your app
85
- * ``scope`` – Required – The list of required scopes (explained here: https://help.shopify.com/api/guides/authentication/oauth#scopes)
86
- * ``redirect_uri`` – Required – The URL where you want to redirect the users after they authorize the client. The complete URL specified here must be identical to one of the Application Redirect URLs set in the App's section of the Partners dashboard. Note: in older applications, this parameter was optional, and redirected to the Application Callback URL when no other value was specified.
87
- * ``state`` – Optional – A randomly selected value provided by your application, which is unique for each authorization request. During the OAuth callback phase, your application must check that this value matches the one you provided during authorization. [This mechanism is important for the security of your application](https://tools.ietf.org/html/rfc6819#section-3.6).
88
- * ``grant_options[]`` - Optional - Set this parameter to `per-user` to receive an access token that respects the user's permission level when making API requests (called online access). This is strongly recommended for embedded apps.
149
+ * ``scope`` – Required – The list of required scopes (explained here: https://shopify.dev/tutorials/authenticate-with-oauth#scopes)
150
+ * ``redirect_uri`` – Required – The URL where you want to redirect the users after they authorize the client. The complete URL specified here must be identical to one of the Application Redirect URLs set in the app's section of the Partners dashboard.
151
+ * ``state`` – Optional – A randomly selected value provided by your application, which is unique for each authorization request. During the OAuth callback phase, your application must check that this value matches the one you provided during authorization. [This mechanism is essential for the security of your application](https://tools.ietf.org/html/rfc6819#section-3.6).
152
+ * ``grant_options`` - Optional - Set this parameter to `per-user` to receive an access token that respects the user's permission level when making API requests (called online access). We strongly recommend using this parameter for embedded apps.
89
153
 
90
- We've added the create_permission_url method to make this easier, first instantiate your session object:
154
+ ### 4) Trading your `code` for an access token.
91
155
 
92
- ```ruby
93
- session = ShopifyAPI::Session.new("SHOP_NAME.myshopify.com")
94
- ```
156
+ Once authorized, the shop redirects the owner to the return URL of your application with a parameter named `code`. The value of this parameter is a temporary token that the app can exchange for a permanent access token.
95
157
 
96
- Then call:
158
+ Before you proceed, make sure your application performs the following security checks. If any of the checks fail, your application must reject the request with an error, and must not proceed further.
97
159
 
98
- ```ruby
99
- scope = ["write_products"]
100
- permission_url = session.create_permission_url(scope)
101
- ```
160
+ 1) Ensure the provided ``state`` is the same one that your application provided to Shopify in the previous step.
161
+ 2) Ensure the provided hmac is valid. The hmac is signed by Shopify, as explained below in the Verification section.
162
+ 3) Ensure the provided hostname parameter is a valid hostname, ends with myshopify.com, and does not contain characters other than letters (a-z), numbers (0-9), dots, and hyphens.
102
163
 
103
- or if you want a custom redirect_uri:
164
+ If all security checks pass, the authorization code can be exchanged once for a permanent access token. There is a method to make the request and get the token for you. Pass all the params received from the previous call and the method will verify the params, extract the temp code and then request your token:
104
165
 
105
166
  ```ruby
106
- permission_url = session.create_permission_url(scope, "https://my_redirect_uri.com")
167
+ token = shopify_session.request_token(params)
107
168
  ```
108
169
 
109
- 4. Once authorized, the shop redirects the owner to the return URL of your application with a parameter named 'code'. This is a temporary token that the app can exchange for a permanent access token.
110
-
111
- Before you proceed, make sure your application performs the following security checks. If any of the checks fails, your application must reject the request with an error, and must not proceed further.
112
-
113
- * Ensure the provided ``state`` is the same one that your application provided to Shopify during Step 3.
114
- * Ensure the provided hmac is valid. The hmac is signed by Shopify as explained below, in the Verification section.
115
- * Ensure the provided hostname parameter is a valid hostname, ends with myshopify.com, and does not contain characters other than letters (a-z), numbers (0-9), dots, and hyphens.
116
-
117
- If all security checks pass, the authorization code can be exchanged once for a permanent access token. The exchange is made with a request to the shop.
170
+ This method will save the token to the session object and return it. All fields returned by Shopify, other than the access token itself, are stored in the session's `extra` attribute. For a list of all fields returned by Shopify, read [our OAuth documentation](https://shopify.dev/tutorials/authenticate-with-oauth#confirming-installation).
171
+
172
+ If you prefer to exchange the token manually, you can make a POST request to the shop with the following parameters :
118
173
 
119
174
  ```
120
175
  POST https://SHOP_NAME.myshopify.com/admin/oauth/access_token
121
176
  ```
122
177
 
123
- with the following parameters:
124
-
125
178
  * ``client_id`` – Required – The API key for your app
126
179
  * ``client_secret`` – Required – The shared secret for your app
127
180
  * ``code`` – Required – The token you received in step 3
128
181
 
129
- and you'll get your permanent access token back in the response.
182
+ You'll get your permanent access token back in the response.
130
183
 
131
- There is a method to make the request and get the token for you. Pass
132
- all the params received from the previous call and the method will verify
133
- the params, extract the temp code and then request your token:
134
-
135
- ```ruby
136
- token = session.request_token(params)
137
- ```
138
-
139
- This method will save the token to the session object and return it. All fields returned by Shopify, other than the access token itself, are stored in the session's `extra` attribute. For a list of all fields returned by Shopify, read [our OAuth documentation](https://help.shopify.com/api/guides/authentication/oauth#confirming-installation). If you requested an access token that is associated with a specific user, you can retreive information about this user from the `extra` hash:
184
+ If you requested an access token that is associated with a specific user, you can retrieve information about this user from the `extra` hash:
140
185
 
141
186
  ```ruby
142
187
  # a list of all granted scopes
143
- granted_scopes = session.extra['scope']
188
+ granted_scopes = shopify_session.extra['scope']
144
189
  # a hash containing the user information
145
- user = session.extra['associated_user']
190
+ user = shopify_session.extra['associated_user']
146
191
  # the access scopes available to this user, which may be a subset of the access scopes granted to this app.
147
- active_scopes = session.extra['associated_user_scope']
192
+ active_scopes = shopify_session.extra['associated_user_scope']
148
193
  # the time at which this token expires; this is automatically converted from 'expires_in' returned by Shopify
149
- expires_at = session.extra['expires_at']
194
+ expires_at = shopify_session.extra['expires_at']
150
195
  ```
151
196
 
152
- For the security of your application, after retrieving an access token you must validate the following:
153
- 1) The list of scopes in `session.extra['scope']` is the same as you requested.
154
- 2) If you requested an online-mode access token, `session.extra['associated_user']` must be present.
155
- Failing either of these tests means the end-user may have tampered with the url parameters during the OAuth authentication phase. You should avoid using this access token and revoke it immediately. If you use the [`omniauth-shopify-oauth2`](https://github.com/Shopify/omniauth-shopify-oauth2) gem these checks are done automatically for you.
197
+ For the security of your application, after retrieving an access token, you must validate the following:
198
+ 1) The list of scopes in `shopify_session.extra['scope']` is the same as you requested.
199
+ 2) If you requested an online-mode access token, `shopify_session.extra['associated_user']` must be present.
200
+ Failing either of these tests means the end-user may have tampered with the URL parameters during the OAuth authentication phase. You should avoid using this access token and revoke it immediately. If you use the [`omniauth-shopify-oauth2`](https://github.com/Shopify/omniauth-shopify-oauth2) gem, these checks are done automatically for you.
201
+
202
+ ### 5) Activating the session
156
203
 
157
- For future sessions simply pass in the `token` and `extra` hash (optional) when creating the session object:
204
+ Once you have a token, simply pass in the `token` and `extra` hash (optional) when creating the session object:
158
205
 
159
206
  ```ruby
160
- session = ShopifyAPI::Session.new("SHOP_NAME.myshopify.com", token, extra)
207
+ shopify_session = ShopifyAPI::Session.new(domain: "#{SHOP_NAME}.myshopify.com", token: token, api_version: api_version, extra: extra)
161
208
  ```
162
209
 
163
- 5. The session must be activated before use:
210
+ The session must be activated before use:
164
211
 
165
212
  ```ruby
166
- ShopifyAPI::Base.activate_session(session)
213
+ ShopifyAPI::Base.activate_session(shopify_session)
167
214
  ```
168
215
 
169
- 6. Now you're ready to make authorized API requests to your shop! Data is returned as ActiveResource instances:
216
+ ### 6A) Making requests to the GraphQL API
217
+
218
+ The GraphQL API is the recommended way to consume the Shopify API. It is more fully-featured than REST, more performant, and future-proof. Whenever possible, GraphQL should be used to consume the Shopify API.
219
+
220
+ ###### Note: the GraphQL client has improved and changed in version 9.0. See the [client documentation](docs/graphql.md) for full usage details and a [migration guide](docs/graphql.md#migration-guide).
221
+
222
+ This library also supports Shopify's [GraphQL Admin API](https://shopify.dev/docs/admin-api/graphql/reference)
223
+ via integration with the [graphql-client](https://github.com/github/graphql-client) gem.
224
+ The authentication process (steps 1-5 under [Getting Started](#getting-started))
225
+ is identical. Once your session is activated, simply access the GraphQL client
226
+ and use `parse` and `query` as defined by
227
+ [graphql-client](https://github.com/github/graphql-client#defining-queries).
228
+
229
+ ```ruby
230
+ client = ShopifyAPI::GraphQL.client
231
+
232
+ SHOP_NAME_QUERY = client.parse <<-'GRAPHQL'
233
+ {
234
+ shop {
235
+ name
236
+ }
237
+ }
238
+ GRAPHQL
239
+
240
+ result = client.query(SHOP_NAME_QUERY)
241
+ result.data.shop.name
242
+ ```
243
+
244
+ [GraphQL client documentation](docs/graphql.md)
245
+
246
+ ### 6B) Making requests to the REST API
247
+
248
+ Responses to REST requests are returned as ActiveResource instances:
170
249
 
171
250
  ```ruby
172
251
  shop = ShopifyAPI::Shop.current
@@ -189,31 +268,47 @@ ShopifyAPI uses ActiveResource to communicate with the REST web service. ActiveR
189
268
  Alternatively, you can use #temp to initialize a Session and execute a command which also handles temporarily setting ActiveResource::Base.site:
190
269
 
191
270
  ```ruby
192
- products = ShopifyAPI::Session.temp("SHOP_NAME.myshopify.com", token) { ShopifyAPI::Product.find(:all) }
271
+ products = ShopifyAPI::Session.temp(domain: "#{SHOP_NAME}.myshopify.com", token: token, api_version: api_version) do
272
+ ShopifyAPI::Product.find(:all)
273
+ end
274
+ ```
275
+
276
+ If you would like to run a small number of calls against a different API version you can use this block syntax:
277
+
278
+ ```ruby
279
+ ShopifyAPI::Session.temp(domain: "#{SHOP_NAME}.myshopify.com", token: token, api_version: '2019-04') do
280
+ ShopifyAPI::Product.find(:all) # find call against version `2019-04`
281
+
282
+ ShopifyAPI::Session.with_version(:unstable) do
283
+ ShopifyAPI::Product.find(:all) # find call against version `unstable`
284
+ end
285
+
286
+ ShopifyAPI::Product.find(:all) # find call against version `2019-04`
287
+ end
193
288
  ```
194
289
 
195
- 7. If you want to work with another shop, you'll first need to clear the session:
290
+ If you want to work with another shop, you'll first need to clear the session:
196
291
 
197
292
  ```ruby
198
293
  ShopifyAPI::Base.clear_session
199
294
  ```
200
295
 
201
- ### Console
296
+ ## Console
202
297
 
203
- This package also supports the ``shopify-cli`` executable to make it easy to open up an interactive console to use the API with a shop.
298
+ This package also supports the ``shopify-api`` executable to make it easy to open up an interactive console to use the API with a shop.
204
299
 
205
- 1. Install the ``shopify_cli`` gem.
300
+ 1. Install the ``shopify_api_console`` gem.
206
301
 
207
302
  ```bash
208
- gem install shopify_cli
303
+ gem install shopify_api_console
209
304
  ```
210
305
 
211
- 2. Obtain a private API key and password to use with your shop (step 2 in "Getting Started")
306
+ 2. Obtain a private API key and password to use with your shop (step 2A in "Getting Started")
212
307
 
213
- 3. Use the ``shopify-cli`` script to save the credentials for the shop to quickly log in.
308
+ 3. Use the ``shopify-api`` script to save the credentials for the shop to quickly login.
214
309
 
215
310
  ```bash
216
- shopify-cli add yourshopname
311
+ shopify-api add yourshopname
217
312
  ```
218
313
 
219
314
  Follow the prompts for the shop domain, API key and password.
@@ -221,35 +316,332 @@ gem install shopify_cli
221
316
  4. Start the console for the connection.
222
317
 
223
318
  ```bash
224
- shopify-cli console
319
+ shopify-api console
225
320
  ```
226
321
 
227
322
  5. To see the full list of commands, type:
228
323
 
229
324
  ```bash
230
- shopify-cli help
325
+ shopify-api help
231
326
  ```
232
327
 
233
- ## Threadsafety
328
+ ## Thread safety
234
329
 
235
330
  ActiveResource is threadsafe as of version 4.1 (which works with Rails 4.x and above).
236
331
 
237
- If you were previously using Shopify's [activeresource fork](https://github.com/shopify/activeresource) then you should remove it and use ActiveResource 4.1.
332
+ If you were previously using Shopify's [activeresource fork](https://github.com/shopify/activeresource), then you should remove it and use ActiveResource 4.1.
333
+
334
+ ## Bulk Operations
335
+
336
+ With the GraphQL Admin API, you can use bulk operations to asynchronously fetch data in bulk. The API is designed to reduce complexity and improve performance when dealing with large volumes of data.
337
+
338
+ Instead of manually paginating results and managing a client-side throttle, you can instead run a bulk query operation. Shopify’s infrastructure does the hard work of executing your query, and then provides you with a URL where you can download all of the data.
339
+
340
+ Apps are limited to running a single bulk operation at a time per shop. When the operation is complete, the results are delivered in the form of a JSONL file that Shopify makes available at a URL.
341
+
342
+ ### Example
343
+
344
+ The following mutation queries the products connection and returns each product's ID and title.
238
345
 
239
- ## Using Development Version
346
+ #### 1) Start the bulk operation
347
+
348
+ ```ruby
349
+ client = ShopifyAPI::GraphQL.client
350
+
351
+ PRODUCTS_BULK_QUERY = client.parse <<-'GRAPHQL'
352
+ mutation {
353
+ bulkOperationRunQuery(
354
+ query: """
355
+ {
356
+ products {
357
+ edges {
358
+ node {
359
+ id
360
+ title
361
+ }
362
+ }
363
+ }
364
+ }
365
+ """
366
+ ) {
367
+ bulkOperation {
368
+ id
369
+ status
370
+ }
371
+ userErrors {
372
+ field
373
+ message
374
+ }
375
+ }
376
+ }
377
+ GRAPHQL
378
+
379
+ result = client.query(PRODUCTS_BULK_QUERY)
380
+ ```
381
+ #### Step 2) Poll the status of the bulk operation
382
+
383
+ While the operation is running, you need to poll to see its progress using the `currentBulkOperation` field. The `objectCount` field increments to indicate the operation's progress, and the `status` field returns whether the operation is completed.
384
+
385
+ ```ruby
386
+ BULK_POLL_QUERY = client.parse <<-'GRAPHQL'
387
+ query {
388
+ currentBulkOperation {
389
+ id
390
+ status
391
+ errorCode
392
+ createdAt
393
+ completedAt
394
+ objectCount
395
+ fileSize
396
+ url
397
+ partialDataUrl
398
+ }
399
+ }
400
+ GRAPHQL
401
+
402
+ result = client.query(BULK_POLL_QUERY)
403
+ ```
404
+
405
+ The JSON response of a completed query will look like this :
406
+
407
+ ```json
408
+ {
409
+ "data": {
410
+ "currentBulkOperation": {
411
+ "id": "gid:\/\/shopify\/BulkOperation\/720918",
412
+ "status": "COMPLETED",
413
+ "errorCode": null,
414
+ "createdAt": "2019-08-29T17:16:35Z",
415
+ "completedAt": "2019-08-29T17:23:25Z",
416
+ "objectCount": "57",
417
+ "fileSize": "358",
418
+ "url": "https:\/\/storage.googleapis.com\/shopify\/dyfkl3g72empyyoenvmtidlm9o4g?<params>",
419
+ "partialDataUrl": null
420
+ }
421
+ },
422
+ ...
423
+ }
424
+ ```
425
+
426
+ #### Step 3) Retrieve your data
427
+
428
+ Since bulk operations are specifically designed to fetch large datasets, we’ve chosen the [JSON Lines](http://jsonlines.org/) (JSONL) format for the response data so that clients have more flexibility in how they consume the data. JSONL is similar to JSON, but each line is a valid JSON object. The file can be parsed one line at a time by using file streaming functionality to avoid issues with memory consumption.
429
+
430
+ A JSONL output file is available for download at the URL specified in the `url` field when the operation completes.
431
+
432
+ Each line in the file is a node object returned in a connection. If a node has a nested connection, then each child node is extracted into a new object on the next line. Below is an example of a JSONL file.
433
+
434
+ ```json
435
+ {"id":"gid://shopify/Product/1921569226808"}
436
+ {"id":"gid://shopify/ProductVariant/19435458986040","title":"70","__parentId":"gid://shopify/Product/1921569226808"}
437
+ {"id":"gid://shopify/Product/1921569259576"}
438
+ {"id":"gid://shopify/ProductVariant/19435459018808","title":"34","__parentId":"gid://shopify/Product/1921569259576"}
439
+ {"id":"gid://shopify/Product/1921569292344"}
440
+ {"id":"gid://shopify/ProductVariant/19435459051576","title":"Default Title","__parentId":"gid://shopify/Product/1921569292344"}
441
+ {"id":"gid://shopify/Product/1921569325112"}
442
+ {"id":"gid://shopify/ProductVariant/19435459084344","title":"36","__parentId":"gid://shopify/Product/1921569325112"}
443
+ {"id":"gid://shopify/Product/1921569357880"}
444
+ {"id":"gid://shopify/ProductVariant/19435459117112","title":"47","__parentId":"gid://shopify/Product/1921569357880"}
445
+ {"id":"gid://shopify/ProductVariant/19435458986123","title":"52","__parentId":"gid://shopify/Product/1921569226808"}
446
+ ```
447
+
448
+ Here's a simple example in Ruby to demonstrate the proper way of loading and parsing a JSONL file:
449
+
450
+ ```ruby
451
+ # Efficient: reads the file a single line at a time
452
+ File.open(file) do |f|
453
+ f.each do |line|
454
+ JSON.parse(line)
455
+ end
456
+ end
457
+
458
+ # Inefficient: reads the entire file into memory
459
+ jsonl = File.read(file)
460
+
461
+ jsonl.each_line do |line|
462
+ JSON.parse(line)
463
+ end
464
+ ```
465
+
466
+ ## Pagination
467
+
468
+ Shopify uses [Relative cursor-based pagination](https://shopify.dev/tutorials/make-paginated-requests-to-rest-admin-api) to provide more than a single page of results.
469
+
470
+ ```ruby
471
+ products = ShopifyAPI::Product.find(:all, params: { limit: 50 })
472
+ process_products(products)
473
+ while products.next_page?
474
+ products = products.fetch_next_page
475
+ process_products(products)
476
+ end
477
+ ```
478
+
479
+ If you want cursor-based pagination to work across page loads, or wish to distribute workload across multiple background jobs, you can use #next_page_info or #previous_page_info methods that return strings:
480
+
481
+ ```
482
+ first_batch_products = ShopifyAPI::Product.find(:all, params: { limit: 50 })
483
+ second_batch_products = ShopifyAPI::Product.find(:all, params: { limit: 50, page_info: first_batch_products.next_page_info })
484
+ ...
485
+ ```
486
+
487
+ Relative cursor pagination is currently available for all endpoints using the `2019-10` and later API versions.
488
+
489
+ Apps using older versions of the API may have used page-based pagination (deprecated starting in 2019-10) :
490
+
491
+ ```ruby
492
+ page = 1
493
+ products = ShopifyAPI::Product.find(:all, params: { limit: 50, page: page })
494
+ process_products(products)
495
+ while(products.count == 50)
496
+ page += 1
497
+ products = ShopifyAPI::Product.find(:all, params: { limit: 50, page: page })
498
+ process_products(products)
499
+ end
500
+ ```
501
+
502
+ # Breaking Change Notices
503
+
504
+ ## Breaking change notice for version 8.0.0
505
+
506
+ Version 7.0.0 introduced ApiVersion, and known versions were hardcoded into the gem. Manually defining API versions is no longer required for versions not listed in the gem. Version 8.0.0 removes the following:
507
+ * `ShopifyAPI::ApiVersion::Unstable`
508
+ * `ShopifyAPI::ApiVersion::Release`
509
+ * `ShopifyAPI::ApiVersion.define_version`
510
+
511
+ The following methods on `ApiVersion` have been deprecated:
512
+ - `.coerce_to_version` deprecated. use `.find_version`
513
+ - `.define_known_versions` deprecated. Use `.fetch_known_versions`
514
+ - `.clear_defined_versions` deprecated. Use. `.clear_known_versions`
515
+ - `.latest_stable_version` deprecated. Use `ShopifyAPI::Meta.admin_versions.find(&:latest_supported)` (this fetches info from Shopify servers. No authentication required.)
516
+ - `#name` deprecated. Use `#handle`
517
+ - `#stable?` deprecated. Use `#supported?`
518
+
519
+ Version 8.0.0 introduces a _version lookup mode_. By default, `ShopifyAPI::ApiVersion.version_lookup_mode` is `:define_on_unknown`. When setting the api_version on `Session` or `Base`, the `api_version` attribute takes a version handle (i.e. `'2019-07'` or `:unstable`) and sets an instance of `ShopifyAPI::ApiVersion` matching the handle. When the version_lookup_mode is set to `:define_on_unknown`, any handle will naïvely create a new `ApiVersion` if the version is not in the known versions returned by `ShopifyAPI::ApiVersion.versions`.
520
+
521
+ To ensure you're setting only known and active versions, call :
522
+
523
+ ```ruby
524
+ ShopifyAPI::ApiVersion.version_lookup_mode = :raise_on_unknown
525
+ ShopifyAPI::ApiVersion.fetch_known_versions
526
+ ```
527
+
528
+ Known and active versions are fetched from https://app.shopify.com/services/apis.json and cached. Trying to use a version outside this cached set will raise an error. To switch back to naïve lookup and create a version if one is not found, call `ShopifyAPI::ApiVersion.version_lookup_mode = :define_on_unknown`.
529
+
530
+
531
+ ## Breaking change notice for version 7.0.0
532
+
533
+ ### Changes to ShopifyAPI::Session
534
+ When creating sessions, `api_version`is now required and uses keyword arguments.
535
+
536
+ To upgrade your use of ShopifyAPI you will need to make the following changes.
537
+
538
+ ```ruby
539
+ ShopifyAPI::Session.new(domain, token, extras)
540
+ ```
541
+ is now
542
+ ```ruby
543
+ ShopifyAPI::Session.new(domain: domain, token: token, api_version: api_version, extras: extras)
544
+ ```
545
+ Note `extras` is still optional. The other arguments are required.
546
+
547
+ ```ruby
548
+ ShopifyAPI::Session.temp(domain, token, extras) do
549
+ ...
550
+ end
551
+ ```
552
+ is now
553
+ ```ruby
554
+ ShopifyAPI::Session.temp(domain: domain, token: token, api_version: api_version) do
555
+ ...
556
+ end
557
+ ```
558
+
559
+ For example, if you want to use the `2019-04` version, you will create a session like this:
560
+ ```ruby
561
+ session = ShopifyAPI::Session.new(domain: domain, token: token, api_version: '2019-04')
562
+ ```
563
+ if you want to use the `unstable` version, you will create a session like this:
564
+ ```ruby
565
+ session = ShopifyAPI::Session.new(domain: domain, token: token, api_version: :unstable)
566
+ ```
567
+
568
+ ### Changes to how to define resources
569
+
570
+ If you have defined or customized Resources, classes that extend `ShopifyAPI::Base`:
571
+ The use of `self.prefix =` has been deprecated; you should now use `self.resource =` and not include `/admin`.
572
+ For example, if you specified a prefix like this before:
573
+ ```ruby
574
+ class MyResource < ShopifyAPI::Base
575
+ self.prefix = '/admin/shop/'
576
+ end
577
+ ```
578
+ You will update this to:
579
+ ```ruby
580
+ class MyResource < ShopifyAPI::Base
581
+ self.resource_prefix = 'shop/'
582
+ end
583
+ ```
584
+
585
+ ### URL construction
586
+
587
+ If you have specified any full paths for API calls in find
588
+ ```ruby
589
+ def self.current(options={})
590
+ find(:one, options.merge(from: "/admin/shop.#{format.extension}"))
591
+ end
592
+ ```
593
+ would be changed to
594
+
595
+ ```ruby
596
+ def self.current(options = {})
597
+ find(:one, options.merge(
598
+ from: api_version.construct_api_path("shop.#{format.extension}")
599
+ ))
600
+ end
601
+ ```
602
+
603
+ ### URLs that have not changed
604
+
605
+ - OAuth URLs for `authorize`, getting the `access_token` from a code, `access_scopes`, and using a `refresh_token` have _not_ changed.
606
+ - get: `/admin/oauth/authorize`
607
+ - post: `/admin/oauth/access_token`
608
+ - get: `/admin/oauth/access_scopes`
609
+ - URLs for the merchant’s web admin have _not_ changed. For example: to send the merchant to the product page the url is still `/admin/product/<id>`
610
+
611
+ # Using Development Version
240
612
 
241
613
  Download the source code and run:
242
614
 
243
615
  ```bash
244
- rake install
616
+ bundle install
617
+ bundle exec rake test
245
618
  ```
246
619
 
247
- ## Additional Resources
620
+ or if you'd rather use docker just run:
621
+ ```bash
622
+ docker run -it --name shopify_api -v "$PWD:/shopify_api" -w="/shopify_api" ruby:2.6 bundle install
623
+ docker exec -it shopify_api bash
624
+ ```
625
+
626
+ or you can even use our automated rake task for docker:
627
+ ```bash
628
+ bundle exec rake docker
629
+ ```
630
+
631
+ # Logging
632
+
633
+ Enable ActiveResource's logger with
634
+
635
+ `export SHOPIFY_LOG_PATH={your_log_path}`
636
+
637
+ This will log to a file at the given path, relative to the current project directory.
248
638
 
249
- API Docs: https://help.shopify.com/api/reference
639
+ # Additional Resources
250
640
 
251
- Ask questions on the forums: http://ecommerce.shopify.com/c/shopify-apis-and-technology
641
+ * [GraphQL API Reference](https://shopify.dev/docs/admin-api/graphql/reference)
642
+ * [REST API Reference](https://shopify.dev/docs/admin-api/rest/reference)
643
+ * [Ask questions on the forums](https://community.shopify.com/c/Shopify-Community/ct-p/en?profile.language=en)
252
644
 
253
- ## Copyright
645
+ # Copyright
254
646
 
255
647
  Copyright (c) 2014 "Shopify Inc.". See LICENSE for details.