0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-13 09:50:43 -05:00
server/project/src/utils/HttpFileUtil.ts
2023-11-15 21:12:40 -05:00

28 lines
813 B
TypeScript

import fs from "node:fs";
import { ServerResponse } from "node:http";
import { inject, injectable } from "tsyringe";
import { HttpServerHelper } from "@spt-aki/helpers/HttpServerHelper";
@injectable()
export class HttpFileUtil
{
constructor(@inject("HttpServerHelper") protected httpServerHelper: HttpServerHelper)
{
}
public sendFile(resp: ServerResponse, file: any): void
{
const pathSlic = file.split("/");
const type = this.httpServerHelper.getMimeText(pathSlic[pathSlic.length - 1].split(".").at(-1))
|| this.httpServerHelper.getMimeText("txt");
const fileStream = fs.createReadStream(file);
fileStream.on("open", function()
{
resp.setHeader("Content-Type", type);
fileStream.pipe(resp);
});
}
}