-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
222 lines (211 loc) · 5.65 KB
/
main.js
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
const watch = require('node-watch')
const ws = require('nodejs-websocket')
const ini = require('ini')
const path = require("path")
const fs = require('fs')
const { VM } = require('vm2')
/**
* 获取配置信息
*/
const getConfig = () => {
try {
const configString = fs.readFileSync('./config.ini').toString()
const config = ini.parse(configString)
return config
} catch (_) {
console.log('配置文件不存在')
process.exit(1)
}
}
/**
* 获取三文件对应文件名
* @param {Object} config 配置信息
*/
const getFileNameMap = config => (new Map([
[path.basename(config.fileAddress.provider, '.js'), 'provider'],
[path.basename(config.fileAddress.parser, '.js'), 'parser'],
[path.basename(config.fileAddress.timer, '.js'), 'timer'],
]))
// 获取必要的cheerio
const cheerioStr = fs.readFileSync(`./cheerio.js`, 'utf-8')
// 读取配置文件
const config = getConfig()
// 创建用户文件与文件类型映射
const fileNameMap = getFileNameMap(config)
/**
* 返回消息到panel
* @param {Object} cmd 指令
* @param {Object} content 要发送的信息内容
*/
const sendResponse = (conn, cmd, content) => {
try {
const msg = {
from: 'IDE',
to: cmd === 'runParser' ? 'content' : 'panel',
cmd,
content,
}
if (!conn.readyState) return
conn.sendText(JSON.stringify(msg))
console.log('send successfuly')
} catch (_) { }
}
/**
* 监听文件回调函数
* @param {Object} conn 链接对象
* @param {String} fileName 更新的文件地址
*/
const watchFile = (conn, fileName) => {
const file = fileNameMap.get(path.basename(fileName, '.js'))
// 防止犯病读到别的文件
if (!file) return false
try {
const data = fs.readFileSync(fileName, 'utf8')
const msg = {
ok: true,
message: '',
data,
file,
}
sendResponse(conn, 'watchFile', msg)
} catch (error) {
console.error(error)
return
}
}
/**
* 运行Parser
* @param {Object} conn 连接对象
* @param {String} providerRes provider的返回值
* @param {String} parserCode parser的代码
* @returns
*/
const runParser = (conn, providerRes, parserCode) => {
console.time('runParser')
// 如果不满足条件返回结果
if (!providerRes || !parserCode) {
const msg = {
ok: false,
message: '无可执行内容',
data: null,
}
return sendResponse(conn, 'runParser', msg)
}
// 查询违法字符串
if (providerRes.indexOf('child_process') > 0
|| providerRes.indexOf('__proto__') > 0
|| providerRes.indexOf('constructor') > 0
|| providerRes.indexOf('require(') > 0
|| providerRes.indexOf('execSync') > 0
|| providerRes.indexOf('spawn') > 0
|| providerRes.indexOf('spawnSync') > 0
|| providerRes.indexOf('execFile') > 0
|| providerRes.indexOf('execFileSync') > 0
|| providerRes.indexOf('fork') > 0
) {
const msg = {
ok: false,
message: 'providerRes 含有非法内容',
data: null,
}
return sendResponse(conn, 'runParser', msg)
}
// 查询违法字符串
if (parserCode.indexOf('child_process') > 0
|| parserCode.indexOf('__proto__') > 0
|| parserCode.indexOf('constructor') > 0
|| parserCode.indexOf('require(') > 0
|| parserCode.indexOf('execSync') > 0
|| parserCode.indexOf('spawn') > 0
|| parserCode.indexOf('spawnSync') > 0
|| parserCode.indexOf('execFile') > 0
|| parserCode.indexOf('execFileSync') > 0
|| parserCode.indexOf('fork') > 0
) {
const msg = {
ok: false,
message: 'parserCode 含有非法内容',
data: null,
}
return sendResponse(conn, 'runParser', msg)
}
// 正式运行
try {
const vm = new VM({
timeout: 3000,
sandbox: {
console
},
})
let exec = cheerioStr.replace(`"<body>aaa<body>"`, `String.raw\`${providerRes}\``)
exec = exec.replace(`console.log(r.text())`, `
let $=r;
let cheerio=n(145)
${parserCode};
let parserRes = scheduleHtmlParser(String.raw\`${providerRes}\`);
if (typeof parserRes !== 'string'){
parserRes = JSON.stringify(parserRes)
};
throw Error(parserRes);
`)
vm.run(exec)
} catch (err) {
console.log(err.message)
const msg = {
ok: true,
message: '',
data: err.message,
}
console.timeEnd('runParser')
return sendResponse(conn, 'runParser', msg)
}
}
/**
* 开始观察文件并发送
* @param {Object} conn 链接对象
*/
const manageStartWatchFile = conn => {
// 监听代码所在文件夹
watch([config.fileAddress.provider, config.fileAddress.parser, config.fileAddress.timer],
{ recursive: true, delay: 300 },
(_, fileName) => {
watchFile(conn, fileName)
})
}
/**
* 处理来自Panel的消息
* @param {Object} conn ws链接对象
* @param {*} msg 消息内容
*/
const manageMsgFromPanel = (conn, msg) => {
msg = JSON.parse(msg)
console.log('接收到消息', msg)
// 过滤消息
if (msg.to !== 'IDE') return false
// 运行parser
if (msg.cmd === 'runParser') {
return runParser(conn, msg.content.providerRes, msg.content.parser)
}
// 监听文件
if (msg.cmd === 'watchFile') {
return manageStartWatchFile(conn)
}
// 其他情况
return false
}
// 创建Ws服务
ws.createServer(connection => {
connection.on('text', result => {
manageMsgFromPanel(connection, result)
})
connection.on('connect', code => {
console.log('开启连接', code)
})
connection.on('close', function (code) {
console.log('关闭连接', code)
})
connection.on('error', function (code) {
console.log('异常关闭', code)
})
}).listen(2333, '127.0.0.1')
console.log('server is running on 127.0.0.1:2333')