File Uploads
Multipart পার্সিং, ভ্যালিডেশন, virus scanning, সরাসরি স্টোরেজে আপলোড, আর প্রসেসিং পাইপলাইন।
গল্পে বুঝি
ফাতিমা আল-ফিহরির একটা বড় ওয়্যারহাউস, আর সামনে একটা ব্যস্ত ফ্রন্ট অফিস। আগে নিয়ম ছিল — যে-ই কোনো পার্সেল পাঠাবে, তাকে প্রথমে সেই ফ্রন্ট অফিসের লম্বা লাইনে দাঁড়াতে হবে। সেখানে ইবনে সিনা বা অন্য কেরানি পার্সেলটা হাতে নেবে, তারপর নিজে সেটা কাঁধে করে ভেতরের ওয়্যারহাউসের নির্দিষ্ট বে পর্যন্ত বয়ে নিয়ে যাবে। দিনে হাজার পার্সেল এলে অফিসটাই ভারী মালামাল টানাটানির চাপে হাঁপিয়ে উঠত — আসল কাজ, মানে যাচাই আর হিসাব রাখা, পিছিয়ে যেত।
আল-খোয়ারিজমি এসে বুদ্ধিটা বদলে দিল। এখন পার্সেল হাতে নিয়ে অফিস আর নিজে বয়ে নেয় না। বদলে পাঠানোর লোকটাকে একটা এককালীন, অল্প সময়ের জন্য বৈধ গেট-পাস ধরিয়ে দেয় — “এই পাস দিয়ে সোজা গাড়ি চালিয়ে ৭ নম্বর বে-তে যান, নিজের পার্সেলটা নিজেই নামিয়ে রাখুন।” পাসটা মিনিট কয়েক পরেই অকেজো হয়ে যায়, আর শুধু ওই একটা ডেলিভারির জন্যই কাজ করে — অন্য বে বা অন্য পার্সেলে চলবে না। ফলে ভারী বাক্সটা আর কখনো অফিসের টেবিল ছুঁতেই হয় না।
এই গল্পটাই presigned URL দিয়ে সরাসরি স্টোরেজে আপলোডের গল্প। ব্যস্ত ফ্রন্ট অফিস হলো আপনার app server, আর নিজে মাল বয়ে নেওয়াটা হলো সার্ভার নিজে upload প্রক্সি করা — যেটা তার bandwidth আর মেমরি খেয়ে ফেলে। এককালীন গেট-পাসটাই presigned URL, আর পাঠানোর লোকের সোজা বে-তে গিয়ে পার্সেল নামানোটাই ক্লায়েন্টের সরাসরি object storage-এ upload করা — app server পুরোপুরি বাইপাস হয়ে যায়, তার চাপ কমে। পাসের দ্রুত expiry আর শুধু ওই এক বে-তে সীমাবদ্ধ থাকাটাই হলো URL-এর short expiry আর scoped permission। বাস্তবে S3 বা MinIO-তে ঠিক এভাবেই বড় ফাইল আপলোড হয় — অফিস আগে থেকে টাইপ/সাইজ যাচাই করে পাস ইস্যু করে, তারপর গিগাবাইট-সাইজের ফাইলটা আর কখনো সার্ভারের ভেতর দিয়ে যায় না।
বাস্তব জীবনের উদাহরণ
একটা প্যাকেজ রিসিভিং ডক: কুরিয়ার (ব্রাউজার) প্যাকেজটা রিসেপশনে (আপনার সার্ভার) পৌঁছে দেয়, রিসেপশন সেটা যাচাই করে (টাইপ/সাইজ ভ্যালিডেট করে), লগ করে (একটা key জেনারেট করে), তারপর ওয়্যারহাউসে (object storage) পাঠায়। অথবা, একটা ডক-থেকে-ওয়্যারহাউস কনভেয়র (presigned URL) থাকলে, কুরিয়ার সরাসরি ওয়্যারহাউসের দরজায় গিয়ে সেটা রেখে আসে — রিসেপশন শুধু আগে থেকেই ডক নম্বরটা তাকে ধরিয়ে দেয়।
দুটো আপলোড প্যাটার্ন
Pattern 1: Server-proxied upload
Browser → POST /upload → Server → S3/MinIO
Pro: full control, can scan/transform in-flight
Con: server bandwidth and memory for every upload
Pattern 2: Direct-to-storage (presigned URL)
Browser → GET /upload-url → Server (returns signed URL)
Browser → PUT signed-url → S3/MinIO directly
Pro: zero server bandwidth cost
Con: validation must happen after the fact (or via object metadata) ফাইলের সাইজ আর আপনার in-flight প্রসেসিং লাগবে কিনা তার ভিত্তিতে বেছে নিন। ছবি → সরাসরি আপলোড। যেসব ডকুমেন্ট scan করা দরকার → proxied।
Proxied Upload (Server Side)
import Busboy from 'busboy';
import { S3Client, PutObjectCommand } from '@aws-sdk/client-s3';
import { randomUUID } from 'crypto';
import type { IncomingMessage, ServerResponse } from 'http';
const s3 = new S3Client({
endpoint: process.env.MINIO_ENDPOINT,
region: 'us-east-1',
credentials: {
accessKeyId: process.env.MINIO_ACCESS_KEY!,
secretAccessKey: process.env.MINIO_SECRET_KEY!
},
forcePathStyle: true
});
const ALLOWED_TYPES = new Set(['image/jpeg', 'image/png', 'image/webp', 'application/pdf']);
const MAX_BYTES = 10 * 1024 * 1024; // 10MB
export async function handleUpload(req: IncomingMessage, res: ServerResponse, userId: string) {
return new Promise<{ key: string; url: string }>((resolve, reject) => {
const bb = Busboy({
headers: req.headers,
limits: { fileSize: MAX_BYTES, files: 1 }
});
bb.on('file', (fieldname, stream, info) => {
const { filename, mimeType } = info;
if (!ALLOWED_TYPES.has(mimeType)) {
stream.resume(); // drain the stream
return reject(new Error(`File type not allowed: ${mimeType}`));
}
const ext = filename.split('.').pop()?.toLowerCase() ?? 'bin';
const key = `uploads/${userId}/${randomUUID()}.${ext}`;
// Stream directly to S3 — no temp file on disk
const chunks: Buffer[] = [];
let totalBytes = 0;
stream.on('data', (chunk: Buffer) => {
totalBytes += chunk.length;
chunks.push(chunk);
});
stream.on('limit', () => {
reject(new Error('File too large'));
});
stream.on('end', async () => {
const body = Buffer.concat(chunks);
await s3.send(
new PutObjectCommand({
Bucket: 'user-uploads',
Key: key,
Body: body,
ContentType: mimeType,
Metadata: {
'uploaded-by': userId,
'original-name': encodeURIComponent(filename)
}
})
);
resolve({
key,
url: `${process.env.MINIO_PUBLIC_URL}/user-uploads/${key}`
});
});
});
bb.on('error', reject);
req.pipe(bb);
});
} Busboy multipart body-টা stream করে — S3-তে পৌঁছানোর আগে পুরো ফাইল মেমরিতে buffer করে না।
Express / Fastify ইন্টিগ্রেশন
// Express
import express from 'express';
const app = express();
app.post('/upload', async (req, res) => {
try {
const result = await handleUpload(req, res, req.user.id);
res.json({ success: true, ...result });
} catch (err) {
res.status(400).json({ error: (err as Error).message });
}
});
// Fastify
import Fastify from 'fastify';
import multipart from '@fastify/multipart';
const fastify = Fastify();
fastify.register(multipart, {
limits: { fileSize: 10 * 1024 * 1024, files: 1 }
});
fastify.post('/upload', async (req, reply) => {
const data = await req.file();
if (!data) return reply.code(400).send({ error: 'No file' });
const key = `uploads/${req.user.id}/${randomUUID()}`;
await s3.send(
new PutObjectCommand({
Bucket: 'user-uploads',
Key: key,
Body: await data.toBuffer(),
ContentType: data.mimetype
})
);
return { key };
}); Direct Upload (Presigned URL)
import { PutObjectCommand, GetObjectCommand } from '@aws-sdk/client-s3';
import { getSignedUrl } from '@aws-sdk/s3-request-presigner';
// Step 1: client requests an upload URL
app.post('/upload-url', async (req, res) => {
const { filename, contentType, size } = req.body;
if (!ALLOWED_TYPES.has(contentType)) {
return res.status(400).json({ error: 'File type not allowed' });
}
if (size > MAX_BYTES) {
return res.status(400).json({ error: 'File too large' });
}
const ext = filename.split('.').pop()?.toLowerCase() ?? 'bin';
const key = `uploads/${req.user.id}/${randomUUID()}.${ext}`;
const uploadUrl = await getSignedUrl(
s3,
new PutObjectCommand({
Bucket: 'user-uploads',
Key: key,
ContentType: contentType,
ContentLength: size // enforce exact size — client can't upload more
}),
{ expiresIn: 300 }
); // 5 minutes
res.json({ uploadUrl, key });
});
// Step 2: after upload, client notifies server to record the file
app.post('/upload-confirm', async (req, res) => {
const { key } = req.body;
// Verify the object actually exists in storage
try {
await s3.send(new HeadObjectCommand({ Bucket: 'user-uploads', Key: key }));
} catch {
return res.status(400).json({ error: 'File not found in storage' });
}
// Validate key belongs to this user (check prefix)
if (!key.startsWith(`uploads/${req.user.id}/`)) {
return res.status(403).json({ error: 'Forbidden' });
}
await db.query(
'INSERT INTO user_files (user_id, storage_key, created_at) VALUES ($1, $2, NOW())',
[req.user.id, key]
);
res.json({ success: true });
}); // Client side (browser)
async function uploadFile(file: File) {
// 1. Request upload URL
const { uploadUrl, key } = await fetch('/upload-url', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
filename: file.name,
contentType: file.type,
size: file.size
})
}).then((r) => r.json());
// 2. Upload directly to storage
const uploadRes = await fetch(uploadUrl, {
method: 'PUT',
body: file,
headers: { 'Content-Type': file.type }
});
if (!uploadRes.ok) throw new Error('Upload failed');
// 3. Confirm with server
await fetch('/upload-confirm', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ key })
});
return key;
} File Validation
কখনো Content-Type header-কে বিশ্বাস করবেন না — এটা ক্লায়েন্ট থেকে আসে। আসল বাইটগুলো চেক করুন:
import { fileTypeFromBuffer } from 'file-type';
async function validateFileType(buffer: Buffer, claimedType: string): Promise<string> {
const detected = await fileTypeFromBuffer(buffer);
if (!detected) throw new Error('Cannot determine file type');
// Check magic bytes match the claimed type
if (detected.mime !== claimedType) {
throw new Error(`File type mismatch: claimed ${claimedType}, detected ${detected.mime}`);
}
if (!ALLOWED_TYPES.has(detected.mime)) {
throw new Error(`File type not allowed: ${detected.mime}`);
}
return detected.mime;
} # Install
npm install file-type ছবির ক্ষেত্রে dimension-ও ভ্যালিডেট করুন:
import sharp from 'sharp';
async function validateImage(buffer: Buffer): Promise<{ width: number; height: number }> {
const metadata = await sharp(buffer).metadata();
const MAX_DIMENSION = 8000;
if ((metadata.width ?? 0) > MAX_DIMENSION || (metadata.height ?? 0) > MAX_DIMENSION) {
throw new Error('Image dimensions too large');
}
return { width: metadata.width!, height: metadata.height! };
} Image Processing Pipeline
জমা করার আগে ছবি transform করুন — resize করুন, ফরম্যাট কনভার্ট করুন, metadata strip করুন:
import sharp from 'sharp';
interface ImageVariant {
suffix: string;
width: number;
height?: number;
format: 'webp' | 'jpeg';
quality: number;
}
const VARIANTS: ImageVariant[] = [
{ suffix: 'thumb', width: 150, height: 150, format: 'webp', quality: 80 },
{ suffix: 'medium', width: 800, format: 'webp', quality: 85 },
{ suffix: 'large', width: 1920, format: 'webp', quality: 90 }
];
async function processAndStoreImage(buffer: Buffer, userId: string) {
const id = randomUUID();
const uploads: Promise<void>[] = [];
for (const variant of VARIANTS) {
const processed = await sharp(buffer)
.rotate() // auto-rotate from EXIF
.resize(variant.width, variant.height, { fit: 'cover' })
[variant.format]({ quality: variant.quality })
.withMetadata({ orientation: undefined }) // strip EXIF GPS, keep color profile
.toBuffer();
const key = `images/${userId}/${id}/${variant.suffix}.${variant.format}`;
uploads.push(
s3
.send(
new PutObjectCommand({
Bucket: 'user-uploads',
Key: key,
Body: processed,
ContentType: `image/${variant.format}`,
CacheControl: 'public, max-age=31536000, immutable' // 1 year — content-addressed
})
)
.then(() => undefined)
);
}
await Promise.all(uploads);
return {
id,
urls: VARIANTS.reduce<Record<string, string>>((acc, v) => {
acc[v.suffix] = `${process.env.CDN_URL}/images/${userId}/${id}/${v.suffix}.${v.format}`;
return acc;
}, {})
};
} Virus Scanning
ইউজারের আপলোড করা ডকুমেন্ট আর executable-এর জন্য — অ্যাক্সেসযোগ্য করার আগে scan করুন:
import NodeClam from 'clamscan';
const clamscan = await new NodeClam().init({
clamdscan: {
socket: '/var/run/clamav/clamd.ctl',
timeout: 60000
}
});
async function scanBuffer(buffer: Buffer): Promise<void> {
const { isInfected, viruses } = await clamscan.scanBuffer(buffer);
if (isInfected) {
throw new Error(`Malware detected: ${viruses.join(', ')}`);
}
} # docker-compose.yml — add ClamAV sidecar
services:
clamav:
image: clamav/clamav:latest
volumes:
- clamav_data:/var/lib/clamav
- /var/run/clamav:/var/run/clamav high-throughput-এর জন্য, asynchronously scan করুন: একটা quarantine bucket-এ জমা করুন, queue দিয়ে scan করুন, pass করলে public bucket-এ সরান বা fail করলে ডিলিট করুন।
Upload Progress Tracking
// Client: track progress via XHR (fetch doesn't expose upload progress)
function uploadWithProgress(
file: File,
uploadUrl: string,
onProgress: (percent: number) => void
): Promise<void> {
return new Promise((resolve, reject) => {
const xhr = new XMLHttpRequest();
xhr.upload.addEventListener('progress', (e) => {
if (e.lengthComputable) {
onProgress(Math.round((e.loaded / e.total) * 100));
}
});
xhr.addEventListener('load', () => {
xhr.status < 400 ? resolve() : reject(new Error(`Upload failed: ${xhr.status}`));
});
xhr.addEventListener('error', () => reject(new Error('Network error')));
xhr.open('PUT', uploadUrl);
xhr.setRequestHeader('Content-Type', file.type);
xhr.send(file);
});
} বড় ফাইলের জন্য Multipart Upload
100MB-এর বেশি ফাইলের জন্য, S3 multipart upload ব্যবহার করুন — chunk-এ ভাগ করে, প্যারালালে আপলোড করে, নেটওয়ার্ক failure-এ বেশি resilient:
import {
CreateMultipartUploadCommand,
UploadPartCommand,
CompleteMultipartUploadCommand,
AbortMultipartUploadCommand
} from '@aws-sdk/client-s3';
const PART_SIZE = 10 * 1024 * 1024; // 10MB per part
async function multipartUpload(key: string, buffer: Buffer, contentType: string) {
const { UploadId } = await s3.send(
new CreateMultipartUploadCommand({
Bucket: 'user-uploads',
Key: key,
ContentType: contentType
})
);
const parts: { ETag: string; PartNumber: number }[] = [];
try {
for (let i = 0; i < Math.ceil(buffer.length / PART_SIZE); i++) {
const start = i * PART_SIZE;
const end = Math.min(start + PART_SIZE, buffer.length);
const partNumber = i + 1;
const { ETag } = await s3.send(
new UploadPartCommand({
Bucket: 'user-uploads',
Key: key,
UploadId,
PartNumber: partNumber,
Body: buffer.subarray(start, end)
})
);
parts.push({ ETag: ETag!, PartNumber: partNumber });
}
await s3.send(
new CompleteMultipartUploadCommand({
Bucket: 'user-uploads',
Key: key,
UploadId,
MultipartUpload: { Parts: parts }
})
);
} catch (err) {
// Clean up incomplete upload (avoid storage costs)
await s3.send(
new AbortMultipartUploadCommand({
Bucket: 'user-uploads',
Key: key,
UploadId
})
);
throw err;
}
} অসম্পূর্ণ multipart upload অটোমেটিক abort করতে একটা lifecycle rule সেট করুন:
await s3.send(
new PutBucketLifecycleConfigurationCommand({
Bucket: 'user-uploads',
LifecycleConfiguration: {
Rules: [
{
ID: 'abort-incomplete-multipart',
Status: 'Enabled',
Filter: {},
AbortIncompleteMultipartUpload: { DaysAfterInitiation: 1 }
}
]
}
})
);