惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Y
Y Combinator Blog
Jina AI
Jina AI
雷峰网
雷峰网
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
美团技术团队
V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件
博客园 - Franky
博客园 - 三生石上(FineUI控件)
月光博客
月光博客
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
爱范儿
爱范儿
Hugging Face - Blog
Hugging Face - Blog
宝玉的分享
宝玉的分享
Last Week in AI
Last Week in AI
Apple Machine Learning Research
Apple Machine Learning Research
量子位
IT之家
IT之家
人人都是产品经理
人人都是产品经理
博客园_首页
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How I Turned My Personal Storage Accounts Into a Massive ...
Hesham Mohamed · 2026-06-19 · via DEV Community

As developers, we’ve all been there: you’re building a hobby project, a side hustle, or a microservice, and you need object storage. You look at AWS S3 or dedicated cloud providers, and the costs start adding up. Meanwhile, most of us have hundreds of gigabytes of idle, wasted space sitting in our personal Google Drive, Dropbox, or Mega accounts.

I wanted to find a way to use that personal cloud storage programmatically—specifically as an S3-compatible bucket—without paying premium storage fees.

But I had one strict rule for myself: The solution had to be 100% stateless. No caching files on my servers, no data retention, and zero storage costs on my end. Security and privacy meant that files had to exist on my infrastructure only in-flight as streaming data packets.

Here is a deep technical breakdown of the architecture I built to make this happen using NestJS, Fastify, OpenDAL, and BullMQ in a monorepo structure.


1. The Core Architecture: A Monorepo Approach

To keep performance blazing fast and maintain a clean separation of concerns, I broke the system down into three distinct, decoupled services inside a monorepo, sharing underlying core modules.

Because raw Node.js HTTP overhead can become a bottleneck when proxying heavy streams, I swapped out Express for Fastify as the underlying HTTP provider for NestJS.

               ┌────────────────────────────────────────┐
               │              Main API Server           │
               │  (Handles Auth, Web Dashboard, OAuth)  │
               └───────────────────┬────────────────────┘
                                   │
                                   │ (Pushes Sync/Heavy Tasks)
                                   ▼
                             ┌───────────┐
                             │  BullMQ   │
                             └─────┬─────┘
                                   │
                                   ▼
               ┌────────────────────────────────────────┐
               │             Worker Server              │
               │      (Processes Heavy Background Jobs) │
               └────────────────────────────────────────┘

─────────────────────────────────────────────────────────────────────────

               ┌────────────────────────────────────────┐
               │          S3-Compatibility Server       │
               │  (Streams Data / Translates S3 XML)   │
               └────────────────────────────────────────┘

  1. The Main API Server: Handles user authentication, the web dashboard management, and OAuth flows. To ensure high availability, this server does not handle raw file processing or synchronization jobs.
  2. The Worker Server: When a heavy asynchronous task or sync job is triggered, the Main API pushes it to a BullMQ queue. The Worker server listens and processes these background jobs safely without blocking incoming API traffic.
  3. The S3-Compatibility Server: A dedicated standalone server focused entirely on parsing standard AWS S3 API signatures, handling S3-specific XML payloads, and streaming object data directly.

2. Decoupling Providers with the Adapter Pattern & OpenDAL

Every cloud storage provider has a completely different API ecosystem. To prevent my codebase from turning into spaghetti code, I heavily relied on the Adapter Pattern.

I defined a unified StorageAdapter interface. Whether a user connects Google Drive or Mega, the core engine interacts with them identically. To abstract away the low-level file system operations, I utilized OpenDAL (Open Data Access Layer), which provides a brilliant data access abstraction layer.

Here is a simplified look at how the adapters are structured:

export interface StorageAdapter {
  uploadFile(path: string, stream: ReadableStream): Promise<UploadResult>;
  downloadFile(path: string): Promise<ReadableStream>;
  deleteFile(path: string): Promise<void>;
  listFiles(path: string): Promise<FileObject[]>;
}

The Authentication Split: OAuth vs. Credentials

Implementing this pattern threw a major curveball when dealing with provider authentication. The providers essentially split into two categories:

  • The OAuth Providers (Google Drive, Dropbox): These use standard OAuth 2.0 flows. The Main API handles the redirect, grabs the refresh token, and securely manages access tokens.
  • The Credential Providers (Mega): Mega doesn't have an OAuth layer; it strictly requires a username and password.

Because we are 100% stateless, we must store these credentials to authenticate requests on the fly. To do this safely, the credentials undergo strong encryption before hitting our database and are decrypted strictly in-flight within the isolated adapter instance during runtime execution.


3. The Google Drive Blockblock: Fighting Permissions

If you ever try to build a platform that hooks into Google Drive for programmatic developer access, you will run into a massive security UX roadblock.

Initially, I requested the standard drive access scope. However, Google treats full drive access as a highly restricted permission. If you use it, Google aggressively flags your application with a terrifying "This app is not secure / Not authorized" warning screen for any external user attempting to connect their account. Bypassing this requires a lengthy, expensive independent security verification process.

The Fix: I downgraded the requested scope to strictly drive.file.

This scope only grants our application access to files and folders that the app itself creates. It completely resolved the security verification warning, making the onboarding flow seamless while executing perfect least-privilege security. The user gets a secure sandbox within their own Google Drive, and our app gets immediate authorization.


4. Keeping it 100% Stateless via Streaming

The magic of this gateway is that it doesn't scale with disk space; it scales with network throughput. When an S3 request comes into the S3-compatible server, we don't download the file to our disk and then upload it to the provider.

Instead, we use Node.js and Fastify's native streaming capabilities. We pipe the incoming S3 request stream directly into the OpenDAL abstraction layer for the respective adapter:

// A high-level conceptual example of pass-through streaming
async handleS3Upload(req: FastifyRequest, reply: FastifyReply) {
  const targetAdapter = this.adapterFactory.get(req.user.provider);

  // Pipe the raw incoming request payload directly to the cloud provider
  const result = await targetAdapter.uploadFile(req.params.filepath, req.raw);

  // Reply with standard S3 XML format
  return reply.type('application/xml').send(this.xmlBuilder.build(result));
}


What I Learned & What’s Next

Building an infrastructure tool like this taught me that the hardest part isn't writing the code; it's mapping completely mismatched paradigms (like translating S3 XML APIs into standard REST JSON responses used by consumer cloud drives).

I've packaged this entire architecture into a managed platform called Uploom (uploom.io). It lets you spin up an S3-compatible gateway on top of your personal cloud storage in less than 2 minutes without hosting anything yourself.

I’d love to hear your thoughts on this setup!

  • How would you handle credential encryption for non-OAuth providers differently?
  • Have you run into similar streaming bottlenecks with Node.js/Fastify under heavy loads?

Let's discuss in the comments below!