iceshrimp-legacy/packages/backend/src/server/file/index.ts

44 lines
1,010 B
TypeScript
Raw Normal View History

2016-12-28 23:49:51 +01:00
/**
* File Server
*/
2023-01-13 05:40:33 +01:00
import * as fs from "node:fs";
import { fileURLToPath } from "node:url";
import { dirname } from "node:path";
import Koa from "koa";
import cors from "@koa/cors";
import Router from "@koa/router";
import sendDriveFile from "./send-drive-file.js";
const _filename = fileURLToPath(import.meta.url);
const _dirname = dirname(_filename);
2018-04-12 23:06:18 +02:00
// Init app
const app = new Koa();
2016-12-28 23:49:51 +01:00
app.use(cors());
app.use(async (ctx, next) => {
2023-01-13 05:40:33 +01:00
ctx.set(
"Content-Security-Policy",
`default-src 'none'; img-src 'self'; media-src 'self'; style-src 'unsafe-inline'`,
);
await next();
});
2016-12-28 23:49:51 +01:00
2018-04-12 23:06:18 +02:00
// Init router
const router = new Router();
2016-12-28 23:49:51 +01:00
2023-01-13 05:40:33 +01:00
router.get("/app-default.jpg", (ctx) => {
const file = fs.createReadStream(`${_dirname}/assets/dummy.png`);
ctx.body = file;
2023-01-13 05:40:33 +01:00
ctx.set("Content-Type", "image/jpeg");
ctx.set("Cache-Control", "max-age=31536000, immutable");
2016-12-28 23:49:51 +01:00
});
2023-01-13 05:40:33 +01:00
router.get("/:key", sendDriveFile);
router.get("/:key/(.*)", sendDriveFile);
2018-04-12 23:06:18 +02:00
// Register router
app.use(router.routes());
2016-12-28 23:49:51 +01:00
export default app;