search.js
12.8 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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
/**
* search model
* @author: wsl<shuiling.wang@yoho.cn>
* @date: 2016/07/21
*/
'use strict';
const utils = '../../../utils';
const productProcess = require(`${utils}/product-process`);
const searchProcess = require(`${utils}/search-process`);
const _ = require('lodash');
const logger = global.yoho.logger;
const api = global.yoho.API;
const cache = require('memory-cache');
const helpers = global.yoho.helpers;
/**
* 封面图
* @type {{boys: string, gilrs: string}}
*/
const _coverChannel = {
boys: '1,3',
gilrs: '2,3'
};
/**
* 品牌名称处理
* @param {[object]} list
* @return {[object]}
*/
const _processBrandNames = (list) => {
const formatData = [];
const brandDomainMap = {}, brandNameMap = {};
const ttl = 60000; // 默认缓存一分钟
let brandDomain = '';
let brandName = '';
list = list || [];
_.forEach(list, (item) => {
_.forEach(item, (obj) => {
brandDomain = obj.brand_domain && obj.brand_domain.toLowerCase();
brandName = obj.brand_name && obj.brand_name.toLowerCase();
if (brandDomain && brandName) {
formatData.push({
brandDomain: brandDomain,
brandName: brandName
});
brandDomainMap[brandDomain] = brandDomain;
brandNameMap[brandName] = brandDomain;
}
});
});
cache.put('brandDomainMap', brandDomainMap, ttl);
cache.put('brandNameMap', brandNameMap, ttl);
return formatData;
};
/**
* 品牌名称处理
* @param {[object]} list
* @return {[object]}
*/
const _processClassNames = (list) => {
const formatData = {
first: {},
second: {}
};
list = list || [];
_.forEach(list, (item) => {
_.forEach(item, (obj) => {
formatData.first[obj.category_id] = obj.category_name;
if (obj.sub) {
_.forEach(obj.sub, (sub) => {
formatData.second[sub.category_id] = sub.category_name;
});
}
});
});
return formatData;
};
/**
* 商品搜索接口请求
* @param {[object]} params
* @return {[array]}
*/
const _searchGoods = (params) => {
let method = 'app.search.li';
if (_.isArray(params.query)) {
params.query = _.join(params.query, ',');
}
// 排除基本筛选项默认值为0的对象
for (let str in params) {
if (str !== 'order' && params[str] === '0' || params[str] === null) {
delete params[str];
}
}
/* tar add 160823 店铺销售类目 */
if (params.filter_poolId) {
method = 'app.search.pool';
Object.assign(params, {
productPool: params.filter_poolId
});
delete params.filter_poolId;
}
if (params.shop_id && !params.productPool) {
method = 'app.search.li';
}
// else if (params.brand && !params.productPool) {
// method = 'app.search.brand';
// }
if (params.channel) {
params.yh_channel = searchProcess.getChannelType(params.channel);
delete params.channel;
}
if (params.query) {
params.query = params.query.replace(/\+/g, ',');
}
if (params.app_type && params.app_type === '1') {
params.app_type = 1;
}
params = _.assign({
limit: '60',
status: 1,
sales: 'Y',
stocknumber: 1,
attribute_not: 2
}, params);
if (params.type === 'default') {
// 筛选 默认 不传order
delete params.order;
} else if (params.order) {
params.order = searchProcess.getTypeCont(params.type || '', params.order);
} else {
params.order = 's_t_asc';
}
// 学生返币查询
if (params.coin) {
method = 'app.student.rebate';
delete params.filter_poolId;
if (params.type === 'newest') {
delete params.order;
delete params.type;
}
}
if (params.isblknew) {
method = 'app.search.newProduct';
params.app_type = 1;
if (params.type === 'default') {
params.order = 's_t_asc';
}
}
if (params.promotion_id) {
method = 'app.search.promotion';
}
if (params.students) {
method = 'app.student.discount';
}
// 个人中心优惠券立即使用 - 商品列表
if (params.coupon_id || params.coupon_code) {
method = 'app.search.coupon';
}
return api.get('', _.assign({
method: method
}, params), {
cache: true
});
};
/**
* 获取店铺列表
*/
const _processBrandShops = (list) => {
let formatDat = [];
_.forEach(list, item => {
if (item.shop_type === 'yoho_shop') {
formatDat.push({
url: helpers.urlFormat('/product/index/brand/', {
shop_id: item.shop_id
}),
thumb: helpers.image(item.shop_logo, 126, 80),
name: item.shop_name,
shopId: item.shop_id
});
} else if (item.shop_type === 'tbl_brand') {
formatDat.push({
url: helpers.urlFormat('/product/global/list/', {
brand: item.global_brand_id
}),
thumb: helpers.image(item.brand_ico, 126, 80),
name: item.brand_name,
brandId: item.global_brand_id
});
}
});
if (formatDat.length > 2) {
formatDat.moreShop = true;
}
return formatDat;
};
/**
* 获取商品数据
*/
const getSearchData = (params) => {
// client_type 全部赋值为h5 过滤掉嵌入APP页面是默认的client_type
params.client_type = 'h5';
return _searchGoods(params).then((result) => {
if (result && result.code === 200) {
let newList = {};
let suggestion = {};
if (result.data.shopList && result.data.shopList.length !== 0) {
newList.brandWay = _processBrandShops(result.data.shopList);
}
newList.list = productProcess.processProductList(result.data.product_list || [], {
isApp: params.isApp || (params.appVersion && params.appVersion !== 'false'),
gender: _coverChannel[params.coverChannel],
showSimilar: params.shop_id ? false : true
});
if (result.data.rec_shop_list && result.data.rec_shop_list.length > 0 &&
!params.shop_id && !params.brand && !params.isApp) {
for (let i = 0; i < result.data.rec_shop_list.length; i++) {
result.data.rec_shop_list[i].is_shop = true;
newList.list.splice(parseInt(result.data.rec_shop_list[i].insert_index, 10), 0,
result.data.rec_shop_list[i]);
}
}
params.page = parseInt(params.page, 10);
result.data.total = parseInt(result.data && result.data.total || 0, 10);
if (params.page === 1) {
newList.total = result.data.total;
}
// 搜索过来的 推荐词条件判断 redmine: 18567
if (params.from === 'search' && params.page === 1 && (result.data.isChangedQuery === 'Y' ||
result.data.total < 20 || params.needSuggestion === 'Y')) {
params.isChangedQuery = result.data.isChangedQuery === 'Y';
suggestion = {
isNeedSuggestion: params.isChangedQuery || params.needSuggestion === 'Y', // 是否是关键词搜索判断
termsSuggestion: productProcess.termsSuggestion(
result.data.suggestion && result.data.suggestion.terms_suggestion || [], params
),
isMaybeLike: result.data.total < 20, // 搜索过来的 小于 20条 猜你喜欢显示不显示判断
showSimilar: true
};
suggestion.isNeedSuggestionOne = suggestion.termsSuggestion.length > 1;// 如果只有一个<或者试试不显示>
}
newList.suggestion = suggestion;
return newList;
} else {
logger.error('get product search api return code is not 200');
return [];
}
});
};
/**
* 获取筛选数据
* @param {[object]} params
* @return {[array]}
*/
const getFilterData = (params) => {
return _searchGoods(params).then((result) => {
if (result && result.code === 200) {
return productProcess.processFilter(result.data.filter || [], {
showSimilar: true
});
} else {
logger.error('get filter data api return code is not 200');
return [];
}
});
};
/**
* 获取筛选数据
* @param {[object]} params
* @return {[array]}
*/
const getFilterSearchData = (params) => {
return _searchGoods(params).then((result) => {
if (result && result.code === 200) {
return result.data;
} else {
logger.error('get filter 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 {};
}
});
};
/**
* 获取所有的品牌名称
**/
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 getSearchIndex = (params) => {
let channels = {
boys: 1,
girl: 2,
kids: 3,
lifestyle: 4
};
if (params.gender && channels[params.gender]) {
params.yh_channel = channels[params.gender];
delete params.gender;
}
return api.get('', _.assign({
method: 'app.search.getTerms'
}, params), {
cache: true
}).then((result) => {
if (result && result.code === 200) {
if (result.data.hotTerms && result.data.hotTerms.length > 10) {
result.data.hotTerms = result.data.hotTerms.slice(0, 10);
}
if (result.data.guessTerms && result.data.guessTerms.length > 10) {
result.data.guessTerms = result.data.guessTerms.slice(0, 10);
}
return result.data;
} else {
logger.error('Hot Search return code is not 200');
return {};
}
});
};
/**
* 获取联想词
* @param params
* @returns {*|Promise.<TResult>}
*/
const getFuzzyDatas = (params) => {
return api.get('', {
method: 'app.search.fuzzy',
keyword: params
}, {
cache: true
}).then((result) => {
if (result && result.code === 200) {
return result.data;
} else {
logger.error('FuzzyDatas return code is not 200');
return {};
}
});
};
/**
* 查询关键词是否正参加活动
* @param params
* @returns {*|Promise.<TResult>}
*/
const searchKeyActivity = (params) => {
return api.get('', {
method: 'app.search.word',
query: params
}, {
cache: true,
code: 200
}).then(result => {
if (result && result.data) {
return result.data;
} else {
return {};
}
});
};
/**
* 检查字符串是否是品牌域/品牌名称
*
* @param query
* @returns {*|Promise.<TResult>}
*/
const getBrandDomain = (query) => {
let brandDomainMap = cache.get('brandDomainMap');
let brandNameMap = cache.get('brandNameMap');
const fn = () => {
brandDomainMap = cache.get('brandDomainMap');
brandNameMap = cache.get('brandNameMap');
let ret = null;
if (!_.isEmpty(brandDomainMap) && brandDomainMap.hasOwnProperty(query)) {
ret = brandDomainMap[query] || null;
}
if (!_.isEmpty(brandNameMap) && brandNameMap.hasOwnProperty(query)) {
ret = brandNameMap[query] || null;
}
return Promise.resolve(ret);
};
if (brandDomainMap && brandNameMap) {
logger.debug('Using cached brand data.');
return fn();
} else {
logger.debug('Reloading brand data...');
return getAllBrandNames().then(fn);
}
};
module.exports = {
getSearchData,
getFilterData,
getFilterSearchData,
getAllBrandNames,
getClassNames,
getSearchIndex,
getFuzzyDatas,
searchKeyActivity,
getBrandDomain
};