mirai-js 2.0.2 → 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/FUNDING.yml +1 -1
- package/.github/dependabot.yml +1 -1
- package/.github/workflows/codeql-analysis.yml +70 -0
- package/.husky/pre-commit +0 -0
- package/demo.html +2 -2
- package/demo.js +6 -90
- package/dist/browser/mirai-js.js +1 -1
- package/dist/node/Bot.d.ts +22 -19
- package/dist/node/Bot.js +110 -47
- package/dist/node/FileManager.js +15 -6
- package/dist/node/Middleware.js +92 -27
- package/dist/node/core/auth.js +6 -2
- package/dist/node/core/fs/deleteGroupFile.js +77 -0
- package/dist/node/core/fs/getGroupFileInfo.js +83 -0
- package/dist/node/core/fs/getGroupFileList.js +88 -0
- package/dist/node/core/fs/makeGroupDir.js +79 -0
- package/dist/node/core/fs/moveGroupFile.js +83 -0
- package/dist/node/core/fs/renameGroupFile.js +79 -0
- package/dist/node/core/fs/uploadGroupFIle.js +87 -0
- package/dist/node/core/getFriendList.js +6 -2
- package/dist/node/core/getGroupConfig.js +6 -2
- package/dist/node/core/getGroupFileInfo.js +6 -2
- package/dist/node/core/getGroupFileList.js +6 -2
- package/dist/node/core/getGroupList.js +6 -2
- package/dist/node/core/getMemberInfo.js +6 -2
- package/dist/node/core/getMemberList.js +6 -2
- package/dist/node/core/getSessionConfig.js +6 -2
- package/dist/node/core/groupFileDelete.js +6 -2
- package/dist/node/core/groupFileMove.js +6 -2
- package/dist/node/core/groupFileRename.js +6 -2
- package/dist/node/core/mute.js +6 -2
- package/dist/node/core/muteAll.js +6 -2
- package/dist/node/core/quitGroup.js +6 -2
- package/dist/node/core/recall.js +6 -2
- package/dist/node/core/releaseSession.js +7 -2
- package/dist/node/core/removeFriend.js +70 -0
- package/dist/node/core/removeMember.js +6 -2
- package/dist/node/core/responseBotInvitedJoinGroupRequest.js +6 -2
- package/dist/node/core/responseFirendRequest.js +6 -2
- package/dist/node/core/responseMemberJoinRequest.js +6 -2
- package/dist/node/core/sendCommand.js +29 -14
- package/dist/node/core/sendFirendMessage.js +6 -2
- package/dist/node/core/sendGroupMessage.js +6 -2
- package/dist/node/core/sendNudge.js +6 -2
- package/dist/node/core/sendTempMessage.js +18 -22
- package/dist/node/core/setEssence.js +6 -2
- package/dist/node/core/setGroupConfig.js +6 -2
- package/dist/node/core/setMemberAdmin.js +76 -0
- package/dist/node/core/setMemberInfo.js +6 -2
- package/dist/node/core/setSessionConfig.js +6 -2
- package/dist/node/core/startListeningBrowser.js +8 -2
- package/dist/node/core/startListeningNode.js +5 -1
- package/dist/node/core/stopListeningBrowser.js +5 -1
- package/dist/node/core/stopListeningNode.js +5 -1
- package/dist/node/core/unmute.js +6 -2
- package/dist/node/core/unmuteAll.js +6 -2
- package/dist/node/core/uploadFileAndSend.js +6 -1
- package/dist/node/core/uploadImage.js +6 -1
- package/dist/node/core/uploadVoice.js +6 -1
- package/dist/node/core/verify.js +6 -2
- package/docs/checkDocShouldBuild.sh +4 -0
- package/package.json +8 -8
- package/src/Bot.d.ts +22 -19
- package/src/Bot.js +77 -26
- package/src/FileManager.js +10 -6
- package/src/Middleware.js +54 -10
- package/src/core/auth.js +4 -1
- package/src/core/fs/deleteGroupFile.js +49 -0
- package/src/core/fs/getGroupFileInfo.js +50 -0
- package/src/core/fs/getGroupFileList.js +51 -0
- package/src/core/fs/makeGroupDir.js +49 -0
- package/src/core/fs/moveGroupFile.js +51 -0
- package/src/core/{groupFileRename.js → fs/renameGroupFile.js} +10 -7
- package/src/core/{uploadFileAndSend.js → fs/uploadGroupFIle.js} +8 -5
- package/src/core/getFriendList.js +4 -1
- package/src/core/getGroupConfig.js +4 -1
- package/src/core/getGroupList.js +4 -1
- package/src/core/getMemberInfo.js +4 -1
- package/src/core/getMemberList.js +4 -1
- package/src/core/getSessionConfig.js +4 -1
- package/src/core/mute.js +4 -1
- package/src/core/muteAll.js +4 -1
- package/src/core/quitGroup.js +4 -1
- package/src/core/recall.js +4 -1
- package/src/core/releaseSession.js +5 -1
- package/src/core/{groupFileDelete.js → removeFriend.js} +10 -11
- package/src/core/removeMember.js +4 -1
- package/src/core/responseBotInvitedJoinGroupRequest.js +4 -1
- package/src/core/responseFirendRequest.js +4 -1
- package/src/core/responseMemberJoinRequest.js +4 -1
- package/src/core/sendCommand.js +17 -9
- package/src/core/sendFirendMessage.js +4 -1
- package/src/core/sendGroupMessage.js +4 -1
- package/src/core/sendNudge.js +4 -1
- package/src/core/sendTempMessage.js +16 -13
- package/src/core/setEssence.js +4 -1
- package/src/core/setGroupConfig.js +4 -1
- package/src/core/setMemberAdmin.js +48 -0
- package/src/core/setMemberInfo.js +4 -1
- package/src/core/setSessionConfig.js +4 -1
- package/src/core/startListeningBrowser.js +4 -1
- package/src/core/startListeningNode.js +3 -0
- package/src/core/stopListeningBrowser.js +3 -0
- package/src/core/stopListeningNode.js +3 -0
- package/src/core/unmute.js +4 -1
- package/src/core/unmuteAll.js +4 -1
- package/src/core/uploadImage.js +4 -1
- package/src/core/uploadVoice.js +4 -1
- package/src/core/verify.js +4 -1
- package/webpack.config.js +4 -0
- package/src/core/getGroupFileInfo.js +0 -44
- package/src/core/getGroupFileList.js +0 -40
- package/src/core/groupFileMove.js +0 -46
@@ -17,6 +17,10 @@ if (!process.browser) {
|
|
17
17
|
}
|
18
18
|
|
19
19
|
const errorHandler = require('../util/errorHandler');
|
20
|
+
|
21
|
+
const path = require('path');
|
22
|
+
|
23
|
+
const locationStr = `core.${path.basename(__filename, path.extname(__filename))}`;
|
20
24
|
/**
|
21
25
|
* @description 向 qq 好友发送消息
|
22
26
|
* @param {string} baseUrl mirai-api-http server 的地址
|
@@ -27,7 +31,6 @@ const errorHandler = require('../util/errorHandler');
|
|
27
31
|
* @returns {Object} 结构 { message, code, messageId }
|
28
32
|
*/
|
29
33
|
|
30
|
-
|
31
34
|
module.exports = async ({
|
32
35
|
baseUrl,
|
33
36
|
sessionKey,
|
@@ -55,7 +58,7 @@ module.exports = async ({
|
|
55
58
|
}
|
56
59
|
} = responseData;
|
57
60
|
} catch (error) {
|
58
|
-
throw new Error('
|
61
|
+
throw new Error('请求返回格式出错,请检查 mirai-console');
|
59
62
|
} // 抛出 mirai 的异常,到 catch 中处理后再抛出
|
60
63
|
|
61
64
|
|
@@ -65,6 +68,7 @@ module.exports = async ({
|
|
65
68
|
|
66
69
|
return messageId;
|
67
70
|
} catch (error) {
|
71
|
+
console.error(`mirai-js: error ${locationStr}`);
|
68
72
|
errorHandler(error);
|
69
73
|
}
|
70
74
|
};
|
@@ -17,6 +17,10 @@ if (!process.browser) {
|
|
17
17
|
}
|
18
18
|
|
19
19
|
const errorHandler = require('../util/errorHandler');
|
20
|
+
|
21
|
+
const path = require('path');
|
22
|
+
|
23
|
+
const locationStr = `core.${path.basename(__filename, path.extname(__filename))}`;
|
20
24
|
/**
|
21
25
|
* @description 向 qq 群发送消息
|
22
26
|
* @param {string} baseUrl mirai-api-http server 的地址
|
@@ -27,7 +31,6 @@ const errorHandler = require('../util/errorHandler');
|
|
27
31
|
* @returns {Object} 结构 { message, code, messageId }
|
28
32
|
*/
|
29
33
|
|
30
|
-
|
31
34
|
module.exports = async ({
|
32
35
|
baseUrl,
|
33
36
|
sessionKey,
|
@@ -55,7 +58,7 @@ module.exports = async ({
|
|
55
58
|
}
|
56
59
|
} = responseData;
|
57
60
|
} catch (error) {
|
58
|
-
throw new Error('
|
61
|
+
throw new Error('请求返回格式出错,请检查 mirai-console');
|
59
62
|
} // 抛出 mirai 的异常,到 catch 中处理后再抛出
|
60
63
|
|
61
64
|
|
@@ -65,6 +68,7 @@ module.exports = async ({
|
|
65
68
|
|
66
69
|
return messageId;
|
67
70
|
} catch (error) {
|
71
|
+
console.error(`mirai-js: error ${locationStr}`);
|
68
72
|
errorHandler(error);
|
69
73
|
}
|
70
74
|
};
|
@@ -17,6 +17,10 @@ if (!process.browser) {
|
|
17
17
|
}
|
18
18
|
|
19
19
|
const errorHandler = require('../util/errorHandler');
|
20
|
+
|
21
|
+
const path = require('path');
|
22
|
+
|
23
|
+
const locationStr = `core.${path.basename(__filename, path.extname(__filename))}`;
|
20
24
|
/**
|
21
25
|
* @description 发送戳一戳消息
|
22
26
|
* @param {string} baseUrl mirai-api-http server 的地址
|
@@ -27,7 +31,6 @@ const errorHandler = require('../util/errorHandler');
|
|
27
31
|
* @returns {Object} 结构 { message, code, messageId }
|
28
32
|
*/
|
29
33
|
|
30
|
-
|
31
34
|
module.exports = async ({
|
32
35
|
baseUrl,
|
33
36
|
sessionKey,
|
@@ -54,7 +57,7 @@ module.exports = async ({
|
|
54
57
|
}
|
55
58
|
} = responseData;
|
56
59
|
} catch (error) {
|
57
|
-
throw new Error('
|
60
|
+
throw new Error('请求返回格式出错,请检查 mirai-console');
|
58
61
|
} // 抛出 mirai 的异常,到 catch 中处理后再抛出
|
59
62
|
|
60
63
|
|
@@ -67,6 +70,7 @@ module.exports = async ({
|
|
67
70
|
code
|
68
71
|
};
|
69
72
|
} catch (error) {
|
73
|
+
console.error(`mirai-js: error ${locationStr}`);
|
70
74
|
errorHandler(error);
|
71
75
|
}
|
72
76
|
};
|
@@ -17,6 +17,10 @@ if (!process.browser) {
|
|
17
17
|
}
|
18
18
|
|
19
19
|
const errorHandler = require('../util/errorHandler');
|
20
|
+
|
21
|
+
const path = require('path');
|
22
|
+
|
23
|
+
const locationStr = `core.${path.basename(__filename, path.extname(__filename))}`;
|
20
24
|
/**
|
21
25
|
* @description 向临时对象发送消息
|
22
26
|
* @param {string} baseUrl mirai-api-http server 的地址
|
@@ -28,7 +32,6 @@ const errorHandler = require('../util/errorHandler');
|
|
28
32
|
* @returns {Object} 结构 { message, code, messageId }
|
29
33
|
*/
|
30
34
|
|
31
|
-
|
32
35
|
module.exports = async ({
|
33
36
|
baseUrl,
|
34
37
|
sessionKey,
|
@@ -39,28 +42,20 @@ module.exports = async ({
|
|
39
42
|
}) => {
|
40
43
|
try {
|
41
44
|
// 拼接 url
|
42
|
-
const url = new URL('/sendTempMessage', baseUrl).toString();
|
45
|
+
const url = new URL('/sendTempMessage', baseUrl).toString();
|
43
46
|
|
44
|
-
|
47
|
+
if (!qq || !group) {
|
48
|
+
throw new Error('sendTempMessage 缺少必要的 qq 和 group 参数');
|
49
|
+
} // 请求
|
45
50
|
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
}
|
54
|
-
responseData = await axios.post(url, {
|
55
|
-
sessionKey,
|
56
|
-
qq,
|
57
|
-
quote,
|
58
|
-
messageChain
|
59
|
-
});
|
60
|
-
} else {
|
61
|
-
// 上层已经做了参数检查,这里有些多余
|
62
|
-
throw new Error('sendTempMessage 缺少必要的 qq 或 group 参数');
|
63
|
-
}
|
51
|
+
|
52
|
+
const responseData = await axios.post(url, {
|
53
|
+
sessionKey,
|
54
|
+
qq,
|
55
|
+
group,
|
56
|
+
quote,
|
57
|
+
messageChain
|
58
|
+
});
|
64
59
|
|
65
60
|
try {
|
66
61
|
var {
|
@@ -71,7 +66,7 @@ module.exports = async ({
|
|
71
66
|
}
|
72
67
|
} = responseData;
|
73
68
|
} catch (error) {
|
74
|
-
throw new Error('
|
69
|
+
throw new Error('请求返回格式出错,请检查 mirai-console');
|
75
70
|
} // 抛出 mirai 的异常,到 catch 中处理后再抛出
|
76
71
|
|
77
72
|
|
@@ -81,6 +76,7 @@ module.exports = async ({
|
|
81
76
|
|
82
77
|
return messageId;
|
83
78
|
} catch (error) {
|
79
|
+
console.error(`mirai-js: error ${locationStr}`);
|
84
80
|
errorHandler(error);
|
85
81
|
}
|
86
82
|
};
|
@@ -17,6 +17,10 @@ if (!process.browser) {
|
|
17
17
|
}
|
18
18
|
|
19
19
|
const errorHandler = require('../util/errorHandler');
|
20
|
+
|
21
|
+
const path = require('path');
|
22
|
+
|
23
|
+
const locationStr = `core.${path.basename(__filename, path.extname(__filename))}`;
|
20
24
|
/**
|
21
25
|
* @description 设置群精华消息
|
22
26
|
* @param {string} baseUrl mirai-api-http server 的地址
|
@@ -25,7 +29,6 @@ const errorHandler = require('../util/errorHandler');
|
|
25
29
|
* @returns {Object} 结构 { message, code }
|
26
30
|
*/
|
27
31
|
|
28
|
-
|
29
32
|
module.exports = async ({
|
30
33
|
baseUrl,
|
31
34
|
sessionKey,
|
@@ -48,7 +51,7 @@ module.exports = async ({
|
|
48
51
|
}
|
49
52
|
} = responseData;
|
50
53
|
} catch (error) {
|
51
|
-
throw new Error('
|
54
|
+
throw new Error('请求返回格式出错,请检查 mirai-console');
|
52
55
|
} // 抛出 mirai 的异常,到 catch 中处理后再抛出
|
53
56
|
|
54
57
|
|
@@ -61,6 +64,7 @@ module.exports = async ({
|
|
61
64
|
code
|
62
65
|
};
|
63
66
|
} catch (error) {
|
67
|
+
console.error(`mirai-js: error ${locationStr}`);
|
64
68
|
errorHandler(error);
|
65
69
|
}
|
66
70
|
};
|
@@ -17,6 +17,10 @@ if (!process.browser) {
|
|
17
17
|
}
|
18
18
|
|
19
19
|
const errorHandler = require('../util/errorHandler');
|
20
|
+
|
21
|
+
const path = require('path');
|
22
|
+
|
23
|
+
const locationStr = `core.${path.basename(__filename, path.extname(__filename))}`;
|
20
24
|
/**
|
21
25
|
* @description 设置群配置
|
22
26
|
* @param {string} baseUrl mirai-api-http server 的地址
|
@@ -30,7 +34,6 @@ const errorHandler = require('../util/errorHandler');
|
|
30
34
|
* @returns {Object} 结构 { message, code }
|
31
35
|
*/
|
32
36
|
|
33
|
-
|
34
37
|
module.exports = async ({
|
35
38
|
baseUrl,
|
36
39
|
sessionKey,
|
@@ -67,7 +70,7 @@ module.exports = async ({
|
|
67
70
|
}
|
68
71
|
} = responseData;
|
69
72
|
} catch (error) {
|
70
|
-
throw new Error('
|
73
|
+
throw new Error('请求返回格式出错,请检查 mirai-console');
|
71
74
|
} // 抛出 mirai 的异常,到 catch 中处理后再抛出
|
72
75
|
|
73
76
|
|
@@ -80,6 +83,7 @@ module.exports = async ({
|
|
80
83
|
code
|
81
84
|
};
|
82
85
|
} catch (error) {
|
86
|
+
console.error(`mirai-js: error ${locationStr}`);
|
83
87
|
errorHandler(error);
|
84
88
|
}
|
85
89
|
};
|
@@ -0,0 +1,76 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
const {
|
4
|
+
errCodeMap
|
5
|
+
} = require('../util/errCode');
|
6
|
+
|
7
|
+
const axios = require('axios');
|
8
|
+
|
9
|
+
let URL;
|
10
|
+
|
11
|
+
if (!process.browser) {
|
12
|
+
({
|
13
|
+
URL
|
14
|
+
} = require('url'));
|
15
|
+
} else {
|
16
|
+
URL = window.URL;
|
17
|
+
}
|
18
|
+
|
19
|
+
const errorHandler = require('../util/errorHandler');
|
20
|
+
|
21
|
+
const path = require('path');
|
22
|
+
|
23
|
+
const locationStr = `core.${path.basename(__filename, path.extname(__filename))}`;
|
24
|
+
/**
|
25
|
+
* @description 设置群成员权限
|
26
|
+
* @param {string} baseUrl mirai-api-http server 的地址
|
27
|
+
* @param {string} sessionKey 会话标识
|
28
|
+
* @param {number} target 群成员所在群号
|
29
|
+
* @param {number} memberId 群成员的 qq 号
|
30
|
+
* @param {string} assign 是否设置为管理员
|
31
|
+
* @returns {Object} 结构 { message, code }
|
32
|
+
*/
|
33
|
+
|
34
|
+
module.exports = async ({
|
35
|
+
baseUrl,
|
36
|
+
sessionKey,
|
37
|
+
target,
|
38
|
+
memberId,
|
39
|
+
assign
|
40
|
+
}) => {
|
41
|
+
try {
|
42
|
+
// 拼接 url
|
43
|
+
const url = new URL('/memberAdmin', baseUrl).toString(); // 请求
|
44
|
+
|
45
|
+
const responseData = await axios.post(url, {
|
46
|
+
sessionKey,
|
47
|
+
target,
|
48
|
+
memberId,
|
49
|
+
assign
|
50
|
+
});
|
51
|
+
|
52
|
+
try {
|
53
|
+
var {
|
54
|
+
data: {
|
55
|
+
msg: message,
|
56
|
+
code
|
57
|
+
}
|
58
|
+
} = responseData;
|
59
|
+
} catch (error) {
|
60
|
+
throw new Error('请求返回格式出错,请检查 mirai-console');
|
61
|
+
} // 抛出 mirai 的异常,到 catch 中处理后再抛出
|
62
|
+
|
63
|
+
|
64
|
+
if (code in errCodeMap) {
|
65
|
+
throw new Error(message);
|
66
|
+
}
|
67
|
+
|
68
|
+
return {
|
69
|
+
message,
|
70
|
+
code
|
71
|
+
};
|
72
|
+
} catch (error) {
|
73
|
+
console.error(`mirai-js: error ${locationStr}`);
|
74
|
+
errorHandler(error);
|
75
|
+
}
|
76
|
+
};
|
@@ -17,6 +17,10 @@ if (!process.browser) {
|
|
17
17
|
}
|
18
18
|
|
19
19
|
const errorHandler = require('../util/errorHandler');
|
20
|
+
|
21
|
+
const path = require('path');
|
22
|
+
|
23
|
+
const locationStr = `core.${path.basename(__filename, path.extname(__filename))}`;
|
20
24
|
/**
|
21
25
|
* @description 设置群成员信息
|
22
26
|
* @param {string} baseUrl mirai-api-http server 的地址
|
@@ -28,7 +32,6 @@ const errorHandler = require('../util/errorHandler');
|
|
28
32
|
* @returns {Object} 结构 { message, code }
|
29
33
|
*/
|
30
34
|
|
31
|
-
|
32
35
|
module.exports = async ({
|
33
36
|
baseUrl,
|
34
37
|
sessionKey,
|
@@ -59,7 +62,7 @@ module.exports = async ({
|
|
59
62
|
}
|
60
63
|
} = responseData;
|
61
64
|
} catch (error) {
|
62
|
-
throw new Error('
|
65
|
+
throw new Error('请求返回格式出错,请检查 mirai-console');
|
63
66
|
} // 抛出 mirai 的异常,到 catch 中处理后再抛出
|
64
67
|
|
65
68
|
|
@@ -72,6 +75,7 @@ module.exports = async ({
|
|
72
75
|
code
|
73
76
|
};
|
74
77
|
} catch (error) {
|
78
|
+
console.error(`mirai-js: error ${locationStr}`);
|
75
79
|
errorHandler(error);
|
76
80
|
}
|
77
81
|
};
|
@@ -17,6 +17,10 @@ if (!process.browser) {
|
|
17
17
|
}
|
18
18
|
|
19
19
|
const errorHandler = require('../util/errorHandler');
|
20
|
+
|
21
|
+
const path = require('path');
|
22
|
+
|
23
|
+
const locationStr = `core.${path.basename(__filename, path.extname(__filename))}`;
|
20
24
|
/**
|
21
25
|
* @description 设置指定 session 的 config
|
22
26
|
* @param {string} baseUrl mirai-api-http server 的地址
|
@@ -26,7 +30,6 @@ const errorHandler = require('../util/errorHandler');
|
|
26
30
|
* @returns {Object} 结构 { message, code }
|
27
31
|
*/
|
28
32
|
|
29
|
-
|
30
33
|
module.exports = async ({
|
31
34
|
baseUrl,
|
32
35
|
sessionKey,
|
@@ -51,7 +54,7 @@ module.exports = async ({
|
|
51
54
|
}
|
52
55
|
} = responseData;
|
53
56
|
} catch (error) {
|
54
|
-
throw new Error('
|
57
|
+
throw new Error('请求返回格式出错,请检查 mirai-console');
|
55
58
|
} // 抛出 mirai 的异常,到 catch 中处理后再抛出
|
56
59
|
|
57
60
|
|
@@ -64,6 +67,7 @@ module.exports = async ({
|
|
64
67
|
code
|
65
68
|
};
|
66
69
|
} catch (error) {
|
70
|
+
console.error(`mirai-js: error ${locationStr}`);
|
67
71
|
errorHandler(error);
|
68
72
|
}
|
69
73
|
};
|
@@ -12,6 +12,10 @@ if (!process.browser) {
|
|
12
12
|
}
|
13
13
|
|
14
14
|
const errorHandler = require('../util/errorHandler');
|
15
|
+
|
16
|
+
const path = require('path');
|
17
|
+
|
18
|
+
const locationStr = `core.${path.basename(__filename, path.extname(__filename))}`;
|
15
19
|
/**
|
16
20
|
* @description 开始侦听事件
|
17
21
|
* @param {string} baseUrl mirai-api-http server 的地址
|
@@ -22,7 +26,6 @@ const errorHandler = require('../util/errorHandler');
|
|
22
26
|
* @returns {WebSocket} 建立连接的 WebSocket 实例
|
23
27
|
*/
|
24
28
|
|
25
|
-
|
26
29
|
module.exports = async ({
|
27
30
|
baseUrl,
|
28
31
|
sessionKey,
|
@@ -49,7 +52,9 @@ module.exports = async ({
|
|
49
52
|
data
|
50
53
|
}) => {
|
51
54
|
try {
|
52
|
-
|
55
|
+
var _JSON$parse;
|
56
|
+
|
57
|
+
message((_JSON$parse = JSON.parse(data)) === null || _JSON$parse === void 0 ? void 0 : _JSON$parse.data);
|
53
58
|
} catch (error) {} // eslint-disable-line no-empty
|
54
59
|
|
55
60
|
};
|
@@ -80,6 +85,7 @@ module.exports = async ({
|
|
80
85
|
|
81
86
|
return ws;
|
82
87
|
} catch (error) {
|
88
|
+
console.error(`mirai-js: error ${locationStr}`);
|
83
89
|
errorHandler(error);
|
84
90
|
}
|
85
91
|
};
|
@@ -13,6 +13,10 @@ if (!process.browser) {
|
|
13
13
|
}
|
14
14
|
|
15
15
|
const errorHandler = require('../util/errorHandler');
|
16
|
+
|
17
|
+
const path = require('path');
|
18
|
+
|
19
|
+
const locationStr = `core.${path.basename(__filename, path.extname(__filename))}`;
|
16
20
|
/**
|
17
21
|
* @description 开始侦听事件
|
18
22
|
* @param {string} baseUrl mirai-api-http server 的地址
|
@@ -24,7 +28,6 @@ const errorHandler = require('../util/errorHandler');
|
|
24
28
|
* @returns {WebSocket} 建立连接的 WebSocket 实例
|
25
29
|
*/
|
26
30
|
|
27
|
-
|
28
31
|
module.exports = async ({
|
29
32
|
baseUrl,
|
30
33
|
sessionKey,
|
@@ -92,6 +95,7 @@ module.exports = async ({
|
|
92
95
|
});
|
93
96
|
return ws;
|
94
97
|
} catch (error) {
|
98
|
+
console.error(`mirai-js: error ${locationStr}`);
|
95
99
|
errorHandler(error);
|
96
100
|
}
|
97
101
|
};
|
@@ -1,12 +1,15 @@
|
|
1
1
|
"use strict";
|
2
2
|
|
3
3
|
const errorHandler = require('../util/errorHandler');
|
4
|
+
|
5
|
+
const path = require('path');
|
6
|
+
|
7
|
+
const locationStr = `core.${path.basename(__filename, path.extname(__filename))}`;
|
4
8
|
/**
|
5
9
|
* @description 停止侦听事件
|
6
10
|
* @param {WebSocket} 建立连接的 WebSocket 实例
|
7
11
|
*/
|
8
12
|
|
9
|
-
|
10
13
|
module.exports = async wsConnection => {
|
11
14
|
try {
|
12
15
|
// 由于在 ws open 之前关闭连接会抛异常,故应先判断此时是否正在连接中
|
@@ -27,6 +30,7 @@ module.exports = async wsConnection => {
|
|
27
30
|
// do nothing
|
28
31
|
}
|
29
32
|
} catch (error) {
|
33
|
+
console.error(`mirai-js: error ${locationStr}`);
|
30
34
|
errorHandler(error);
|
31
35
|
}
|
32
36
|
};
|
@@ -1,12 +1,15 @@
|
|
1
1
|
"use strict";
|
2
2
|
|
3
3
|
const errorHandler = require('../util/errorHandler');
|
4
|
+
|
5
|
+
const path = require('path');
|
6
|
+
|
7
|
+
const locationStr = `core.${path.basename(__filename, path.extname(__filename))}`;
|
4
8
|
/**
|
5
9
|
* @description 停止侦听事件
|
6
10
|
* @param {WebSocket} 建立连接的 WebSocket 实例
|
7
11
|
*/
|
8
12
|
|
9
|
-
|
10
13
|
module.exports = async wsConnection => {
|
11
14
|
try {
|
12
15
|
// 由于在 ws open 之前关闭连接会抛异常,故应先判断此时是否正在连接中
|
@@ -27,6 +30,7 @@ module.exports = async wsConnection => {
|
|
27
30
|
// do nothing
|
28
31
|
}
|
29
32
|
} catch (error) {
|
33
|
+
console.error(`mirai-js: error ${locationStr}`);
|
30
34
|
errorHandler(error);
|
31
35
|
}
|
32
36
|
};
|
package/dist/node/core/unmute.js
CHANGED
@@ -17,6 +17,10 @@ if (!process.browser) {
|
|
17
17
|
}
|
18
18
|
|
19
19
|
const errorHandler = require('../util/errorHandler');
|
20
|
+
|
21
|
+
const path = require('path');
|
22
|
+
|
23
|
+
const locationStr = `core.${path.basename(__filename, path.extname(__filename))}`;
|
20
24
|
/**
|
21
25
|
* @description 解除禁言
|
22
26
|
* @param {string} baseUrl mirai-api-http server 的主机地址
|
@@ -26,7 +30,6 @@ const errorHandler = require('../util/errorHandler');
|
|
26
30
|
* @returns {Object} 结构 { message, code }
|
27
31
|
*/
|
28
32
|
|
29
|
-
|
30
33
|
module.exports = async ({
|
31
34
|
baseUrl,
|
32
35
|
sessionKey,
|
@@ -51,7 +54,7 @@ module.exports = async ({
|
|
51
54
|
}
|
52
55
|
} = responseData;
|
53
56
|
} catch (error) {
|
54
|
-
throw new Error('
|
57
|
+
throw new Error('请求返回格式出错,请检查 mirai-console');
|
55
58
|
} // 抛出 mirai 的异常,到 catch 中处理后再抛出
|
56
59
|
|
57
60
|
|
@@ -64,6 +67,7 @@ module.exports = async ({
|
|
64
67
|
code
|
65
68
|
};
|
66
69
|
} catch (error) {
|
70
|
+
console.error(`mirai-js: error ${locationStr}`);
|
67
71
|
errorHandler(error);
|
68
72
|
}
|
69
73
|
};
|
@@ -17,6 +17,10 @@ if (!process.browser) {
|
|
17
17
|
}
|
18
18
|
|
19
19
|
const errorHandler = require('../util/errorHandler');
|
20
|
+
|
21
|
+
const path = require('path');
|
22
|
+
|
23
|
+
const locationStr = `core.${path.basename(__filename, path.extname(__filename))}`;
|
20
24
|
/**
|
21
25
|
* @description 解除全员禁言
|
22
26
|
* @param {string} baseUrl mirai-api-http server 的主机地址
|
@@ -25,7 +29,6 @@ const errorHandler = require('../util/errorHandler');
|
|
25
29
|
* @returns {Object} 结构 { message, code }
|
26
30
|
*/
|
27
31
|
|
28
|
-
|
29
32
|
module.exports = async ({
|
30
33
|
baseUrl,
|
31
34
|
sessionKey,
|
@@ -48,7 +51,7 @@ module.exports = async ({
|
|
48
51
|
}
|
49
52
|
} = responseData;
|
50
53
|
} catch (error) {
|
51
|
-
throw new Error('
|
54
|
+
throw new Error('请求返回格式出错,请检查 mirai-console');
|
52
55
|
} // 抛出 mirai 的异常,到 catch 中处理后再抛出
|
53
56
|
|
54
57
|
|
@@ -61,6 +64,7 @@ module.exports = async ({
|
|
61
64
|
code
|
62
65
|
};
|
63
66
|
} catch (error) {
|
67
|
+
console.error(`mirai-js: error ${locationStr}`);
|
64
68
|
errorHandler(error);
|
65
69
|
}
|
66
70
|
};
|
@@ -18,6 +18,10 @@ if (!process.browser) {
|
|
18
18
|
|
19
19
|
const errorHandler = require('../util/errorHandler');
|
20
20
|
|
21
|
+
const path = require('path');
|
22
|
+
|
23
|
+
const locationStr = `core.${path.basename(__filename, path.extname(__filename))}`;
|
24
|
+
|
21
25
|
const FormData = require('form-data');
|
22
26
|
/**
|
23
27
|
* @description 上传文件至服务器并发送,返回文件 id
|
@@ -67,7 +71,7 @@ module.exports = async ({
|
|
67
71
|
}
|
68
72
|
} = responseData;
|
69
73
|
} catch (error) {
|
70
|
-
throw new Error('
|
74
|
+
throw new Error('请求返回格式出错,请检查 mirai-console');
|
71
75
|
} // 抛出 mirai 的异常,到 catch 中处理后再抛出
|
72
76
|
|
73
77
|
|
@@ -77,6 +81,7 @@ module.exports = async ({
|
|
77
81
|
|
78
82
|
return id;
|
79
83
|
} catch (error) {
|
84
|
+
console.error(`mirai-js: error ${locationStr}`);
|
80
85
|
errorHandler(error);
|
81
86
|
}
|
82
87
|
};
|
@@ -18,6 +18,10 @@ if (!process.browser) {
|
|
18
18
|
|
19
19
|
const errorHandler = require('../util/errorHandler');
|
20
20
|
|
21
|
+
const path = require('path');
|
22
|
+
|
23
|
+
const locationStr = `core.${path.basename(__filename, path.extname(__filename))}`;
|
24
|
+
|
21
25
|
const FormData = require('form-data');
|
22
26
|
/**
|
23
27
|
* @description 上传图片至服务器,返回指定 type 的 imageId,url,及 path
|
@@ -64,7 +68,7 @@ module.exports = async ({
|
|
64
68
|
}
|
65
69
|
} = responseData;
|
66
70
|
} catch (error) {
|
67
|
-
throw new Error('
|
71
|
+
throw new Error('请求返回格式出错,请检查 mirai-console');
|
68
72
|
} // 抛出 mirai 的异常,到 catch 中处理后再抛出
|
69
73
|
|
70
74
|
|
@@ -78,6 +82,7 @@ module.exports = async ({
|
|
78
82
|
path
|
79
83
|
};
|
80
84
|
} catch (error) {
|
85
|
+
console.error(`mirai-js: error ${locationStr}`);
|
81
86
|
errorHandler(error);
|
82
87
|
}
|
83
88
|
};
|
@@ -18,6 +18,10 @@ if (!process.browser) {
|
|
18
18
|
|
19
19
|
const errorHandler = require('../util/errorHandler');
|
20
20
|
|
21
|
+
const path = require('path');
|
22
|
+
|
23
|
+
const locationStr = `core.${path.basename(__filename, path.extname(__filename))}`;
|
24
|
+
|
21
25
|
const FormData = require('form-data');
|
22
26
|
/**
|
23
27
|
* FIXME: 目前该功能返回的 voiceId 无法正常使用,无法
|
@@ -65,7 +69,7 @@ module.exports = async ({
|
|
65
69
|
}
|
66
70
|
} = responseData;
|
67
71
|
} catch (error) {
|
68
|
-
throw new Error('
|
72
|
+
throw new Error('请求返回格式出错,请检查 mirai-console');
|
69
73
|
} // 抛出 mirai 的异常,到 catch 中处理后再抛出
|
70
74
|
|
71
75
|
|
@@ -79,6 +83,7 @@ module.exports = async ({
|
|
79
83
|
path
|
80
84
|
};
|
81
85
|
} catch (error) {
|
86
|
+
console.error(`mirai-js: error ${locationStr}`);
|
82
87
|
errorHandler(error);
|
83
88
|
}
|
84
89
|
};
|