-
Notifications
You must be signed in to change notification settings - Fork 327
/
Copy pathapi_shop_group.js
254 lines (237 loc) · 6.3 KB
/
api_shop_group.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
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
'use strict';
// 商品分组管理接口
var util = require('./util');
var wrapper = util.wrapper;
var postJSON = util.postJSON;
/**
* 创建商品分组
* 详细请看:<http://mp.weixin.qq.com/wiki/8/703923b7349a607f13fb3100163837f0.html>
* Examples:
* ```
* api.createGoodsGroup(groupName, productList, callback);
* ```
* Callback:
*
* - `err`, 调用失败时得到的异常
* - `result`, 调用正常时得到的对象
*
* Result:
* ```
* {
* "errcode": 0,
* "errmsg": "success",
* "group_id": 19
* }
* ```
* @param {String} groupName 分组名
* @param {Array} productList 该组商品列表
* @param {Function} callback 回调函数
*/
exports.createGoodsGroup = function (groupName, productList, callback) {
this.preRequest(this._createGoodsGroup, arguments);
};
exports._createGoodsGroup = function (groupName, productList, callback) {
var data = {
'group_detail': {
'group_name': groupName,
'product_list': productList && productList.length ? productList: []
}
};
var url = this.endpoint + '/merchant/group/add?access_token=' + this.token.accessToken;
this.request(url, postJSON(data), wrapper(callback));
};
/**
* 删除商品分组
* 详细请看:<http://mp.weixin.qq.com/wiki/8/703923b7349a607f13fb3100163837f0.html>
* Examples:
* ```
* api.deleteGoodsGroup(groupId, callback);
* ```
* Callback:
*
* - `err`, 调用失败时得到的异常
* - `result`, 调用正常时得到的对象
*
* Result:
* ```
* {
* "errcode": 0,
* "errmsg": "success"
* }
* ```
* @param {String} groupId 分组ID
* @param {Function} callback 回调函数
*/
exports.deleteGoodsGroup = function (groupId, callback) {
this.preRequest(this._deleteGoodsGroup, arguments);
};
exports._deleteGoodsGroup = function (groupId, callback) {
var data = {
'group_id': groupId
};
var url = this.endpoint + '/merchant/group/del?access_token=' + this.token.accessToken;
this.request(url, postJSON(data), wrapper(callback));
};
/**
* 修改商品分组属性
* 详细请看:<http://mp.weixin.qq.com/wiki/8/703923b7349a607f13fb3100163837f0.html>
* Examples:
* ```
* api.updateGoodsGroup(groupId, groupName, callback);
* ```
* Callback:
*
* - `err`, 调用失败时得到的异常
* - `result`, 调用正常时得到的对象
*
* Result:
* ```
* {
* "errcode": 0,
* "errmsg": "success"
* }
* ```
* @param {String} groupId 分组ID
* @param {String} groupName 分组名
* @param {Function} callback 回调函数
*/
exports.updateGoodsGroup = function (groupId, groupName, callback) {
this.preRequest(this._updateGoodsGroup, arguments);
};
exports._updateGoodsGroup = function (groupId, groupName, callback) {
var data = {
'group_id': groupId,
'group_name': groupName
};
var url = this.endpoint + '/merchant/group/propertymod?access_token=' + this.token.accessToken;
this.request(url, postJSON(data), wrapper(callback));
};
/**
* 修改商品分组内的商品
* 详细请看:<http://mp.weixin.qq.com/wiki/8/703923b7349a607f13fb3100163837f0.html>
* Examples:
* ```
* api.updateGoodsForGroup(groupId, addProductList, delProductList, callback);
* ```
* Callback:
*
* - `err`, 调用失败时得到的异常
* - `result`, 调用正常时得到的对象
*
* Result:
* ```
* {
* "errcode": 0,
* "errmsg": "success"
* }
* ```
* @param {Object} groupId 分组ID
* @param {Array} addProductList 待添加的商品数组
* @param {Array} delProductList 待删除的商品数组
* @param {Function} callback 回调函数
*/
exports.updateGoodsForGroup = function (groupId, addProductList, delProductList, callback) {
this.preRequest(this._updateGoodsForGroup, arguments);
};
exports._updateGoodsForGroup = function (groupId, addProductList, delProductList, callback) {
var data = {
'group_id': groupId,
'product': []
};
if (addProductList && addProductList.length) {
addProductList.forEach(function (val) {
data.product.push({
'product_id': val,
'mod_action': 1
});
});
}
if (delProductList && delProductList.length) {
delProductList.forEach(function (val) {
data.product.push({
'product_id': val,
'mod_action': 0
});
});
}
var url = this.endpoint + '/merchant/group/productmod?access_token=' + this.token.accessToken;
this.request(url, postJSON(data), wrapper(callback));
};
/**
* 获取所有商品分组
* 详细请看:<http://mp.weixin.qq.com/wiki/8/703923b7349a607f13fb3100163837f0.html>
* Examples:
* ```
* api.getAllGroups(callback);
* ```
* Callback:
*
* - `err`, 调用失败时得到的异常
* - `result`, 调用正常时得到的对象
*
* Result:
* ```
* {
* "errcode": 0,
* "errmsg": "success"
* "groups_detail": [
* {
* "group_id": 200077549,
* "group_name": "新品上架"
* },{
* "group_id": 200079772,
* "group_name": "全球热卖"
* }
* ]
* }
* ```
* @param {Function} callback 回调函数
*/
exports.getAllGroups = function (callback) {
this.preRequest(this._getAllGroups, arguments);
};
exports._getAllGroups = function (callback) {
var url = this.endpoint + '/merchant/group/getall?access_token=' + this.token.accessToken;
this.request(url, {dataType: 'json'}, wrapper(callback));
};
/**
* 根据ID获取商品分组
* 详细请看:<http://mp.weixin.qq.com/wiki/8/703923b7349a607f13fb3100163837f0.html>
* Examples:
* ```
* api.getGroupById(groupId, callback);
* ```
* Callback:
*
* - `err`, 调用失败时得到的异常
* - `result`, 调用正常时得到的对象
*
* Result:
* ```
* {
* "errcode": 0,
* "errmsg": "success"
* "group_detail": {
* "group_id": 200077549,
* "group_name": "新品上架",
* "product_list": [
* "pDF3iYzZoY-Budrzt8O6IxrwIJAA",
* "pDF3iY3pnWSGJcO2MpS2Nxy3HWx8",
* "pDF3iY33jNt0Dj3M3UqiGlUxGrio"
* ]
* }
* }
* ```
* @param {String} groupId 分组ID
* @param {Function} callback 回调函数
*/
exports.getGroupById = function (groupId, callback) {
this.preRequest(this._getGroupById, arguments);
};
exports._getGroupById = function (groupId, callback) {
var data = {
'group_id': groupId
};
var url = this.endpoint + '/merchant/group/getbyid?access_token=' + this.token.accessToken;
this.request(url, postJSON(data), wrapper(callback));
};