crawler.js
5.72 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
'use strict';
const Router = require('koa-router');
const {
MemcachedHost
} = require('../../models');
const Operation = require('../../logger/operation');
const {
Server
} = require('../../models');
const {DegradeServer} = require('../../models');
const zookeeper = require('node-zookeeper-client');
const tester = require('../../zookeeper/tester');
const getter = require('../../zookeeper/getter');
const Model = require('../../models/model');
const _ = require('lodash');
const ApiCache = require('../../ci/api_cache');
const envs = {
p1oduction: '线上环境',
preview: '灰度环境',
test: '测试环境'
};
class Store extends Model {
constructor() {
super('abuse_protection');
}
}
const store = new Store();
const makeServer = ((ipKey, uaKey, listName, black) => {
const r = new Router;
const servers = {
ua: async(ctx, next) => {
let list = await servers.getLists(uaKey);
await ctx.render('action/crawler', {
listName: listName,
list: (list ? list.map((item) => {
return {name: item}
}) : ''),
main_name: 'UA'
});
},
ip: async(ctx, next) => {
let list = await servers.getLists(ipKey);
await ctx.render('action/crawler', {
listName: listName,
list: (list ? list.map((item) => {
return {name: item}
}) : ''),
main_name: 'IP'
});
},
change_ua: async(ctx, next) => {
const doUpdate = async(ua) => {
console.log('include ua:' + ua);
let hosts = await MemcachedHost.findAll();
await Promise.all(_.map(hosts, (h) => {
const key = `pc:limiter:ua:${black ? 'black' : 'white'}`,
value = JSON.parse(ua || '[]');
return (new ApiCache(h.host)).setKey(key, value, 0);
}));
};
let result = await servers.setLists(ctx);
await doUpdate(ctx.query.val);
if (result) {
ctx.body = {
listName: listName,
code: 200,
message: 'update success'
};
} else {
ctx.body = {
listName: listName,
code: 500,
message: 'update fail,Please retry'
}
}
},
change_ip: async(ctx, next) => {
let oldList = await servers.getLists(ipKey);
const newList = JSON.parse(ctx.query.val || '[]');
const exclude = async(ip) => {
console.log('exclude:' + ip);
let hosts = await MemcachedHost.findAll();
await Promise.all(_.map(hosts, (h) => {
const key = `pc:limiter:${ip}`,
value = -1,
ttl = 0;
return (new ApiCache(h.host)).setKey(key, value, ttl);
}));
};
const lock = async(ip) => {
console.log('lock:' + ip);
let hosts = await MemcachedHost.findAll();
await Promise.all(_.map(hosts, (h) => {
const key = `pc:limiter:${ip}`,
value = 9999,
ttl = 60 * 60 * 8; // 封停8小时
return (new ApiCache(h.host)).setKey(key, value, ttl);
}));
};
const unlock = async(ip) => {
console.log('unlock:' + ip);
let hosts = await MemcachedHost.findAll();
await Promise.all(_.map(hosts, (h) => {
const key = `pc:limiter:${ip}`;
return (new ApiCache(h.host)).delKey(key);
}));
};
const unlockList = [];
_.each(oldList, (item) => {
if (_.indexOf(newList, item) < 0) {
unlockList.push(item);
}
});
_.each(newList, (ip) => {
if (black) {
lock(ip);
} else {
exclude(ip);
}
});
_.each(unlockList, (ip) => {
unlock(ip);
});
let result = await servers.setLists(ctx);
if (result) {
ctx.body = {
listName: listName,
code: 200,
message: 'update success'
};
} else {
ctx.body = {
code: 500,
message: 'update fail,Please retry'
}
}
},
getLists: async(path) => {
const result = await store.findOne({
path: path
});
return result && result.val ? JSON.parse(result.val) : [];
},
async setLists(ctx, type) {
let {path, val} = ctx.query;
const rec = await store.findOne({
path: path
});
if (rec) {
store.update({
path: path
}, {
$set: {
val: val
}
})
} else {
store.insert({
path: path,
val: val
})
}
}
};
r.get('/ua', servers.ua);
r.get('/ip', servers.ip);
r.get('/change_ua', servers.change_ua);
r.get('/change_ip', servers.change_ip);
return r;
});
module.exports = makeServer;