forked from solidusio/solidus
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapi_configuration.rb
More file actions
164 lines (129 loc) · 6.54 KB
/
api_configuration.rb
File metadata and controls
164 lines (129 loc) · 6.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
# frozen_string_literal: true
module Spree
class ApiConfiguration < Preferences::Configuration
preference :requires_authentication, :boolean, default: true
preference :product_attributes, :array, default: [
:id, :name, :description, :available_on,
:slug, :meta_description, :meta_keywords, :shipping_category_id,
:taxon_ids, :total_on_hand, :meta_title, :primary_taxon_id
]
preference :product_property_attributes, :array, default: [:id, :product_id, :property_id, :value, :property_name]
preference :variant_attributes, :array, default: [
:id, :name, :sku, :gtin, :condition, :weight, :height, :width, :depth, :is_master,
:slug, :description, :track_inventory
]
preference :image_attributes, :array, default: [
:id, :position, :attachment_content_type, :attachment_file_name, :type,
:attachment_updated_at, :attachment_width, :attachment_height, :alt
]
preference :option_value_attributes, :array, default: [
:id, :name, :presentation, :option_type_name, :option_type_id,
:option_type_presentation
]
preference :order_attributes, :array, default: [
:id, :number, :item_total, :total, :ship_total, :state, :adjustment_total,
:user_id, :created_at, :updated_at, :completed_at, :payment_total,
:shipment_state, :payment_state, :email, :special_instructions, :channel,
:included_tax_total, :additional_tax_total, :display_included_tax_total,
:display_additional_tax_total, :tax_total, :currency,
:covered_by_store_credit, :display_total_applicable_store_credit,
:order_total_after_store_credit, :display_order_total_after_store_credit,
:total_applicable_store_credit, :display_total_available_store_credit,
:display_store_credit_remaining_after_capture, :canceler_id, :customer_metadata
]
preference :line_item_attributes, :array, default: [:id, :quantity, :price, :variant_id, :customer_metadata]
# Spree::Api::Config.metadata_api_parameters contains the models
# to which the admin_metadata attribute is added
preference :metadata_api_parameters, :array, default: [
[:order, 'Spree::Order'],
[:customer_return, 'Spree::CustomerReturn'],
[:payment, 'Spree::Payment'],
[:return_authorization, 'Spree::ReturnAuthorization'],
[:shipment, 'Spree::Shipment'],
[:user, 'Spree.user_class'],
[:line_item, 'Spree::LineItem']
]
# Spree::Api::Config.metadata_permit_parameters contains the models
# to which the admin_metadata attribute is permitted
preference :metadata_permit_parameters, :array, default: [
:Order,
:CustomerReturn,
:Payment,
:ReturnAuthorization,
:Shipment
]
preference :option_type_attributes, :array, default: [:id, :name, :presentation, :position]
preference :payment_attributes, :array, default: [
:id, :source_type, :source_id, :amount, :display_amount,
:payment_method_id, :state, :avs_response, :created_at,
:updated_at, :customer_metadata
]
preference :payment_method_attributes, :array, default: [:id, :name, :description]
preference :shipment_attributes, :array, default: [:id, :tracking, :tracking_url, :number, :cost, :shipped_at, :state, :customer_metadata]
preference :taxonomy_attributes, :array, default: [:id, :name]
preference :taxon_attributes, :array, default: [
:id, :name, :pretty_name, :permalink, :parent_id,
:taxonomy_id
]
preference :address_attributes, :array, default: [
:id, :name, :address1, :address2, :city, :zipcode, :phone, :company,
:alternative_phone, :country_id, :country_iso, :state_id, :state_name,
:state_text, :email, :vat_id, :reverse_charge_status
]
preference :country_attributes, :array, default: [:id, :iso_name, :iso, :iso3, :name, :numcode]
preference :state_attributes, :array, default: [:id, :name, :abbr, :country_id]
preference :adjustment_attributes, :array, default: [
:id, :source_type, :source_id, :adjustable_type, :adjustable_id,
:amount, :label,
:finalized, :created_at, :updated_at
]
preference :inventory_unit_attributes, :array, default: [
:id, :state, :variant_id, :shipment_id
]
preference :customer_return_attributes, :array, default: [
:id, :number, :stock_location_id, :created_at, :updated_at, :customer_metadata
]
preference :return_authorization_attributes, :array, default: [
:id, :number, :state, :order_id, :memo, :created_at, :updated_at, :customer_metadata
]
preference :creditcard_attributes, :array, default: [
:id, :month, :year, :cc_type, :last_digits, :name
]
preference :payment_source_attributes, :array, default: [
:id, :month, :year, :cc_type, :last_digits, :name
]
preference :user_attributes, :array, default: [:id, :email, :created_at, :updated_at, :customer_metadata]
preference :property_attributes, :array, default: [:id, :name, :presentation]
preference :stock_location_attributes, :array, default: [
:id, :name, :address1, :address2, :city, :state_id, :state_name,
:country_id, :zipcode, :phone, :active
]
preference :stock_movement_attributes, :array, default: [:id, :quantity, :stock_item_id]
preference :stock_item_attributes, :array, default: [
:id, :count_on_hand, :backorderable, :stock_location_id,
:variant_id
]
def promotion_attributes
Spree::Config.promotions.promotion_api_attributes
end
alias_method :preferred_promotion_attributes, :promotion_attributes
def promotion_attributes=(value)
Spree::Config.promotions.promotion_api_attributes = value
end
alias_method :preferred_promotion_attributes=, :promotion_attributes=
promotion_attributes_deprecation_message = "Spree::ApiConfiguration#promotion_attributes= is deprecated. Please use Spree::Config.promotions.promotion_api_attributes= instead."
deprecate "promotion_attributes=" => promotion_attributes_deprecation_message, deprecator: Spree.deprecator
preference :store_attributes, :array, default: [
:id, :name, :url, :meta_description, :meta_keywords, :seo_title,
:mail_from_address, :default_currency, :code, :default, :available_locales,
:bcc_email, :reverse_charge_status
]
preference :store_credit_history_attributes, :array, default: [
:display_amount, :display_user_total_amount, :display_action,
:display_event_date, :display_remaining_amount, :customer_metadata
]
preference :variant_property_attributes, :array, default: [
:id, :property_id, :value, :property_name
]
end
end