disco_app 0.9.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (332) hide show
  1. checksums.yaml +7 -0
  2. data/Rakefile +37 -0
  3. data/app/assets/images/disco_app/icon.svg +1 -0
  4. data/app/assets/images/disco_app/icons.svg +0 -0
  5. data/app/assets/javascripts/disco_app/components/custom/filterable_shop_list.js.jsx +61 -0
  6. data/app/assets/javascripts/disco_app/components/custom/inline-radio-options.es6.jsx +59 -0
  7. data/app/assets/javascripts/disco_app/components/custom/rules-editor.es6.jsx +417 -0
  8. data/app/assets/javascripts/disco_app/components/custom/shop_filter_query.js.jsx +13 -0
  9. data/app/assets/javascripts/disco_app/components/custom/shop_filter_tab.js.jsx +34 -0
  10. data/app/assets/javascripts/disco_app/components/custom/shop_filter_tabs.js.jsx +21 -0
  11. data/app/assets/javascripts/disco_app/components/custom/shop_list.js.jsx +142 -0
  12. data/app/assets/javascripts/disco_app/components/custom/shop_row.js.jsx +43 -0
  13. data/app/assets/javascripts/disco_app/components/custom/shopify_admin_link.js.jsx +29 -0
  14. data/app/assets/javascripts/disco_app/components/ui-kit/cards/card-footer.es6.jsx +11 -0
  15. data/app/assets/javascripts/disco_app/components/ui-kit/cards/card-header.es6.jsx +11 -0
  16. data/app/assets/javascripts/disco_app/components/ui-kit/cards/card-section.es6.jsx +30 -0
  17. data/app/assets/javascripts/disco_app/components/ui-kit/cards/card.es6.jsx +16 -0
  18. data/app/assets/javascripts/disco_app/components/ui-kit/cards/cart-section-title.es6.jsx +9 -0
  19. data/app/assets/javascripts/disco_app/components/ui-kit/forms/base_form.es6.jsx +72 -0
  20. data/app/assets/javascripts/disco_app/components/ui-kit/forms/base_input.es6.jsx +20 -0
  21. data/app/assets/javascripts/disco_app/components/ui-kit/forms/button.es6.jsx +13 -0
  22. data/app/assets/javascripts/disco_app/components/ui-kit/forms/input-radio.es6.jsx +30 -0
  23. data/app/assets/javascripts/disco_app/components/ui-kit/forms/input-select.es6.jsx +39 -0
  24. data/app/assets/javascripts/disco_app/components/ui-kit/forms/input-text.es6.jsx +59 -0
  25. data/app/assets/javascripts/disco_app/components/ui-kit/forms/input-textarea.es6.jsx +48 -0
  26. data/app/assets/javascripts/disco_app/components/ui-kit/icons/icon-chevron.es6.jsx +33 -0
  27. data/app/assets/javascripts/disco_app/components/ui-kit/icons/next-icon.es6.jsx +18 -0
  28. data/app/assets/javascripts/disco_app/components/ui-kit/input_select.es6.jsx +21 -0
  29. data/app/assets/javascripts/disco_app/components/ui-kit/tables/table.es6.jsx +22 -0
  30. data/app/assets/javascripts/disco_app/components/ui-kit/ui-layout/ui-annotated-section.es6.jsx +29 -0
  31. data/app/assets/javascripts/disco_app/components/ui-kit/ui-layout/ui-empty-state.es6.jsx +35 -0
  32. data/app/assets/javascripts/disco_app/components/ui-kit/ui-layout/ui-footer-help.es6.jsx +13 -0
  33. data/app/assets/javascripts/disco_app/components/ui-kit/ui-layout/ui-layout-item.es6.jsx +11 -0
  34. data/app/assets/javascripts/disco_app/components/ui-kit/ui-layout/ui-layout-section.es6.jsx +19 -0
  35. data/app/assets/javascripts/disco_app/components/ui-kit/ui-layout/ui-layout-sections.es6.jsx +11 -0
  36. data/app/assets/javascripts/disco_app/components/ui-kit/ui-layout/ui-layout.es6.jsx +11 -0
  37. data/app/assets/javascripts/disco_app/components/ui-kit/ui-layout/ui-page-actions.es6.jsx +48 -0
  38. data/app/assets/javascripts/disco_app/components.js +2 -0
  39. data/app/assets/javascripts/disco_app/disco_app.js +9 -0
  40. data/app/assets/javascripts/disco_app/frame.js +152 -0
  41. data/app/assets/javascripts/disco_app/shopify-turbolinks.js +7 -0
  42. data/app/assets/javascripts/disco_app/ui-kit.js +1 -0
  43. data/app/assets/stylesheets/disco_app/admin/_header.scss +75 -0
  44. data/app/assets/stylesheets/disco_app/admin/_layout.scss +32 -0
  45. data/app/assets/stylesheets/disco_app/admin/_nav.scss +184 -0
  46. data/app/assets/stylesheets/disco_app/admin.scss +11 -0
  47. data/app/assets/stylesheets/disco_app/disco_app.scss +19 -0
  48. data/app/assets/stylesheets/disco_app/frame/_buttons.scss +54 -0
  49. data/app/assets/stylesheets/disco_app/frame/_forms.scss +26 -0
  50. data/app/assets/stylesheets/disco_app/frame/_layout.scss +77 -0
  51. data/app/assets/stylesheets/disco_app/frame/_type.scss +25 -0
  52. data/app/assets/stylesheets/disco_app/frame.scss +10 -0
  53. data/app/assets/stylesheets/disco_app/mixins/_flexbox.scss +400 -0
  54. data/app/assets/stylesheets/disco_app/ui-kit/_ui-empty-state.scss +121 -0
  55. data/app/assets/stylesheets/disco_app/ui-kit/_ui-footer-help.scss +28 -0
  56. data/app/assets/stylesheets/disco_app/ui-kit/_ui-icons.scss +28 -0
  57. data/app/assets/stylesheets/disco_app/ui-kit/_ui-kit.scss +5113 -0
  58. data/app/assets/stylesheets/disco_app/ui-kit/_ui-layout.scss +15 -0
  59. data/app/assets/stylesheets/disco_app/ui-kit/_ui-page-actions.scss +21 -0
  60. data/app/assets/stylesheets/disco_app/ui-kit/_ui-tabs.scss +75 -0
  61. data/app/assets/stylesheets/disco_app/ui-kit/_ui-type.scss +13 -0
  62. data/app/controllers/disco_app/admin/app_settings_controller.rb +3 -0
  63. data/app/controllers/disco_app/admin/application_controller.rb +3 -0
  64. data/app/controllers/disco_app/admin/concerns/app_settings_controller.rb +24 -0
  65. data/app/controllers/disco_app/admin/concerns/authenticated_controller.rb +20 -0
  66. data/app/controllers/disco_app/admin/concerns/plans_controller.rb +54 -0
  67. data/app/controllers/disco_app/admin/concerns/shops_controller.rb +7 -0
  68. data/app/controllers/disco_app/admin/concerns/subscriptions_controller.rb +29 -0
  69. data/app/controllers/disco_app/admin/plans_controller.rb +3 -0
  70. data/app/controllers/disco_app/admin/resources/shops_controller.rb +3 -0
  71. data/app/controllers/disco_app/admin/shops_controller.rb +3 -0
  72. data/app/controllers/disco_app/admin/subscriptions_controller.rb +3 -0
  73. data/app/controllers/disco_app/charges_controller.rb +47 -0
  74. data/app/controllers/disco_app/concerns/app_proxy_controller.rb +40 -0
  75. data/app/controllers/disco_app/concerns/authenticated_controller.rb +56 -0
  76. data/app/controllers/disco_app/concerns/carrier_request_controller.rb +21 -0
  77. data/app/controllers/disco_app/frame_controller.rb +9 -0
  78. data/app/controllers/disco_app/install_controller.rb +27 -0
  79. data/app/controllers/disco_app/subscriptions_controller.rb +32 -0
  80. data/app/controllers/disco_app/webhooks_controller.rb +46 -0
  81. data/app/controllers/sessions_controller.rb +28 -0
  82. data/app/helpers/disco_app/application_helper.rb +50 -0
  83. data/app/jobs/disco_app/app_installed_job.rb +3 -0
  84. data/app/jobs/disco_app/app_uninstalled_job.rb +3 -0
  85. data/app/jobs/disco_app/concerns/app_installed_job.rb +39 -0
  86. data/app/jobs/disco_app/concerns/app_uninstalled_job.rb +20 -0
  87. data/app/jobs/disco_app/concerns/render_asset_group_job.rb +8 -0
  88. data/app/jobs/disco_app/concerns/shop_update_job.rb +13 -0
  89. data/app/jobs/disco_app/concerns/subscription_changed_job.rb +7 -0
  90. data/app/jobs/disco_app/concerns/synchronise_carrier_service_job.rb +52 -0
  91. data/app/jobs/disco_app/concerns/synchronise_webhooks_job.rb +61 -0
  92. data/app/jobs/disco_app/render_asset_group_job.rb +3 -0
  93. data/app/jobs/disco_app/shop_job.rb +27 -0
  94. data/app/jobs/disco_app/shop_update_job.rb +3 -0
  95. data/app/jobs/disco_app/subscription_changed_job.rb +3 -0
  96. data/app/jobs/disco_app/synchronise_carrier_service_job.rb +3 -0
  97. data/app/jobs/disco_app/synchronise_webhooks_job.rb +3 -0
  98. data/app/models/disco_app/app_settings.rb +3 -0
  99. data/app/models/disco_app/application_charge.rb +18 -0
  100. data/app/models/disco_app/concerns/app_settings.rb +7 -0
  101. data/app/models/disco_app/concerns/plan.rb +26 -0
  102. data/app/models/disco_app/concerns/plan_code.rb +15 -0
  103. data/app/models/disco_app/concerns/renders_assets.rb +166 -0
  104. data/app/models/disco_app/concerns/shop.rb +63 -0
  105. data/app/models/disco_app/concerns/subscription.rb +60 -0
  106. data/app/models/disco_app/concerns/synchronises.rb +39 -0
  107. data/app/models/disco_app/plan.rb +3 -0
  108. data/app/models/disco_app/plan_code.rb +3 -0
  109. data/app/models/disco_app/recurring_application_charge.rb +18 -0
  110. data/app/models/disco_app/session_storage.rb +18 -0
  111. data/app/models/disco_app/shop.rb +3 -0
  112. data/app/models/disco_app/subscription.rb +3 -0
  113. data/app/resources/disco_app/admin/resources/concerns/shop_resource.rb +100 -0
  114. data/app/resources/disco_app/admin/resources/shop_resource.rb +4 -0
  115. data/app/services/disco_app/carrier_request_service.rb +15 -0
  116. data/app/services/disco_app/charges_service.rb +81 -0
  117. data/app/services/disco_app/proxy_service.rb +17 -0
  118. data/app/services/disco_app/subscription_service.rb +46 -0
  119. data/app/services/disco_app/webhook_service.rb +30 -0
  120. data/app/views/disco_app/admin/app_settings/edit.html.erb +5 -0
  121. data/app/views/disco_app/admin/plans/_form.html.erb +72 -0
  122. data/app/views/disco_app/admin/plans/_plan_code_fields.html.erb +15 -0
  123. data/app/views/disco_app/admin/plans/edit.html.erb +7 -0
  124. data/app/views/disco_app/admin/plans/index.html.erb +43 -0
  125. data/app/views/disco_app/admin/plans/new.html.erb +7 -0
  126. data/app/views/disco_app/admin/shops/index.html.erb +13 -0
  127. data/app/views/disco_app/admin/subscriptions/edit.html.erb +33 -0
  128. data/app/views/disco_app/charges/activate.html.erb +1 -0
  129. data/app/views/disco_app/charges/create.html.erb +1 -0
  130. data/app/views/disco_app/charges/new.html.erb +12 -0
  131. data/app/views/disco_app/frame/frame.html.erb +36 -0
  132. data/app/views/disco_app/install/installing.html.erb +7 -0
  133. data/app/views/disco_app/install/uninstalling.html.erb +1 -0
  134. data/app/views/disco_app/proxy_errors/404.html.erb +1 -0
  135. data/app/views/disco_app/shared/_card.html.erb +14 -0
  136. data/app/views/disco_app/shared/_icons.html.erb +3 -0
  137. data/app/views/disco_app/shared/_section.html.erb +17 -0
  138. data/app/views/disco_app/subscriptions/new.html.erb +25 -0
  139. data/app/views/layouts/admin/_nav_items.erb +20 -0
  140. data/app/views/layouts/admin.html.erb +67 -0
  141. data/app/views/layouts/application.html.erb +18 -0
  142. data/app/views/layouts/embedded_app.html.erb +44 -0
  143. data/app/views/layouts/embedded_app_modal.html.erb +28 -0
  144. data/app/views/sessions/new.html.erb +26 -0
  145. data/config/routes.rb +48 -0
  146. data/db/migrate/20150525000000_create_shops_if_not_existent.rb +15 -0
  147. data/db/migrate/20150525162112_add_status_to_shops.rb +5 -0
  148. data/db/migrate/20150525171422_add_meta_to_shops.rb +11 -0
  149. data/db/migrate/20150629210346_add_charge_status_to_shop.rb +5 -0
  150. data/db/migrate/20150814214025_add_more_meta_to_shops.rb +15 -0
  151. data/db/migrate/20151017231302_create_disco_app_plans.rb +13 -0
  152. data/db/migrate/20151017232027_create_disco_app_subscriptions.rb +15 -0
  153. data/db/migrate/20151017234409_move_shop_to_disco_app_engine.rb +5 -0
  154. data/db/migrate/20160112233706_create_disco_app_sessions.rb +12 -0
  155. data/db/migrate/20160113194418_add_shop_id_to_disco_app_sessions.rb +6 -0
  156. data/db/migrate/20160223111044_create_disco_app_settings.rb +8 -0
  157. data/db/migrate/20160301223215_update_plans.rb +22 -0
  158. data/db/migrate/20160301224558_update_subscriptions.rb +13 -0
  159. data/db/migrate/20160302104816_create_disco_app_recurring_application_charges.rb +14 -0
  160. data/db/migrate/20160302105259_create_disco_app_application_charges.rb +14 -0
  161. data/db/migrate/20160302134728_drop_charge_status_from_shops.rb +5 -0
  162. data/db/migrate/20160302142941_add_shopify_attributes_to_charges.rb +8 -0
  163. data/db/migrate/20160331093148_create_disco_app_plan_codes.rb +14 -0
  164. data/db/migrate/20160401044420_add_status_to_plan_codes.rb +5 -0
  165. data/db/migrate/20160401045551_add_amount_and_plan_code_to_disco_app_subscriptions.rb +7 -0
  166. data/db/migrate/20160425205211_add_source_to_disco_app_subscriptions.rb +5 -0
  167. data/db/migrate/20160426033520_add_trial_period_days_to_disco_app_subscriptions.rb +5 -0
  168. data/db/migrate/20160513140727_add_name_to_disco_app_shops.rb +5 -0
  169. data/db/migrate/20160521135510_move_shop_to_synchronises.rb +61 -0
  170. data/lib/disco_app/configuration.rb +39 -0
  171. data/lib/disco_app/constants.rb +4 -0
  172. data/lib/disco_app/engine.rb +26 -0
  173. data/lib/disco_app/session.rb +14 -0
  174. data/lib/disco_app/support/file_fixtures.rb +23 -0
  175. data/lib/disco_app/test_help.rb +11 -0
  176. data/lib/disco_app/version.rb +3 -0
  177. data/lib/disco_app.rb +7 -0
  178. data/lib/generators/disco_app/USAGE +5 -0
  179. data/lib/generators/disco_app/disco_app_generator.rb +235 -0
  180. data/lib/generators/disco_app/templates/assets/javascripts/application.js +17 -0
  181. data/lib/generators/disco_app/templates/assets/javascripts/components.js +3 -0
  182. data/lib/generators/disco_app/templates/assets/stylesheets/application.scss +5 -0
  183. data/lib/generators/disco_app/templates/config/database.yml.tt +20 -0
  184. data/lib/generators/disco_app/templates/config/newrelic.yml +26 -0
  185. data/lib/generators/disco_app/templates/config/puma.rb +15 -0
  186. data/lib/generators/disco_app/templates/controllers/home_controller.rb +7 -0
  187. data/lib/generators/disco_app/templates/initializers/disco_app.rb +19 -0
  188. data/lib/generators/disco_app/templates/initializers/rollbar.rb +12 -0
  189. data/lib/generators/disco_app/templates/initializers/session_store.rb +2 -0
  190. data/lib/generators/disco_app/templates/initializers/shopify_app.rb +7 -0
  191. data/lib/generators/disco_app/templates/initializers/shopify_session_repository.rb +7 -0
  192. data/lib/generators/disco_app/templates/root/CHECKS +4 -0
  193. data/lib/generators/disco_app/templates/root/Procfile +2 -0
  194. data/lib/generators/disco_app/templates/views/home/index.html.erb +2 -0
  195. data/lib/tasks/carrier_service.rake +10 -0
  196. data/lib/tasks/database.rake +8 -0
  197. data/lib/tasks/sessions.rake +9 -0
  198. data/lib/tasks/shops.rake +10 -0
  199. data/lib/tasks/start.rake +3 -0
  200. data/lib/tasks/webhooks.rake +10 -0
  201. data/test/controllers/disco_app/admin/shops_controller_test.rb +54 -0
  202. data/test/controllers/disco_app/charges_controller_test.rb +99 -0
  203. data/test/controllers/disco_app/install_controller_test.rb +50 -0
  204. data/test/controllers/disco_app/subscriptions_controller_test.rb +68 -0
  205. data/test/controllers/disco_app/webhooks_controller_test.rb +58 -0
  206. data/test/controllers/home_controller_test.rb +92 -0
  207. data/test/controllers/proxy_controller_test.rb +42 -0
  208. data/test/disco_app_test.rb +7 -0
  209. data/test/dummy/Rakefile +6 -0
  210. data/test/dummy/app/assets/javascripts/application.js +17 -0
  211. data/test/dummy/app/assets/stylesheets/application.scss +5 -0
  212. data/test/dummy/app/controllers/application_controller.rb +6 -0
  213. data/test/dummy/app/controllers/disco_app/admin/shops_controller.rb +8 -0
  214. data/test/dummy/app/controllers/home_controller.rb +7 -0
  215. data/test/dummy/app/controllers/proxy_controller.rb +8 -0
  216. data/test/dummy/app/helpers/application_helper.rb +2 -0
  217. data/test/dummy/app/jobs/disco_app/app_installed_job.rb +16 -0
  218. data/test/dummy/app/jobs/disco_app/app_uninstalled_job.rb +11 -0
  219. data/test/dummy/app/jobs/products_create_job.rb +7 -0
  220. data/test/dummy/app/jobs/products_delete_job.rb +7 -0
  221. data/test/dummy/app/jobs/products_update_job.rb +7 -0
  222. data/test/dummy/app/models/disco_app/shop.rb +15 -0
  223. data/test/dummy/app/models/js_configuration.rb +8 -0
  224. data/test/dummy/app/models/product.rb +6 -0
  225. data/test/dummy/app/models/widget_configuration.rb +10 -0
  226. data/test/dummy/app/views/assets/script_tag.js.erb +1 -0
  227. data/test/dummy/app/views/assets/test.js.erb +1 -0
  228. data/test/dummy/app/views/assets/widget.js.erb +2 -0
  229. data/test/dummy/app/views/assets/widget.scss.erb +3 -0
  230. data/test/dummy/app/views/home/index.html.erb +2 -0
  231. data/test/dummy/app/views/snippets/widget.liquid.erb +1 -0
  232. data/test/dummy/bin/bundle +3 -0
  233. data/test/dummy/bin/rails +4 -0
  234. data/test/dummy/bin/rake +4 -0
  235. data/test/dummy/bin/setup +29 -0
  236. data/test/dummy/config/application.rb +38 -0
  237. data/test/dummy/config/boot.rb +5 -0
  238. data/test/dummy/config/database.codeship.yml +23 -0
  239. data/test/dummy/config/database.gitlab-ci.yml +24 -0
  240. data/test/dummy/config/database.yml +20 -0
  241. data/test/dummy/config/environment.rb +5 -0
  242. data/test/dummy/config/environments/development.rb +41 -0
  243. data/test/dummy/config/environments/production.rb +85 -0
  244. data/test/dummy/config/environments/test.rb +42 -0
  245. data/test/dummy/config/initializers/assets.rb +11 -0
  246. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  247. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  248. data/test/dummy/config/initializers/disco_app.rb +19 -0
  249. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  250. data/test/dummy/config/initializers/inflections.rb +16 -0
  251. data/test/dummy/config/initializers/mime_types.rb +4 -0
  252. data/test/dummy/config/initializers/omniauth.rb +9 -0
  253. data/test/dummy/config/initializers/session_store.rb +2 -0
  254. data/test/dummy/config/initializers/shopify_app.rb +7 -0
  255. data/test/dummy/config/initializers/shopify_session_repository.rb +7 -0
  256. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  257. data/test/dummy/config/locales/en.yml +23 -0
  258. data/test/dummy/config/routes.rb +10 -0
  259. data/test/dummy/config/secrets.yml +22 -0
  260. data/test/dummy/config.ru +4 -0
  261. data/test/dummy/db/migrate/20160307182229_create_products.rb +11 -0
  262. data/test/dummy/db/migrate/20160530160739_create_asset_models.rb +19 -0
  263. data/test/dummy/db/schema.rb +141 -0
  264. data/test/dummy/public/404.html +67 -0
  265. data/test/dummy/public/422.html +67 -0
  266. data/test/dummy/public/500.html +66 -0
  267. data/test/dummy/public/favicon.ico +0 -0
  268. data/test/fixtures/api/widget_store/assets/create_script_tag_js_request.json +6 -0
  269. data/test/fixtures/api/widget_store/assets/create_script_tag_js_response.json +12 -0
  270. data/test/fixtures/api/widget_store/assets/create_script_tag_request.json +6 -0
  271. data/test/fixtures/api/widget_store/assets/create_script_tag_response.json +10 -0
  272. data/test/fixtures/api/widget_store/assets/create_test_js_request.json +6 -0
  273. data/test/fixtures/api/widget_store/assets/create_test_js_response.json +12 -0
  274. data/test/fixtures/api/widget_store/assets/create_widget_js_request.json +6 -0
  275. data/test/fixtures/api/widget_store/assets/create_widget_js_response.json +12 -0
  276. data/test/fixtures/api/widget_store/assets/create_widget_liquid_request.json +6 -0
  277. data/test/fixtures/api/widget_store/assets/create_widget_liquid_response.json +12 -0
  278. data/test/fixtures/api/widget_store/assets/create_widget_scss_request.json +6 -0
  279. data/test/fixtures/api/widget_store/assets/create_widget_scss_response.json +12 -0
  280. data/test/fixtures/api/widget_store/assets/get_script_tags_empty_request.json +1 -0
  281. data/test/fixtures/api/widget_store/assets/get_script_tags_empty_response.json +1 -0
  282. data/test/fixtures/api/widget_store/assets/get_script_tags_preexisting_request.json +1 -0
  283. data/test/fixtures/api/widget_store/assets/get_script_tags_preexisting_response.json +12 -0
  284. data/test/fixtures/api/widget_store/assets/update_script_tag_request.json +10 -0
  285. data/test/fixtures/api/widget_store/assets/update_script_tag_response.json +10 -0
  286. data/test/fixtures/api/widget_store/charges/activate_application_charge_request.json +16 -0
  287. data/test/fixtures/api/widget_store/charges/activate_application_charge_response.json +1 -0
  288. data/test/fixtures/api/widget_store/charges/activate_recurring_application_charge_request.json +20 -0
  289. data/test/fixtures/api/widget_store/charges/activate_recurring_application_charge_response.json +1 -0
  290. data/test/fixtures/api/widget_store/charges/create_application_charge_request.json +9 -0
  291. data/test/fixtures/api/widget_store/charges/create_application_charge_response.json +16 -0
  292. data/test/fixtures/api/widget_store/charges/create_recurring_application_charge_request.json +9 -0
  293. data/test/fixtures/api/widget_store/charges/create_recurring_application_charge_response.json +20 -0
  294. data/test/fixtures/api/widget_store/charges/create_second_recurring_application_charge_request.json +9 -0
  295. data/test/fixtures/api/widget_store/charges/create_second_recurring_application_charge_response.json +20 -0
  296. data/test/fixtures/api/widget_store/charges/get_accepted_application_charge_response.json +16 -0
  297. data/test/fixtures/api/widget_store/charges/get_accepted_recurring_application_charge_response.json +20 -0
  298. data/test/fixtures/api/widget_store/charges/get_declined_application_charge_response.json +16 -0
  299. data/test/fixtures/api/widget_store/charges/get_declined_recurring_application_charge_response.json +20 -0
  300. data/test/fixtures/api/widget_store/charges/get_pending_application_charge_response.json +16 -0
  301. data/test/fixtures/api/widget_store/charges/get_pending_recurring_application_charge_response.json +20 -0
  302. data/test/fixtures/api/widget_store/shop.json +46 -0
  303. data/test/fixtures/api/widget_store/webhooks.json +1 -0
  304. data/test/fixtures/assets/test.js +1 -0
  305. data/test/fixtures/assets/test.min.js +1 -0
  306. data/test/fixtures/disco_app/application_charges.yml +11 -0
  307. data/test/fixtures/disco_app/plan_codes.yml +13 -0
  308. data/test/fixtures/disco_app/plans.yml +37 -0
  309. data/test/fixtures/disco_app/recurring_application_charges.yml +11 -0
  310. data/test/fixtures/disco_app/shops.yml +10 -0
  311. data/test/fixtures/disco_app/subscriptions.yml +22 -0
  312. data/test/fixtures/js_configurations.yml +3 -0
  313. data/test/fixtures/products.yml +4 -0
  314. data/test/fixtures/webhooks/app_uninstalled.json +46 -0
  315. data/test/fixtures/webhooks/product_created.json +167 -0
  316. data/test/fixtures/webhooks/product_deleted.json +3 -0
  317. data/test/fixtures/webhooks/product_updated.json +167 -0
  318. data/test/fixtures/widget_configurations.yml +4 -0
  319. data/test/integration/synchronises_test.rb +55 -0
  320. data/test/jobs/disco_app/app_installed_job_test.rb +55 -0
  321. data/test/jobs/disco_app/app_uninstalled_job_test.rb +30 -0
  322. data/test/models/disco_app/plan_test.rb +5 -0
  323. data/test/models/disco_app/renders_assets_test.rb +109 -0
  324. data/test/models/disco_app/session_test.rb +31 -0
  325. data/test/models/disco_app/shop_test.rb +27 -0
  326. data/test/models/disco_app/subscription_test.rb +19 -0
  327. data/test/services/disco_app/charges_service_test.rb +112 -0
  328. data/test/services/disco_app/subscription_service_test.rb +60 -0
  329. data/test/support/test_file_fixtures.rb +29 -0
  330. data/test/support/test_shopify_api.rb +16 -0
  331. data/test/test_helper.rb +55 -0
  332. metadata +827 -0
