forked from MONEI/Shopify-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomment.js
84 lines (73 loc) · 1.9 KB
/
comment.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
'use strict';
const assign = require('lodash/assign');
const omit = require('lodash/omit');
const base = require('../mixins/base');
/**
* Creates a Comment instance.
*
* @param {Shopify} shopify Reference to the Shopify instance
* @constructor
* @public
*/
function Comment(shopify) {
this.shopify = shopify;
this.name = 'comments';
this.key = 'comment';
}
assign(Comment.prototype, omit(base, ['delete']));
/**
* Marks a comment as spam.
*
* @param {Number} id Comment ID
* @return {Promise} Promise that resolves with the result
* @public
*/
Comment.prototype.spam = function spam(id) {
const url = this.buildUrl(`${id}/spam`);
return this.shopify.request(url, 'POST', undefined, {});
};
/**
* Marks a comment as not spam.
*
* @param {Number} id Comment ID
* @return {Promise} Promise that resolves with the result
* @public
*/
Comment.prototype.notSpam = function notSpam(id) {
const url = this.buildUrl(`${id}/not_spam`);
return this.shopify.request(url, 'POST', undefined, {});
};
/**
* Approves a pending comment.
*
* @param {Number} id Comment ID
* @return {Promise} Promise that resolves with the result
* @public
*/
Comment.prototype.approve = function approve(id) {
const url = this.buildUrl(`${id}/approve`);
return this.shopify.request(url, 'POST', undefined, {});
};
/**
* Removes a comment.
*
* @param {Number} id Comment ID
* @return {Promise} Promise that resolves with the result
* @public
*/
Comment.prototype.remove = function remove(id) {
const url = this.buildUrl(`${id}/remove`);
return this.shopify.request(url, 'POST', undefined, {});
};
/**
* Restores a comment.
*
* @param {Number} id Comment ID
* @return {Promise} Promise that resolves with the result
* @public
*/
Comment.prototype.restore = function restore(id) {
const url = this.buildUrl(`${id}/restore`);
return this.shopify.request(url, 'POST', undefined, {});
};
module.exports = Comment;