spree_api_v1 4.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.circleci/config.yml +189 -0
- data/.gitignore +23 -0
- data/.rspec +3 -0
- data/.rubocop.yml +24 -0
- data/CHANGELOG.md +3 -0
- data/CODE_OF_CONDUCT.md +22 -0
- data/Gemfile +59 -0
- data/LICENSE +26 -0
- data/README.md +62 -0
- data/Rakefile +15 -0
- data/app/controllers/spree/api/v1/addresses_controller.rb +46 -0
- data/app/controllers/spree/api/v1/base_controller.rb +174 -0
- data/app/controllers/spree/api/v1/checkouts_controller.rb +106 -0
- data/app/controllers/spree/api/v1/classifications_controller.rb +21 -0
- data/app/controllers/spree/api/v1/countries_controller.rb +22 -0
- data/app/controllers/spree/api/v1/credit_cards_controller.rb +26 -0
- data/app/controllers/spree/api/v1/customer_returns_controller.rb +25 -0
- data/app/controllers/spree/api/v1/images_controller.rb +58 -0
- data/app/controllers/spree/api/v1/inventory_units_controller.rb +54 -0
- data/app/controllers/spree/api/v1/line_items_controller.rb +70 -0
- data/app/controllers/spree/api/v1/option_types_controller.rb +60 -0
- data/app/controllers/spree/api/v1/option_values_controller.rb +62 -0
- data/app/controllers/spree/api/v1/orders_controller.rb +160 -0
- data/app/controllers/spree/api/v1/payments_controller.rb +82 -0
- data/app/controllers/spree/api/v1/product_properties_controller.rb +73 -0
- data/app/controllers/spree/api/v1/products_controller.rb +131 -0
- data/app/controllers/spree/api/v1/promotions_controller.rb +30 -0
- data/app/controllers/spree/api/v1/properties_controller.rb +70 -0
- data/app/controllers/spree/api/v1/reimbursements_controller.rb +25 -0
- data/app/controllers/spree/api/v1/return_authorizations_controller.rb +70 -0
- data/app/controllers/spree/api/v1/shipments_controller.rb +196 -0
- data/app/controllers/spree/api/v1/states_controller.rb +36 -0
- data/app/controllers/spree/api/v1/stock_items_controller.rb +82 -0
- data/app/controllers/spree/api/v1/stock_locations_controller.rb +53 -0
- data/app/controllers/spree/api/v1/stock_movements_controller.rb +45 -0
- data/app/controllers/spree/api/v1/stores_controller.rb +56 -0
- data/app/controllers/spree/api/v1/taxonomies_controller.rb +67 -0
- data/app/controllers/spree/api/v1/taxons_controller.rb +100 -0
- data/app/controllers/spree/api/v1/users_controller.rb +97 -0
- data/app/controllers/spree/api/v1/variants_controller.rb +81 -0
- data/app/controllers/spree/api/v1/zones_controller.rb +55 -0
- data/app/helpers/spree/api/api_helpers.rb +190 -0
- data/app/models/spree/api_v1_configuration.rb +5 -0
- data/app/views/spree/api/errors/gateway_error.rabl +2 -0
- data/app/views/spree/api/errors/invalid_api_key.rabl +2 -0
- data/app/views/spree/api/errors/invalid_resource.rabl +3 -0
- data/app/views/spree/api/errors/must_specify_api_key.rabl +2 -0
- data/app/views/spree/api/errors/not_found.rabl +2 -0
- data/app/views/spree/api/errors/unauthorized.rabl +2 -0
- data/app/views/spree/api/v1/addresses/show.rabl +10 -0
- data/app/views/spree/api/v1/adjustments/show.rabl +4 -0
- data/app/views/spree/api/v1/countries/index.rabl +7 -0
- data/app/views/spree/api/v1/countries/show.rabl +5 -0
- data/app/views/spree/api/v1/credit_cards/index.rabl +7 -0
- data/app/views/spree/api/v1/credit_cards/show.rabl +3 -0
- data/app/views/spree/api/v1/customer_returns/index.rabl +7 -0
- data/app/views/spree/api/v1/images/index.rabl +4 -0
- data/app/views/spree/api/v1/images/new.rabl +3 -0
- data/app/views/spree/api/v1/images/show.rabl +6 -0
- data/app/views/spree/api/v1/inventory_units/show.rabl +2 -0
- data/app/views/spree/api/v1/line_items/new.rabl +3 -0
- data/app/views/spree/api/v1/line_items/show.rabl +14 -0
- data/app/views/spree/api/v1/option_types/index.rabl +3 -0
- data/app/views/spree/api/v1/option_types/new.rabl +3 -0
- data/app/views/spree/api/v1/option_types/show.rabl +5 -0
- data/app/views/spree/api/v1/option_values/index.rabl +3 -0
- data/app/views/spree/api/v1/option_values/new.rabl +3 -0
- data/app/views/spree/api/v1/option_values/show.rabl +2 -0
- 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 +2 -0
- data/app/views/spree/api/v1/orders/could_not_transition.rabl +3 -0
- data/app/views/spree/api/v1/orders/index.rabl +7 -0
- data/app/views/spree/api/v1/orders/insufficient_quantity.rabl +2 -0
- data/app/views/spree/api/v1/orders/invalid_shipping_method.rabl +2 -0
- data/app/views/spree/api/v1/orders/mine.rabl +9 -0
- data/app/views/spree/api/v1/orders/order.rabl +10 -0
- data/app/views/spree/api/v1/orders/payment.rabl +3 -0
- data/app/views/spree/api/v1/orders/show.rabl +51 -0
- data/app/views/spree/api/v1/payments/credit_over_limit.rabl +2 -0
- data/app/views/spree/api/v1/payments/index.rabl +7 -0
- data/app/views/spree/api/v1/payments/new.rabl +5 -0
- data/app/views/spree/api/v1/payments/show.rabl +2 -0
- data/app/views/spree/api/v1/payments/update_forbidden.rabl +2 -0
- data/app/views/spree/api/v1/product_properties/index.rabl +7 -0
- data/app/views/spree/api/v1/product_properties/new.rabl +2 -0
- data/app/views/spree/api/v1/product_properties/show.rabl +2 -0
- data/app/views/spree/api/v1/products/index.rabl +9 -0
- data/app/views/spree/api/v1/products/new.rabl +3 -0
- data/app/views/spree/api/v1/products/product.rabl +1 -0
- data/app/views/spree/api/v1/products/show.rabl +36 -0
- data/app/views/spree/api/v1/promotions/handler.rabl +5 -0
- data/app/views/spree/api/v1/promotions/show.rabl +2 -0
- data/app/views/spree/api/v1/properties/index.rabl +7 -0
- data/app/views/spree/api/v1/properties/new.rabl +2 -0
- data/app/views/spree/api/v1/properties/show.rabl +2 -0
- data/app/views/spree/api/v1/reimbursements/index.rabl +7 -0
- data/app/views/spree/api/v1/return_authorizations/index.rabl +7 -0
- data/app/views/spree/api/v1/return_authorizations/new.rabl +3 -0
- data/app/views/spree/api/v1/return_authorizations/show.rabl +2 -0
- data/app/views/spree/api/v1/shared/stock_location_required.rabl +2 -0
- data/app/views/spree/api/v1/shipments/big.rabl +48 -0
- data/app/views/spree/api/v1/shipments/cannot_ready_shipment.rabl +2 -0
- data/app/views/spree/api/v1/shipments/mine.rabl +9 -0
- data/app/views/spree/api/v1/shipments/show.rabl +32 -0
- data/app/views/spree/api/v1/shipments/small.rabl +37 -0
- data/app/views/spree/api/v1/shipping_rates/show.rabl +2 -0
- data/app/views/spree/api/v1/states/index.rabl +12 -0
- data/app/views/spree/api/v1/states/show.rabl +2 -0
- data/app/views/spree/api/v1/stock_items/index.rabl +7 -0
- data/app/views/spree/api/v1/stock_items/show.rabl +5 -0
- data/app/views/spree/api/v1/stock_locations/index.rabl +7 -0
- data/app/views/spree/api/v1/stock_locations/show.rabl +8 -0
- data/app/views/spree/api/v1/stock_movements/index.rabl +7 -0
- data/app/views/spree/api/v1/stock_movements/show.rabl +5 -0
- data/app/views/spree/api/v1/stores/index.rabl +4 -0
- data/app/views/spree/api/v1/stores/show.rabl +2 -0
- data/app/views/spree/api/v1/tags/index.rabl +9 -0
- data/app/views/spree/api/v1/taxonomies/index.rabl +7 -0
- data/app/views/spree/api/v1/taxonomies/jstree.rabl +7 -0
- data/app/views/spree/api/v1/taxonomies/nested.rabl +11 -0
- data/app/views/spree/api/v1/taxonomies/new.rabl +3 -0
- data/app/views/spree/api/v1/taxonomies/show.rabl +15 -0
- data/app/views/spree/api/v1/taxons/index.rabl +10 -0
- data/app/views/spree/api/v1/taxons/jstree.rabl +7 -0
- data/app/views/spree/api/v1/taxons/new.rabl +3 -0
- data/app/views/spree/api/v1/taxons/show.rabl +6 -0
- data/app/views/spree/api/v1/taxons/taxons.rabl +5 -0
- data/app/views/spree/api/v1/users/index.rabl +7 -0
- data/app/views/spree/api/v1/users/new.rabl +3 -0
- data/app/views/spree/api/v1/users/show.rabl +11 -0
- data/app/views/spree/api/v1/variants/big.rabl +14 -0
- data/app/views/spree/api/v1/variants/index.rabl +9 -0
- data/app/views/spree/api/v1/variants/new.rabl +2 -0
- data/app/views/spree/api/v1/variants/show.rabl +3 -0
- data/app/views/spree/api/v1/variants/small.rabl +18 -0
- data/app/views/spree/api/v1/zones/index.rabl +7 -0
- data/app/views/spree/api/v1/zones/show.rabl +6 -0
- data/config/initializers/rabl.rb +9 -0
- data/config/routes.rb +123 -0
- data/lib/spree/api_v1/controller_setup.rb +19 -0
- data/lib/spree/api_v1/engine.rb +27 -0
- data/lib/spree/api_v1/factories.rb +6 -0
- data/lib/spree/api_v1/responders/rabl_template.rb +28 -0
- data/lib/spree/api_v1/responders.rb +11 -0
- data/lib/spree/api_v1/testing_support/helpers.rb +44 -0
- data/lib/spree/api_v1/testing_support/setup.rb +16 -0
- data/lib/spree/api_v1/version.rb +9 -0
- data/lib/spree/api_v1.rb +9 -0
- data/lib/spree_api_v1.rb +3 -0
- data/script/rails +9 -0
- data/spec/fixtures/files/icon_256x256.jpg +0 -0
- data/spec/fixtures/thinking-cat.jpg +0 -0
- data/spree_api_v1.gemspec +26 -0
- metadata +261 -0
@@ -0,0 +1,190 @@
|
|
1
|
+
module Spree
|
2
|
+
module Api
|
3
|
+
module ApiHelpers
|
4
|
+
ATTRIBUTES = [
|
5
|
+
:product_attributes,
|
6
|
+
:product_property_attributes,
|
7
|
+
:variant_attributes,
|
8
|
+
:image_attributes,
|
9
|
+
:option_value_attributes,
|
10
|
+
:order_attributes,
|
11
|
+
:line_item_attributes,
|
12
|
+
:option_type_attributes,
|
13
|
+
:payment_attributes,
|
14
|
+
:payment_method_attributes,
|
15
|
+
:shipment_attributes,
|
16
|
+
:taxonomy_attributes,
|
17
|
+
:taxon_attributes,
|
18
|
+
:address_attributes,
|
19
|
+
:country_attributes,
|
20
|
+
:state_attributes,
|
21
|
+
:adjustment_attributes,
|
22
|
+
:inventory_unit_attributes,
|
23
|
+
:return_authorization_attributes,
|
24
|
+
:creditcard_attributes,
|
25
|
+
:payment_source_attributes,
|
26
|
+
:user_attributes,
|
27
|
+
:property_attributes,
|
28
|
+
:stock_location_attributes,
|
29
|
+
:stock_movement_attributes,
|
30
|
+
:stock_item_attributes,
|
31
|
+
:promotion_attributes,
|
32
|
+
:store_attributes,
|
33
|
+
:tag_attributes,
|
34
|
+
:customer_return_attributes,
|
35
|
+
:reimbursement_attributes
|
36
|
+
]
|
37
|
+
|
38
|
+
mattr_reader *ATTRIBUTES
|
39
|
+
|
40
|
+
def required_fields_for(model)
|
41
|
+
required_fields = model._validators.select do |_field, validations|
|
42
|
+
validations.any? { |v| v.is_a?(ActiveModel::Validations::PresenceValidator) }
|
43
|
+
end.map(&:first) # get fields that are invalid
|
44
|
+
# Permalinks presence is validated, but are really automatically generated
|
45
|
+
# Therefore we shouldn't tell API clients that they MUST send one through
|
46
|
+
required_fields.map!(&:to_s).delete('permalink')
|
47
|
+
# Do not require slugs, either
|
48
|
+
required_fields.delete('slug')
|
49
|
+
required_fields
|
50
|
+
end
|
51
|
+
|
52
|
+
@@product_attributes = [
|
53
|
+
:id, :name, :description, :price, :display_price, :available_on,
|
54
|
+
:slug, :meta_description, :meta_keywords, :shipping_category_id,
|
55
|
+
:taxon_ids, :total_on_hand
|
56
|
+
]
|
57
|
+
|
58
|
+
@@product_property_attributes = [
|
59
|
+
:id, :product_id, :property_id, :value, :property_name
|
60
|
+
]
|
61
|
+
|
62
|
+
@@variant_attributes = [
|
63
|
+
:id, :name, :sku, :price, :weight, :height, :width, :depth, :is_master,
|
64
|
+
:slug, :description, :track_inventory
|
65
|
+
]
|
66
|
+
|
67
|
+
@@image_attributes = [
|
68
|
+
:id, :position, :attachment_content_type, :attachment_file_name, :type,
|
69
|
+
:attachment_updated_at, :attachment_width, :attachment_height, :alt
|
70
|
+
]
|
71
|
+
|
72
|
+
@@option_value_attributes = [
|
73
|
+
:id, :name, :presentation, :option_type_name, :option_type_id,
|
74
|
+
:option_type_presentation
|
75
|
+
]
|
76
|
+
|
77
|
+
@@order_attributes = [
|
78
|
+
:id, :number, :item_total, :total, :ship_total, :state, :adjustment_total,
|
79
|
+
:user_id, :created_at, :updated_at, :completed_at, :payment_total,
|
80
|
+
:shipment_state, :payment_state, :email, :special_instructions, :channel,
|
81
|
+
:included_tax_total, :additional_tax_total, :display_included_tax_total,
|
82
|
+
:display_additional_tax_total, :tax_total, :currency, :considered_risky,
|
83
|
+
:canceler_id
|
84
|
+
]
|
85
|
+
|
86
|
+
@@line_item_attributes = [:id, :quantity, :price, :variant_id]
|
87
|
+
|
88
|
+
@@option_type_attributes = [:id, :name, :presentation, :position]
|
89
|
+
|
90
|
+
@@payment_attributes = [
|
91
|
+
:id, :source_type, :source_id, :amount, :display_amount,
|
92
|
+
:payment_method_id, :state, :avs_response, :created_at,
|
93
|
+
:updated_at, :number
|
94
|
+
]
|
95
|
+
|
96
|
+
@@payment_method_attributes = [:id, :name, :description]
|
97
|
+
|
98
|
+
@@shipment_attributes = [:id, :tracking, :number, :cost, :shipped_at, :state]
|
99
|
+
|
100
|
+
@@taxonomy_attributes = [:id, :name]
|
101
|
+
|
102
|
+
@@taxon_attributes = [
|
103
|
+
:id, :name, :pretty_name, :permalink, :parent_id,
|
104
|
+
:taxonomy_id, :meta_title, :meta_description
|
105
|
+
]
|
106
|
+
|
107
|
+
@@inventory_unit_attributes = [
|
108
|
+
:id, :lock_version, :state, :variant_id, :shipment_id,
|
109
|
+
:return_authorization_id
|
110
|
+
]
|
111
|
+
|
112
|
+
@@return_authorization_attributes = [
|
113
|
+
:id, :number, :state, :order_id, :memo, :created_at, :updated_at
|
114
|
+
]
|
115
|
+
|
116
|
+
@@address_attributes = [
|
117
|
+
:id, :firstname, :lastname, :full_name, :address1, :address2, :city,
|
118
|
+
:zipcode, :phone, :company, :alternative_phone, :country_id, :state_id,
|
119
|
+
:label, :state_name, :state_text
|
120
|
+
]
|
121
|
+
|
122
|
+
@@country_attributes = [:id, :iso_name, :iso, :iso3, :name, :numcode]
|
123
|
+
|
124
|
+
@@state_attributes = [:id, :name, :abbr, :country_id]
|
125
|
+
|
126
|
+
@@adjustment_attributes = [
|
127
|
+
:id, :source_type, :source_id, :adjustable_type, :adjustable_id,
|
128
|
+
:originator_type, :originator_id, :amount, :label, :mandatory,
|
129
|
+
:locked, :eligible, :created_at, :updated_at
|
130
|
+
]
|
131
|
+
|
132
|
+
@@creditcard_attributes = [
|
133
|
+
:id, :month, :year, :cc_type, :last_digits, :name,
|
134
|
+
:gateway_customer_profile_id, :gateway_payment_profile_id
|
135
|
+
]
|
136
|
+
|
137
|
+
@@payment_source_attributes = [
|
138
|
+
:id, :month, :year, :cc_type, :last_digits, :name
|
139
|
+
]
|
140
|
+
|
141
|
+
@@user_attributes = [:id, :email, :created_at, :updated_at]
|
142
|
+
|
143
|
+
@@property_attributes = [:id, :name, :presentation]
|
144
|
+
|
145
|
+
@@stock_location_attributes = [
|
146
|
+
:id, :name, :address1, :address2, :city, :state_id, :state_name,
|
147
|
+
:country_id, :zipcode, :phone, :active
|
148
|
+
]
|
149
|
+
|
150
|
+
@@stock_movement_attributes = [:id, :quantity, :stock_item_id]
|
151
|
+
|
152
|
+
@@stock_item_attributes = [
|
153
|
+
:id, :count_on_hand, :backorderable, :lock_version, :stock_location_id,
|
154
|
+
:variant_id
|
155
|
+
]
|
156
|
+
|
157
|
+
@@promotion_attributes = [
|
158
|
+
:id, :name, :description, :expires_at, :starts_at, :type, :usage_limit,
|
159
|
+
:match_policy, :code, :advertise, :path
|
160
|
+
]
|
161
|
+
|
162
|
+
@@store_attributes = [
|
163
|
+
:id, :name, :url, :meta_description, :meta_keywords, :seo_title,
|
164
|
+
:mail_from_address, :customer_support_email, :default_currency,
|
165
|
+
:code, :default, :facebook, :twitter, :instagram,
|
166
|
+
:supported_currencies, :default_locale, :supported_locales
|
167
|
+
]
|
168
|
+
|
169
|
+
@@tag_attributes = [:id, :name]
|
170
|
+
|
171
|
+
@@customer_return_attributes = [
|
172
|
+
:id, :number, :order_id, :fully_reimbursed?, :pre_tax_total,
|
173
|
+
:created_at, :updated_at
|
174
|
+
]
|
175
|
+
|
176
|
+
@@reimbursement_attributes = [
|
177
|
+
:id, :reimbursement_status, :customer_return_id, :order_id,
|
178
|
+
:number, :total, :created_at, :updated_at
|
179
|
+
]
|
180
|
+
|
181
|
+
def variant_attributes
|
182
|
+
if @current_user_roles&.include?('admin')
|
183
|
+
@@variant_attributes + [:cost_price]
|
184
|
+
else
|
185
|
+
@@variant_attributes
|
186
|
+
end
|
187
|
+
end
|
188
|
+
end
|
189
|
+
end
|
190
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
object @line_item
|
2
|
+
cache [I18n.locale, root_object]
|
3
|
+
attributes *line_item_attributes
|
4
|
+
node(:single_display_amount) { |li| li.single_display_amount.to_s }
|
5
|
+
node(:display_amount) { |li| li.display_amount.to_s }
|
6
|
+
node(:total, &:total)
|
7
|
+
child :variant do
|
8
|
+
extends 'spree/api/v1/variants/small'
|
9
|
+
attributes :product_id
|
10
|
+
end
|
11
|
+
|
12
|
+
child adjustments: :adjustments do
|
13
|
+
extends 'spree/api/v1/adjustments/show'
|
14
|
+
end
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,10 @@
|
|
1
|
+
cache [I18n.locale, root_object]
|
2
|
+
attributes *order_attributes
|
3
|
+
node(:display_item_total) { |o| o.display_item_total.to_s }
|
4
|
+
node(:total_quantity) { |o| o.line_items.sum(:quantity) }
|
5
|
+
node(:display_total) { |o| o.display_total.to_s }
|
6
|
+
node(:display_ship_total, &:display_ship_total)
|
7
|
+
node(:display_tax_total, &:display_tax_total)
|
8
|
+
node(:display_adjustment_total, &:display_adjustment_total)
|
9
|
+
node(:token, &:token)
|
10
|
+
node(:checkout_steps, &:checkout_steps)
|
@@ -0,0 +1,51 @@
|
|
1
|
+
object @order
|
2
|
+
extends 'spree/api/v1/orders/order'
|
3
|
+
|
4
|
+
if lookup_context.find_all("spree/api/v1/orders/#{root_object.state}").present?
|
5
|
+
extends "spree/api/v1/orders/#{root_object.state}"
|
6
|
+
end
|
7
|
+
|
8
|
+
child billing_address: :bill_address do
|
9
|
+
extends 'spree/api/v1/addresses/show'
|
10
|
+
end
|
11
|
+
|
12
|
+
child shipping_address: :ship_address do
|
13
|
+
extends 'spree/api/v1/addresses/show'
|
14
|
+
end
|
15
|
+
|
16
|
+
child line_items: :line_items do
|
17
|
+
extends 'spree/api/v1/line_items/show'
|
18
|
+
end
|
19
|
+
|
20
|
+
child payments: :payments do
|
21
|
+
attributes *payment_attributes
|
22
|
+
|
23
|
+
child payment_method: :payment_method do
|
24
|
+
attributes :id, :name
|
25
|
+
end
|
26
|
+
|
27
|
+
child source: :source do
|
28
|
+
if @current_user_roles.include?('admin')
|
29
|
+
attributes *payment_source_attributes + [:gateway_customer_profile_id, :gateway_payment_profile_id]
|
30
|
+
else
|
31
|
+
attributes *payment_source_attributes
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
child shipments: :shipments do
|
37
|
+
extends 'spree/api/v1/shipments/small'
|
38
|
+
end
|
39
|
+
|
40
|
+
child adjustments: :adjustments do
|
41
|
+
extends 'spree/api/v1/adjustments/show'
|
42
|
+
end
|
43
|
+
|
44
|
+
# Necessary for backend's order interface
|
45
|
+
node :permissions do
|
46
|
+
{ can_update: current_ability.can?(:update, root_object) }
|
47
|
+
end
|
48
|
+
|
49
|
+
child valid_credit_cards: :credit_cards do
|
50
|
+
extends 'spree/api/v1/credit_cards/show'
|
51
|
+
end
|
@@ -0,0 +1,9 @@
|
|
1
|
+
object false
|
2
|
+
node(:count) { @products.count }
|
3
|
+
node(:total_count) { @products.total_count }
|
4
|
+
node(:current_page) { params[:page] ? params[:page].to_i : 1 }
|
5
|
+
node(:per_page) { params[:per_page].try(:to_i) || Kaminari.config.default_per_page }
|
6
|
+
node(:pages) { @products.total_pages }
|
7
|
+
child(@products => :products) do
|
8
|
+
extends 'spree/api/v1/products/show'
|
9
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
attributes *product_attributes
|
@@ -0,0 +1,36 @@
|
|
1
|
+
object @product
|
2
|
+
cache [I18n.locale, @current_user_roles.include?('admin'), current_currency, root_object]
|
3
|
+
|
4
|
+
attributes *product_attributes
|
5
|
+
|
6
|
+
node(:display_price) { |p| p.display_price.to_s }
|
7
|
+
node(:has_variants, &:has_variants?)
|
8
|
+
node(:taxon_ids, &:taxon_ids)
|
9
|
+
node(:display_current_currency_price) do |product|
|
10
|
+
price = product.price_in(current_currency)
|
11
|
+
Spree::Money.new(price.amount, currency: current_currency).to_s
|
12
|
+
end
|
13
|
+
|
14
|
+
child master: :master do
|
15
|
+
extends 'spree/api/v1/variants/small'
|
16
|
+
end
|
17
|
+
|
18
|
+
child variants: :variants do
|
19
|
+
extends 'spree/api/v1/variants/small'
|
20
|
+
end
|
21
|
+
|
22
|
+
child option_types: :option_types do
|
23
|
+
attributes *option_type_attributes
|
24
|
+
end
|
25
|
+
|
26
|
+
child product_properties: :product_properties do
|
27
|
+
attributes *product_property_attributes
|
28
|
+
end
|
29
|
+
|
30
|
+
child classifications: :classifications do
|
31
|
+
attributes :taxon_id, :position
|
32
|
+
|
33
|
+
child(:taxon) do
|
34
|
+
extends 'spree/api/v1/taxons/show'
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
object false
|
2
|
+
child(@return_authorizations => :return_authorizations) do
|
3
|
+
attributes *return_authorization_attributes
|
4
|
+
end
|
5
|
+
node(:count) { @return_authorizations.count }
|
6
|
+
node(:current_page) { params[:page].try(:to_i) || 1 }
|
7
|
+
node(:pages) { @return_authorizations.total_pages }
|