Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Video-Downloader/api/src/processing/request.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
96 lines (81 sloc)
2.35 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ipaddr from "ipaddr.js"; | |
import { createStream } from "../stream/manage.js"; | |
import { apiSchema } from "./schema.js"; | |
export function createResponse(responseType, responseData) { | |
const internalError = (code) => { | |
return { | |
status: 500, | |
body: { | |
status: "error", | |
error: { | |
code: code || "error.api.fetch.critical", | |
}, | |
critical: true | |
} | |
} | |
} | |
try { | |
let status = 200, | |
response = {}; | |
if (responseType === "error") { | |
status = 400; | |
} | |
switch (responseType) { | |
case "error": | |
response = { | |
error: { | |
code: responseData?.code, | |
context: responseData?.context, | |
} | |
} | |
break; | |
case "redirect": | |
response = { | |
url: responseData?.url, | |
filename: responseData?.filename | |
} | |
break; | |
case "tunnel": | |
response = { | |
url: createStream(responseData), | |
filename: responseData?.filename | |
} | |
break; | |
case "picker": | |
response = { | |
picker: responseData?.picker, | |
audio: responseData?.url, | |
audioFilename: responseData?.filename | |
} | |
break; | |
case "critical": | |
return internalError(responseData?.code); | |
default: | |
throw "unreachable" | |
} | |
return { | |
status, | |
body: { | |
status: responseType, | |
...response | |
} | |
} | |
} catch { | |
return internalError() | |
} | |
} | |
export function normalizeRequest(request) { | |
return apiSchema.safeParseAsync(request).catch(() => ( | |
{ success: false } | |
)); | |
} | |
export function getIP(req, prefix = 56) { | |
const strippedIP = req.ip.replace(/^::ffff:/, ''); | |
const ip = ipaddr.parse(strippedIP); | |
if (ip.kind() === 'ipv4') { | |
return strippedIP; | |
} | |
const v6Bytes = ip.toByteArray(); | |
v6Bytes.fill(0, prefix / 8); | |
return ipaddr.fromByteArray(v6Bytes).toString(); | |
} |