forked from MONEI/Shopify-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcancellation-request.js
87 lines (78 loc) · 2.33 KB
/
cancellation-request.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
'use strict';
const assign = require('lodash/assign');
const pick = require('lodash/pick');
const baseChild = require('../mixins/base-child');
/**
* Creates a CancellationRequest instance.
*
* @param {Shopify} shopify Reference to the Shopify instance
* @constructor
* @public
*/
function CancellationRequest(shopify) {
this.shopify = shopify;
this.parentName = 'fulfillment_orders';
this.key = this.name = 'cancellation_request';
}
assign(CancellationRequest.prototype, pick(baseChild, 'buildUrl'));
/**
* Sends a cancellation request to the fulfillment service of a fulfillment
* order.
*
* @params {Number} fulfillmentOrderId Fulfillment order ID
* @params {String} [message] The reason reason for the cancellation request
* @return {Promise} Promise that resolves with the result
* @public
*/
CancellationRequest.prototype.create = function create(
fulfillmentOrderId,
message = ''
) {
const url = this.buildUrl(fulfillmentOrderId);
return this.shopify
.request(url, 'POST', undefined, {
[this.key]: { message }
})
.then((body) => body.fulfillment_order);
};
/**
* Accepts a cancellation request sent to a fulfillment service for a
* fulfillment order.
*
* @params {Number} fulfillmentOrderId Fulfillment order ID
* @params {String} [message] The reason for accepting the cancellation request
* @return {Promise} Promise that resolves with the result
* @public
*/
CancellationRequest.prototype.accept = function accept(
fulfillmentOrderId,
message = ''
) {
const url = this.buildUrl(fulfillmentOrderId, 'accept');
return this.shopify
.request(url, 'POST', undefined, {
[this.key]: { message }
})
.then((body) => body.fulfillment_order);
};
/**
* Rejects a cancellation request sent to a fulfillment service for a
* fulfillment order.
*
* @params {Number} fulfillmentOrderId Fulfillment order ID
* @params {String} [message] The reason for rejecting the cancellation request
* @return {Promise} Promise that resolves with the result
* @public
*/
CancellationRequest.prototype.reject = function reject(
fulfillmentOrderId,
message = ''
) {
const url = this.buildUrl(fulfillmentOrderId, 'reject');
return this.shopify
.request(url, 'POST', undefined, {
[this.key]: { message }
})
.then((body) => body.fulfillment_order);
};
module.exports = CancellationRequest;