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
@@ -0,0 +1,83 @@
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 {string} id 文件夹id, 空串为根目录
29
+ * @param {string} path 文件夹路径, 文件夹允许重名, 不保证准确, 准确定位使用 id
30
+ * @param {number} group 群号
31
+ * @param {boolean} withDownloadInfo 是否携带下载信息,额外请求,无必要不要携带
32
+ * @returns {Object}
33
+ * 结构 { id, name, path, parent, contact, isFile, isDirectory, downloadInfo }
34
+ */
35
+
36
+ module.exports = async ({
37
+ baseUrl,
38
+ sessionKey,
39
+ id,
40
+ path,
41
+ group
42
+ /*, qq 字段保留 */
43
+ ,
44
+ withDownloadInfo
45
+ }) => {
46
+ try {
47
+ // 拼接 url
48
+ const url = new URL('/file/info', baseUrl).toString(); // 请求
49
+
50
+ const responseData = await axios.get(url, {
51
+ params: {
52
+ sessionKey,
53
+ id,
54
+ path,
55
+ target: group,
56
+ group,
57
+ withDownloadInfo
58
+ }
59
+ });
60
+
61
+ try {
62
+ var {
63
+ data: {
64
+ msg: message,
65
+ code,
66
+ data
67
+ }
68
+ } = responseData;
69
+ } catch (error) {
70
+ throw new Error('请求返回格式出错,请检查 mirai-console');
71
+ } // 抛出 mirai 的异常,到 catch 中处理后再抛出
72
+
73
+
74
+ if (code in errCodeMap) {
75
+ throw new Error(message);
76
+ }
77
+
78
+ return data;
79
+ } catch (error) {
80
+ console.error(`mirai-js: error ${locationStr}`);
81
+ errorHandler(error);
82
+ }
83
+ };
@@ -0,0 +1,88 @@
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 {string} id 文件夹id, 空串为根目录
29
+ * @param {string} path 文件夹路径, 文件夹允许重名, 不保证准确, 准确定位使用 id
30
+ * @param {number} group 群号
31
+ * @param {boolern} withDownloadInfo 是否携带下载信息,额外请求,无必要不要携带
32
+ * @param {number} offset 分页偏移
33
+ * @param {number} size 分页大小
34
+ * @returns {Object[]} 结构 array[...{ id, name, path, parent, contact, isFile, isDirectory, downloadInfo }]
35
+ */
36
+
37
+ module.exports = async ({
38
+ baseUrl,
39
+ sessionKey,
40
+ id,
41
+ path,
42
+ group
43
+ /*, qq 字段保留 */
44
+ ,
45
+ withDownloadInfo,
46
+ offset,
47
+ size
48
+ }) => {
49
+ try {
50
+ // 拼接 url
51
+ const url = new URL('/file/list', baseUrl).toString(); // 请求
52
+
53
+ const responseData = await axios.get(url, {
54
+ params: {
55
+ sessionKey,
56
+ id,
57
+ path,
58
+ target: group,
59
+ group,
60
+ withDownloadInfo,
61
+ offset,
62
+ size
63
+ }
64
+ });
65
+
66
+ try {
67
+ var {
68
+ data: {
69
+ msg: message,
70
+ code,
71
+ data
72
+ }
73
+ } = responseData;
74
+ } catch (error) {
75
+ throw new Error('请求返回格式出错,请检查 mirai-console');
76
+ } // 抛出 mirai 的异常,到 catch 中处理后再抛出
77
+
78
+
79
+ if (code in errCodeMap) {
80
+ throw new Error(message);
81
+ }
82
+
83
+ return data;
84
+ } catch (error) {
85
+ console.error(`mirai-js: error ${locationStr}`);
86
+ errorHandler(error);
87
+ }
88
+ };
@@ -0,0 +1,79 @@
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 {string} id 文件夹id, 空串为根目录
29
+ * @param {string} path 文件夹路径, 文件夹允许重名, 不保证准确, 准确定位使用 id
30
+ * @param {number} group 群号
31
+ * @param {boolern} withDownloadInfo 是否携带下载信息,额外请求,无必要不要携带
32
+ * @returns {Object} 结构 { id, name, path, parent, contact, isFile, isDirectory, downloadInfo }
33
+ */
34
+
35
+ module.exports = async ({
36
+ baseUrl,
37
+ sessionKey,
38
+ id,
39
+ rename,
40
+ path,
41
+ group,
42
+ withDownloadInfo
43
+ }) => {
44
+ try {
45
+ // 拼接 url
46
+ const url = new URL('/file/mkdir', baseUrl).toString(); // 请求
47
+
48
+ const responseData = await axios.post(url, {
49
+ sessionKey,
50
+ id,
51
+ rename,
52
+ path,
53
+ group,
54
+ withDownloadInfo
55
+ });
56
+
57
+ try {
58
+ var {
59
+ data: {
60
+ msg: message,
61
+ code,
62
+ data
63
+ }
64
+ } = responseData;
65
+ } catch (error) {
66
+ throw new Error('请求返回格式出错,请检查 mirai-console');
67
+ } // 抛出 mirai 的异常,到 catch 中处理后再抛出
68
+
69
+
70
+ if (code in errCodeMap) {
71
+ throw new Error(message);
72
+ }
73
+
74
+ return data;
75
+ } catch (error) {
76
+ console.error(`mirai-js: error ${locationStr}`);
77
+ errorHandler(error);
78
+ }
79
+ };
@@ -0,0 +1,83 @@
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 {string} id 文件夹id, 空串为根目录
29
+ * @param {string} path 文件夹路径, 文件夹允许重名, 不保证准确, 准确定位使用 id
30
+ * @param {number} group 群号
31
+ * @param {string} moveTo 移动目标文件夹id
32
+ * @param {string} moveToPath 移动目标文件夹path
33
+ * @returns {Object} 结构 { message, code }
34
+ */
35
+
36
+ module.exports = async ({
37
+ baseUrl,
38
+ sessionKey,
39
+ id,
40
+ path,
41
+ group,
42
+ moveTo,
43
+ moveToPath
44
+ }) => {
45
+ try {
46
+ // 拼接 url
47
+ const url = new URL('/file/move', baseUrl).toString(); // 请求
48
+
49
+ const responseData = await axios.post(url, {
50
+ sessionKey,
51
+ id,
52
+ path,
53
+ target: group,
54
+ group,
55
+ moveTo,
56
+ moveToPath
57
+ });
58
+
59
+ try {
60
+ var {
61
+ data: {
62
+ msg: message,
63
+ code
64
+ }
65
+ } = responseData;
66
+ } catch (error) {
67
+ throw new Error('请求返回格式出错,请检查 mirai-console');
68
+ } // 抛出 mirai 的异常,到 catch 中处理后再抛出
69
+
70
+
71
+ if (code in errCodeMap) {
72
+ throw new Error(message);
73
+ }
74
+
75
+ return {
76
+ message,
77
+ code
78
+ };
79
+ } catch (error) {
80
+ console.error(`mirai-js: error ${locationStr}`);
81
+ errorHandler(error);
82
+ }
83
+ };
@@ -0,0 +1,79 @@
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} id 文件 id
29
+ * @param {number} group 群号
30
+ * @param {string} rename 重命名
31
+ * @returns {Object} 结构 { message, code }
32
+ */
33
+
34
+ module.exports = async ({
35
+ baseUrl,
36
+ sessionKey,
37
+ id,
38
+ path,
39
+ group,
40
+ renameTo
41
+ }) => {
42
+ try {
43
+ // 拼接 url
44
+ const url = new URL('/file/rename', baseUrl).toString(); // 请求
45
+
46
+ const responseData = await axios.post(url, {
47
+ sessionKey,
48
+ id,
49
+ path,
50
+ target: group,
51
+ group,
52
+ renameTo
53
+ });
54
+
55
+ try {
56
+ var {
57
+ data: {
58
+ msg: message,
59
+ code
60
+ }
61
+ } = responseData;
62
+ } catch (error) {
63
+ throw new Error('请求返回格式出错,请检查 mirai-console');
64
+ } // 抛出 mirai 的异常,到 catch 中处理后再抛出
65
+
66
+
67
+ if (code in errCodeMap) {
68
+ throw new Error(message);
69
+ }
70
+
71
+ return {
72
+ message,
73
+ code
74
+ };
75
+ } catch (error) {
76
+ console.error(`mirai-js: error ${locationStr}`);
77
+ errorHandler(error);
78
+ }
79
+ };
@@ -0,0 +1,87 @@
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
+ const FormData = require('form-data');
26
+ /**
27
+ * @description 上传文件至服务器并发送,返回文件 id
28
+ * @param {string} baseUrl mirai-api-http server 的地址
29
+ * @param {string} sessionKey 会话标识
30
+ * @param {string} type "friend" 或 "group",目前仅支持 group
31
+ * @param {string} target 群/好友号
32
+ * @param {string} path 上传目录id
33
+ * @param {Buffer} file 文件二进制数据
34
+ * @returns {string} 文件 id
35
+ */
36
+
37
+
38
+ module.exports = async ({
39
+ baseUrl,
40
+ sessionKey,
41
+ type,
42
+ target,
43
+ path,
44
+ file
45
+ }) => {
46
+ try {
47
+ // 拼接 url
48
+ const targetUrl = new URL('/file/upload', baseUrl).toString(); // 构造 fromdata
49
+
50
+ const form = new FormData();
51
+ form.append('sessionKey', sessionKey);
52
+ form.append('type', type);
53
+ form.append('target', target);
54
+ form.append('path', path);
55
+ form.append('file', file, {
56
+ filename: 'payload'
57
+ }); // 请求
58
+
59
+ const responseData = await axios.post(targetUrl, form, {
60
+ // formdata.getHeaders 将会指定 content-type,同时给定随
61
+ // 机生成的 boundary,即分隔符,用以分隔多个表单项而不会造成混乱
62
+ headers: form.getHeaders()
63
+ });
64
+
65
+ try {
66
+ var {
67
+ data: {
68
+ msg: message,
69
+ code,
70
+ id
71
+ }
72
+ } = responseData;
73
+ } catch (error) {
74
+ throw new Error('请求返回格式出错,请检查 mirai-console');
75
+ } // 抛出 mirai 的异常,到 catch 中处理后再抛出
76
+
77
+
78
+ if (code in errCodeMap) {
79
+ throw new Error(message);
80
+ }
81
+
82
+ return id;
83
+ } catch (error) {
84
+ console.error(`mirai-js: error ${locationStr}`);
85
+ errorHandler(error);
86
+ }
87
+ };
@@ -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 的地址
@@ -24,7 +28,6 @@ const errorHandler = require('../util/errorHandler');
24
28
  * @returns {Object[]} 结构 array[...{ id, nickname, remark }]
