search.js
15.2 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
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
/**
* 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 cache = require('memory-cache');
const helpers = global.yoho.helpers;
const co = require('bluebird').coroutine;
/**
* 封面图
* @type {{boys: string, gilrs: string}}
*/
const _coverChannel = {
boys: '1,3',
gilrs: '2,3'
};
module.exports = class extends global.yoho.BaseModel {
constructor(ctx) {
super(ctx);
}
/**
* 品牌名称处理
* @param {[object]} list
* @return {[object]}
*/
_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]}
*/
_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;
}
/**
* 获取店铺列表
*/
_processBrandShops(list) {
let formatDat = [];
_.forEach(list, item => {
if (item.shop_type === 'yoho_shop') {
formatDat.push({
url: helpers.urlFormat('/product/shop', {
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;
}
/**
* 获取商品数据
*/
getSearchData(params) {
// client_type 全部赋值为h5 过滤掉嵌入APP页面是默认的client_type
params.client_type = 'h5';
return this.getCategoryGoods(params, true).then((result) => {
if (result && result.code === 200) {
let newList = {};
let suggestion = {};
if (result.data.shopList && result.data.shopList.length !== 0) {
newList.brandWay = this._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 || params.material === 'true' ? false : true
});
if (params.unionType && (params.material === 'true')) {
_.forEach(newList.list, (val) => {
let newUrl = val.url;
val.url = newUrl.replace('.html', `.html?union_type=${params.unionType}`);
});
}
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++) {
if (parseInt(result.data.rec_shop_list[i].show_type, 10) === 1) {
result.data.rec_shop_list[i].is_shop = true;
result.data.rec_shop_list[i].shopUrl = '//m.yohobuy.com/product/shop?domain=' +
result.data.rec_shop_list[i].shop_domain;
newList.list.splice(parseInt(result.data.rec_shop_list[i].insert_index, 10) - 1, 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 isSearch 是否是搜索列表页
* 搜索列表页默认调用 app.search.li 接口
* 类目列表页默认调用 web.search.search 接口
*/
getCategoryGoods(params, isSearch) {
let method = isSearch ? 'app.search.li' : 'web.search.search';
if (params.filter_poolId) {
method = 'app.search.pool';
}
if (params.shop_id && !params.filter_poolId && !params.productPool) {
method = 'app.search.li';
}
// 个人中心优惠券立即使用 - 商品列表
if (params.coupon_id || params.coupon_code) {
method = 'app.search.coupon';
}
// 物料商品列表增加
if (params.material === 'true') {
method = 'app.search.recommendProduct';
}
if (params.isblknew) {
method = 'app.search.newProduct';
}
if (params.promotion_id) {
method = 'app.search.promotion';
}
// 学生优惠
if (params.students) {
method = 'app.student.discount';
}
// 学生返币查询
if (params.coin) {
method = 'app.student.rebate';
}
// 促销活动
if (params.specialsale_id) {
method = 'app.search.li';
}
let paramsForApi = searchProcess.getSearchParamsWithoutMethod(params);
return this.get({
data: _.assign({}, paramsForApi, {
method: method
})
});
}
/**
* 模糊搜索,获取商品数据
*/
getSearchGoods(params) {
let finalParams = {
method: 'app.search.li',
};
finalParams = _.assign(finalParams, searchProcess.getSearchParamsWithoutMethod(params));
return this.get({
data: finalParams
});
}
/**
* 搜索品牌的商品
*/
getBrandGoods(params) {
let finalParams = {
method: 'app.search.brand',
};
finalParams = _.assign(finalParams, searchProcess.getSearchParamsWithoutMethod(params));
return this.get({
data: finalParams
});
}
/**
* 搜索店铺的商品
*/
getShopGoods(params) {
let finalParams = {
method: 'app.search.shop',
};
finalParams = _.assign(finalParams, searchProcess.getSearchParamsWithoutMethod(params));
return this.get({
data: finalParams
});
}
/**
* 获取筛选数据
*/
getFilterData(params) {
let self = this;
return co(function* () {
let filterDataResult = {};
if (params.isShopBrand === 'Y') { // 店铺之品牌
filterDataResult = yield self.getBrandGoods(params);
} else if (params.isShopList === 'Y') { // 无店铺有店铺 ID 的商品列表
filterDataResult = yield self.getShopGoods(params);
} else { // 新的 SEO 友好的品类落地页
filterDataResult = yield self.getCategoryGoods(params);
}
let filterData = _.get(filterDataResult, 'data.filter', []);
if (filterData) {
return productProcess.processFilter(filterData);
} else {
return [];
}
})();
}
/**
* 获取所有的品类名称
**/
getClassNames() {
return this.get({
data: {
method: 'app.sort.get'
},
param: {
cache: true
}
}).then((result) => {
if (result && result.code === 200) {
return this._processClassNames(result.data);
} else {
logger.error('get category name api return code is not 200');
return {};
}
});
}
/**
* 获取所有的品牌名称
**/
getAllBrandNames() {
return this.get({
data: {
method: 'app.brand.brandlist'
},
param: {
cache: true
}
}).then((result) => {
if (result && result.code === 200) {
return this._processBrandNames(result.data.brands);
} else {
logger.error('get brand all name data api return code is not 200');
return {};
}
});
}
/**
* 搜索主页
*/
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 this.get({
data: _.assign({
method: 'app.search.getTerms'
}, params),
param: {
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>}
*/
getFuzzyDatas(params) {
return this.get({
data: {
method: 'app.search.fuzzy',
keyword: params
},
param: {
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>}
*/
searchKeyActivity(params) {
return this.get({
data: {
method: 'app.search.word',
query: params
},
param: {
cache: true,
code: 200
}
}).then(result => {
if (result && result.data) {
return result.data;
} else {
return {};
}
});
}
/**
* 检查字符串是否是品牌域/品牌名称
*
* @param query
* @returns {*|Promise.<TResult>}
*/
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 this.getAllBrandNames().then(fn);
}
}
/**
* 通过 skn 搜索商品
* @param productSkn
* @returns {*|Promise.<TResult>}
* @private
*/
searchProductBySkn(productSkn) {
return this.get({
data: {
method: 'h5.product.batch',
productSkn: productSkn
},
param: {code: 200, cache: true}
}).then(result => {
return _.get(result, 'data.product_list', []);
});
}
};