forked from MONEI/Shopify-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustomer-address.js
98 lines (87 loc) · 2.61 KB
/
customer-address.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
'use strict';
const assign = require('lodash/assign');
const pick = require('lodash/pick');
const baseChild = require('../mixins/base-child');
/**
* Creates an CustomerAddress instance.
*
* @param {Shopify} shopify Reference to the Shopify instance
* @constructor
* @public
*/
function CustomerAddress(shopify) {
this.shopify = shopify;
this.parentName = 'customers';
this.name = 'addresses';
this.key = 'customer_address';
}
assign(
CustomerAddress.prototype,
pick(baseChild, ['buildUrl', 'delete', 'get'])
);
/**
* Gets a list of addresses for a customer.
*
* @param {Number} customerId Customer ID
* @param {Object} [params] Query parameters
* @return {Promise} Promise that resolves with the result
* @public
*/
CustomerAddress.prototype.list = function list(customerId, params) {
const url = this.buildUrl(customerId, undefined, params);
return this.shopify.request(url, 'GET', this.name);
};
/**
* Creates a new address for a customer.
*
* @param {Number} customerId Customer ID
* @param {Object} params Address properties
* @return {Promise} Promise that resolves with the result
* @public
*/
CustomerAddress.prototype.create = function create(customerId, params) {
const url = this.buildUrl(customerId);
return this.shopify
.request(url, 'POST', undefined, { address: params })
.then((body) => body[this.key]);
};
/**
* Updates a customer address.
*
* @param {Number} customerId Customer ID
* @param {Number} id Address ID
* @param {Object} params Address properties
* @return {Promise} Promise that resolves with the result
* @public
*/
CustomerAddress.prototype.update = function update(customerId, id, params) {
const url = this.buildUrl(customerId, id);
return this.shopify
.request(url, 'PUT', undefined, { address: params })
.then((body) => body[this.key]);
};
/**
* Performs bulk operations against a number of addresses.
*
* @param {Number} customerId Customer ID
* @param {Object} params Query parameters
* @return {Promise} Promise that resolves with the result
* @public
*/
CustomerAddress.prototype.set = function set(customerId, params) {
const url = this.buildUrl(customerId, 'set', params);
return this.shopify.request(url, 'PUT');
};
/**
* Sets default address for a customer.
*
* @param {Number} customerId Customer ID
* @param {Number} id Address ID
* @return {Promise} Promise that resolves with the result
* @public
*/
CustomerAddress.prototype.default = function defaultAddress(customerId, id) {
const url = this.buildUrl(customerId, `${id}/default`);
return this.shopify.request(url, 'PUT', this.key);
};
module.exports = CustomerAddress;