Skip to content

Commit

Permalink
feature: core 文件操作 getGroupFileList.js to #31
Browse files Browse the repository at this point in the history
  • Loading branch information
Drincann committed Apr 11, 2021
1 parent d557ded commit 0d725e0
Show file tree
Hide file tree
Showing 4 changed files with 250 additions and 0 deletions.
69 changes: 69 additions & 0 deletions dist/node/core/getGroupFileInfo.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
"use strict";

const {
errCodeMap
} = require('../util/errCode');

const axios = require('axios').default;

let URL;

if (!process.browser) {
({
URL
} = require('url'));
} else {
URL = window.URL;
}

const errorHandler = require('../util/errorHandler');
/**
* @description 获取群列表
* @param {string} baseUrl mirai-api-http server 的地址
* @param {string} sessionKey 会话标识
* @param {string} group 群号
* @param {string} dir 可选,查询目录,默认为根目录
* @returns {Object[]} 结构 array[...{ id, name, path, isFile }]
*/


module.exports = async ({
baseUrl,
sessionKey,
target,
dir
}) => {
try {
// 拼接 url
const url = new URL('/groupFileList', baseUrl).toString(); // 请求

const responseData = await axios.get(url, {
params: {
sessionKey,
target,
dir
}
});

try {
var {
data,
data: {
msg: message,
code
}
} = responseData;
} catch (error) {
throw new Error('core.getGroupFileList 请求返回格式出错,请检查 mirai-console');
} // 抛出 mirai 的异常,到 catch 中处理后再抛出


if (code in errCodeMap) {
throw new Error(message);
}

return data;
} catch (error) {
errorHandler(error);
}
};
69 changes: 69 additions & 0 deletions dist/node/core/getGroupFileList.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
"use strict";

const {
errCodeMap
} = require('../util/errCode');

const axios = require('axios').default;

let URL;

if (!process.browser) {
({
URL
} = require('url'));
} else {
URL = window.URL;
}

const errorHandler = require('../util/errorHandler');
/**
* @description 获取群文件列表
* @param {string} baseUrl mirai-api-http server 的地址
* @param {string} sessionKey 会话标识
* @param {number} target 群号
* @param {string} dir 可选,查询目录,默认为根目录
* @returns {Object[]} 结构 array[...{ id, name, path, isFile }]
*/


module.exports = async ({
baseUrl,
sessionKey,
target,
dir
}) => {
try {
// 拼接 url
const url = new URL('/groupFileList', baseUrl).toString(); // 请求

const responseData = await axios.get(url, {
params: {
sessionKey,
target,
dir
}
});

try {
var {
data,
data: {
msg: message,
code
}
} = responseData;
} catch (error) {
throw new Error('core.getGroupFileList 请求返回格式出错,请检查 mirai-console');
} // 抛出 mirai 的异常,到 catch 中处理后再抛出


if (code in errCodeMap) {
throw new Error(message);
}

return data;
} catch (error) {
errorHandler(error);
}
};
72 changes: 72 additions & 0 deletions dist/node/core/groupFileRename.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
"use strict";

const {
errCodeMap
} = require('../util/errCode');

const axios = require('axios');

let URL;

if (!process.browser) {
({
URL
} = require('url'));
} else {
URL = window.URL;
}

const errorHandler = require('../util/errorHandler');
/**
* @description 设置群成员信息
* @param {string} baseUrl mirai-api-http server 的地址
* @param {string} sessionKey 会话标识
* @param {number} target 群号
* @param {number} id 文件 id
* @param {string} rename 重命名
* @returns {Object} 结构 { message, code }
*/


module.exports = async ({
baseUrl,
sessionKey,
target,
id,
rename
}) => {
try {
// 拼接 url
const url = new URL('/groupFileRename', baseUrl).toString(); // 请求

const responseData = await axios.post(url, {
sessionKey,
target,
id,
rename
});

try {
var {
data: {
msg: message,
code
}
} = responseData;
} catch (error) {
throw new Error('core.groupFileRename 请求返回格式出错,请检查 mirai-console');
} // 抛出 mirai 的异常,到 catch 中处理后再抛出


if (code in errCodeMap) {
throw new Error(message);
}

return {
message,
code
};
} catch (error) {
errorHandler(error);
}
};
40 changes: 40 additions & 0 deletions src/core/getGroupFileList.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
const { errCodeMap } = require('../util/errCode');
const axios = require('axios').default;
let URL;
if (!process.browser) {
({ URL } = require('url'));
} else {
URL = window.URL;
}
const errorHandler = require('../util/errorHandler');

/**
* @description 获取群文件列表
* @param {string} baseUrl mirai-api-http server 的地址
* @param {string} sessionKey 会话标识
* @param {number} target 群号
* @param {string} dir 可选,查询目录,默认为根目录
* @returns {Object[]} 结构 array[...{ id, name, path, isFile }]
*/
module.exports = async ({ baseUrl, sessionKey, target, dir }) => {
try {
// 拼接 url
const url = new URL('/groupFileList', baseUrl).toString();

// 请求
const responseData = await axios.get(url, { params: { sessionKey, target, dir } });
try {
var { data, data: { msg: message, code } } = responseData;
} catch (error) {
throw new Error('core.getGroupFileList 请求返回格式出错,请检查 mirai-console');
}

// 抛出 mirai 的异常,到 catch 中处理后再抛出
if (code in errCodeMap) {
throw new Error(message);
}
return data;
} catch (error) {
errorHandler(error);
}
};

0 comments on commit 0d725e0

Please sign in to comment.