list.js
9.08 KB
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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
/**
* 品类|品牌|店铺 model
* @author: wsl<shuiling.wang@yoho.cn>
* @date: 2016/07/21
*/
'use strict';
const utils = '../../../utils';
const logger = global.yoho.logger;
const camelCase = global.yoho.camelCase;
const _ = require('lodash');
const helpers = global.yoho.helpers;
const api = global.yoho.API;
/**
* 品牌名称处理
* @param {[object]} list
* @return {[object]}
*/
const _processBrandNames = (list) => {
const formatData = [];
list = list || [];
list = camelCase(list);
_.forEach(list, (item) => {
_.forEach(item, (obj) => {
formatData.push({
brandDomain: obj.brandDomain,
brandName: obj.brandName
});
});
});
return formatData;
};
/**
* 品牌名称处理
* @param {[object]} list
* @return {[object]}
*/
const _processClassNames = (list) => {
const formatData = {
first: {},
second: {}
};
list = list || [];
list = camelCase(list);
_.forEach(list, (item) => {
_.forEach(item, (obj) => {
formatData.first[obj.categoryId] = obj.categoryName;
if (obj.sub) {
_.forEach(obj.sub, (sub) => {
formatData.second[sub.categoryId] = sub.categoryName;
});
}
});
});
return formatData;
};
/* 多品牌店铺列表数据信息处理*/
const _processBrandShops = (list) => {
const formatDat = [];
list = list || [];
list = camelCase(list);
_.forEach(list, (item) => {
if (item.shopId) {
formatDat.push({
url: helpers.urlFormat('/product/index/brand/', {
shop_id: item.brandId
}),
thumb: helpers.image(item.brandIco, 75, 40),
name: item.brandName
});
}
});
return formatDat;
};
/**
* 获取品牌信息数据
* @param {int} brandId 品牌ID
* @return array banner数据
*/
const getBrandIntro = (brandId, uid) => {
let param = {};
if (uid) {
param = {
uid: uid
};
}
return api.get('', _.assign({
method: 'app.brand.getBrandIntro',
brand_id: brandId
}, param), {
cache: true
}).then((result) => {
if (result && result.code === 200) {
let list = camelCase(result.data) || {};
return {
id: list.brandId,
intro: list.brandIntro,
collected: (list.isFavorite && list.isFavorite === 'Y') ? true : false,
title: list.brandName ? list.brandName : ''
};
} else {
logger.error('get brand introduction api return code is not 200');
return {};
}
});
};
/**
* 获取品牌banner数据
* @param {int} brandId 品牌ID
* @return array banner数据
*/
const getBrandBanner = (brandId) => {
return api.get('', {
method: 'app.brand.banner',
brand_id: brandId
}, {
cache: true
}).then((result) => {
if (result && result.code === 200) {
if (result.data.banner) {
return helpers.image(result.data.banner, 640, 150);
} else {
return '';
}
} else {
logger.error('get brand banner api return code is not 200');
return {};
}
});
};
/**
* 获取所有的品牌名称
**/
const getAllBrandNames = () => {
return api.get('', {
method: 'app.brand.brandlist'
}, {
cache: true
}).then((result) => {
if (result && result.code === 200) {
return _processBrandNames(result.data.brands);
} else {
logger.error('get brand all name data api return code is not 200');
return {};
}
});
};
/**
* 获取所有的品类名称
**/
const getClassNames = () => {
return api.get('', {
method: 'app.sort.get'
}, {
cache: true
}).then((result) => {
if (result && result.code === 200) {
return _processClassNames(result.data);
} else {
logger.error('get category name api return code is not 200');
return {};
}
});
};
/**
* 根据品牌域名获取品牌LOGO
* @param {string} domain 品牌域名
* @return array | false
*/
const getBrandLogoByDomain = (domain) => {
return api.get('', {
method: 'web.brand.byDomain',
domain: domain
}, {
cache: true
}).then((result) => {
if (result && result.code === 200) {
if (result.data) {
let formatData = camelCase(result.data);
return {
id: formatData.id,
url: helpers.urlFormat('', null, formatData.brandDomain),
thumb: helpers.image(formatData.brandIco, 75, 40),
name: formatData.brandName,
shopId: formatData.shopId ? formatData.shopId : 0, // 店铺id
type: formatData.type ? formatData.type : 0
};
} else {
return false;
}
} else {
logger.error('get brand logo by domain api return code is not 200');
return {};
}
});
};
/**
* 根据brandId 获取相关店铺列表
* @param brandId
* @return array
*/
const getBrandShops = (brandId) => {
return api.get('', {
method: 'app.shop.queryShopsByBrandId',
brand_id: brandId
}, {
cache: true
}).then((result) => {
if (result && result.code === 200) {
return _processBrandShops(result.data);
} else {
logger.error('get shop list by brandId api return code is not 200');
return {};
}
});
};
/**
* 收藏
* @param {int} id ID
* @param {int} uid 用户ID
* @param type
* @return array
*/
const setFavorite = (id, uid, type) => {
return api.post('', {
method: 'app.favorite.add',
fav_id: id,
id: id,
uid: uid,
type: type
});
};
/**
* 取消收藏
*
* @param {int} id 品牌ID
* @param {int} uid 用户ID
* @param type
* @return array
*/
const setFavoriteCancel = (id, uid, type) => {
return api.post('', {
method: 'app.favorite.cancel',
fav_id: id,
id: id,
uid: uid,
type: type
});
};
/**
* 获取店铺装修的所有资源接口
* @param {int} shopId 店铺id
* @return array
*/
const getShopDecorator = (shopId) => {
return api.get('', {
method: 'app.shopsdecorator.getList',
shop_id: shopId
}, {
cache: true
}).then((result) => {
if (result && result.code === 200) {
return camelCase(result.data);
} else {
logger.error('get shop all resources api return code is not 200');
return '';
}
});
};
/**
* 获取店铺信息
* @param {int} shopId 店铺id
* @param {int} uid 用户id 判断用户是否收藏店铺
* @return array
*/
const getShopInfo = (shopId, uid) => {
return api.get('', {
method: 'app.shops.getIntro',
shop_id: shopId,
uid: uid || 0
}).then((result) => {
if (result && result.code === 200) {
return camelCase(result.data);
} else {
logger.error('get shop info api return code is not 200');
return {};
}
});
};
/**
* 获取店铺下面的所有分类
* @param {int} shopId 店铺id
* @param {string} channel 频道
* @return array
*/
const getShopCategory = (shopId, channel) => {
return api.get('', {
method: 'app.shop.getSortInfo',
yh_channel: channel,
shop_id: shopId
}).then((result) => {
if (result && result.code === 200) {
return camelCase(result.data);
} else {
logger.error('get shop all classify api return code is not 200');
return {};
}
});
};
/**
* 调取店铺简介数据
* @param {int} shopId
*/
const getShopIntro = (shopId) => {
return api.get('', {
method: 'app.shops.getIntro',
shop_id: shopId
}).then((result) => {
if (result && result.code === 200) {
return camelCase(result.data);
} else {
logger.error('get shop intro api return code is not 200');
return {};
}
});
};
/**
* 获取店铺下面的所有品牌
* @param {int} shopId 店铺id
*/
const getShopBrands = (shopId) => {
return api.get('', {
method: 'app.shops.getShopsBrands',
shop_id: shopId
}).then((result) => {
if (result && result.code === 200) {
result = camelCase(result.data);
return result[0].brandId;
} else {
logger.error('gGet all the brands under the shop return code is not 200');
return {};
}
});
};
module.exports = {
getAllBrandNames,
getClassNames,
getBrandLogoByDomain,
getBrandIntro,
getBrandShops,
getBrandBanner,
setFavorite,
setFavoriteCancel,
getShopDecorator,
getShopInfo,
getShopCategory,
getShopIntro,
getShopBrands
};