浏览代码

fix: #3275 refuse on server side if hide user api key

Yidadaa 1 年之前
父节点
当前提交
9876a1aeca
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. 7 0
      app/api/auth.ts

+ 7 - 0
app/api/auth.ts

@@ -46,6 +46,13 @@ export function auth(req: NextRequest) {
     };
   }
 
+  if (serverConfig.hideUserApiKey && !!apiKey) {
+    return {
+      error: true,
+      msg: "you are not allowed to access openai with your own api key",
+    };
+  }
+
   // if user does not provide an api key, inject system api key
   if (!apiKey) {
     const serverApiKey = serverConfig.isAzure