star.js
8.13 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
/**
* 新潮教室
* @author: wsl<shuiling.wang@yoho.cn>
* @date: 2016/05/30
*/
'use strict';
const utils = '../../../utils';
const contentCodeConfig = require('../../../config/content-code');
const resourcesProcess = require(`${utils}/resources-process`);
const logger = global.yoho.logger;
const helpers = global.yoho.helpers;
const _ = require('lodash');
const contentCode = contentCodeConfig.guang;
module.exports = class extends global.yoho.BaseModel {
constructor(ctx) {
super(ctx);
}
/**
* 获取资源位数据
* @param {[string]} page
* @return {[array]}
*/
_getResources(page) {
return this.get({
url: 'operations/api/v5/resource/get',
data: {
content_code: contentCode[page],
platform: 'iphone'
},
api: global.yoho.ServiceAPI,
param: {
cache: true
}
}).then((result) => {
if (result && result.code === 200) {
return resourcesProcess(result.data);
} else {
logger.error('star class content resource return code no 200');
return [];
}
});
}
/**
* 星潮教室首页数据处理
* @param {[array]} dataList
* @return {[array]}
*/
_processIndexData(dataList) {
const formatData = {
ads: [],
starAvatar: [],
articles: []
};
let list = dataList.data || {};
formatData.md5 = dataList.md5;
// 首页资源位数据处理
if (list.ads) {
_.forEach(list.ads.data, (data) => {
formatData.ads.push({
src: data.src.replace('imageView/', 'imageView2/'),
url: data.url
});
});
}
// 首页明星文章数据处理
if (list.list) {
_.forEach(list.list, (data, index) => {
const avatar = {
tags: []
};
if (data.ext.tags.length > 1) {
avatar.isSwiper = true;
}
_.forEach(data.ext.tags, (tags, i) => {
if (i >= 1) {
return;
}
avatar.tags.push({
avatarUrl: `/guang/star/detail?tag=${tags.tagName}&openby:yohobuy={"action":"go.h5","params":{"id":"","share":"","shareparam":{},"islogin":"N","type":0,"updateflag":"N","url":"http://m.yohobuy.com/guang/star/detail","param":{"tag":"${tags.tagName}"}}}`, // eslint-disable-line
cover: tags.cover ? (tags.cover + '?imageView2/2/w/104/h/104') : tags.cover,
tagName: tags.tagName
});
});
if (formatData.articles.length > 30) {
return;
}
formatData.articles.push(_.merge({
noLazy: index < 2,
id: data.id,
url: data.url,
title: data.title,
articeTxt: data.intro,
src: data.src,
publish_time: helpers.dateFormat('MM月DD日 hh:mm', data.publish_time),
views_num: data.views_num
}, avatar));
});
}
// 首页明星头像数据处理
if (list.tags) {
_.forEach(list.tags, (data) => {
let url = `/guang/star/detail?tag=${data.tagName}&openby:yohobuy={"action":"go.h5","params":{"id":"","share":"","shareparam":{},"islogin":"N","type":0,"updateflag":"N","url":"http://m.yohobuy.com/guang/star/detail","param":{"tag":"${data.tagName}"}}}`; // eslint-disable-line
formatData.starAvatar.push({
// noLazy: index < 6,
url: url,
cover: data.cover ? (data.cover +
'?imageView2/2/w/180/h/180/q/90').replace('http:', '') : data.cover.replace('http:', '')
});
});
}
return formatData;
}
/**
* 明星专题列表及星搭配数据处理
* @param {[array]} list
* @param {[boolean]} flag 明星专题列表需要转换下日期格式
* @return {[array]}
*/
_processGuangData(list, flag) {
const formatData = [];
list = list || [];
_.forEach(list, (data, key) => {
if (flag) {
data.publish_time = helpers.dateFormat('MM月DD日 hh:mm', data.publish_time);
}
if (data.isFavor === 'N') {
data.isCollected = false;
} else {
data.isCollected = true;
}
// data.src += '/q/80';
if (key < 2) {
data.islazy = true;
}
formatData.push(data);
});
return formatData;
}
/**
* 星潮首页
*/
getIndexData() {
return this.get({
data: {
method: 'app.starClass.index',
code: '8adc27fcf5676f356602889afcfd2a8e'
},
api: global.yoho.API,
param: {
cache: true
}
}).then((result) => {
if (result && result.code === 200) {
return this._processIndexData(result);
} else {
logger.error('star class content resource return code no 200');
return {};
}
});
}
/**
* 明星专题
*/
getDetailData(params, uid) {
return this.get({
data: {
method: 'app.starClass.lastTagArticle',
tag: params.tag,
page: params.page || 1,
size: 10,
uid: uid
},
api: global.yoho.API,
param: {
cache: true
}
}).then((result) => {
if (result && result.code === 200) {
if (params.page > result.data.totalPage) {
return '';
} else {
return this._processGuangData(result.data.list, true);
}
} else {
logger.error('api app.starClass.lastTagArticle code no 200');
return [];
}
});
}
/**
* 星专题
*/
getSpecialData() {
return this._getResources('special').then((result) => {
// 数据结构嵌套太深
_.forEach(result, (data, key) => {
_.map(data.data, (item) => {
if (!_.isObject(item)) {
return;
}
// item.src += '/q/80';
if (key < 4) {
item.islazy = true;
}
return item;
});
});
return result;
});
}
/**
* 星搭配
*/
getCollocationListData(params, uid) {
return this.get({
url: 'guang/api/v5/article/getStarClassroomArticleList',
data: Object.assign({
limit: '20',
uid: uid
}, params),
api: global.yoho.ServiceAPI,
param: {
cache: true
}
}).then((result) => {
if (result && result.code === 200) {
return this._processGuangData(result.data.list.artList);
} else {
logger.error('getStarClassroomArticleList code no 200');
return [];
}
});
}
setFavorite(params, uid) {
if (!uid) {
return Promise.resolve({
code: 400,
message: '未登录'
});
}
return this.get({
data: {
method: params.type === 'del' ? 'app.sns.cancelFavorBackCount' : 'app.sns.setFavorBackCount',
client_type: 'h5',
article_id: params.articleId,
uid: uid
},
api: global.yoho.API
});
}
};