forked from takayama-lily/oicq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
132 lines (121 loc) · 3.8 KB
/
test.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
"use strict";
const crypto = require("crypto");
const oicq = require("./index");
/**
* 一个简单的控制台,仅用来调试
* "npm test"或"node ./test"启动
*/
var bot = null;
function account() {
console.log("请输入账号:");
process.stdin.once("data", (input)=>{
try {
input = parseInt(input.toString().trim());
bot = oicq.createClient(input, {
log_level: "debug", ignore_self: false
});
//处理滑动验证码事件
bot.on("system.login.slider", ()=>{
process.stdin.once("data", (input)=>{
bot.sliderLogin(input);
});
});
//处理图片验证码事件
bot.on("system.login.captcha", ()=>{
process.stdin.once("data", (input)=>{
bot.captchaLogin(input);
});
});
//处理设备锁验证事件
bot.on("system.login.device", (data)=>{
process.stdin.once("data", ()=>{
bot.login();
});
});
//处理其他登陆失败事件
bot.on("system.login.error", (data)=>{
if (data.message.includes("密码错误"))
password();
else
bot.terminate();
});
// 登陆成功
bot.once("system.online", loop);
// 下线
bot.once("system.offline", (data)=>{
console.log(data);
});
bot.on("internal.timeout", (data)=>{
console.log(data);
});
bot.on("request", (data)=>{
console.log("收到request事件", data);
});
bot.on("notice", (data)=>{
console.log("收到notice事件", data);
});
bot.on("message", (data)=>{
// console.log("收到message事件", data);
});
} catch (e) {
console.log(e.message);
return account();
}
password();
});
}
function password() {
console.log("请输入密码:");
process.stdin.once("data", (input)=>{
input = input.toString().trim();
const password_md5 = crypto.createHash("md5").update(input).digest();
bot.login(password_md5);
});
}
function loop() {
const help = `※友情提示:将log_level设为trace可获得详细的收发包信息。
※发言: send target msg
※退出: bye
※执行任意代码: eval code`;
console.log(help);
const listener = async function(input) {
input = input.toString().trim();
const cmd = input.split(" ")[0];
const param = input.replace(cmd, "").trim();
switch (cmd) {
case "bye":
bot.logout();
process.stdin.destroy();
break;
case "send":
const abc = param.split(" ");
const target = parseInt(abc[0]);
let res;
if (bot.gl.has(target))
res = await bot.sendGroupMsg(target, abc[1]);
else
res = await bot.sendPrivateMsg(target, abc[1]);
console.log("发送消息结果", res);
break;
case "eval":
try {
let res = eval(param);
if (res instanceof Promise)
res = await res;
console.log("执行结果", res);
} catch (e) {
console.log(e.stack);
}
break;
default:
console.log("指令错误。");
console.log(help);
break;
}
};
process.stdin.on("data", listener);
}
if (!bot) {
console.log("欢迎来到调试台!");
account();
}