mirror of
https://github.com/koush/scrypted.git
synced 2026-02-10 17:22:03 +00:00
81 lines
2.7 KiB
TypeScript
81 lines
2.7 KiB
TypeScript
import { HttpResponse, HttpResponseOptions } from "@scrypted/types";
|
|
import { Response } from "express";
|
|
import { RpcPeer } from "./rpc";
|
|
import { join as pathJoin } from 'path';
|
|
import fs from 'fs';
|
|
import net from 'net';
|
|
|
|
const mime = require('mime/lite');
|
|
|
|
export function createResponseInterface(res: Response, unzippedDir: string, filesPath: string): HttpResponse {
|
|
class HttpResponseImpl implements HttpResponse {
|
|
[RpcPeer.PROPERTY_PROXY_ONEWAY_METHODS] = [
|
|
'send',
|
|
'sendFile',
|
|
'sendSocket',
|
|
];
|
|
|
|
send(body: string): void;
|
|
send(body: string, options: HttpResponseOptions): void;
|
|
send(body: Buffer): void;
|
|
send(body: Buffer, options: HttpResponseOptions): void;
|
|
send(body: any, options?: any) {
|
|
if (options?.code)
|
|
res.status(options.code);
|
|
if (options?.headers) {
|
|
for (const header of Object.keys(options.headers)) {
|
|
res.setHeader(header, (options.headers as any)[header]);
|
|
}
|
|
}
|
|
|
|
res.send(body);
|
|
}
|
|
|
|
sendFile(path: string): void;
|
|
sendFile(path: string, options: HttpResponseOptions): void;
|
|
sendFile(path: any, options?: HttpResponseOptions) {
|
|
if (options?.code)
|
|
res.status(options.code);
|
|
if (options?.headers) {
|
|
for (const header of Object.keys(options.headers)) {
|
|
res.setHeader(header, (options.headers as any)[header]);
|
|
}
|
|
}
|
|
|
|
if (!res.getHeader('Content-Type')) {
|
|
const type = mime.getType(path);
|
|
if (type) {
|
|
res.contentType(mime.getExtension(type));
|
|
}
|
|
}
|
|
|
|
let filePath = pathJoin(unzippedDir, 'fs', path);
|
|
if (!fs.existsSync(filePath)) {
|
|
filePath = pathJoin(filesPath, path);
|
|
if (!fs.existsSync(filePath)) {
|
|
filePath = path;
|
|
if (!fs.existsSync(filePath)) {
|
|
res.status(404);
|
|
res.end();
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
res.sendFile(filePath);
|
|
}
|
|
|
|
sendSocket(socket: net.Socket, options: HttpResponseOptions) {
|
|
if (options?.code)
|
|
res.status(options.code);
|
|
if (options?.headers) {
|
|
for (const header of Object.keys(options.headers)) {
|
|
res.setHeader(header, (options.headers as any)[header]);
|
|
}
|
|
}
|
|
socket.pipe(res);
|
|
}
|
|
}
|
|
|
|
return new HttpResponseImpl();
|
|
}
|