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 获取群成员信息
|
22
26
|
* @param {string} baseUrl mirai-api-http server 的地址
|
@@ -26,7 +30,6 @@ const errorHandler = require('../util/errorHandler');
|
|
26
30
|
* @returns {Object} 结构 { name, specialTitle } 群名片和群头衔
|
27
31
|
*/
|
28
32
|
|
29
|
-
|
30
33
|
module.exports = async ({
|
31
34
|
baseUrl,
|
32
35
|
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
|
|
@@ -68,6 +71,7 @@ module.exports = async ({
|
|
68
71
|
specialTitle
|
69
72
|
};
|
70
73
|
} catch (error) {
|
74
|
+
console.error(`mirai-js: error ${locationStr}`);
|
71
75
|
errorHandler(error);
|
72
76
|
}
|
73
77
|
};
|
@@ -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 的地址
|
@@ -31,7 +35,6 @@ const errorHandler = require('../util/errorHandler');
|
|
31
35
|
* }]
|
32
36
|
*/
|
33
37
|
|
34
|
-
|
35
38
|
module.exports = async ({
|
36
39
|
baseUrl,
|
37
40
|
sessionKey,
|
@@ -57,7 +60,7 @@ module.exports = async ({
|
|
57
60
|
}
|
58
61
|
} = responseData;
|
59
62
|
} catch (error) {
|
60
|
-
throw new Error('
|
63
|
+
throw new Error('请求返回格式出错,请检查 mirai-console');
|
61
64
|
} // 抛出 mirai 的异常,到 catch 中处理后再抛出
|
62
65
|
|
63
66
|
|
@@ -67,6 +70,7 @@ module.exports = async ({
|
|
67
70
|
|
68
71
|
return data;
|
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 获取指定 session 的 config
|
22
26
|
* @param {string} baseUrl mirai-api-http server 的地址
|
@@ -24,7 +28,6 @@ const errorHandler = require('../util/errorHandler');
|
|
24
28
|
* @returns {Object} 结构 { cacheSize, enableWebsocket }
|
25
29
|
*/
|
26
30
|
|
27
|
-
|
28
31
|
module.exports = async ({
|
29
32
|
baseUrl,
|
30
33
|
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
|
enableWebsocket
|
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 的地址
|
@@ -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 的地址
|
@@ -27,7 +31,6 @@ const errorHandler = require('../util/errorHandler');
|
|
27
31
|
* @returns {Object} 结构 { message, code }
|
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 的地址
|
@@ -27,7 +31,6 @@ const errorHandler = require('../util/errorHandler');
|
|
27
31
|
* @returns {Object} 结构 { message, code }
|
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
|
};
|
package/dist/node/core/mute.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 的主机地址
|
@@ -27,7 +31,6 @@ const errorHandler = require('../util/errorHandler');
|
|
27
31
|
* @returns {Object} 结构 { message, code }
|
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 的主机地址
|
@@ -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 的地址
|
@@ -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
|
};
|
package/dist/node/core/recall.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 撤回由 messageId 确定的消息
|
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 的主机地址
|
@@ -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,8 @@ module.exports = async ({
|
|
61
64
|
code
|
62
65
|
};
|
63
66
|
} catch (error) {
|
67
|
+
console.error(`mirai-js: error ${locationStr}`);
|
68
|
+
console.error(`mirai-js: error ${locationStr}`);
|
64
69
|
errorHandler(error);
|
65
70
|
}
|
66
71
|
};
|
@@ -0,0 +1,70 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
const {
|
4
|
+
errCodeMap
|
5
|
+
} = require('../util/errCode');
|
6
|
+
|
7
|
+
const axios = require('axios').default;
|
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 欲删除好友的 qq 号
|
29
|
+
* @returns {Object} 结构 { message, code }
|
30
|
+
*/
|
31
|
+
|
32
|
+
module.exports = async ({
|
33
|
+
baseUrl,
|
34
|
+
sessionKey,
|
35
|
+
target
|
36
|
+
}) => {
|
37
|
+
try {
|
38
|
+
// 拼接 url
|
39
|
+
const url = new URL('/deleteFriend', baseUrl).toString(); // 请求
|
40
|
+
|
41
|
+
const responseData = await axios.post(url, {
|
42
|
+
sessionKey,
|
43
|
+
target
|
44
|
+
});
|
45
|
+
|
46
|
+
try {
|
47
|
+
var {
|
48
|
+
data: {
|
49
|
+
msg: message,
|
50
|
+
code
|
51
|
+
}
|
52
|
+
} = responseData;
|
53
|
+
} catch (error) {
|
54
|
+
throw new Error('请求返回格式出错,请检查 mirai-console');
|
55
|
+
} // 抛出 mirai 的异常,到 catch 中处理后再抛出
|
56
|
+
|
57
|
+
|
58
|
+
if (code in errCodeMap) {
|
59
|
+
throw new Error(message);
|
60
|
+
}
|
61
|
+
|
62
|
+
return {
|
63
|
+
message,
|
64
|
+
code
|
65
|
+
};
|
66
|
+
} catch (error) {
|
67
|
+
console.error(`mirai-js: error ${locationStr}`);
|
68
|
+
errorHandler(error);
|
69
|
+
}
|
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 的地址
|
@@ -27,7 +31,6 @@ const errorHandler = require('../util/errorHandler');
|
|
27
31
|
* @returns {Object} 结构 { message, code }
|
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
|
* ! 自动同意时,不会触发该事件
|
22
26
|
* @description 响应机器人被邀请入群请求
|
@@ -30,7 +34,6 @@ const errorHandler = require('../util/errorHandler');
|
|
30
34
|
* @returns {void}
|
31
35
|
*/
|
32
36
|
|
33
|
-
|
34
37
|
module.exports = async ({
|
35
38
|
baseUrl,
|
36
39
|
sessionKey,
|
@@ -61,7 +64,7 @@ module.exports = async ({
|
|
61
64
|
}
|
62
65
|
} = responseData;
|
63
66
|
} catch (error) {
|
64
|
-
throw new Error('
|
67
|
+
throw new Error('请求返回格式出错,请检查 mirai-console');
|
65
68
|
} // 抛出 mirai 的异常,到 catch 中处理后再抛出
|
66
69
|
|
67
70
|
|
@@ -69,6 +72,7 @@ module.exports = async ({
|
|
69
72
|
throw new Error(serverMessage);
|
70
73
|
}
|
71
74
|
} catch (error) {
|
75
|
+
console.error(`mirai-js: error ${locationStr}`);
|
72
76
|
errorHandler(error);
|
73
77
|
}
|
74
78
|
};
|
@@ -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 的地址
|
@@ -29,7 +33,6 @@ const errorHandler = require('../util/errorHandler');
|
|
29
33
|
* @returns {void}
|
30
34
|
*/
|
31
35
|
|
32
|
-
|
33
36
|
module.exports = async ({
|
34
37
|
baseUrl,
|
35
38
|
sessionKey,
|
@@ -60,7 +63,7 @@ module.exports = async ({
|
|
60
63
|
}
|
61
64
|
} = responseData;
|
62
65
|
} catch (error) {
|
63
|
-
throw new Error('
|
66
|
+
throw new Error('请求返回格式出错,请检查 mirai-console');
|
64
67
|
} // 抛出 mirai 的异常,到 catch 中处理后再抛出
|
65
68
|
|
66
69
|
|
@@ -68,6 +71,7 @@ module.exports = async ({
|
|
68
71
|
throw new Error(serverMessage);
|
69
72
|
}
|
70
73
|
} catch (error) {
|
74
|
+
console.error(`mirai-js: error ${locationStr}`);
|
71
75
|
errorHandler(error);
|
72
76
|
}
|
73
77
|
};
|
@@ -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
|
* FIXME: mirai-core 的问题,有时候收不到 MemberJoinRequestEvent 事件
|
22
26
|
* 该功能未经测试
|
@@ -31,7 +35,6 @@ const errorHandler = require('../util/errorHandler');
|
|
31
35
|
* @returns {void}
|
32
36
|
*/
|
33
37
|
|
34
|
-
|
35
38
|
module.exports = async ({
|
36
39
|
baseUrl,
|
37
40
|
sessionKey,
|
@@ -62,7 +65,7 @@ module.exports = async ({
|
|
62
65
|
}
|
63
66
|
} = responseData;
|
64
67
|
} catch (error) {
|
65
|
-
throw new Error('
|
68
|
+
throw new Error('请求返回格式出错,请检查 mirai-console');
|
66
69
|
} // 抛出 mirai 的异常,到 catch 中处理后再抛出
|
67
70
|
|
68
71
|
|
@@ -70,6 +73,7 @@ module.exports = async ({
|
|
70
73
|
throw new Error(serverMessage);
|
71
74
|
}
|
72
75
|
} catch (error) {
|
76
|
+
console.error(`mirai-js: error ${locationStr}`);
|
73
77
|
errorHandler(error);
|
74
78
|
}
|
75
79
|
};
|
@@ -2,6 +2,10 @@
|
|
2
2
|
|
3
3
|
const axios = require('axios').default;
|
4
4
|
|
5
|
+
const {
|
6
|
+
errCodeMap
|
7
|
+
} = require('../util/errCode');
|
8
|
+
|
5
9
|
let URL;
|
6
10
|
|
7
11
|
if (!process.browser) {
|
@@ -13,44 +17,55 @@ if (!process.browser) {
|
|
13
17
|
}
|
14
18
|
|
15
19
|
const errorHandler = require('../util/errorHandler');
|
20
|
+
|
21
|
+
const path = require('path');
|
22
|
+
|
23
|
+
const locationStr = `core.${path.basename(__filename, path.extname(__filename))}`;
|
16
24
|
/**
|
17
25
|
* @description 向 mirai-console 发送指令
|
18
26
|
* @param {string} baseUrl mirai-api-http server 的地址
|
19
|
-
* @param {string}
|
27
|
+
* @param {string} sessionKey 会话标识
|
20
28
|
* @param {string} command 指令名
|
21
|
-
* @param {
|
22
|
-
* @returns {Object} 结构 { message }
|
29
|
+
* @param {MessageChain[]} args 指令的参数
|
30
|
+
* @returns {Object} 结构 { message, code }
|
23
31
|
*/
|
24
32
|
|
25
|
-
|
26
33
|
module.exports = async ({
|
27
34
|
baseUrl,
|
28
|
-
|
29
|
-
command
|
30
|
-
args
|
35
|
+
sessionKey,
|
36
|
+
command
|
31
37
|
}) => {
|
32
38
|
try {
|
33
39
|
// 拼接 url
|
34
|
-
const url = new URL('/
|
40
|
+
const url = new URL('/cmd/execute', baseUrl).toString(); // 请求
|
35
41
|
|
36
42
|
const responseData = await axios.post(url, {
|
37
|
-
|
38
|
-
|
39
|
-
args
|
43
|
+
sessionKey,
|
44
|
+
command
|
40
45
|
});
|
41
46
|
|
42
47
|
try {
|
43
48
|
var {
|
44
|
-
data:
|
49
|
+
data: {
|
50
|
+
msg: message,
|
51
|
+
code
|
52
|
+
}
|
45
53
|
} = responseData;
|
46
54
|
} catch (error) {
|
47
|
-
throw new Error('
|
55
|
+
throw new Error('请求返回格式出错,请检查 mirai-console');
|
56
|
+
} // 抛出 mirai 的异常,到 catch 中处理后再抛出
|
57
|
+
|
58
|
+
|
59
|
+
if (code in errCodeMap) {
|
60
|
+
throw new Error(message);
|
48
61
|
}
|
49
62
|
|
50
63
|
return {
|
51
|
-
message
|
64
|
+
message,
|
65
|
+
code
|
52
66
|
};
|
53
67
|
} catch (error) {
|
68
|
+
console.error(`mirai-js: error ${locationStr}`);
|
54
69
|
errorHandler(error);
|
55
70
|
}
|
56
71
|
};
|