feat: proxy GetObject from Telegram CDN for real S3 client compatibility

- Add proxyS3Get config (PROXY_S3_GET env, default true) to env.ts
- Proxy handleGetObject and handleGetMultipartObject: fetch from Telegram
  CDN and return 200 with streaming body instead of 302 redirect
- Real S3 clients (AWS SDK v3) expect 200+body on GetObject, not redirect
- Legacy 302 redirect path preserved when proxyS3Get=false
- Updated production-e2e: GetObject asserts 200 with body content
- Updated s3-sdk.test.ts: GetObject asserts 200 with body (removed try/catch)
- Cleaned up unused multipart imports in s3-sdk.test.ts

All 49 tests pass (29 production-e2e + 20 s3-sdk).
This commit is contained in:
asepharyana
2026-07-07 02:54:51 +07:00
parent f88ac1a124
commit 06f93e30f6
4 changed files with 94 additions and 32 deletions
+10 -20
View File
@@ -31,11 +31,8 @@ import {
CopyObjectCommand,
DeleteObjectCommand,
DeleteObjectsCommand,
CreateMultipartUploadCommand,
UploadPartCommand,
CompleteMultipartUploadCommand,
AbortMultipartUploadCommand,
ListMultipartUploadsCommand,
AbortMultipartUploadCommand,
NoSuchKey,
NotFound,
} from '@aws-sdk/client-s3';
@@ -158,22 +155,15 @@ describe('S3 SDK compatibility', () => {
expect(ContentType).toBe('text/plain');
});
it('GetObject returns redirect to Telegram (302)', async () => {
// TeleUploader returns 302 -> Telegram CDN rather than the raw object body.
// The AWS SDK follows the redirect but the target (api.telegram.org) returns
// non-XML, so the deserializer throws UnknownError.
// We accept either a 200 with body OR an error with 302 status.
try {
const { Body, ContentType } = await s3.send(
new GetObjectCommand({ Bucket: BUCKET, Key: 'hello-sdk.txt' }),
);
const text = await Body!.transformToString();
expect(text).toBe('Hello from AWS SDK v3!');
expect(ContentType).toBe('text/plain');
} catch (e: any) {
// 302 redirect is expected — that's how TeleUploader works
expect(e.$metadata?.httpStatusCode).toBe(302);
}
it('GetObject returns stored content (proxied from Telegram)', async () => {
const { Body, ContentType, ContentLength, ETag } = await s3.send(
new GetObjectCommand({ Bucket: BUCKET, Key: 'hello-sdk.txt' }),
);
const text = await Body!.transformToString();
expect(text).toBe('Hello from AWS SDK v3!');
expect(ContentType).toBe('text/plain');
expect(ContentLength).toBeGreaterThan(0);
expect(ETag).toBeTruthy();
});
it('GetObject returns 404 (NoSuchKey) for missing key', async () => {