spree_api 4.3.0 → 4.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/concerns/spree/api/v2/caching.rb +7 -3
- data/app/controllers/concerns/spree/api/v2/coupon_codes_helper.rb +29 -0
- data/app/controllers/concerns/spree/api/v2/number_resource.rb +11 -0
- data/app/controllers/concerns/spree/api/v2/platform/nested_set_reposition_concern.rb +37 -0
- data/app/controllers/concerns/spree/api/v2/platform/promotion_calculator_params.rb +17 -0
- data/app/controllers/concerns/spree/api/v2/platform/promotion_rule_params.rb +16 -0
- data/app/controllers/concerns/spree/api/v2/product_list_includes.rb +10 -8
- data/app/controllers/concerns/spree/api/v2/storefront/metadata_controller_concern.rb +18 -0
- data/app/controllers/spree/api/v2/base_controller.rb +7 -5
- data/app/controllers/spree/api/v2/platform/adjustments_controller.rb +19 -0
- data/app/controllers/spree/api/v2/platform/classifications_controller.rb +1 -22
- data/app/controllers/spree/api/v2/platform/cms_pages_controller.rb +4 -0
- data/app/controllers/spree/api/v2/platform/cms_sections_controller.rb +13 -18
- data/app/controllers/spree/api/v2/platform/digital_links_controller.rb +25 -0
- data/app/controllers/spree/api/v2/platform/digitals_controller.rb +19 -0
- data/app/controllers/spree/api/v2/platform/line_items_controller.rb +59 -0
- data/app/controllers/spree/api/v2/platform/menu_items_controller.rb +5 -19
- data/app/controllers/spree/api/v2/platform/menus_controller.rb +0 -4
- data/app/controllers/spree/api/v2/platform/orders_controller.rb +163 -0
- data/app/controllers/spree/api/v2/platform/payment_methods_controller.rb +27 -0
- data/app/controllers/spree/api/v2/platform/payments_controller.rb +17 -0
- data/app/controllers/spree/api/v2/platform/products_controller.rb +5 -1
- data/app/controllers/spree/api/v2/platform/promotion_actions_controller.rb +30 -0
- data/app/controllers/spree/api/v2/platform/promotion_categories_controller.rb +19 -0
- data/app/controllers/spree/api/v2/platform/promotion_rules_controller.rb +25 -0
- data/app/controllers/spree/api/v2/platform/promotions_controller.rb +31 -0
- data/app/controllers/spree/api/v2/platform/resource_controller.rb +47 -16
- data/app/controllers/spree/api/v2/platform/roles_controller.rb +15 -0
- data/app/controllers/spree/api/v2/platform/shipments_controller.rb +143 -0
- data/app/controllers/spree/api/v2/platform/shipping_categories_controller.rb +15 -0
- data/app/controllers/spree/api/v2/platform/shipping_methods_controller.rb +24 -0
- data/app/controllers/spree/api/v2/platform/states_controller.rb +19 -0
- data/app/controllers/spree/api/v2/platform/stock_items_controller.rb +19 -0
- data/app/controllers/spree/api/v2/platform/stock_locations_controller.rb +19 -0
- data/app/controllers/spree/api/v2/platform/store_credit_categories_controller.rb +15 -0
- data/app/controllers/spree/api/v2/platform/store_credit_types_controller.rb +15 -0
- data/app/controllers/spree/api/v2/platform/store_credits_controller.rb +19 -0
- data/app/controllers/spree/api/v2/platform/tax_categories_controller.rb +19 -0
- data/app/controllers/spree/api/v2/platform/tax_rates_controller.rb +23 -0
- data/app/controllers/spree/api/v2/platform/taxonomies_controller.rb +19 -0
- data/app/controllers/spree/api/v2/platform/taxons_controller.rb +25 -0
- data/app/controllers/spree/api/v2/platform/users_controller.rb +4 -0
- data/app/controllers/spree/api/v2/platform/variants_controller.rb +19 -0
- data/app/controllers/spree/api/v2/platform/webhooks/events_controller.rb +21 -0
- data/app/controllers/spree/api/v2/platform/webhooks/subscribers_controller.rb +21 -0
- data/app/controllers/spree/api/v2/platform/wished_items_controller.rb +19 -0
- data/app/controllers/spree/api/v2/platform/wishlists_controller.rb +19 -0
- data/app/controllers/spree/api/v2/platform/zones_controller.rb +19 -0
- data/app/controllers/spree/api/v2/resource_controller.rb +3 -3
- data/app/controllers/spree/api/v2/storefront/account/addresses_controller.rb +2 -2
- data/app/controllers/spree/api/v2/storefront/account/credit_cards_controller.rb +4 -1
- data/app/controllers/spree/api/v2/storefront/cart_controller.rb +18 -28
- data/app/controllers/spree/api/v2/storefront/checkout_controller.rb +25 -1
- data/app/controllers/spree/api/v2/storefront/digitals_controller.rb +58 -0
- data/app/controllers/spree/api/v2/storefront/stores_controller.rb +4 -0
- data/app/controllers/spree/api/v2/storefront/wishlists_controller.rb +171 -0
- data/app/helpers/spree/api/v2/collection_options_helpers.rb +1 -1
- data/app/helpers/spree/api/v2/store_media_serializer_images_concern.rb +35 -0
- data/app/jobs/spree/webhooks/subscribers/make_request_job.rb +17 -0
- data/app/models/concerns/spree/webhooks/has_webhooks.rb +84 -0
- data/app/models/spree/api/webhooks/order_decorator.rb +43 -0
- data/app/models/spree/api/webhooks/payment_decorator.rb +26 -0
- data/app/models/spree/api/webhooks/product_decorator.rb +46 -0
- data/app/models/spree/api/webhooks/shipment_decorator.rb +21 -0
- data/app/models/spree/api/webhooks/stock_item_decorator.rb +43 -0
- data/app/models/spree/api/webhooks/stock_movement_decorator.rb +52 -0
- data/app/models/spree/api/webhooks/variant_decorator.rb +26 -0
- data/app/models/spree/oauth_access_grant.rb +7 -0
- data/app/models/spree/oauth_access_token.rb +7 -0
- data/app/models/spree/oauth_application.rb +15 -0
- data/app/models/spree/webhooks/base.rb +11 -0
- data/app/models/spree/webhooks/event.rb +12 -0
- data/app/models/spree/webhooks/subscriber.rb +61 -0
- data/app/serializers/concerns/spree/api/v2/resource_serializer_concern.rb +19 -1
- data/app/serializers/spree/api/v2/base_serializer.rb +11 -4
- data/app/serializers/spree/api/v2/platform/address_serializer.rb +1 -1
- data/app/serializers/spree/api/v2/platform/adjustment_serializer.rb +20 -0
- data/app/serializers/spree/api/v2/platform/asset_serializer.rb +13 -0
- data/app/serializers/spree/api/v2/platform/calculator_serializer.rb +17 -0
- data/app/serializers/spree/api/v2/platform/classification_serializer.rb +1 -1
- data/app/serializers/spree/api/v2/platform/cms_page_serializer.rb +1 -1
- data/app/serializers/spree/api/v2/platform/cms_section_image_one_serializer.rb +9 -0
- data/app/serializers/spree/api/v2/platform/cms_section_image_three_serializer.rb +9 -0
- data/app/serializers/spree/api/v2/platform/cms_section_image_two_serializer.rb +9 -0
- data/app/serializers/spree/api/v2/platform/cms_section_serializer.rb +8 -1
- data/app/serializers/spree/api/v2/platform/country_serializer.rb +1 -1
- data/app/serializers/spree/api/v2/platform/credit_card_serializer.rb +14 -0
- data/app/serializers/spree/api/v2/platform/customer_return_serializer.rb +17 -0
- data/app/serializers/spree/api/v2/platform/digital_link_serializer.rb +16 -0
- data/app/serializers/spree/api/v2/platform/digital_serializer.rb +30 -0
- data/app/serializers/spree/api/v2/platform/feature_page_serializer.rb +11 -0
- data/app/serializers/spree/api/v2/platform/hero_image_serializer.rb +10 -0
- data/app/serializers/spree/api/v2/platform/homepage_serializer.rb +11 -0
- data/app/serializers/spree/api/v2/platform/image_gallery_serializer.rb +10 -0
- data/app/serializers/spree/api/v2/platform/inventory_unit_serializer.rb +19 -0
- data/app/serializers/spree/api/v2/platform/line_item_serializer.rb +19 -0
- data/app/serializers/spree/api/v2/platform/log_entry_serializer.rb +13 -0
- data/app/serializers/spree/api/v2/platform/menu_item_serializer.rb +1 -1
- data/app/serializers/spree/api/v2/platform/menu_serializer.rb +1 -1
- data/app/serializers/spree/api/v2/platform/option_type_serializer.rb +1 -1
- data/app/serializers/spree/api/v2/platform/option_value_serializer.rb +1 -1
- data/app/serializers/spree/api/v2/platform/order_promotion_serializer.rb +14 -0
- data/app/serializers/spree/api/v2/platform/order_serializer.rb +31 -0
- data/app/serializers/spree/api/v2/platform/payment_capture_event_serializer.rb +13 -0
- data/app/serializers/spree/api/v2/platform/payment_method_serializer.rb +18 -0
- data/app/serializers/spree/api/v2/platform/payment_serializer.rb +21 -0
- data/app/serializers/spree/api/v2/platform/price_serializer.rb +19 -0
- data/app/serializers/spree/api/v2/platform/product_property_serializer.rb +1 -1
- data/app/serializers/spree/api/v2/platform/product_serializer.rb +7 -3
- data/app/serializers/spree/api/v2/platform/promotion_action_line_item_serializer.rb +14 -0
- data/app/serializers/spree/api/v2/platform/promotion_action_serializer.rb +19 -0
- data/app/serializers/spree/api/v2/platform/promotion_category_serializer.rb +13 -0
- data/app/serializers/spree/api/v2/platform/promotion_rule_serializer.rb +21 -0
- data/app/serializers/spree/api/v2/platform/promotion_serializer.rb +17 -0
- data/app/serializers/spree/api/v2/platform/property_serializer.rb +11 -0
- data/app/serializers/spree/api/v2/platform/prototype_serializer.rb +15 -0
- data/app/serializers/spree/api/v2/platform/refund_reason_serializer.rb +11 -0
- data/app/serializers/spree/api/v2/platform/refund_serializer.rb +16 -0
- data/app/serializers/spree/api/v2/platform/reimbursement_credit_serializer.rb +10 -0
- data/app/serializers/spree/api/v2/platform/reimbursement_serializer.rb +18 -0
- data/app/serializers/spree/api/v2/platform/reimbursement_type_serializer.rb +11 -0
- data/app/serializers/spree/api/v2/platform/return_authorization_reason_serializer.rb +11 -0
- data/app/serializers/spree/api/v2/platform/return_authorization_serializer.rb +17 -0
- data/app/serializers/spree/api/v2/platform/return_item_serializer.rb +16 -0
- data/app/serializers/spree/api/v2/platform/role_serializer.rb +11 -0
- data/app/serializers/spree/api/v2/platform/shipment_serializer.rb +22 -0
- data/app/serializers/spree/api/v2/platform/shipping_category_serializer.rb +11 -0
- data/app/serializers/spree/api/v2/platform/shipping_method_serializer.rb +16 -0
- data/app/serializers/spree/api/v2/platform/shipping_rate_serializer.rb +15 -0
- data/app/serializers/spree/api/v2/platform/side_by_side_image_serializer.rb +10 -0
- data/app/serializers/spree/api/v2/platform/standard_page_serializer.rb +11 -0
- data/app/serializers/spree/api/v2/platform/state_change_serializer.rb +13 -0
- data/app/serializers/spree/api/v2/platform/state_serializer.rb +1 -1
- data/app/serializers/spree/api/v2/platform/stock_item_serializer.rb +1 -3
- data/app/serializers/spree/api/v2/platform/stock_location_serializer.rb +2 -4
- data/app/serializers/spree/api/v2/platform/stock_movement_serializer.rb +11 -0
- data/app/serializers/spree/api/v2/platform/stock_transfer_serializer.rb +15 -0
- data/app/serializers/spree/api/v2/platform/store_credit_category_serializer.rb +12 -0
- data/app/serializers/spree/api/v2/platform/store_credit_event_serializer.rb +14 -0
- data/app/serializers/spree/api/v2/platform/store_credit_serializer.rb +18 -0
- data/app/serializers/spree/api/v2/platform/store_credit_type_serializer.rb +12 -0
- data/app/serializers/spree/api/v2/platform/store_serializer.rb +2 -1
- data/app/serializers/spree/api/v2/platform/tax_category_serializer.rb +2 -2
- data/app/serializers/spree/api/v2/platform/tax_rate_serializer.rb +14 -0
- data/app/serializers/spree/api/v2/platform/taxon_serializer.rb +1 -1
- data/app/serializers/spree/api/v2/platform/taxonomy_serializer.rb +1 -1
- data/app/serializers/spree/api/v2/platform/user_serializer.rb +1 -1
- data/app/serializers/spree/api/v2/platform/variant_serializer.rb +3 -2
- data/app/serializers/spree/api/v2/platform/webhooks/event_serializer.rb +15 -0
- data/app/serializers/spree/api/v2/platform/webhooks/subscriber_serializer.rb +13 -0
- data/app/serializers/spree/api/v2/platform/wished_item_serializer.rb +29 -0
- data/app/serializers/spree/api/v2/platform/wishlist_serializer.rb +19 -0
- data/app/serializers/spree/api/v2/platform/zone_member_serializer.rb +13 -0
- data/app/serializers/spree/api/v2/platform/zone_serializer.rb +13 -0
- data/app/serializers/spree/v2/storefront/address_serializer.rb +1 -1
- data/app/serializers/spree/v2/storefront/cart_serializer.rb +1 -1
- data/app/serializers/spree/v2/storefront/cms_section_serializer.rb +8 -4
- data/app/serializers/spree/v2/storefront/credit_card_serializer.rb +1 -1
- data/app/serializers/spree/v2/storefront/digital_link_serializer.rb +11 -0
- data/app/serializers/spree/v2/storefront/estimated_shipping_rate_serializer.rb +2 -2
- data/app/serializers/spree/v2/storefront/line_item_serializer.rb +2 -1
- data/app/serializers/spree/v2/storefront/option_type_serializer.rb +1 -1
- data/app/serializers/spree/v2/storefront/option_value_serializer.rb +1 -1
- data/app/serializers/spree/v2/storefront/order_serializer.rb +9 -0
- data/app/serializers/spree/v2/storefront/payment_method_serializer.rb +1 -1
- data/app/serializers/spree/v2/storefront/payment_serializer.rb +1 -1
- data/app/serializers/spree/v2/storefront/product_property_serializer.rb +1 -1
- data/app/serializers/spree/v2/storefront/product_serializer.rb +2 -2
- data/app/serializers/spree/v2/storefront/promotion_serializer.rb +1 -1
- data/app/serializers/spree/v2/storefront/shipment_serializer.rb +5 -1
- data/app/serializers/spree/v2/storefront/store_credit_serializer.rb +1 -1
- data/app/serializers/spree/v2/storefront/store_serializer.rb +5 -10
- data/app/serializers/spree/v2/storefront/taxon_serializer.rb +1 -1
- data/app/serializers/spree/v2/storefront/taxonomy_serializer.rb +1 -1
- data/app/serializers/spree/v2/storefront/user_serializer.rb +1 -1
- data/app/serializers/spree/v2/storefront/variant_serializer.rb +1 -1
- data/app/serializers/spree/v2/storefront/wished_item_serializer.rb +29 -0
- data/app/serializers/spree/v2/storefront/wishlist_serializer.rb +17 -0
- data/app/services/spree/webhooks/subscribers/handle_request.rb +73 -0
- data/app/services/spree/webhooks/subscribers/make_request.rb +82 -0
- data/app/services/spree/webhooks/subscribers/queue_requests.rb +23 -0
- data/app/services/spree/webhooks.rb +13 -0
- data/config/i18n-tasks.yml +40 -0
- data/config/initializers/doorkeeper.rb +12 -12
- data/config/locales/en.yml +29 -27
- data/config/routes.rb +84 -179
- data/db/migrate/20210902162826_create_spree_webhooks_tables.rb +16 -0
- data/db/migrate/20210919183228_enable_polymorphic_resource_owner.rb +21 -0
- data/db/migrate/20211025162826_create_spree_webhooks_events.rb +14 -0
- data/docs/oauth/index.yml +126 -33
- data/docs/v2/platform/index.yaml +19696 -1734
- data/docs/v2/storefront/index.yaml +15050 -14553
- data/lib/spree/api/configuration.rb +11 -0
- data/lib/spree/api/dependencies.rb +165 -0
- data/lib/spree/api/engine.rb +10 -5
- data/lib/spree/api/testing_support/factories/oauth_application_factory.rb +6 -0
- data/lib/spree/api/testing_support/factories/webhook_event_factory.rb +27 -0
- data/lib/spree/api/testing_support/factories/webhook_subscriber_factory.rb +13 -0
- data/lib/spree/api/testing_support/factories.rb +3 -0
- data/lib/spree/api/testing_support/jobs.rb +18 -0
- data/lib/spree/api/testing_support/matchers/webhooks.rb +67 -0
- data/lib/spree/api/testing_support/serializers.rb +25 -0
- data/lib/spree/api/testing_support/spree_webhooks.rb +9 -0
- data/lib/spree/api/testing_support/v2/base.rb +1 -1
- data/lib/spree/api/testing_support/v2/current_order.rb +34 -1
- data/lib/spree/api/testing_support/v2/platform_contexts.rb +100 -52
- data/lib/spree/api/testing_support/v2/serializers_params.rb +3 -1
- data/lib/spree/api.rb +0 -3
- data/lib/spree_api.rb +0 -1
- data/spec/fixtures/files/icon_256x256.jpg +0 -0
- data/spree_api.gemspec +15 -16
- metadata +163 -177
- data/app/controllers/spree/api/base_controller.rb +0 -171
- data/app/controllers/spree/api/errors_controller.rb +0 -9
- data/app/controllers/spree/api/v1/addresses_controller.rb +0 -46
- data/app/controllers/spree/api/v1/checkouts_controller.rb +0 -106
- data/app/controllers/spree/api/v1/classifications_controller.rb +0 -21
- data/app/controllers/spree/api/v1/countries_controller.rb +0 -22
- data/app/controllers/spree/api/v1/credit_cards_controller.rb +0 -26
- data/app/controllers/spree/api/v1/customer_returns_controller.rb +0 -25
- data/app/controllers/spree/api/v1/images_controller.rb +0 -58
- data/app/controllers/spree/api/v1/inventory_units_controller.rb +0 -54
- data/app/controllers/spree/api/v1/line_items_controller.rb +0 -70
- data/app/controllers/spree/api/v1/option_types_controller.rb +0 -60
- data/app/controllers/spree/api/v1/option_values_controller.rb +0 -62
- data/app/controllers/spree/api/v1/orders_controller.rb +0 -160
- data/app/controllers/spree/api/v1/payments_controller.rb +0 -82
- data/app/controllers/spree/api/v1/product_properties_controller.rb +0 -73
- data/app/controllers/spree/api/v1/products_controller.rb +0 -131
- data/app/controllers/spree/api/v1/promotions_controller.rb +0 -30
- data/app/controllers/spree/api/v1/properties_controller.rb +0 -70
- data/app/controllers/spree/api/v1/reimbursements_controller.rb +0 -25
- data/app/controllers/spree/api/v1/return_authorizations_controller.rb +0 -70
- data/app/controllers/spree/api/v1/shipments_controller.rb +0 -196
- data/app/controllers/spree/api/v1/states_controller.rb +0 -36
- data/app/controllers/spree/api/v1/stock_items_controller.rb +0 -82
- data/app/controllers/spree/api/v1/stock_locations_controller.rb +0 -53
- data/app/controllers/spree/api/v1/stock_movements_controller.rb +0 -45
- data/app/controllers/spree/api/v1/stores_controller.rb +0 -56
- data/app/controllers/spree/api/v1/taxonomies_controller.rb +0 -67
- data/app/controllers/spree/api/v1/taxons_controller.rb +0 -100
- data/app/controllers/spree/api/v1/users_controller.rb +0 -97
- data/app/controllers/spree/api/v1/variants_controller.rb +0 -81
- data/app/controllers/spree/api/v1/zones_controller.rb +0 -55
- data/app/helpers/spree/api/api_helpers.rb +0 -190
- data/app/models/spree/api_configuration.rb +0 -10
- data/app/models/spree/api_dependencies.rb +0 -111
- data/app/views/spree/api/errors/gateway_error.rabl +0 -2
- data/app/views/spree/api/errors/invalid_api_key.rabl +0 -2
- data/app/views/spree/api/errors/invalid_resource.rabl +0 -3
- data/app/views/spree/api/errors/must_specify_api_key.rabl +0 -2
- data/app/views/spree/api/errors/not_found.rabl +0 -2
- data/app/views/spree/api/errors/unauthorized.rabl +0 -2
- data/app/views/spree/api/v1/addresses/show.rabl +0 -10
- data/app/views/spree/api/v1/adjustments/show.rabl +0 -4
- data/app/views/spree/api/v1/countries/index.rabl +0 -7
- data/app/views/spree/api/v1/countries/show.rabl +0 -5
- data/app/views/spree/api/v1/credit_cards/index.rabl +0 -7
- data/app/views/spree/api/v1/credit_cards/show.rabl +0 -3
- data/app/views/spree/api/v1/customer_returns/index.rabl +0 -7
- data/app/views/spree/api/v1/images/index.rabl +0 -4
- data/app/views/spree/api/v1/images/new.rabl +0 -3
- data/app/views/spree/api/v1/images/show.rabl +0 -6
- data/app/views/spree/api/v1/inventory_units/show.rabl +0 -2
- data/app/views/spree/api/v1/line_items/new.rabl +0 -3
- data/app/views/spree/api/v1/line_items/show.rabl +0 -14
- data/app/views/spree/api/v1/option_types/index.rabl +0 -3
- data/app/views/spree/api/v1/option_types/new.rabl +0 -3
- data/app/views/spree/api/v1/option_types/show.rabl +0 -5
- data/app/views/spree/api/v1/option_values/index.rabl +0 -3
- data/app/views/spree/api/v1/option_values/new.rabl +0 -3
- data/app/views/spree/api/v1/option_values/show.rabl +0 -2
- data/app/views/spree/api/v1/orders/address.rabl +0 -0
- data/app/views/spree/api/v1/orders/canceled.rabl +0 -0
- data/app/views/spree/api/v1/orders/cart.rabl +0 -0
- data/app/views/spree/api/v1/orders/complete.rabl +0 -0
- data/app/views/spree/api/v1/orders/could_not_apply_coupon.rabl +0 -2
- data/app/views/spree/api/v1/orders/could_not_transition.rabl +0 -3
- data/app/views/spree/api/v1/orders/index.rabl +0 -7
- data/app/views/spree/api/v1/orders/insufficient_quantity.rabl +0 -2
- data/app/views/spree/api/v1/orders/invalid_shipping_method.rabl +0 -2
- data/app/views/spree/api/v1/orders/mine.rabl +0 -9
- data/app/views/spree/api/v1/orders/order.rabl +0 -10
- data/app/views/spree/api/v1/orders/payment.rabl +0 -3
- data/app/views/spree/api/v1/orders/show.rabl +0 -51
- data/app/views/spree/api/v1/payments/credit_over_limit.rabl +0 -2
- data/app/views/spree/api/v1/payments/index.rabl +0 -7
- data/app/views/spree/api/v1/payments/new.rabl +0 -5
- data/app/views/spree/api/v1/payments/show.rabl +0 -2
- data/app/views/spree/api/v1/payments/update_forbidden.rabl +0 -2
- data/app/views/spree/api/v1/product_properties/index.rabl +0 -7
- data/app/views/spree/api/v1/product_properties/new.rabl +0 -2
- data/app/views/spree/api/v1/product_properties/show.rabl +0 -2
- data/app/views/spree/api/v1/products/index.rabl +0 -9
- data/app/views/spree/api/v1/products/new.rabl +0 -3
- data/app/views/spree/api/v1/products/product.rabl +0 -1
- data/app/views/spree/api/v1/products/show.rabl +0 -36
- data/app/views/spree/api/v1/promotions/handler.rabl +0 -5
- data/app/views/spree/api/v1/promotions/show.rabl +0 -2
- data/app/views/spree/api/v1/properties/index.rabl +0 -7
- data/app/views/spree/api/v1/properties/new.rabl +0 -2
- data/app/views/spree/api/v1/properties/show.rabl +0 -2
- data/app/views/spree/api/v1/reimbursements/index.rabl +0 -7
- data/app/views/spree/api/v1/return_authorizations/index.rabl +0 -7
- data/app/views/spree/api/v1/return_authorizations/new.rabl +0 -3
- data/app/views/spree/api/v1/return_authorizations/show.rabl +0 -2
- data/app/views/spree/api/v1/shared/stock_location_required.rabl +0 -2
- data/app/views/spree/api/v1/shipments/big.rabl +0 -48
- data/app/views/spree/api/v1/shipments/cannot_ready_shipment.rabl +0 -2
- data/app/views/spree/api/v1/shipments/mine.rabl +0 -9
- data/app/views/spree/api/v1/shipments/show.rabl +0 -32
- data/app/views/spree/api/v1/shipments/small.rabl +0 -37
- data/app/views/spree/api/v1/shipping_rates/show.rabl +0 -2
- data/app/views/spree/api/v1/states/index.rabl +0 -12
- data/app/views/spree/api/v1/states/show.rabl +0 -2
- data/app/views/spree/api/v1/stock_items/index.rabl +0 -7
- data/app/views/spree/api/v1/stock_items/show.rabl +0 -5
- data/app/views/spree/api/v1/stock_locations/index.rabl +0 -7
- data/app/views/spree/api/v1/stock_locations/show.rabl +0 -8
- data/app/views/spree/api/v1/stock_movements/index.rabl +0 -7
- data/app/views/spree/api/v1/stock_movements/show.rabl +0 -5
- data/app/views/spree/api/v1/stores/index.rabl +0 -4
- data/app/views/spree/api/v1/stores/show.rabl +0 -2
- data/app/views/spree/api/v1/tags/index.rabl +0 -9
- data/app/views/spree/api/v1/taxonomies/index.rabl +0 -7
- data/app/views/spree/api/v1/taxonomies/jstree.rabl +0 -7
- data/app/views/spree/api/v1/taxonomies/nested.rabl +0 -11
- data/app/views/spree/api/v1/taxonomies/new.rabl +0 -3
- data/app/views/spree/api/v1/taxonomies/show.rabl +0 -15
- data/app/views/spree/api/v1/taxons/index.rabl +0 -10
- data/app/views/spree/api/v1/taxons/jstree.rabl +0 -7
- data/app/views/spree/api/v1/taxons/new.rabl +0 -3
- data/app/views/spree/api/v1/taxons/show.rabl +0 -6
- data/app/views/spree/api/v1/taxons/taxons.rabl +0 -5
- data/app/views/spree/api/v1/users/index.rabl +0 -7
- data/app/views/spree/api/v1/users/new.rabl +0 -3
- data/app/views/spree/api/v1/users/show.rabl +0 -11
- data/app/views/spree/api/v1/variants/big.rabl +0 -14
- data/app/views/spree/api/v1/variants/index.rabl +0 -9
- data/app/views/spree/api/v1/variants/new.rabl +0 -2
- data/app/views/spree/api/v1/variants/show.rabl +0 -3
- data/app/views/spree/api/v1/variants/small.rabl +0 -18
- data/app/views/spree/api/v1/zones/index.rabl +0 -7
- data/app/views/spree/api/v1/zones/show.rabl +0 -6
- data/config/initializers/rabl.rb +0 -9
- data/lib/spree/api/controller_setup.rb +0 -19
- data/lib/spree/api/responders/rabl_template.rb +0 -28
- data/lib/spree/api/responders.rb +0 -11
- data/lib/spree/api/testing_support/helpers.rb +0 -44
- data/lib/spree/api/testing_support/setup.rb +0 -16
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
module Spree
|
|
2
|
+
module Webhooks
|
|
3
|
+
module HasWebhooks
|
|
4
|
+
extend ActiveSupport::Concern
|
|
5
|
+
|
|
6
|
+
included do
|
|
7
|
+
after_create_commit(proc { queue_webhooks_requests!(inferred_event_name(:create)) })
|
|
8
|
+
after_destroy_commit(proc { queue_webhooks_requests!(inferred_event_name(:delete)) })
|
|
9
|
+
after_update_commit(proc { queue_webhooks_requests!(inferred_event_name(:update)) })
|
|
10
|
+
|
|
11
|
+
def queue_webhooks_requests!(event_name)
|
|
12
|
+
return if disable_spree_webhooks?
|
|
13
|
+
return if Spree::Webhooks::Subscriber.active.with_urls_for(event_name).none?
|
|
14
|
+
return if update_event?(event_name) && updating_only_ignored_attributes?
|
|
15
|
+
return if webhook_payload_body.blank?
|
|
16
|
+
|
|
17
|
+
Spree::Webhooks::Subscribers::QueueRequests.call(
|
|
18
|
+
event_name: event_name, webhook_payload_body: webhook_payload_body, **webhooks_request_options
|
|
19
|
+
)
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def self.default_webhook_events
|
|
23
|
+
model_name = name.demodulize.tableize.singularize
|
|
24
|
+
%W[#{model_name}.create #{model_name}.delete #{model_name}.update]
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
def self.supported_webhook_events
|
|
28
|
+
events = default_webhook_events
|
|
29
|
+
events += custom_webhook_events if respond_to?(:custom_webhook_events)
|
|
30
|
+
events
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
private
|
|
35
|
+
|
|
36
|
+
def webhook_payload_body
|
|
37
|
+
resource_serializer.new(self, include: included_relationships).serializable_hash.to_json
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
def inferred_event_name(operation)
|
|
41
|
+
"#{self.class.name.demodulize.tableize.singularize}.#{operation}"
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
def included_relationships
|
|
45
|
+
if resource_serializer.relationships_to_serialize
|
|
46
|
+
resource_serializer.relationships_to_serialize.keys
|
|
47
|
+
else
|
|
48
|
+
[]
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
def resource_serializer
|
|
53
|
+
@resource_serializer ||=
|
|
54
|
+
begin
|
|
55
|
+
demodulized_class_name = self.class.to_s.demodulize
|
|
56
|
+
"Spree::Api::V2::Platform::#{demodulized_class_name}Serializer".constantize
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
def updating_only_ignored_attributes?
|
|
61
|
+
(saved_changes.keys - ignored_attributes).empty?
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
def ignored_attributes
|
|
65
|
+
timestamps = %w[created_at updated_at deleted_at]
|
|
66
|
+
return timestamps unless self.class.respond_to?(:ignored_attributes_for_update_webhook_event)
|
|
67
|
+
|
|
68
|
+
timestamps + self.class.ignored_attributes_for_update_webhook_event
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
def update_event?(event_name)
|
|
72
|
+
event_name.end_with?('.update')
|
|
73
|
+
end
|
|
74
|
+
|
|
75
|
+
def disable_spree_webhooks?
|
|
76
|
+
ENV['DISABLE_SPREE_WEBHOOKS'] == 'true'
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
def webhooks_request_options
|
|
80
|
+
{}
|
|
81
|
+
end
|
|
82
|
+
end
|
|
83
|
+
end
|
|
84
|
+
end
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
module Spree
|
|
2
|
+
module Api
|
|
3
|
+
module Webhooks
|
|
4
|
+
module OrderDecorator
|
|
5
|
+
def self.prepended(base)
|
|
6
|
+
def base.custom_webhook_events
|
|
7
|
+
%w[order.canceled order.placed order.resumed order.shipped]
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
base.after_update_commit :queue_webhooks_requests_for_order_resumed!
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def after_cancel
|
|
14
|
+
super
|
|
15
|
+
queue_webhooks_requests!('order.canceled')
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def finalize!
|
|
19
|
+
super
|
|
20
|
+
queue_webhooks_requests!('order.placed')
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
def after_resume
|
|
24
|
+
super
|
|
25
|
+
queue_webhooks_requests!('order.resumed')
|
|
26
|
+
self.state_machine_resumed = false
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
private
|
|
30
|
+
|
|
31
|
+
def queue_webhooks_requests_for_order_resumed!
|
|
32
|
+
return if state_machine_resumed?
|
|
33
|
+
return unless state_previously_changed?
|
|
34
|
+
return unless state_previous_change&.last == 'resumed'
|
|
35
|
+
|
|
36
|
+
queue_webhooks_requests!('order.resumed')
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
Spree::Order.prepend(Spree::Api::Webhooks::OrderDecorator)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
module Spree
|
|
2
|
+
module Api
|
|
3
|
+
module Webhooks
|
|
4
|
+
module PaymentDecorator
|
|
5
|
+
def self.prepended(base)
|
|
6
|
+
def base.custom_webhook_events
|
|
7
|
+
%w[payment.paid payment.voided]
|
|
8
|
+
end
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def after_void
|
|
12
|
+
super
|
|
13
|
+
queue_webhooks_requests!('payment.voided')
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
def after_completed
|
|
17
|
+
super
|
|
18
|
+
queue_webhooks_requests!('payment.paid')
|
|
19
|
+
order.queue_webhooks_requests!('order.paid') if order.paid?
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
Spree::Payment.prepend(Spree::Api::Webhooks::PaymentDecorator)
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
module Spree
|
|
2
|
+
module Api
|
|
3
|
+
module Webhooks
|
|
4
|
+
module ProductDecorator
|
|
5
|
+
def self.prepended(base)
|
|
6
|
+
def base.custom_webhook_events
|
|
7
|
+
%w[product.back_in_stock product.backorderable product.discontinued
|
|
8
|
+
product.out_of_stock product.activated product.archived product.drafted]
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def base.ignored_attributes_for_update_webhook_event
|
|
12
|
+
%w[status]
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
base.after_update_commit :queue_webhooks_requests_for_product_discontinued!
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def after_activate
|
|
19
|
+
super
|
|
20
|
+
queue_webhooks_requests!('product.activated')
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
def after_archive
|
|
24
|
+
super
|
|
25
|
+
queue_webhooks_requests!('product.archived')
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
def after_draft
|
|
29
|
+
super
|
|
30
|
+
queue_webhooks_requests!('product.drafted')
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
private
|
|
34
|
+
|
|
35
|
+
def queue_webhooks_requests_for_product_discontinued!
|
|
36
|
+
return unless discontinue_on_previously_changed?
|
|
37
|
+
return if (change = discontinue_on_previous_change).blank? || change.last.blank?
|
|
38
|
+
|
|
39
|
+
queue_webhooks_requests!('product.discontinued')
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
Spree::Product.prepend(Spree::Api::Webhooks::ProductDecorator)
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
module Spree
|
|
2
|
+
module Api
|
|
3
|
+
module Webhooks
|
|
4
|
+
module ShipmentDecorator
|
|
5
|
+
def self.prepended(base)
|
|
6
|
+
def base.custom_webhook_events
|
|
7
|
+
%w[shipment.shipped]
|
|
8
|
+
end
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def after_ship
|
|
12
|
+
super
|
|
13
|
+
queue_webhooks_requests!('shipment.shipped')
|
|
14
|
+
order.queue_webhooks_requests!('order.shipped') if order.fully_shipped?
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
Spree::Shipment.prepend(Spree::Api::Webhooks::ShipmentDecorator)
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
module Spree
|
|
2
|
+
module Api
|
|
3
|
+
module Webhooks
|
|
4
|
+
module StockItemDecorator
|
|
5
|
+
def self.prepended(base)
|
|
6
|
+
base.around_save :queue_webhooks_requests_for_variant_backorderable!
|
|
7
|
+
base.around_save :queue_webhooks_requests_for_product_backorderable!
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
private
|
|
11
|
+
|
|
12
|
+
def queue_webhooks_requests_for_variant_backorderable!
|
|
13
|
+
was_out_of_stock = !variant.in_stock_or_backorderable?
|
|
14
|
+
was_not_backorderable = !variant_backorderable?
|
|
15
|
+
yield
|
|
16
|
+
if was_out_of_stock && was_not_backorderable && variant_backorderable?
|
|
17
|
+
reload
|
|
18
|
+
variant.queue_webhooks_requests!('variant.backorderable')
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def queue_webhooks_requests_for_product_backorderable!
|
|
23
|
+
product_was_out_of_stock = !product.any_variant_in_stock_or_backorderable?
|
|
24
|
+
product_was_not_backorderable = !product_backorderable?
|
|
25
|
+
yield
|
|
26
|
+
if product_was_out_of_stock && product_was_not_backorderable && product_backorderable?
|
|
27
|
+
variant.product.queue_webhooks_requests!('product.backorderable')
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
def product_backorderable?
|
|
32
|
+
Spree::StockItem.exists?(backorderable: true, variant_id: variant.product.variants.ids)
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
def variant_backorderable?
|
|
36
|
+
variant.stock_items.exists?(backorderable: true)
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
Spree::StockItem.prepend(Spree::Api::Webhooks::StockItemDecorator)
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
module Spree
|
|
2
|
+
module Api
|
|
3
|
+
module Webhooks
|
|
4
|
+
module StockMovementDecorator
|
|
5
|
+
def self.prepended(base)
|
|
6
|
+
base.around_save :queue_webhooks_requests_for_variant_out_of_stock!
|
|
7
|
+
base.around_save :queue_webhooks_requests_for_variant_back_in_stock!
|
|
8
|
+
base.around_save :queue_webhooks_requests_for_product_out_of_stock!
|
|
9
|
+
base.around_save :queue_webhooks_requests_for_product_back_in_stock!
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
private
|
|
13
|
+
|
|
14
|
+
def queue_webhooks_requests_for_variant_out_of_stock!
|
|
15
|
+
variant_in_stock_before_update = variant.in_stock_or_backorderable?
|
|
16
|
+
yield
|
|
17
|
+
if variant_in_stock_before_update && !variant.in_stock_or_backorderable?
|
|
18
|
+
reload
|
|
19
|
+
stock_item.variant.queue_webhooks_requests!('variant.out_of_stock')
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
def queue_webhooks_requests_for_variant_back_in_stock!
|
|
24
|
+
variant_was_out_of_stock = !variant.in_stock_or_backorderable?
|
|
25
|
+
yield
|
|
26
|
+
if variant_was_out_of_stock && variant.in_stock_or_backorderable?
|
|
27
|
+
reload
|
|
28
|
+
variant.queue_webhooks_requests!('variant.back_in_stock')
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
def queue_webhooks_requests_for_product_back_in_stock!
|
|
33
|
+
product_was_out_of_stock = !product.any_variant_in_stock_or_backorderable?
|
|
34
|
+
yield
|
|
35
|
+
if product_was_out_of_stock && product.any_variant_in_stock_or_backorderable?
|
|
36
|
+
product.queue_webhooks_requests!('product.back_in_stock')
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
def queue_webhooks_requests_for_product_out_of_stock!
|
|
41
|
+
product_was_in_stock = product.any_variant_in_stock_or_backorderable?
|
|
42
|
+
yield
|
|
43
|
+
if product_was_in_stock && !product.any_variant_in_stock_or_backorderable?
|
|
44
|
+
product.queue_webhooks_requests!('product.out_of_stock')
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
end
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
Spree::StockMovement.prepend(Spree::Api::Webhooks::StockMovementDecorator)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
module Spree
|
|
2
|
+
module Api
|
|
3
|
+
module Webhooks
|
|
4
|
+
module VariantDecorator
|
|
5
|
+
def self.prepended(base)
|
|
6
|
+
def base.custom_webhook_events
|
|
7
|
+
%w[variant.back_in_stock variant.backorderable variant.discontinued variant.out_of_stock]
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
base.after_update_commit :queue_webhooks_requests_for_variant_discontinued!
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
private
|
|
14
|
+
|
|
15
|
+
def queue_webhooks_requests_for_variant_discontinued!
|
|
16
|
+
return unless discontinue_on_previously_changed?
|
|
17
|
+
return if (change = discontinue_on_previous_change).blank? || change.last.blank?
|
|
18
|
+
|
|
19
|
+
queue_webhooks_requests!('variant.discontinued')
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
Spree::Variant.prepend(Spree::Api::Webhooks::VariantDecorator)
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
module Spree
|
|
2
|
+
class OauthApplication < Base
|
|
3
|
+
include ::Doorkeeper::Orm::ActiveRecord::Mixins::Application
|
|
4
|
+
|
|
5
|
+
self.table_name = 'spree_oauth_applications'
|
|
6
|
+
|
|
7
|
+
before_validation :set_blank_for_redirect_uri
|
|
8
|
+
|
|
9
|
+
private
|
|
10
|
+
|
|
11
|
+
def set_blank_for_redirect_uri
|
|
12
|
+
self.redirect_uri = '' if redirect_uri.nil?
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
module Spree
|
|
2
|
+
module Webhooks
|
|
3
|
+
class Event < Spree::Webhooks::Base
|
|
4
|
+
validates :name, :subscriber, presence: true
|
|
5
|
+
|
|
6
|
+
belongs_to :subscriber, inverse_of: :events, optional: false
|
|
7
|
+
|
|
8
|
+
self.whitelisted_ransackable_associations = %w[subscriber]
|
|
9
|
+
self.whitelisted_ransackable_attributes = %w[name request_errors response_code success url]
|
|
10
|
+
end
|
|
11
|
+
end
|
|
12
|
+
end
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
module Spree
|
|
2
|
+
module Webhooks
|
|
3
|
+
class Subscriber < Spree::Webhooks::Base
|
|
4
|
+
if defined?(Spree::VendorConcern)
|
|
5
|
+
include Spree::VendorConcern
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
has_many :events, inverse_of: :subscriber
|
|
9
|
+
|
|
10
|
+
validates :url, 'spree/url': true, presence: true
|
|
11
|
+
|
|
12
|
+
validate :check_uri_path
|
|
13
|
+
|
|
14
|
+
self.whitelisted_ransackable_attributes = %w[active subscriptions url]
|
|
15
|
+
self.whitelisted_ransackable_associations = %w[event]
|
|
16
|
+
|
|
17
|
+
scope :active, -> { where(active: true) }
|
|
18
|
+
scope :inactive, -> { where(active: false) }
|
|
19
|
+
|
|
20
|
+
before_save :parse_subscriptions
|
|
21
|
+
|
|
22
|
+
def self.with_urls_for(event)
|
|
23
|
+
where(
|
|
24
|
+
case ActiveRecord::Base.connection.adapter_name
|
|
25
|
+
when 'Mysql2'
|
|
26
|
+
["('*' MEMBER OF(subscriptions) OR ? MEMBER OF(subscriptions))", event]
|
|
27
|
+
when 'PostgreSQL'
|
|
28
|
+
["subscriptions @> '[\"*\"]' OR subscriptions @> ?", [event].to_json]
|
|
29
|
+
end
|
|
30
|
+
)
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
def self.supported_events
|
|
34
|
+
Spree::Base.descendants.
|
|
35
|
+
select { |model| model.included_modules.include? Spree::Webhooks::HasWebhooks }.
|
|
36
|
+
to_h do |model|
|
|
37
|
+
model_name = model.name.demodulize.underscore.to_sym
|
|
38
|
+
[model_name, model.supported_webhook_events]
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
private
|
|
43
|
+
|
|
44
|
+
def check_uri_path
|
|
45
|
+
uri = begin
|
|
46
|
+
URI.parse(url)
|
|
47
|
+
rescue URI::InvalidURIError
|
|
48
|
+
return false
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
errors.add(:url, 'the URL must have a path') if uri.blank? || uri.path.blank?
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
def parse_subscriptions
|
|
55
|
+
return if subscriptions.blank? || subscriptions.is_a?(Array)
|
|
56
|
+
|
|
57
|
+
self.subscriptions = JSON.parse(subscriptions)
|
|
58
|
+
end
|
|
59
|
+
end
|
|
60
|
+
end
|
|
61
|
+
end
|
|
@@ -5,10 +5,28 @@ module Spree
|
|
|
5
5
|
extend ActiveSupport::Concern
|
|
6
6
|
|
|
7
7
|
def self.included(base)
|
|
8
|
-
|
|
8
|
+
serializer_base_name = base.to_s.sub(/^Spree::Api::V2::Platform::/, '').sub(/Serializer$/, '')
|
|
9
|
+
model_klazz = "Spree::#{serializer_base_name}".constantize
|
|
9
10
|
|
|
10
11
|
base.set_type model_klazz.json_api_type
|
|
12
|
+
# include standard attributes
|
|
11
13
|
base.attributes(*model_klazz.json_api_columns)
|
|
14
|
+
# include money attributes
|
|
15
|
+
display_getter_methods(model_klazz).each do |method_name|
|
|
16
|
+
base.attribute(method_name) do |object|
|
|
17
|
+
object.public_send(method_name).to_s
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def self.display_getter_methods(model_klazz)
|
|
23
|
+
model_klazz.new.methods.find_all do |method_name|
|
|
24
|
+
next unless method_name.to_s.start_with?('display_')
|
|
25
|
+
next if method_name.to_s.end_with?('=')
|
|
26
|
+
next if [Spree::Product, Spree::Variant].include?(model_klazz) && method_name == :display_amount
|
|
27
|
+
|
|
28
|
+
method_name
|
|
29
|
+
end
|
|
12
30
|
end
|
|
13
31
|
end
|
|
14
32
|
end
|
|
@@ -13,12 +13,19 @@ module Spree
|
|
|
13
13
|
opts = options.dup
|
|
14
14
|
|
|
15
15
|
params_cache_key = params.map do |param|
|
|
16
|
-
|
|
16
|
+
value = param.last
|
|
17
|
+
next if param.nil? || value.nil?
|
|
17
18
|
|
|
18
|
-
if
|
|
19
|
-
|
|
19
|
+
if value.respond_to?(:cache_key_with_version)
|
|
20
|
+
value.cache_key_with_version
|
|
21
|
+
elsif value.is_a?(Hash)
|
|
22
|
+
# covers the current_price_options cases:
|
|
23
|
+
# { price_options: { tax_zone: Spree::Zone... } } or
|
|
24
|
+
# { price_options: { tax_zone: nil } }
|
|
25
|
+
only_key = value.keys.first
|
|
26
|
+
value[only_key]&.cache_key_with_version
|
|
20
27
|
else
|
|
21
|
-
|
|
28
|
+
value.to_s.downcase
|
|
22
29
|
end
|
|
23
30
|
end.compact.reject(&:blank?).join('-')
|
|
24
31
|
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
module Spree
|
|
2
|
+
module Api
|
|
3
|
+
module V2
|
|
4
|
+
module Platform
|
|
5
|
+
class AdjustmentSerializer < BaseSerializer
|
|
6
|
+
include ResourceSerializerConcern
|
|
7
|
+
|
|
8
|
+
belongs_to :order
|
|
9
|
+
belongs_to :adjustable, polymorphic: true
|
|
10
|
+
belongs_to :source, polymorphic: {
|
|
11
|
+
Spree::Promotion::Actions::FreeShipping => :promotion_action,
|
|
12
|
+
Spree::Promotion::Actions::CreateAdjustment => :promotion_action,
|
|
13
|
+
Spree::Promotion::Actions::CreateItemAdjustments => :promotion_action,
|
|
14
|
+
Spree::Promotion::Actions::CreateLineItems => :promotion_action
|
|
15
|
+
}
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
end
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
module Spree
|
|
2
|
+
module Api
|
|
3
|
+
module V2
|
|
4
|
+
module Platform
|
|
5
|
+
class CalculatorSerializer < BaseSerializer
|
|
6
|
+
include ResourceSerializerConcern
|
|
7
|
+
|
|
8
|
+
attributes :type
|
|
9
|
+
|
|
10
|
+
attribute :preferences do |calculator|
|
|
11
|
+
calculator.preferences
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
@@ -3,7 +3,14 @@ module Spree
|
|
|
3
3
|
module V2
|
|
4
4
|
module Platform
|
|
5
5
|
class CmsSectionSerializer < BaseSerializer
|
|
6
|
-
include
|
|
6
|
+
include ResourceSerializerConcern
|
|
7
|
+
|
|
8
|
+
belongs_to :cms_page, serializer: :cms_page
|
|
9
|
+
belongs_to :linked_resource, polymorphic: {
|
|
10
|
+
Spree::Cms::Pages::StandardPage => :cms_page,
|
|
11
|
+
Spree::Cms::Pages::FeaturePage => :cms_page,
|
|
12
|
+
Spree::Cms::Pages::Homepage => :cms_page
|
|
13
|
+
}
|
|
7
14
|
end
|
|
8
15
|
end
|
|
9
16
|
end
|