Fix: GitHub path encoding, MCP gateway write-tool security, content preview constant
Agent-Logs-Url: https://github.com/qinfendebingshuo/guanghulab/sessions/2127a3a7-ea58-48a4-856c-84961107632b Co-authored-by: qinfendebingshuo <207279273+qinfendebingshuo@users.noreply.github.com>
This commit is contained in:
parent
3f62f770c2
commit
37a21bedf3
|
|
@ -86,6 +86,13 @@ function githubRequest(method, path, body) {
|
|||
// 仓库内容操作
|
||||
// ═══════════════════════════════════════════════════════════
|
||||
|
||||
/**
|
||||
* 安全编码文件路径(保留斜杠,编码各段)
|
||||
*/
|
||||
function encodeFilePath(filePath) {
|
||||
return filePath.split('/').map(segment => encodeURIComponent(segment)).join('/');
|
||||
}
|
||||
|
||||
/**
|
||||
* 读取文件内容
|
||||
* @param {string} filePath - 文件路径(相对仓库根目录)
|
||||
|
|
@ -94,7 +101,7 @@ function githubRequest(method, path, body) {
|
|||
*/
|
||||
async function readFile(filePath, ref) {
|
||||
const { owner, repo } = GITHUB_CONFIG;
|
||||
let apiPath = `/repos/${owner}/${repo}/contents/${encodeURIComponent(filePath)}`;
|
||||
let apiPath = `/repos/${owner}/${repo}/contents/${encodeFilePath(filePath)}`;
|
||||
if (ref) apiPath += `?ref=${encodeURIComponent(ref)}`;
|
||||
|
||||
const { data } = await githubRequest('GET', apiPath);
|
||||
|
|
@ -120,7 +127,7 @@ async function readFile(filePath, ref) {
|
|||
*/
|
||||
async function listDirectory(dirPath, ref) {
|
||||
const { owner, repo } = GITHUB_CONFIG;
|
||||
const encodedPath = dirPath ? encodeURIComponent(dirPath) : '';
|
||||
const encodedPath = dirPath ? encodeFilePath(dirPath) : '';
|
||||
let apiPath = `/repos/${owner}/${repo}/contents/${encodedPath}`;
|
||||
if (ref) apiPath += `?ref=${encodeURIComponent(ref)}`;
|
||||
|
||||
|
|
@ -153,7 +160,7 @@ async function listDirectory(dirPath, ref) {
|
|||
*/
|
||||
async function writeFile(filePath, content, message, sha, branch) {
|
||||
const { owner, repo } = GITHUB_CONFIG;
|
||||
const apiPath = `/repos/${owner}/${repo}/contents/${encodeURIComponent(filePath)}`;
|
||||
const apiPath = `/repos/${owner}/${repo}/contents/${encodeFilePath(filePath)}`;
|
||||
|
||||
const body = {
|
||||
message: message || `[铸渊] 更新 ${filePath}`,
|
||||
|
|
|
|||
|
|
@ -19,6 +19,8 @@
|
|||
|
||||
const github = require('../github-client');
|
||||
|
||||
const CONTENT_PREVIEW_LENGTH = 500;
|
||||
|
||||
/**
|
||||
* githubReadFile — 读取仓库文件内容
|
||||
*
|
||||
|
|
@ -36,7 +38,7 @@ async function githubReadFile(input) {
|
|||
size: file.size,
|
||||
sha: file.sha,
|
||||
content: file.content,
|
||||
content_preview: file.content.substring(0, 500) + (file.content.length > 500 ? '...' : '')
|
||||
content_preview: file.content.substring(0, CONTENT_PREVIEW_LENGTH) + (file.content.length > CONTENT_PREVIEW_LENGTH ? '...' : '')
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -413,6 +413,15 @@ app.get('/api/mcp/health', async (_req, res) => {
|
|||
});
|
||||
|
||||
// ─── MCP 统一工具调用(网关入口) ───
|
||||
// 安全: 写操作工具需要 caller 身份标识
|
||||
const MCP_WRITE_TOOLS = new Set([
|
||||
'createNode', 'updateNode', 'deleteNode',
|
||||
'linkNodes', 'unlinkNodes',
|
||||
'cosWrite', 'cosDelete', 'cosArchive',
|
||||
'notionWritePage', 'notionUpdatePage', 'notionWriteSyslog',
|
||||
'githubWriteFile', 'githubTriggerDeploy'
|
||||
]);
|
||||
|
||||
app.post('/api/mcp/call', async (req, res) => {
|
||||
const { tool, input, caller } = req.body;
|
||||
|
||||
|
|
@ -420,6 +429,15 @@ app.post('/api/mcp/call', async (req, res) => {
|
|||
return res.status(400).json({ error: true, code: 'MISSING_TOOL', message: '缺少 tool 参数' });
|
||||
}
|
||||
|
||||
// 写操作工具需要 caller 身份标识
|
||||
if (MCP_WRITE_TOOLS.has(tool) && !caller) {
|
||||
return res.status(403).json({
|
||||
error: true,
|
||||
code: 'WRITE_REQUIRES_CALLER',
|
||||
message: '写操作工具需要提供 caller 身份标识'
|
||||
});
|
||||
}
|
||||
|
||||
try {
|
||||
const result = await mcpProxy('POST', '/call', { tool, input, caller: caller || 'web-gateway' });
|
||||
res.status(result.statusCode).json(result.data);
|
||||
|
|
|
|||
Loading…
Reference in New Issue