search-api.js
14 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
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
/**
* Created by TaoHuang on 2016/6/14.
*/
'use strict';
const _ = require('lodash');
const Fn = require('lodash/fp');
const md5 = require('md5');
const config = global.yoho.config;
const helpers = global.yoho.helpers;
const cache = global.yoho.cache;
const logger = global.yoho.logger;
// 判断用户是否收藏品牌
const isFavoriteBrandUrl = '/shops/service/v1/favorite/getUidBrandFav';
// 根据品牌查询相关文章
const relateArticleUrl = 'guang/service/v2/article/getArticleByBrand';
const GLOBAL_BASE_URI = '/product/global/list';
// 缓存生效时间
const CACHE_TIME_S = 60;
function getSearchCacheKey(params) {
let removeUnusedKey = Fn.omit(['page', 'limit', 'need_filter', 'order']);
let sortByKey = Fn.pipe(Fn.toPairs, Fn.sortBy(0), Fn.flatten);
let genKey = Fn.pipe(Fn.cloneDeep, removeUnusedKey, sortByKey, Fn.join('_'));
return 'search_custom_' + md5(genKey(params));
}
function _saveCache(key, kv, cacheTime) {
cache.set(key, kv, cacheTime)
.catch(err => logger.debug(`product query save cache data fail:${err.toString()}`));
}
function getProductListOrig(finalParams) {
return this.get({data: finalParams});
}
function getKeyActivityAsync(query) {
return this.get({
data: {
method: 'app.search.word',
query: query
}, params: {
catch: true,
code: 200
}
});
}
/**
* 获取商品列表
* @return
*/
function getProductList(params, from) {
let finalParams = {
method: 'web.search.search',
sales: 'Y',
outlets: 2,
stocknumber: 1,
need_filter: 'yes',
limit: 60
};
Object.assign(finalParams, params);
// 店铺默认排序s_w_desc
if (params.shopId || params.shop_id || params.shop) {
finalParams.order = params.order || 's_w_desc';
}
if (from) {
finalParams.from = from;
}
if (!config.useCache) {
return this.getProductListOrig(finalParams);
} else {
let cKey = this.getSearchCacheKey(finalParams);
return cache.get(cKey)
.catch(err => logger.debug(`product query save cache data fail:${err.toString()}`))
.then(cdata => {
let hasCache = false;
if (cdata) {
try {
cdata = JSON.parse(cdata);
} catch (e) {
logger.debug('getProductList cache data parse fail.');
}
if (cdata.filter && cdata.standard) {
hasCache = true;
finalParams.need_filter = 'no';
}
}
return this.getProductListOrig(finalParams).then(result => {
if (hasCache && result && result.data) {
Object.assign(result.data, cdata);
} else {
if (result && result.data && result.data.filter) {
_saveCache(cKey, Object.assign({}, {
filter: result.data.filter,
standard: result.data.standard
}), CACHE_TIME_S);
}
}
return result;
});
});
}
}
/**
* 获取seo商品列表
* @return
*/
function getSeoProductList(params, from) {
let finalParams = {
method: 'web.search.forseo',
sales: 'Y',
outlets: 2,
stocknumber: 1,
need_filter: 'no',
limit: 60
};
Object.assign(finalParams, params);
if (from) {
finalParams.from = from;
}
return this.getProductListOrig(finalParams);
}
function getSortListOrig(finalParams) {
return this.get({data: finalParams, params: {cache: config.apiCache}});
}
/**
* 获取分类列表
* @return
*/
function getSortList(params, channel) {
let finalParams = {
method: 'web.regular.groupsort.sale',
sales: 'Y', // 在销售商品分类
status: 1, // 上架商品分类
stocknumber: 1 // 过滤掉已售罄
};
Object.assign(finalParams, params);
if (channel) {
switch (channel) {
case 'boys':
finalParams.yh_channel = 1;
break;
case 'girls':
finalParams.yh_channel = 2;
break;
case 'kids':
finalParams.yh_channel = 3;
break;
case 'lifestyle':
finalParams.yh_channel = 4;
break;
default:
break;
}
}
if (!config.useCache) {
return this.getSortListOrig(finalParams);
} else {
let cKey = this.getSearchCacheKey(finalParams);
return cache.get(cKey)
.catch(err => logger.debug(`product query save cache data fail:${err.toString()}`))
.then(cdata => {
let cdataObj;
if (cdata) {
try {
cdataObj = JSON.parse(cdata);
} catch (e) {
logger.debug('getSortList cache data parse fail.');
}
}
if (cdataObj) {
return cdataObj;
} else {
return this.getSortListOrig(finalParams).then(ret => {
if (ret && ret.code === 200) {
_saveCache(cKey, ret, CACHE_TIME_S);
}
return ret;
});
}
});
}
}
/**
* 获取分类图文介绍
* @return
*/
function getSortIntro(params) {
let finalParams = {
method: 'web.search.banner'
};
Object.assign(finalParams, params);
return this.get({data: finalParams, params: {cache: config.apiCache}});
}
/**
* 获取分类广告
* @return
*/
function getSortAds(params) {
let finalParams = {
method: 'app.ads.list'
};
Object.assign(finalParams, params);
return this.get({data: finalParams, params: {cache: config.apiCache}});
}
/**
* 获取品牌系列
* @return
*/
function getBrandShopSeries(params) {
let finalParams = {
method: 'web.brand.series',
status: params.status || 1
};
if (params.brandId) {
finalParams.brand_id = params.brandId;
} else if (params.shopId) {
Object.assign(finalParams, {
method: 'web.shop.series',
shop_id: params.shopId
});
}
return this.get({data: finalParams, params: {cache: config.apiCache}});
}
/**
* 获取品牌folder
* @return
*/
function getBrandShopFolder(params) {
let finalParams = {
method: 'web.brand.folder',
status: params.status || 1
};
if (params.brandId) {
finalParams.brand_id = params.brandId;
} else if (params.shopId) {
Object.assign(finalParams, {
method: 'web.shop.folder',
shop_id: params.shopId
});
}
return this.get({data: finalParams, params: {cache: config.apiCache}});
}
/**
* 获取品牌水牌
* @return
*/
function getNodeContent(params) {
let finalParams = {
method: 'web.html.content',
mode: params.mode || 'release',
node: params.node || ''
};
return this.get({data: finalParams, params: {cache: config.apiCache}});
}
/**
* 一周新品上架
* @return
*/
function getWeekNew(params) {
let finalParams = {
method: 'web.regular.recent'
};
Object.assign(finalParams, params);
return this.get({data: finalParams, params: {cache: config.apiCache}});
}
function getBrandCouponAsync(brandId, uid) {
let extra = {code: 200};
if (!uid) {
extra.cache = true;
}
return this.get({
data: {
method: 'app.brand.getBrandIntro',
brand_id: brandId,
uid: uid
}, params: extra
});
}
/**
* 根据关键词搜索品牌店铺信息
* @return
*/
function getBrandShop(query) {
let finalParams = {
method: 'web.search.shopListInfo'
};
return this.get({data: Object.assign(finalParams, {keyword: query}), params: {cache: config.apiCache}});
}
/**
* 根据搜索得到店铺/品牌
*/
function getShopList(params) {
if (!params || !params.query) {
return;
}
return this.getBrandShop(params.query).then(shops => {
let shopEntry = [];
_.forEach(_.get(shops, 'data.shopList', []), value => {
let shopInfo = {
home: helpers.urlFormat('', null, value.shop_domain || value.brand_domain),
logo: value.shop_logo || value.brand_ico,
shopName: value.shop_name || value.brand_name,
shopType: '',
sort: []
};
if (value.is_global === 'Y') {
shopInfo.home = helpers.urlFormat(GLOBAL_BASE_URI, {brand: value.global_brand_id});
shopInfo.shopType = 'global-brand';
}
// 店铺/品牌的小分类
_.forEach(_.get(value, 'sortInfo.sort', []), sortInfo => {
_.forEach(_.get(sortInfo, 'sub', []), subSort => {
let sortHref;
if (value.is_global !== 'Y') {
sortHref = helpers.urlFormat('', {misort: subSort.sort_id},
value.shop_domain || value.brand_domain);
} else {
sortHref = helpers.urlFormat(GLOBAL_BASE_URI, {
misort: subSort.sort_id,
brand: value.global_brand_id
});
}
shopInfo.sort.push({
href: sortHref,
name: subSort.sort_name
});
});
});
shopEntry.push(shopInfo);
});
return shopEntry;
});
}
/**
* 搜索提示
* @return
*/
function getSuggest(params) {
let finalParams = {
method: 'app.search.fuzzy',
keyword: params.keyword || ''
};
return this.get({data: finalParams, params: {cache: config.apiCache}});
}
/**
* 根据品牌域名获取品牌信息
* @return
*/
function getBrandData(params) {
let finalParams = {
method: 'web.brand.byDomain',
domain: params.domain || ''
};
return this.get({data: finalParams, params: {cache: config.apiCache}});
}
/**
* 根据uid和品牌id判断品牌是否收藏
* @return
*/
function isFavoriteBrand(uid, brandId) {
return this.get({
url: isFavoriteBrandUrl,
data: {
uid: uid,
brandId: brandId
},
api: global.yoho.serviceApi
});
}
/**
* 根据shopId获取店铺基本信息
* @return
*/
function getShopInfo(shopId, uid) {
let finalParams = {
method: 'app.shops.getIntro',
shop_id: shopId || 0,
uid: uid || 0
};
return this.get({data: finalParams, params: {cache: config.apiCache}});
}
/**
* 查询店铺下面的所有品牌
*/
function getShopBrands(shopId) {
return this.get({
data: {method: 'app.shops.getShopsBrands', shop_id: shopId || 0},
params: {cache: config.apiCache}
});
}
/**
* 查询店铺装修
*/
function getShopDecorator(shopId) {
return this.get({
data: {method: 'app.shopsdecorator.getList', shop_id: shopId || 0},
params: {cache: config.apiCache}
});
}
/**
* 通过品牌获取相关文章
*/
function getArticleByBrand(brand, udid, limit) {
let params = {
brand_id: brand || 0,
udid: udid,
limit: limit || 6
};
return this.get({
url: relateArticleUrl,
data: params,
api: global.yoho.ServiceAPI
});
}
function getBrands4Filter(params) {
return this.get({
data: Object.assign({
method: 'web.regular.aggBrand'
}, params)
});
}
/**
* 有可能喜欢的商品
* @param int $channel 频道,1代表男生,2代表女生,3代表潮童,4代表创意生活
* @param $uid 用户ID
* @param $udid 设备ID
* @param $rec_pos 位置码
* @param $limit 数量限制
* @return array 接口返回的数据
* */
function lessRecommend(channelNum, uid, udid, recPos, limit) {
let param = {
method: 'app.search.newLast7day',
yh_channel: channelNum,
udid: udid,
rec_pos: recPos,
limit: limit
};
if (uid) {
param.uid = uid;
}
return this.get({data: param});
}
module.exports = class extends global.yoho.BaseModel {
constructor(ctx) {
super(ctx);
this.getKeyActivityAsync = getKeyActivityAsync.bind(this);
this.getProductList = getProductList.bind(this);
this.getSeoProductList = getSeoProductList.bind(this);
this.getSortList = getSortList.bind(this);
this.getSortIntro = getSortIntro.bind(this);
this.getSortAds = getSortAds.bind(this);
this.getBrandShopFolder = getBrandShopFolder.bind(this);
this.getBrandShopSeries = getBrandShopSeries.bind(this);
this.getWeekNew = getWeekNew.bind(this);
this.getBrandCouponAsync = getBrandCouponAsync.bind(this);
this.getBrandShop = getBrandShop.bind(this);
this.getSuggest = getSuggest.bind(this);
this.getBrandData = getBrandData.bind(this);
this.getNodeContent = getNodeContent.bind(this);
this.isFavoriteBrand = isFavoriteBrand.bind(this);
this.getShopInfo = getShopInfo.bind(this);
this.getShopBrands = getShopBrands.bind(this);
this.getShopDecorator = getShopDecorator.bind(this);
this.getArticleByBrand = getArticleByBrand.bind(this);
this.getShopList = getShopList.bind(this);
this.getBrands4Filter = getBrands4Filter.bind(this);
this.getProductListOrig = getProductListOrig.bind(this);
this.getSearchCacheKey = getSearchCacheKey.bind(this);
this.lessRecommend = lessRecommend.bind(this);
this.getSortListOrig = getSortListOrig.bind(this);
}
};