55 lines
1.2 KiB
TypeScript
55 lines
1.2 KiB
TypeScript
import cors from "cors";
|
|
import express from "express";
|
|
import { TokenError } from "passport-oauth2";
|
|
import { initArchives } from "./archives";
|
|
import { initAuth } from "./auth";
|
|
import { initDocs } from "./docs";
|
|
import { initGuildsAPI } from "./guilds/index";
|
|
import { clientError, error, notFound } from "./responses";
|
|
import { startBackgroundTasks } from "./tasks";
|
|
import multer from "multer";
|
|
import { env } from "../env";
|
|
|
|
const app = express();
|
|
|
|
app.use(
|
|
cors({
|
|
origin: env.DASHBOARD_URL,
|
|
}),
|
|
);
|
|
app.use(
|
|
express.json({
|
|
limit: "50mb",
|
|
}),
|
|
);
|
|
app.use(multer().none());
|
|
|
|
initAuth(app);
|
|
initGuildsAPI(app);
|
|
initArchives(app);
|
|
initDocs(app);
|
|
|
|
// Default route
|
|
app.get("/", (req, res) => {
|
|
res.json({ status: "cookies", with: "milk" });
|
|
});
|
|
|
|
// Error response
|
|
app.use((err, req, res, next) => {
|
|
if (err instanceof TokenError) {
|
|
clientError(res, "Invalid code");
|
|
} else {
|
|
console.error(err); // tslint:disable-line
|
|
error(res, "Server error", err.status || 500);
|
|
}
|
|
});
|
|
|
|
// 404 response
|
|
app.use((req, res, next) => {
|
|
return notFound(res);
|
|
});
|
|
|
|
const port = env.API_PORT;
|
|
app.listen(port, "0.0.0.0", () => console.log(`API server listening on port ${port}`)); // tslint:disable-line
|
|
|
|
startBackgroundTasks();
|