25
29
  */
26
30
 
27
-
28
31
  module.exports = async ({
29
32
  baseUrl,
30
33
  sessionKey
@@ -48,7 +51,7 @@ module.exports = async ({
48
51
  }
49
52
  } = responseData;
50
53
  } catch (error) {
51
- throw new Error('core.getFriendList 请求返回格式出错,请检查 mirai-console');
54
+ throw new Error('请求返回格式出错,请检查 mirai-console');
52
55
  } // 抛出 mirai 的异常,到 catch 中处理后再抛出
53
56
 
54
57
 
@@ -58,6 +61,7 @@ module.exports = async ({
58
61
 
59
62
  return data;
60
63
  } catch (error) {
64
+ console.error(`mirai-js: error ${locationStr}`);
61
65
  errorHandler(error);
62
66
  }
63
67
  };
@@ -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}
26
30
  */
27
31
 
28
-
29
32
  module.exports = async ({
30
33
  baseUrl,
31
34
  sessionKey,
@@ -51,7 +54,7 @@ module.exports = async ({
51
54
  }
52
55
  } = responseData;
53
56
  } catch (error) {
54
- throw new Error('core.getGroupConfig 请求返回格式出错,请检查 mirai-console');
57
+ throw new Error('请求返回格式出错,请检查 mirai-console');
55
58
  } // 抛出 mirai 的异常,到 catch 中处理后再抛出
56
59
 
57
60
 
@@ -61,6 +64,7 @@ module.exports = async ({
61
64
 
62
65
  return data;
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
  * }
31
35
  */
32
36
 
33
-
34
37
  module.exports = async ({
35
38
  baseUrl,
36
39
  sessionKey,
@@ -58,7 +61,7 @@ module.exports = async ({
58
61
  }
59
62
  } = responseData;
60
63
  } catch (error) {
61
- throw new Error('core.getGroupFileInfo 请求返回格式出错,请检查 mirai-console');
64
+ throw new Error('请求返回格式出错,请检查 mirai-console');
62
65
  } // 抛出 mirai 的异常,到 catch 中处理后再抛出
63
66
 
64
67
 
@@ -68,6 +71,7 @@ module.exports = async ({
68
71
 
69
72
  return data;
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 的地址
@@ -26,7 +30,6 @@ const errorHandler = require('../util/errorHandler');
26
30
  * @returns {Object[]} 结构 array[...{ id, name, path, isFile }]
27
31
  */
28
32
 
29
-
30
33
  module.exports = async ({
31
34
  baseUrl,
32
35
  sessionKey,
@@ -54,7 +57,7 @@ module.exports = async ({
54
57
  }
55
58
  } = responseData;
56
59
  } catch (error) {
57
- throw new Error('core.getGroupFileList 请求返回格式出错,请检查 mirai-console');
60
+ throw new Error('请求返回格式出错,请检查 mirai-console');
58
61
  } // 抛出 mirai 的异常,到 catch 中处理后再抛出
59
62
 
60
63
 
@@ -64,6 +67,7 @@ module.exports = async ({
64
67
 
65
68
  return data;
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 的地址
@@ -24,7 +28,6 @@ const errorHandler = require('../util/errorHandler');
24
28
  * @returns {Object[]} 结构 array[...{ id, name, permission }]
25
29
  */
26
30
 
27
-
28
31
  module.exports = async ({
29
32
  baseUrl,
30
33
  sessionKey
@@ -48,7 +51,7 @@ module.exports = async ({
48
51
  }
49
52
  } = responseData;
50
53
  } catch (error) {
51
- throw new Error('core.getGroupList 请求返回格式出错,请检查 mirai-console');
54
+ throw new Error('请求返回格式出错,请检查 mirai-console');
52
55
  } // 抛出 mirai 的异常,到 catch 中处理后再抛出
53
56
 
54
57
 
@@ -58,6 +61,7 @@ module.exports = async ({
58
61
 
59
62
  return data;
60
63
  } catch (error) {
64
+ console.error(`mirai-js: error ${locationStr}`);
61
65
  errorHandler(error);
62
66
  }
63
67
  };