Spaces:
Sleeping
Sleeping
File size: 6,804 Bytes
05c5ed5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 | import { Buffer } from "node:buffer";
import type { UploadContent } from "./file-storage.interface";
import logger from "logger";
import { withTimeout } from "lib/utils";
export const sanitizeFilename = (filename: string) => {
const base = filename.split(/[/\\]/).pop() ?? "file";
return base.replace(/[^a-zA-Z0-9._-]/g, "_") || "file";
};
/**
* Infer content type from filename extension.
* Returns "application/octet-stream" for unknown types.
*/
export const getContentTypeFromFilename = (filename: string): string => {
const ext = filename.split(".").pop()?.toLowerCase();
const mimeTypes: Record<string, string> = {
// Images
jpg: "image/jpeg",
jpeg: "image/jpeg",
png: "image/png",
gif: "image/gif",
webp: "image/webp",
svg: "image/svg+xml",
ico: "image/x-icon",
// Documents
pdf: "application/pdf",
doc: "application/msword",
docx: "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
xls: "application/vnd.ms-excel",
xlsx: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
ppt: "application/vnd.ms-powerpoint",
pptx: "application/vnd.openxmlformats-officedocument.presentationml.presentation",
// Text
txt: "text/plain",
html: "text/html",
css: "text/css",
js: "text/javascript",
json: "application/json",
xml: "application/xml",
csv: "text/csv",
md: "text/markdown",
// Audio
mp3: "audio/mpeg",
wav: "audio/wav",
ogg: "audio/ogg",
m4a: "audio/mp4",
// Video
mp4: "video/mp4",
webm: "video/webm",
avi: "video/x-msvideo",
mov: "video/quicktime",
// Archives
zip: "application/zip",
rar: "application/x-rar-compressed",
"7z": "application/x-7z-compressed",
tar: "application/x-tar",
gz: "application/gzip",
};
return ext && mimeTypes[ext] ? mimeTypes[ext] : "application/octet-stream";
};
export const resolveStoragePrefix = () => {
const raw = process.env.FILE_STORAGE_PREFIX ?? "uploads";
return raw.replace(/^\/+|\/+$|\.+/g, "").trim();
};
export const storageKeyFromUrl = (input: string): string | null => {
try {
const url = new URL(input);
return decodeURIComponent(url.pathname.replace(/^\//, ""));
} catch {
return null;
}
};
const isArrayBufferLike = (value: unknown): value is ArrayBuffer =>
value instanceof ArrayBuffer;
const isArrayBufferView = (value: unknown): value is ArrayBufferView =>
ArrayBuffer.isView(value as ArrayBufferView);
const isBlobLike = (value: unknown): value is Blob =>
typeof Blob !== "undefined" && value instanceof Blob;
const isWebReadableStream = (
value: unknown,
): value is ReadableStream<Uint8Array> =>
typeof ReadableStream !== "undefined" && value instanceof ReadableStream;
const isNodeReadableStream = (value: unknown): value is NodeJS.ReadableStream =>
typeof value === "object" &&
value !== null &&
typeof (value as NodeJS.ReadableStream).pipe === "function";
const nodeStreamToBuffer = async (stream: NodeJS.ReadableStream) =>
new Promise<Buffer>((resolve, reject) => {
const chunks: Buffer[] = [];
stream.on("data", (chunk) => {
chunks.push(Buffer.isBuffer(chunk) ? chunk : Buffer.from(chunk));
});
stream.once("end", () => resolve(Buffer.concat(chunks)));
stream.once("error", reject);
});
const webStreamToBuffer = async (stream: ReadableStream<Uint8Array>) => {
const reader = stream.getReader();
const chunks: Uint8Array[] = [];
// eslint-disable-next-line no-constant-condition
while (true) {
const { done, value } = await reader.read();
if (done) {
break;
}
if (value) {
chunks.push(value);
}
}
const totalLength = chunks.reduce((sum, chunk) => sum + chunk.byteLength, 0);
const joined = new Uint8Array(totalLength);
let offset = 0;
for (const chunk of chunks) {
joined.set(chunk, offset);
offset += chunk.byteLength;
}
return Buffer.from(joined);
};
export const toBuffer = async (content: UploadContent) => {
if (Buffer.isBuffer(content)) {
return content;
}
if (isArrayBufferLike(content)) {
return Buffer.from(content);
}
if (isArrayBufferView(content)) {
return Buffer.from(content.buffer, content.byteOffset, content.byteLength);
}
if (isBlobLike(content)) {
const arrayBuffer = await content.arrayBuffer();
return Buffer.from(arrayBuffer);
}
if (isWebReadableStream(content)) {
return webStreamToBuffer(content);
}
if (isNodeReadableStream(content)) {
return nodeStreamToBuffer(content);
}
throw new TypeError("Unsupported upload content type");
};
export async function getBase64Data(image: {
mimeType: string;
data: string | Uint8Array | ArrayBuffer | Buffer | URL;
}): Promise<{ data: string; mimeType: string }> {
if (!image.data) {
throw new Error("No image data provided");
}
const data = image.data;
// Case 1: Buffer, Uint8Array, or ArrayBuffer
if (Buffer.isBuffer(data)) {
return {
data: data.toString("base64"),
mimeType: image.mimeType,
};
}
if (data instanceof Uint8Array) {
return {
data: Buffer.from(data).toString("base64"),
mimeType: image.mimeType,
};
}
if (data instanceof ArrayBuffer) {
return {
data: Buffer.from(data).toString("base64"),
mimeType: image.mimeType,
};
}
// Case 2: URL object
if (data instanceof URL) {
const response = await withTimeout(
fetch(data.href).catch((err) => {
logger.withTag("getBase64Data").error(err);
throw err;
}),
10000,
);
const buffer = await response.arrayBuffer();
return {
data: Buffer.from(buffer).toString("base64"),
mimeType: image.mimeType,
};
}
// From here, data must be a string
if (typeof data !== "string") {
throw new Error("Invalid data type");
}
// Case 3: data URL (data:image/png;base64,...)
if (data.startsWith("data:")) {
const base64Match = data.match(/^data:[^;]+;base64,(.+)$/);
if (base64Match) {
return {
data: base64Match[1], // Extract base64 part only
mimeType: image.mimeType,
};
}
throw new Error("Invalid data URL format");
}
// Case 4: HTTP/HTTPS URL
if (data.startsWith("http://") || data.startsWith("https://")) {
const response = await fetch(data);
const buffer = await response.arrayBuffer();
return {
data: Buffer.from(buffer).toString("base64"),
mimeType: image.mimeType,
};
}
// Case 5: Already pure base64 string
// Check if it looks like base64 (alphanumeric + / + = only)
if (/^[A-Za-z0-9+/]+=*$/.test(data)) {
return {
data,
mimeType: image.mimeType,
};
}
throw new Error("Unsupported image data format");
}
|