Merge pull request #561 from devchat-ai/ide_service_cors

Refactor subproject commit in gui and getCurrentFileInfo endpoint
This commit is contained in:
Tim 2024-06-17 12:28:07 +08:00 committed by GitHub
commit 49a26e02a9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 2 deletions

2
gui

@ -1 +1 @@
Subproject commit f78ab29e182250fcc587094db513b2c6b0d1f6ac
Subproject commit 8c3d56d6bfe94bc7a5da3abff8e04f16b15fd891

View File

@ -86,7 +86,7 @@ const functionRegistry: any = {
keys: ["code"],
handler: UnofficialEndpoints.runCode,
},
"/getCurrentFileInfo": {
"/current_file_info": {
keys: [],
handler: getCurrentFileInfo,
}
@ -97,6 +97,12 @@ export async function startRpcServer() {
server = http.createServer((req, res) => {
const parsedUrl = new URL(req.url!, `http://${req.headers.host}`);
logger.channel()?.trace(`request: ${parsedUrl}`);
// 添加 CORS 头
res.setHeader('Access-Control-Allow-Origin', '*'); // 允许所有源,或者指定一个具体的源
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, OPTIONS'); // 允许的 HTTP 方法
res.setHeader('Access-Control-Allow-Headers', 'Content-Type'); // 允许的请求头
if (parsedUrl.pathname === "/favicon.ico") {
res.writeHead(204);
res.end();