forked from MONEI/Shopify-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct-variant.js
105 lines (87 loc) · 2.71 KB
/
product-variant.js
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
'use strict';
const assign = require('lodash/assign');
const pick = require('lodash/pick');
const baseChild = require('../mixins/base-child');
const base = require('../mixins/base');
/**
* Creates a ProductVariant instance.
*
* @param {Shopify} shopify Reference to the Shopify instance
* @constructor
* @public
*/
function ProductVariant(shopify) {
this.shopify = shopify;
this.parentName = 'products';
this.name = 'variants';
this.key = 'variant';
}
assign(
ProductVariant.prototype,
pick(baseChild, ['buildUrl', 'count', 'delete'])
);
/**
* Gets a single product variant by its ID.
*
* @param {Number} id Product variant ID
* @param {Object} [params] Query parameters
* @return {Promise} Promise that resolves with the result
* @public
*/
ProductVariant.prototype.get = function get(id, params) {
const url = base.buildUrl.call(this, id, params);
const headers = {};
if (this.shopify.options.presentmentPrices) {
headers['X-Shopify-Api-Features'] = 'include-presentment-prices';
}
return this.shopify.request(url, 'GET', this.key, undefined, headers);
};
/**
* Creates a new product variant.
*
* @param {Number} productId Product ID
* @param {Object} params Product variant properties
* @return {Promise} Promise that resolves with the result
* @public
*/
ProductVariant.prototype.create = function create(productId, params) {
const url = this.buildUrl(productId);
const headers = {};
if (this.shopify.options.presentmentPrices) {
headers['X-Shopify-Api-Features'] = 'include-presentment-prices';
}
return this.shopify.request(url, 'POST', this.key, params, headers);
};
/**
* Get a list of product variants.
*
* @param {Number} productId Product ID
* @param {Object} [params] Query parameters
* @return {Promise} Promise that resolves with the result
* @public
*/
ProductVariant.prototype.list = function list(productId, params) {
const url = this.buildUrl(productId, undefined, params);
const headers = {};
if (this.shopify.options.presentmentPrices) {
headers['X-Shopify-Api-Features'] = 'include-presentment-prices';
}
return this.shopify.request(url, 'GET', this.name, undefined, headers);
};
/**
* Updates an existing product variant.
*
* @param {Number} id Product variant ID
* @param {Object} params Product variant properties
* @return {Promise} Promise that resolves with the result
* @public
*/
ProductVariant.prototype.update = function update(id, params) {
const url = base.buildUrl.call(this, id);
const headers = {};
if (this.shopify.options.presentmentPrices) {
headers['X-Shopify-Api-Features'] = 'include-presentment-prices';
}
return this.shopify.request(url, 'PUT', this.key, params, headers);
};
module.exports = ProductVariant;