2023-12-31 09:46:09 -06:00
|
|
|
import fetch from "node-fetch";
|
|
|
|
import https from "https";
|
|
|
|
|
2023-11-25 02:19:02 -06:00
|
|
|
export default async function validateUrlSize(url: string) {
|
|
|
|
try {
|
2023-12-31 09:46:09 -06:00
|
|
|
const httpsAgent = new https.Agent({
|
|
|
|
rejectUnauthorized:
|
|
|
|
process.env.IGNORE_UNAUTHORIZED_CA === "true" ? false : true,
|
|
|
|
});
|
|
|
|
|
|
|
|
const response = await fetch(url, {
|
|
|
|
method: "HEAD",
|
|
|
|
agent: httpsAgent,
|
|
|
|
});
|
2023-11-25 02:19:02 -06:00
|
|
|
|
|
|
|
const totalSizeMB =
|
|
|
|
Number(response.headers.get("content-length")) / Math.pow(1024, 2);
|
2023-12-13 16:32:01 -06:00
|
|
|
if (totalSizeMB > (Number(process.env.NEXT_PUBLIC_MAX_FILE_SIZE) || 30))
|
|
|
|
return null;
|
2023-11-25 02:19:02 -06:00
|
|
|
else return response.headers;
|
|
|
|
} catch (err) {
|
|
|
|
console.log(err);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|