@@ -0,0 +1,19 @@
1
+ //
2
+ // Styles for Disco applications.
3
+ // --------------------------------------------------
4
+
5
+ // Variables
6
+ $font-family: -apple-system, "BlinkMacSystemFont", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", sans-serif;
7
+
8
+ // Mixins and utilities.
9
+ @import 'mixins/flexbox';
10
+
11
+ // UI Kit - Core and our addons.
12
+ @import 'ui-kit/ui-kit';
13
+ @import 'ui-kit/ui-type';
14
+ @import 'ui-kit/ui-icons';
15
+ @import 'ui-kit/ui-layout';
16
+ @import 'ui-kit/ui-empty-state';
17
+ @import 'ui-kit/ui-footer-help';
18
+ @import 'ui-kit/ui-page-actions';
19
+ @import 'ui-kit/ui-tabs';
@@ -0,0 +1,54 @@
1
+ //
2
+ // Buttons
3
+ // --------------------------------------------------
4
+
5
+ // Base button
6
+ .btn {
7
+ cursor: pointer;
8
+ display: inline-block;
9
+ height: 32px;
10
+ line-height: 30px;
11
+ padding: 0 9px;
12
+ border-radius: 4px;
13
+
14
+ white-space: nowrap;
15
+ vertical-align: middle;
16
+ font-family: $font-family;
17
+ font-size: 13px;
18
+
19
+ -webkit-user-select: none;
20
+ -moz-user-select: none;
21
+ -o-user-select: none;
22
+ user-select: none;
23
+ -webkit-appearance: none;
24
+
25
+ &:hover {
26
+ text-decoration: none;
27
+ }
28
+ }
29
+
30
+ // Default button
31
+ .btn, .btn-default {
32
+ background-color: #fcfcfc;
33
+ border: 1px solid #e3e3e3;
34
+ color: #0078bd;
35
+
36
+ &:hover, &:focus, &.focus {
37
+ background-color: #efefef;
38
+ border-color: #d6d6d6;
39
+ color: #0078bd;
40
+ }
41
+ }
42
+
43
+ // Primary button
44
+ .btn-primary {
45
+ background-color: #0078bd;
46
+ border: 1px solid #0078bd;
47
+ color: #fff;
48
+
49
+ &:hover, &:focus, &.focus {
50
+ background-color: #3491c8;
51
+ border-color: #2a74a0;
52
+ color: #fff;
53
+ }
54
+ }
@@ -0,0 +1,26 @@
1
+ //
2
+ // Forms
3
+ // --------------------------------------------------
4
+
5
+ form {
6
+ margin: 40px 0;
7
+ }
8
+
9
+ input[type="text"],
10
+ input[type="url"], {
11
+ vertical-align: top;
12
+ height: 32px;
13
+ font-family: $font-family;
14
+ font-size: 13px;
15
+ padding: 5px;
16
+ margin: 0;
17
+ border: 1px solid #ccc;
18
+ display: inline-block;
19
+ color: #222;
20
+ border-radius: 4px;
21
+
22
+ &:focus, &.focus {
23
+ border: 1px solid #0078bd;
24
+ outline: 0;
25
+ }
26
+ }
@@ -0,0 +1,77 @@
1
+ //
2
+ // Layout
3
+ // --------------------------------------------------
4
+
5
+ * {
6
+ -webkit-box-sizing: border-box;
7
+ -moz-box-sizing: border-box;
8
+ box-sizing: border-box;
9
+ }
10
+
11
+ #sidebar {
12
+ position: absolute;
13
+ top: 0;
14
+ left: 0;
15
+ bottom: 0;
16
+ width: $sidebar-width;
17
+
18
+ background: #31373d;
19
+ box-shadow: -1px 0 0 #2b3136 inset;
20
+ }
21
+
22
+ #header {
23
+ position: absolute;
24
+ top: 0;
25
+ left: $sidebar-width;
26
+ right: 0;
27
+ height: $header-height;
28
+
29
+ background: #ffffff;
30
+ border-bottom: 1px solid #e6e6e6;
31
+ border-color: rgba(0,0,0, .07);
32
+ }
33
+
34
+ #header-title {
35
+ position: absolute;
36
+ bottom: 12px;
37
+ left: 20px;
38
+
39
+ max-width: 718px;
40
+ white-space: nowrap;
41
+ text-overflow: ellipsis;
42
+ overflow: hidden;
43
+ }
44
+
45
+ #header-title-icon {
46
+ margin: 5px 10px 0 0;
47
+ float: left;
48
+ }
49
+
50
+ #header-actions {
51
+ position: absolute;
52
+ bottom: 12px;
53
+ right: 20px;
54
+
55
+ .btn {
56
+ margin: 0 0 0 5px;
57
+ }
58
+ }
59
+
60
+ #content-wrapper {
61
+ position: absolute;
62
+ top: $header-height;
63
+ left: $sidebar-width;
64
+ bottom: 0;
65
+ right: 0;
66
+ }
67
+
68
+ #content {
69
+ width: 100%;
70
+ height: 100%;
71
+ border: none;
72
+ }
73
+
74
+ #iframe {
75
+ padding: 40px 0;
76
+ text-align: center;
77
+ }
@@ -0,0 +1,25 @@
1
+ //
2
+ // Type
3
+ // --------------------------------------------------
4
+
5
+ // Base
6
+ html, body {
7
+ font-family: $font-family;
8
+ font-size: 13px;
9
+ }
10
+
11
+ // Headers
12
+ h1 {
13
+ font-size: 24px;
14
+ line-height: 32px;
15
+ height: 32px;
16
+ font-family: $font-family;
17
+ font-weight: 300;
18
+ margin: 0;
19
+ padding: 0;
20
+ }
21
+
22
+ // Text utilities
23
+ .text-muted {
24
+ color: #ccc;
25
+ }
@@ -0,0 +1,10 @@
1
+ // Set variables
2
+ $font-family: -apple-system, "BlinkMacSystemFont", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", sans-serif;
3
+ $sidebar-width: 197px;
4
+ $header-height: 57px;
5
+
6
+ // Include components
7
+ @import "frame/layout";
8
+ @import "frame/type";
9
+ @import "frame/buttons";
10
+ @import "frame/forms";
@@ -0,0 +1,400 @@
1
+ @charset "UTF-8";
2
+ //
3
+ // flexbox.scss
4
+ // Flexbox mixins.
5
+ // --------------------------------------------------
6
+
7
+ // Flexbox Mixins
8
+ // http://philipwalton.github.io/solved-by-flexbox/
9
+ // https://github.com/philipwalton/solved-by-flexbox
10
+ //
11
+ // Copyright (c) 2013 Brian Franco
12
+ //
13
+ // Permission is hereby granted, free of charge, to any person obtaining a
14
+ // copy of this software and associated documentation files (the
15
+ // "Software"), to deal in the Software without restriction, including
16
+ // without limitation the rights to use, copy, modify, merge, publish,
17
+ // distribute, sublicense, and/or sell copies of the Software, and to
18
+ // permit persons to whom the Software is furnished to do so, subject to
19
+ // the following conditions:
20
+ // The above copyright notice and this permission notice shall be included
21
+ // in all copies or substantial portions of the Software.
22
+ // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
23
+ // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24
+ // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
25
+ // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
26
+ // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
27
+ // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
28
+ // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29
+ //
30
+ // This is a set of mixins for those who want to mess around with flexbox
31
+ // using the native support of current browsers. For full support table
32
+ // check: http://caniuse.com/flexbox
33
+ //
34
+ // Basically this will use:
35
+ //
36
+ // * Fallback, old syntax (IE10, mobile webkit browsers - no wrapping)
37
+ // * Final standards syntax (FF, Safari, Chrome, IE11, Opera)
38
+ //
39
+ // This was inspired by:
40
+ //
41
+ // * http://dev.opera.com/articles/view/advanced-cross-browser-flexbox/
42
+ //
43
+ // With help from:
44
+ //
45
+ // * http://w3.org/tr/css3-flexbox/
46
+ // * http://the-echoplex.net/flexyboxes/
47
+ // * http://msdn.microsoft.com/en-us/library/ie/hh772069(v=vs.85).aspx
48
+ // * http://css-tricks.com/using-flexbox/
49
+ // * http://dev.opera.com/articles/view/advanced-cross-browser-flexbox/
50
+ // * https://developer.mozilla.org/en-us/docs/web/guide/css/flexible_boxes
51
+
52
+ //----------------------------------------------------------------------
53
+
54
+ // Flexbox Containers
55
+ //
56
+ // The 'flex' value causes an element to generate a block-level flex
57
+ // container box.
58
+ //
59
+ // The 'inline-flex' value causes an element to generate a inline-level
60
+ // flex container box.
61
+ //
62
+ // display: flex | inline-flex
63
+ //
64
+ // http://w3.org/tr/css3-flexbox/#flex-containers
65
+ //
66
+ // (Placeholder selectors for each type, for those who rather @extend)
67
+
68
+ @mixin flexbox {
69
+ display: -webkit-box;
70
+ display: -webkit-flex;
71
+ display: -moz-flex;
72
+ display: -ms-flexbox;
73
+ display: flex;
74
+ }
75
+
76
+ %flexbox { @include flexbox; }
77
+
78
+ //----------------------------------
79
+
80
+ @mixin inline-flex {
81
+ display: -webkit-inline-box;
82
+ display: -webkit-inline-flex;
83
+ display: -moz-inline-flex;
84
+ display: -ms-inline-flexbox;
85
+ display: inline-flex;
86
+ }
87
+
88
+ %inline-flex { @include inline-flex; }
89
+
90
+ //----------------------------------------------------------------------
91
+
92
+ // Flexbox Direction
93
+ //
94
+ // The 'flex-direction' property specifies how flex items are placed in
95
+ // the flex container, by setting the direction of the flex container's
96
+ // main axis. This determines the direction that flex items are laid out in.
97
+ //
98
+ // Values: row | row-reverse | column | column-reverse
99
+ // Default: row
100
+ //
101
+ // http://w3.org/tr/css3-flexbox/#flex-direction-property
102
+
103
+ @mixin flex-direction($value: row) {
104
+ @if $value == row-reverse {
105
+ -webkit-box-direction: reverse;
106
+ -webkit-box-orient: horizontal;
107
+ } @else if $value == column {
108
+ -webkit-box-direction: normal;
109
+ -webkit-box-orient: vertical;
110
+ } @else if $value == column-reverse {
111
+ -webkit-box-direction: reverse;
112
+ -webkit-box-orient: vertical;
113
+ } @else {
114
+ -webkit-box-direction: normal;
115
+ -webkit-box-orient: horizontal;
116
+ }
117
+ -webkit-flex-direction: $value;
118
+ -moz-flex-direction: $value;
119
+ -ms-flex-direction: $value;
120
+ flex-direction: $value;
121
+ }
122
+ // Shorter version:
123
+ @mixin flex-dir($args...) { @include flex-direction($args...); }
124
+
125
+ //----------------------------------------------------------------------
126
+
127
+ // Flexbox Wrap
128
+ //
129
+ // The 'flex-wrap' property controls whether the flex container is single-line
130
+ // or multi-line, and the direction of the cross-axis, which determines
131
+ // the direction new lines are stacked in.
132
+ //
133
+ // Values: nowrap | wrap | wrap-reverse
134
+ // Default: nowrap
135
+ //
136
+ // http://w3.org/tr/css3-flexbox/#flex-wrap-property
137
+
138
+ @mixin flex-wrap($value: nowrap) {
139
+ // No Webkit Box fallback.
140
+ -webkit-flex-wrap: $value;
141
+ -moz-flex-wrap: $value;
142
+ @if $value == nowrap {
143
+ -ms-flex-wrap: none;
144
+ } @else {
145
+ -ms-flex-wrap: $value;
146
+ }
147
+ flex-wrap: $value;
148
+ }
149
+
150
+ //----------------------------------------------------------------------
151
+
152
+ // Flexbox Flow (shorthand)
153
+ //
154
+ // The 'flex-flow' property is a shorthand for setting the 'flex-direction'
155
+ // and 'flex-wrap' properties, which together define the flex container's
156
+ // main and cross axes.
157
+ //
158
+ // Values: <flex-direction> | <flex-wrap>
159
+ // Default: row nowrap
160
+ //
161
+ // http://w3.org/tr/css3-flexbox/#flex-flow-property
162
+
163
+ @mixin flex-flow($values: (row nowrap)) {
164
+ // No Webkit Box fallback.
165
+ -webkit-flex-flow: $values;
166
+ -moz-flex-flow: $values;
167
+ -ms-flex-flow: $values;
168
+ flex-flow: $values;
169
+ }
170
+
171
+ //----------------------------------------------------------------------
172
+
173
+ // Flexbox Order
174
+ //
175
+ // The 'order' property controls the order in which flex items appear within
176
+ // their flex container, by assigning them to ordinal groups.
177
+ //
178
+ // Default: 0
179
+ //
180
+ // http://w3.org/tr/css3-flexbox/#order-property
181
+
182
+ @mixin order($int: 0) {
183
+ -webkit-box-ordinal-group: $int + 1;
184
+ -webkit-order: $int;
185
+ -moz-order: $int;
186
+ -ms-flex-order: $int;
187
+ order: $int;
188
+ }
189
+
190
+ //----------------------------------------------------------------------
191
+
192
+ // Flexbox Grow
193
+ //
194
+ // The 'flex-grow' property sets the flex grow factor. Negative numbers
195
+ // are invalid.
196
+ //
197
+ // Default: 0
198
+ //
199
+ // http://w3.org/tr/css3-flexbox/#flex-grow-property
200
+
201
+ @mixin flex-grow($int: 0) {
202
+ -webkit-box-flex: $int;
203
+ -webkit-flex-grow: $int;
204
+ -moz-flex-grow: $int;
205
+ -ms-flex-positive: $int;
206
+ flex-grow: $int;
207
+ }
208
+
209
+ //----------------------------------------------------------------------
210
+
211
+ // Flexbox Shrink
212
+ //
213
+ // The 'flex-shrink' property sets the flex shrink factor. Negative numbers
214
+ // are invalid.
215
+ //
216
+ // Default: 1
217
+ //
218
+ // http://w3.org/tr/css3-flexbox/#flex-shrink-property
219
+
220
+ @mixin flex-shrink($int: 1) {
221
+ -webkit-flex-shrink: $int;
222
+ -moz-flex-shrink: $int;
223
+ -ms-flex-negative: $int;
224
+ flex-shrink: $int;
225
+ }
226
+
227
+ //----------------------------------------------------------------------
228
+
229
+ // Flexbox Basis
230
+ //
231
+ // The 'flex-basis' property sets the flex basis. Negative lengths are invalid.
232
+ //
233
+ // Values: Like "width"
234
+ // Default: auto
235
+ //
236
+ // http://www.w3.org/TR/css3-flexbox/#flex-basis-property
237
+
238
+ @mixin flex-basis($value: auto) {
239
+ -webkit-flex-basis: $value;
240
+ -moz-flex-basis: $value;
241
+ -ms-flex-preferred-size: $value;
242
+ flex-basis: $value;
243
+ }
244
+
245
+ //----------------------------------------------------------------------
246
+
247
+ // Flexbox "Flex" (shorthand)
248
+ //
249
+ // The 'flex' property specifies the components of a flexible length: the
250
+ // flex grow factor and flex shrink factor, and the flex basis. When an
251
+ // element is a flex item, 'flex' is consulted instead of the main size
252
+ // property to determine the main size of the element. If an element is
253
+ // not a flex item, 'flex' has no effect.
254
+ //
255
+ // Values: none | <flex-grow> <flex-shrink> || <flex-basis>
256
+ // Default: See individual properties (1 1 0).
257
+ //
258
+ // http://w3.org/tr/css3-flexbox/#flex-property
259
+
260
+ @mixin flex($fg: 1, $fs: null, $fb: null) {
261
+
262
+ // Set a variable to be used by box-flex properties
263
+ $fg-boxflex: $fg;
264
+
265
+ // Box-Flex only supports a flex-grow value so let's grab the
266
+ // first item in the list and just return that.
267
+ @if type-of($fg) == 'list' {
268
+ $fg-boxflex: nth($fg, 1);
269
+ }
270
+
271
+ -webkit-box-flex: $fg-boxflex;
272
+ -webkit-flex: $fg $fs $fb;
273
+ -moz-box-flex: $fg-boxflex;
274
+ -moz-flex: $fg $fs $fb;
275
+ -ms-flex: $fg $fs $fb;
276
+ flex: $fg $fs $fb;
277
+ }
278
+
279
+ //----------------------------------------------------------------------
280
+
281
+ // Flexbox Justify Content
282
+ //
283
+ // The 'justify-content' property aligns flex items along the main axis
284
+ // of the current line of the flex container. This is done after any flexible
285
+ // lengths and any auto margins have been resolved. Typically it helps distribute
286
+ // extra free space leftover when either all the flex items on a line are
287
+ // inflexible, or are flexible but have reached their maximum size. It also
288
+ // exerts some control over the alignment of items when they overflow the line.
289
+ //
290
+ // Note: 'space-*' values not supported in older syntaxes.
291
+ //
292
+ // Values: flex-start | flex-end | center | space-between | space-around
293
+ // Default: flex-start
294
+ //
295
+ // http://w3.org/tr/css3-flexbox/#justify-content-property
296
+
297
+ @mixin justify-content($value: flex-start) {
298
+ @if $value == flex-start {
299
+ -webkit-box-pack: start;
300
+ -ms-flex-pack: start;
301
+ } @else if $value == flex-end {
302
+ -webkit-box-pack: end;
303
+ -ms-flex-pack: end;
304
+ } @else if $value == space-between {
305
+ -webkit-box-pack: justify;
306
+ -ms-flex-pack: justify;
307
+ } @else if $value == space-around {
308
+ -ms-flex-pack: distribute;
309
+ } @else {
310
+ -webkit-box-pack: $value;
311
+ -ms-flex-pack: $value;
312
+ }
313
+ -webkit-justify-content: $value;
314
+ -moz-justify-content: $value;
315
+ justify-content: $value;
316
+ }
317
+ // Shorter version:
318
+ @mixin flex-just($args...) { @include justify-content($args...); }
319
+
320
+ //----------------------------------------------------------------------
321
+
322
+ // Flexbox Align Items
323
+ //
324
+ // Flex items can be aligned in the cross axis of the current line of the
325
+ // flex container, similar to 'justify-content' but in the perpendicular
326
+ // direction. 'align-items' sets the default alignment for all of the flex
327
+ // container's items, including anonymous flex items. 'align-self' allows
328
+ // this default alignment to be overridden for individual flex items. (For
329
+ // anonymous flex items, 'align-self' always matches the value of 'align-items'
330
+ // on their associated flex container.)
331
+ //
332
+ // Values: flex-start | flex-end | center | baseline | stretch
333
+ // Default: stretch
334
+ //
335
+ // http://w3.org/tr/css3-flexbox/#align-items-property
336
+
337
+ @mixin align-items($value: stretch) {
338
+ @if $value == flex-start {
339
+ -webkit-box-align: start;
340
+ -ms-flex-align: start;
341
+ } @else if $value == flex-end {
342
+ -webkit-box-align: end;
343
+ -ms-flex-align: end;
344
+ } @else {
345
+ -webkit-box-align: $value;
346
+ -ms-flex-align: $value;
347
+ }
348
+ -webkit-align-items: $value;
349
+ -moz-align-items: $value;
350
+ align-items: $value;
351
+ }
352
+
353
+ //----------------------------------
354
+
355
+ // Flexbox Align Self
356
+ //
357
+ // Values: auto | flex-start | flex-end | center | baseline | stretch
358
+ // Default: auto
359
+
360
+ @mixin align-self($value: auto) {
361
+ // No Webkit Box Fallback.
362
+ -webkit-align-self: $value;
363
+ -moz-align-self: $value;
364
+ @if $value == flex-start {
365
+ -ms-flex-item-align: start;
366
+ } @else if $value == flex-end {
367
+ -ms-flex-item-align: end;
368
+ } @else {
369
+ -ms-flex-item-align: $value;
370
+ }
371
+ align-self: $value;
372
+ }
373
+
374
+ //----------------------------------------------------------------------
375
+
376
+ // Flexbox Align Content
377
+ //
378
+ // The 'align-content' property aligns a flex container's lines within the
379
+ // flex container when there is extra space in the cross-axis, similar to
380
+ // how 'justify-content' aligns individual items within the main-axis. Note,
381
+ // this property has no effect when the flexbox has only a single line.
382
+ //
383
+ // Values: flex-start | flex-end | center | space-between | space-around | stretch
384
+ // Default: stretch
385
+ //
386
+ // http://w3.org/tr/css3-flexbox/#align-content-property
387
+
388
+ @mixin align-content($value: stretch) {
389
+ // No Webkit Box Fallback.
390
+ -webkit-align-content: $value;
391
+ -moz-align-content: $value;
392
+ @if $value == flex-start {
393
+ -ms-flex-line-pack: start;
394
+ } @else if $value == flex-end {
395
+ -ms-flex-line-pack: end;
396
+ } @else {
397
+ -ms-flex-line-pack: $value;
398
+ }
399
+ align-content: $value;
400
+ }