search-api.js
4.64 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
/**
* Created by TaoHuang on 2016/6/14.
*/
'use strict';
const api = global.yoho.SearchAPI;
const yohoApi = global.yoho.API;
const serviceApi = global.yoho.ServiceAPI;
const getSortByConditionAsync = (condition) => {
return api.get('sortgroup.json', condition);
};
// 获取list页广告
const adsUrl = '/shops/api/v1/ads/getList';
// 判断用户是否收藏品牌
const isFavoriteBrandUrl = '/shops/service/v1/favorite/';
// 根据品牌查询相关文章
const relateArticleUrl = 'guang/service/v2/article/getArticleByBrand';
/**
* 获取商品列表
* @return
*/
const getProductList = (params) => {
let finalParams = {
method: 'web.search.search',
// method: 'app.search.li',
order: 's_n_desc',
limit: 60
};
Object.assign(finalParams, params);
return yohoApi.get('', finalParams);
};
/**
* 获取分类列表
* @return
*/
const getSortList = (params) => {
let finalParams = {
method: 'web.regular.groupsort',
sales: 'Y', // 在销售商品分类
status: 1, // 上架商品分类
stocknumber: 1 // 过滤掉已售罄
};
Object.assign(finalParams, params);
return yohoApi.get('', finalParams);
};
/**
* 获取分类图文介绍
* @return
*/
const getSortIntro = (params) => {
let finalParams = {
method: 'web.search.banner'
};
Object.assign(finalParams, params);
return yohoApi.get('', finalParams);
};
/**
* 获取分类广告
* @return
*/
const getSortAds = (params) => {
return serviceApi.get(adsUrl, params);
};
/**
* 获取品牌系列
* @return
*/
const getBrandSeries = (params) => {
let finalParams = {
method: 'web.brand.series',
brand_id: params.brandId,
status: params.status || 1
};
return yohoApi.get('', finalParams);
};
/**
* 获取品牌folder
* @return
*/
const getBrandFolder = (params) => {
let finalParams = {
method: 'web.brand.folder',
brand_id: params.brandId,
status: params.status || 1
};
return yohoApi.get('', finalParams);
};
/**
* 获取品牌水牌
* @return
*/
const getNodeContent = (params) => {
let finalParams = {
method: 'web.html.content',
mode: params.mode || 'release',
node: params.node || ''
};
return yohoApi.get('', finalParams);
};
/**
* 一周新品上架
* @return
*/
const getWeekNew = (params) => {
let finalParams = {
method: 'web.regular.recent'
};
Object.assign(finalParams, params);
return yohoApi.get('', finalParams);
};
/**
* 根据关键词搜索品牌店铺信息 TODO
* @return
*/
const getBrandShop = (params) => {
let finalParams = {
// method: 'web.regular.groupsort'
method: 'app.search.li'
};
Object.assign(finalParams, params);
return yohoApi.get('', finalParams);
};
/**
* 搜索提示
* @return
*/
const getSuggest = (params) => {
let finalParams = {
method: 'app.search.fuzzy',
keyword: params.keyword || ''
};
return yohoApi.get('', finalParams);
};
/**
* 根据品牌域名获取品牌信息
* @return
*/
const getBrandData = (params) => {
let finalParams = {
method: 'web.brand.byDomain',
domain: params.domain || ''
};
return yohoApi.get(isFavoriteBrandUrl, finalParams);
};
/**
* 根据uid和品牌id判断品牌是否收藏
* @return
*/
const isFavoriteBrand = (uid, brandId) => {
return serviceApi.get('', {uid: uid, brandId: brandId});
};
/**
* 根据shopId获取店铺基本信息
* @return
*/
const getShopInfo = (shopId, uid) => {
let finalParams = {
method: 'app.shops.getIntro',
shop_id: shopId || 0,
uid: uid || 0
};
return yohoApi.get('', finalParams);
};
/**
* 查询店铺下面的所有品牌
*/
const getShopBrands = (shopId) => {
return yohoApi.get('', {method: 'app.shops.getShopsBrands', shop_id: shopId || 0});
};
/**
* 查询店铺装修
*/
const getShopDecorator = (shopId) => {
return yohoApi.get('', {method: 'app.shopsdecorator.getList', shop_id: shopId || 0});
};
/**
* 通过品牌获取相关文章
*/
const getArticleByBrand = (brand, udid, limit) => {
let params = {
brand_id: brand || 0,
udid: udid,
limit: limit || 6
};
return serviceApi.get(relateArticleUrl, params);
};
module.exports = {
getSortByConditionAsync,
getProductList,
getSortList,
getSortIntro,
getSortAds,
getBrandFolder,
getBrandSeries,
getWeekNew,
getBrandShop,
getSuggest,
getBrandData,
getNodeContent,
isFavoriteBrand,
getShopInfo,
getShopBrands,
getShopDecorator,
getArticleByBrand
};