index.js
7.26 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
'use strict';
const ROOT_PATH = global.ROOT_PATH;
const _ = require('lodash');
const fs = require('fs');
const moment = require('moment');
const md5 = require('yoho-md5');
const helpers = global.yoho.helpers;
const goodsHbs = require(`${ROOT_PATH}/hbs/partials/seo/index.hbs`);
const util = require(`${ROOT_PATH}/libs/util`);
const redis = require(`${ROOT_PATH}/libs/redis`);
const baiduBrand = require('./baidu-brand');
const SIZE = 2500;
const GOODS_URL = 'http://spiderwebhook.yoho.cn/dist/goods-xml';
class SeoIndexModel extends global.yoho.BaseModel {
constructor(ctx) {
super(ctx);
}
writerGoodsXml(params) {
params.start = parseInt(params.start || 1, 10);
let limit = 100; // max 100
// limt接口最大支持100,查询${SIZE}条数据返回。则page转换成如下公式
let page = (params.start - 1) * (SIZE / limit) + 1;
let fileName = `goods-${params.start}.xml`;
return this.searchGoodsHandle(Object.assign({}, params, {page: page, limit: limit}), []).then(result => {
if (result.length <= 0) {
return {code: 400, data: '', message: 'data is empty'};
}
const fWrite = fs.createWriteStream(`${ROOT_PATH}/public/dist/goods-xml/${fileName}`);
fWrite.write(goodsHbs({products: result}));// max 9.5M
fWrite.end();
result = [];
console.log(`${GOODS_URL}/${fileName} over...`);
return {code: 200, data: `${GOODS_URL}/${fileName}`};
});
}
searchGoodsHandle(params, products) {
if (products.length >= SIZE) {
return Promise.resolve(products);
}
return util.sleep(2000).then(() => {
return this.searchList(params, products);
}).then(rdata => {
let data = _.get(rdata, 'data', {});
let productLists = _.get(rdata, 'data.product_list', []);
_.each(productLists, item => {
let images = [];
if (!baiduBrand[item.small_sort_id]) {
console.error(`goods-xml => s_sort_id: ${item.small_sort_id}, s_sort_name: ${item.small_sort_name}, baidu cate is null`);// eslint-disable-line
return true;
}
_.each(item.goods_list, goods => {
images.push({
contentUrl: `https:${helpers.image(goods.images_url, 450, 600)}`,
height: 600,
width: 450,
description: `${item.product_name}-${goods.color_name}`,
tag: '',
name: goods.color_name
});
});
products.push({
loc: `${GOODS_URL}/goods-${params.start}.xml`,
lastmod: moment.unix(item.edit_time).format('YYYY-MM-DD'),
changefreq: 'daily',
priority: 1.0,
fromSrc: 'YOHO!BUY有货',
images: images,
name: item.product_name,
brand: item.brand_name,
offers: {
price: item.sales_price,
administrativeAreaLv2: '全国',
wapUrl: `https://m.yohobuy.com/product/${item.product_skn}.html`,
url: `https://www.yohobuy.com/product/${item.product_skn}.html`,
eligibleTransactionVolume: item.sales_num,
seller_name: item.shop_name,
ratingValue: '', // 总评分
favorableRating: '', // 好评率
onShelfTime: '', // 上架时间
offShelfTime: '', // 下架时间
type: '自营', // 商品属性,是否自营
isOverseas: item.is_global === 'N' ? 1 : 0,
discount: '', // 优惠信息
isFreightFree: 1,
commentCount: item.product_skn % 50, // 评论总数
deliveryPlace: {
administrativeAreaLv1: '江苏' // 发货地
},
stockSpecification: {// 分地域库存信息
AdministrativeAreaLv2: '南京', // 区域
volume: item.storage_num, // 库存
status: (item.storage_num <= 0 ? 'outstock' : 'instock')
},
shelfSpecification: {// 分地域上下架具体信息
AdministrativeAreaLv2: '南京',
status: 1
},
purchaseMethod: item.tags && item.tags['is_presell'] ? '付费预约' : '直接购买', // eslint-disable-line
coupon: [] // 优惠券
},
structuredCategory: {
categoryLv1: baiduBrand[item.small_sort_id].categoryLv1 || '',
categoryLv2: baiduBrand[item.small_sort_id].categoryLv2 || '',
categoryLv3: baiduBrand[item.small_sort_id].categoryLv3 || '',
categoryLv4: baiduBrand[item.small_sort_id].categoryLv4 || ''
},
exifData: {
name: '',
value: '',
propertyID: '',
unitText: '',
unitCode: ''
},
id: item.product_skn
});
});
rdata = [];
productLists = [];
if (data.page >= data.page_total) {
return products;
}
return this.searchGoodsHandle(Object.assign({}, params, {page: ++params.page}), products);
});
}
searchList(params) {
params = _.assign({
limit: 100,
method: 'app.search.li',
status: 1,
stocknumber: 1,
attribute_not: 2,
udid: 'seo_format_data'
}, params);
return this.get({
data: params,
param: {
cache: 86400
}
}).catch(e => {
console.log(e.message);
return {code: 400, data: {}, message: e.message};
});
}
autoGoodsXml(params) {
return util.sleep(1000).then(() => {
return this.writerGoodsXml(params);
}).then(rdata => {
if (rdata.code !== 200) {
global.IS_GOODS_XML_RUN = false;
return {};
}
return this.autoGoodsXml(Object.assign(params, {start: ++params.start}));
});
}
setTask(params) {
return redis.hsetAsync('global:yoho:seo:task', md5(params.url), JSON.stringify({
url: params.url,
time: params.time || 1000
}));
}
delTask(url) {
return redis.hdelAsync('global:yoho:seo:task', md5(url));
}
getGoodsPage() {
return this.searchList({page: 1, limit: 1}).then(rdata => {
let total = _.get(rdata, 'data.total', 0);
return Math.ceil(total / SIZE);
});
}
}
module.exports = SeoIndexModel;