chanpin.js
3.9 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
/**
* chanpin model
* @author: yyq<yanqing.yang@yoho.cn>
* @date: 2017/09/22
*/
const _ = require('lodash');
const helpers = global.yoho.helpers;
const utils = '../../../utils';
const redis = require(`${utils}/redis`);
const searchProcess = require(`${utils}/search-process`);
const productProcess = require(`${utils}/product-process`);
const stringCode = require(`${utils}/string-code`);
/**
* 封面图
* @type {{boys: string, gilrs: string}}
*/
const _coverChannel = {
boys: '1,3',
gilrs: '2,3'
};
module.exports = class extends global.yoho.BaseModel {
constructor(ctx) {
super(ctx);
}
getFuzzyDatas(params) {
return this.get({
data: {
method: 'app.search.fuzzy',
keyword: params
},
param: {cache: true}
}).then((result) => {
return _.get(result, 'data', []);
});
}
getSeoSearchData(params) {
let finalParams = {
method: 'web.search.forseo',
sales: 'Y',
outlets: 2,
stocknumber: 1,
need_filter: 'no'
};
finalParams = _.assign(finalParams, searchProcess.getSearchParamsWithoutMethod(params));
return this.get({data: finalParams}).then(result => {
let resData = {};
resData.list = productProcess.processProductList(_.get(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
});
return resData;
});
}
getSearchKeywordData(params, uid) {
// 获取第一页数据做服务端渲染
let initialData = _.assign({
type: 'default',
order: '0',
page: 1,
limit: 24
}, params);
if (uid) {
initialData.uid = uid;
}
return Promise.all([
this.getFuzzyDatas(`${params.query}`.substr(0, 2)),
this.getSeoSearchData(initialData)
]).then(result => {
let resData = result[1];
let fuzzy = [];
if (_.isEmpty(result[0])) {
result[0] = [];
}
_.forEach(_.slice(result[0], 0, 12), value => {
if (value.keyword === params.query) {
return;
}
fuzzy.push({
name: value.keyword,
link: helpers.urlFormat(`/so/${stringCode.utf8ToHex(value.keyword)}.html`),
});
});
if (!_.isEmpty(fuzzy)) {
resData.fuzzyWord = fuzzy;
}
return resData;
});
}
getSearchKeywordDataById(id, params, uid) {
return redis.all([
['get', `global:yoho:seo:keywords:id:${id}`]
]).then(redisData => {
if (!redisData[0]) {
return false;
}
redisData = JSON.parse(redisData[0]);
params.query = redisData.name;
return this.getSearchKeywordData(params, uid).then(result => {
result.queryKey = params.query;
let fuzzyWord = [];
if (!_.isEmpty(redisData.data)) {
_.forEach(_.slice(redisData.data, 0, 12), value => {
if (!value) {
return;
}
fuzzyWord.push(Object.assign(value, {
name: value.keyword,
link: helpers.urlFormat(`/chanpin/${value.id}.html`, null)
}));
});
_.set(result, 'fuzzyWord', fuzzyWord);
}
return result;
});
});
}
};