mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-19 20:50:09 +01:00
29df483a27
* initial commit for chrome extension * wip browser extension backend * wip frontend browser extension settings * fix typo for browserExtension route * implement verification codes + frontend panel for browser extension keys * reorganize + state management for all connection states * implement embed to workspace * add send page to anythingllm extension option + refactor * refactor connection string auth + update context menus + organize background.js into models * popup extension from main app and save if successful * fix hebrew translation misspelling * fetch custom logo inside chrome extension * delete api keys on disconnect of extension * use correct apiUrl constant in frontend + remove unneeded comments * remove upload-link endpoint and send inner text html to raw text collector endpoint * update readme * fix readme link * fix readme typo * update readme * handle deletion of browser keys with key id and DELETE endpoint * move event string to constant * remove tablename and writable fields from BrowserExtensionApiKey backend model * add border-none to all buttons and inputs for desktop compatibility * patch prisma injections * update delete endpoints to delete keys by id * remove unused prop * add button to attempt browser extension connection + remove max active keys * wip multi user mode support * multi user mode support * clean up backend + show created by in frotend browser extension page * show multi user warning message on key creation + hide context menus when no workspaces * show browser extension options to managers * small backend changes and refactors * extension cleanup * rename submodule * extension updates & docs * dev docker build --------- Co-authored-by: shatfield4 <seanhatfield5@gmail.com>
131 lines
4.3 KiB
JavaScript
131 lines
4.3 KiB
JavaScript
process.env.NODE_ENV === "development"
|
|
? require("dotenv").config({ path: `.env.${process.env.NODE_ENV}` })
|
|
: require("dotenv").config();
|
|
|
|
require("./utils/logger")();
|
|
const express = require("express");
|
|
const bodyParser = require("body-parser");
|
|
const cors = require("cors");
|
|
const path = require("path");
|
|
const { reqBody } = require("./utils/http");
|
|
const { systemEndpoints } = require("./endpoints/system");
|
|
const { workspaceEndpoints } = require("./endpoints/workspaces");
|
|
const { chatEndpoints } = require("./endpoints/chat");
|
|
const { embeddedEndpoints } = require("./endpoints/embed");
|
|
const { embedManagementEndpoints } = require("./endpoints/embedManagement");
|
|
const { getVectorDbClass } = require("./utils/helpers");
|
|
const { adminEndpoints } = require("./endpoints/admin");
|
|
const { inviteEndpoints } = require("./endpoints/invite");
|
|
const { utilEndpoints } = require("./endpoints/utils");
|
|
const { developerEndpoints } = require("./endpoints/api");
|
|
const { extensionEndpoints } = require("./endpoints/extensions");
|
|
const { bootHTTP, bootSSL } = require("./utils/boot");
|
|
const { workspaceThreadEndpoints } = require("./endpoints/workspaceThreads");
|
|
const { documentEndpoints } = require("./endpoints/document");
|
|
const { agentWebsocket } = require("./endpoints/agentWebsocket");
|
|
const { experimentalEndpoints } = require("./endpoints/experimental");
|
|
const { browserExtensionEndpoints } = require("./endpoints/browserExtension");
|
|
const app = express();
|
|
const apiRouter = express.Router();
|
|
const FILE_LIMIT = "3GB";
|
|
|
|
app.use(cors({ origin: true }));
|
|
app.use(bodyParser.text({ limit: FILE_LIMIT }));
|
|
app.use(bodyParser.json({ limit: FILE_LIMIT }));
|
|
app.use(
|
|
bodyParser.urlencoded({
|
|
limit: FILE_LIMIT,
|
|
extended: true,
|
|
})
|
|
);
|
|
|
|
if (!!process.env.ENABLE_HTTPS) {
|
|
bootSSL(app, process.env.SERVER_PORT || 3001);
|
|
} else {
|
|
require("@mintplex-labs/express-ws").default(app); // load WebSockets in non-SSL mode.
|
|
}
|
|
|
|
app.use("/api", apiRouter);
|
|
systemEndpoints(apiRouter);
|
|
extensionEndpoints(apiRouter);
|
|
workspaceEndpoints(apiRouter);
|
|
workspaceThreadEndpoints(apiRouter);
|
|
chatEndpoints(apiRouter);
|
|
adminEndpoints(apiRouter);
|
|
inviteEndpoints(apiRouter);
|
|
embedManagementEndpoints(apiRouter);
|
|
utilEndpoints(apiRouter);
|
|
documentEndpoints(apiRouter);
|
|
agentWebsocket(apiRouter);
|
|
experimentalEndpoints(apiRouter);
|
|
developerEndpoints(app, apiRouter);
|
|
|
|
// Externally facing embedder endpoints
|
|
embeddedEndpoints(apiRouter);
|
|
|
|
// Externally facing browser extension endpoints
|
|
browserExtensionEndpoints(apiRouter);
|
|
|
|
if (process.env.NODE_ENV !== "development") {
|
|
const { MetaGenerator } = require("./utils/boot/MetaGenerator");
|
|
const IndexPage = new MetaGenerator();
|
|
|
|
app.use(
|
|
express.static(path.resolve(__dirname, "public"), {
|
|
extensions: ["js"],
|
|
setHeaders: (res) => {
|
|
// Disable I-framing of entire site UI
|
|
res.removeHeader("X-Powered-By");
|
|
res.setHeader("X-Frame-Options", "DENY");
|
|
},
|
|
})
|
|
);
|
|
|
|
app.use("/", function (_, response) {
|
|
IndexPage.generate(response);
|
|
return;
|
|
});
|
|
|
|
app.get("/robots.txt", function (_, response) {
|
|
response.type("text/plain");
|
|
response.send("User-agent: *\nDisallow: /").end();
|
|
});
|
|
} else {
|
|
// Debug route for development connections to vectorDBs
|
|
apiRouter.post("/v/:command", async (request, response) => {
|
|
try {
|
|
const VectorDb = getVectorDbClass();
|
|
const { command } = request.params;
|
|
if (!Object.getOwnPropertyNames(VectorDb).includes(command)) {
|
|
response.status(500).json({
|
|
message: "invalid interface command",
|
|
commands: Object.getOwnPropertyNames(VectorDb),
|
|
});
|
|
return;
|
|
}
|
|
|
|
try {
|
|
const body = reqBody(request);
|
|
const resBody = await VectorDb[command](body);
|
|
response.status(200).json({ ...resBody });
|
|
} catch (e) {
|
|
// console.error(e)
|
|
console.error(JSON.stringify(e));
|
|
response.status(500).json({ error: e.message });
|
|
}
|
|
return;
|
|
} catch (e) {
|
|
console.error(e.message, e);
|
|
response.sendStatus(500).end();
|
|
}
|
|
});
|
|
}
|
|
|
|
app.all("*", function (_, response) {
|
|
response.sendStatus(404);
|
|
});
|
|
|
|
// In non-https mode we need to boot at the end since the server has not yet
|
|
// started and is `.listen`ing.
|
|
if (!process.env.ENABLE_HTTPS) bootHTTP(app, process.env.SERVER_PORT || 3001);
|