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.
Files changed (113) hide show
  1. package/.github/FUNDING.yml +1 -1
  2. package/.github/dependabot.yml +1 -1
  3. package/.github/workflows/codeql-analysis.yml +70 -0
  4. package/.husky/pre-commit +0 -0
  5. package/demo.html +2 -2
  6. package/demo.js +6 -90
  7. package/dist/browser/mirai-js.js +1 -1
  8. package/dist/node/Bot.d.ts +22 -19
  9. package/dist/node/Bot.js +110 -47
  10. package/dist/node/FileManager.js +15 -6
  11. package/dist/node/Middleware.js +92 -27
  12. package/dist/node/core/auth.js +6 -2
  13. package/dist/node/core/fs/deleteGroupFile.js +77 -0
  14. package/dist/node/core/fs/getGroupFileInfo.js +83 -0
  15. package/dist/node/core/fs/getGroupFileList.js +88 -0
  16. package/dist/node/core/fs/makeGroupDir.js +79 -0
  17. package/dist/node/core/fs/moveGroupFile.js +83 -0
  18. package/dist/node/core/fs/renameGroupFile.js +79 -0
  19. package/dist/node/core/fs/uploadGroupFIle.js +87 -0
  20. package/dist/node/core/getFriendList.js +6 -2
  21. package/dist/node/core/getGroupConfig.js +6 -2
  22. package/dist/node/core/getGroupFileInfo.js +6 -2
  23. package/dist/node/core/getGroupFileList.js +6 -2
  24. package/dist/node/core/getGroupList.js +6 -2
  25. package/dist/node/core/getMemberInfo.js +6 -2
  26. package/dist/node/core/getMemberList.js +6 -2
  27. package/dist/node/core/getSessionConfig.js +6 -2
  28. package/dist/node/core/groupFileDelete.js +6 -2
  29. package/dist/node/core/groupFileMove.js +6 -2
  30. package/dist/node/core/groupFileRename.js +6 -2
  31. package/dist/node/core/mute.js +6 -2
  32. package/dist/node/core/muteAll.js +6 -2
  33. package/dist/node/core/quitGroup.js +6 -2
  34. package/dist/node/core/recall.js +6 -2
  35. package/dist/node/core/releaseSession.js +7 -2
  36. package/dist/node/core/removeFriend.js +70 -0
  37. package/dist/node/core/removeMember.js +6 -2
  38. package/dist/node/core/responseBotInvitedJoinGroupRequest.js +6 -2
  39. package/dist/node/core/responseFirendRequest.js +6 -2
  40. package/dist/node/core/responseMemberJoinRequest.js +6 -2
  41. package/dist/node/core/sendCommand.js +29 -14
  42. package/dist/node/core/sendFirendMessage.js +6 -2
  43. package/dist/node/core/sendGroupMessage.js +6 -2
  44. package/dist/node/core/sendNudge.js +6 -2
  45. package/dist/node/core/sendTempMessage.js +18 -22
  46. package/dist/node/core/setEssence.js +6 -2
  47. package/dist/node/core/setGroupConfig.js +6 -2
  48. package/dist/node/core/setMemberAdmin.js +76 -0
  49. package/dist/node/core/setMemberInfo.js +6 -2
  50. package/dist/node/core/setSessionConfig.js +6 -2
  51. package/dist/node/core/startListeningBrowser.js +8 -2
  52. package/dist/node/core/startListeningNode.js +5 -1
  53. package/dist/node/core/stopListeningBrowser.js +5 -1
  54. package/dist/node/core/stopListeningNode.js +5 -1
  55. package/dist/node/core/unmute.js +6 -2
  56. package/dist/node/core/unmuteAll.js +6 -2
  57. package/dist/node/core/uploadFileAndSend.js +6 -1
  58. package/dist/node/core/uploadImage.js +6 -1
  59. package/dist/node/core/uploadVoice.js +6 -1
  60. package/dist/node/core/verify.js +6 -2
  61. package/docs/checkDocShouldBuild.sh +4 -0
  62. package/package.json +8 -8
  63. package/src/Bot.d.ts +22 -19
  64. package/src/Bot.js +77 -26
  65. package/src/FileManager.js +10 -6
  66. package/src/Middleware.js +54 -10
  67. package/src/core/auth.js +4 -1
  68. package/src/core/fs/deleteGroupFile.js +49 -0
  69. package/src/core/fs/getGroupFileInfo.js +50 -0
  70. package/src/core/fs/getGroupFileList.js +51 -0
  71. package/src/core/fs/makeGroupDir.js +49 -0
  72. package/src/core/fs/moveGroupFile.js +51 -0
  73. package/src/core/{groupFileRename.js → fs/renameGroupFile.js} +10 -7
  74. package/src/core/{uploadFileAndSend.js → fs/uploadGroupFIle.js} +8 -5
  75. package/src/core/getFriendList.js +4 -1
  76. package/src/core/getGroupConfig.js +4 -1
  77. package/src/core/getGroupList.js +4 -1
  78. package/src/core/getMemberInfo.js +4 -1
  79. package/src/core/getMemberList.js +4 -1
  80. package/src/core/getSessionConfig.js +4 -1
  81. package/src/core/mute.js +4 -1
  82. package/src/core/muteAll.js +4 -1
  83. package/src/core/quitGroup.js +4 -1
  84. package/src/core/recall.js +4 -1
  85. package/src/core/releaseSession.js +5 -1
  86. package/src/core/{groupFileDelete.js → removeFriend.js} +10 -11
  87. package/src/core/removeMember.js +4 -1
  88. package/src/core/responseBotInvitedJoinGroupRequest.js +4 -1
  89. package/src/core/responseFirendRequest.js +4 -1
  90. package/src/core/responseMemberJoinRequest.js +4 -1
  91. package/src/core/sendCommand.js +17 -9
  92. package/src/core/sendFirendMessage.js +4 -1
  93. package/src/core/sendGroupMessage.js +4 -1
  94. package/src/core/sendNudge.js +4 -1
  95. package/src/core/sendTempMessage.js +16 -13
  96. package/src/core/setEssence.js +4 -1
  97. package/src/core/setGroupConfig.js +4 -1
  98. package/src/core/setMemberAdmin.js +48 -0
  99. package/src/core/setMemberInfo.js +4 -1
  100. package/src/core/setSessionConfig.js +4 -1
  101. package/src/core/startListeningBrowser.js +4 -1
  102. package/src/core/startListeningNode.js +3 -0
  103. package/src/core/stopListeningBrowser.js +3 -0
  104. package/src/core/stopListeningNode.js +3 -0
  105. package/src/core/unmute.js +4 -1
  106. package/src/core/unmuteAll.js +4 -1
  107. package/src/core/uploadImage.js +4 -1
  108. package/src/core/uploadVoice.js +4 -1
  109. package/src/core/verify.js +4 -1
  110. package/webpack.config.js +4 -0
  111. package/src/core/getGroupFileInfo.js +0 -44
  112. package/src/core/getGroupFileList.js +0 -40
  113. 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('core.sendFirendMessage 请求返回格式出错,请检查 mirai-console');
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('core.sendGroupMessage 请求返回格式出错,请检查 mirai-console');
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('core.sendNudge 请求返回格式出错,请检查 mirai-console');
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
- var responseData;
47
+ if (!qq || !group) {
48
+ throw new Error('sendTempMessage 缺少必要的 qq 和 group 参数');
49
+ } // 请求
45
50
 
46
- if (qq) {
47
- responseData = await axios.post(url, {
48
- sessionKey,
49
- qq,
50
- quote,
51
- messageChain
52
- });
53
- } else if (group) {
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('core.sendTempMessage 请求返回格式出错,请检查 mirai-console');
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('core.setEssence 请求返回格式出错,请检查 mirai-console');
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('core.setGroupConfig 请求返回格式出错,请检查 mirai-console');
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('core.setMemberInfo 请求返回格式出错,请检查 mirai-console');
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('core.setSessionConfig 请求返回格式出错,请检查 mirai-console');
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
- message(JSON.parse(data));
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
  };
@@ -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('core.unmute 请求返回格式出错,请检查 mirai-console');
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('core.unmuteAll 请求返回格式出错,请检查 mirai-console');
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('core.uploadFileAndSend 请求返回格式出错,请检查 mirai-console');
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('core.uploadImage 请求返回格式出错,请检查 mirai-console');
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('core.uploadVoice 请求返回格式出错,请检查 mirai-console');
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
  };