intre-du.js
4 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
const dayjs = require('dayjs');
const lockup = require('node-lockup');
const isBetween = require('dayjs/plugin/isBetween');
const _ = require('lodash');
const spider = require('../libs/spider');
const config = require('./spider-buyers.json');
const {logger} = require('../libs/logger');
const Model = require('../libs/model');
dayjs.extend(isBetween)
class DuSaleRecord extends Model {
constructor() {
super('du-sale');
}
}
const duSaleRecord = new DuSaleRecord();
const RegNow = /刚刚/;
const RegMinute = /(\d+)分钟前/;
const RegHour = /(\d+)小时前/;
const RegDay = /(\d+)天前/;
const RegDate = /(\d+)月(\d+)日/;
const RegDateFull = /\d+\.\d+\.\d+/;
const parseTime = (relativeTime) => {
const matchMinute = relativeTime.match(RegMinute);
if (matchMinute) {
return dayjs().add(0 - matchMinute[1], 'minute');
}
const matchHour = relativeTime.match(RegHour);
if (matchHour) {
return dayjs().add(0 - matchHour[1], 'hour');
}
const matchDay = relativeTime.match(RegDay);
if (matchDay) {
return dayjs().add(0 - matchDay[1], 'day');
}
const matchDate = relativeTime.match(RegDate);
if (matchDate) {
return dayjs(`2019/${matchDate[1]}/${matchDate[2]}`);
}
if (RegDateFull.test(relativeTime)) {
return dayjs(relativeTime);
}
if (RegNow.test(relativeTime)) {
return dayjs();
}
return dayjs('1990-01-01');
};
let time = Date.now();
let end = 0;
const spiderBuyers = async(productId, lsId = 0, page = 0, trys = 0, tid) => {
const result = await spider.spiderFetch(productId, 'https://du.hupu.com/mapi/product/lastSoldList', {
lastId: lsId
});
let lastId;
let tryLogic = false;
let list = [];
if (result.status === 200) {
let skip = false;
lastId = result.data.lastId;
list = result.data.list;
list.forEach(info => {
const time = parseTime(info.formatTime);
const startTime = dayjs().add(-5, 'day');
if (!time.isBefore(startTime)) {
duSaleRecord.insert({
productId: productId,
nickName: info.buyer.userName,
icon: info.buyer.icon,
size: info.item.size,
time: time.format('YYYY-MM-DD HH:mm:ss'),
formatTime: info.formatTime,
insertTime: dayjs().format('YYYY-MM-DD HH:mm:ss')
})
} else {
if (!skip) {
logger.info(`thread: ${tid}, productid: ${productId}, skip time:${time.format('YYYY-MM-DD HH:mm:ss')}`)
}
skip = true;
}
});
if (skip) {
return {productId};
}
} else {
if (trys < 3) {
tryLogic = true;
}
}
if (tryLogic) {
logger.info(`tryLogic ${trys}`)
return spiderBuyers(productId, lsId, page, trys + 1, tid);
} else {
if (lastId) {
logger.info(`thread: ${tid}, productId: ${productId}, nextPage: ${page}, lastId: ${lastId}`)
return spiderBuyers(productId, lastId, page + 1, 0, tid);
}
return {productId};
}
};
//8202200
const products = {};
let max = 32000;
let failNum = 0;
let over = false;
const start = async({inx, tid}) => {
if (over) {
return;
}
const productId = inx;
inx++;
if (inx >= max) {
over = true;
logger.info('over!!!!!!');
return;
}
const result = await spider.spiderFetch(productId);
if (result.status === 200) {
failNum = 0;
products[productId] = {
count: _.get(result, 'data.detail.soldNum', 0),
price: _.get(result, 'data.item.price', 0)
};
try {
await spiderBuyers(productId, 0, 0, 0, tid);
} catch (error) {
logger.info('error', error);
}
} else {
logger.info(productId, result.status)
if (result.status) {
failNum++;
}
}
if (failNum >= 20) {
over = true;
return logger.info('over!!!!!!', JSON.stringify(result));
}
return true;
};
//4211292
module.exports = () => {
const locktask = lockup(start);
locktask({inx: 26715, tid: 1});
}
const schedule = require('node-schedule');
schedule.scheduleJob('0 0 */6 * * *', () => {
logger.info('intr-du'); // 比价任务
module.exports()
});