mirror of
https://github.com/documenso/documenso.git
synced 2026-06-22 04:12:06 +10:00
101 lines
3.3 KiB
TypeScript
101 lines
3.3 KiB
TypeScript
import path from 'node:path';
|
|
import {
|
|
BlobSASPermissions,
|
|
BlobServiceClient,
|
|
generateBlobSASQueryParameters,
|
|
StorageSharedKeyCredential,
|
|
} from '@azure/storage-blob';
|
|
import { env } from '@documenso/lib/utils/env';
|
|
import slugify from '@sindresorhus/slugify';
|
|
|
|
import { ONE_HOUR } from '../../../constants/time';
|
|
import { alphaid } from '../../id';
|
|
import type { PresignedUrl, StorageProvider, UploadFileInput, UploadFileResult } from './storage-provider';
|
|
|
|
export class AzureBlobProvider implements StorageProvider {
|
|
private serviceClient: BlobServiceClient;
|
|
private credential: StorageSharedKeyCredential;
|
|
private containerName: string;
|
|
|
|
constructor() {
|
|
const accountName = String(env('NEXT_PRIVATE_UPLOAD_AZURE_ACCOUNT_NAME'));
|
|
const accountKey = String(env('NEXT_PRIVATE_UPLOAD_AZURE_ACCOUNT_KEY'));
|
|
this.containerName = String(env('NEXT_PRIVATE_UPLOAD_AZURE_CONTAINER'));
|
|
|
|
this.credential = new StorageSharedKeyCredential(accountName, accountKey);
|
|
|
|
const endpointOverride = env('NEXT_PRIVATE_UPLOAD_AZURE_ENDPOINT');
|
|
const url = endpointOverride
|
|
? `${endpointOverride}/${accountName}`
|
|
: `https://${accountName}.blob.core.windows.net`;
|
|
|
|
this.serviceClient = new BlobServiceClient(url, this.credential);
|
|
}
|
|
|
|
private buildSasUrl(key: string, permissions: BlobSASPermissions): string {
|
|
const expiresOn = new Date(Date.now() + ONE_HOUR);
|
|
|
|
const sasToken = generateBlobSASQueryParameters(
|
|
{
|
|
containerName: this.containerName,
|
|
blobName: key,
|
|
permissions,
|
|
expiresOn,
|
|
},
|
|
this.credential,
|
|
).toString();
|
|
|
|
const blobClient = this.serviceClient.getContainerClient(this.containerName).getBlobClient(key);
|
|
|
|
return `${blobClient.url}?${sasToken}`;
|
|
}
|
|
|
|
async getPresignPostUrl(fileName: string, _contentType: string, userId?: number): Promise<PresignedUrl> {
|
|
const { name, ext } = path.parse(fileName);
|
|
|
|
let slugified = slugify(name);
|
|
if (slugified.length === 0 || slugified.length > 100) {
|
|
slugified = alphaid(8);
|
|
}
|
|
|
|
let key = `${alphaid(12)}/${slugified}${ext}`;
|
|
if (userId) {
|
|
key = `${userId}/${key}`;
|
|
}
|
|
|
|
const url = this.buildSasUrl(key, BlobSASPermissions.parse('cw'));
|
|
return { key, url };
|
|
}
|
|
|
|
async getAbsolutePresignPostUrl(key: string): Promise<PresignedUrl> {
|
|
const url = this.buildSasUrl(key, BlobSASPermissions.parse('cw'));
|
|
return { key, url };
|
|
}
|
|
|
|
async getPresignGetUrl(key: string): Promise<PresignedUrl> {
|
|
const url = this.buildSasUrl(key, BlobSASPermissions.parse('r'));
|
|
return { key, url };
|
|
}
|
|
|
|
async uploadFile(input: UploadFileInput): Promise<UploadFileResult> {
|
|
const { name, ext } = path.parse(input.name);
|
|
const key = `${alphaid(12)}/${slugify(name)}${ext}`;
|
|
|
|
const containerClient = this.serviceClient.getContainerClient(this.containerName);
|
|
const blockBlobClient = containerClient.getBlockBlobClient(key);
|
|
|
|
const body = input.body instanceof ArrayBuffer ? Buffer.from(input.body) : input.body;
|
|
|
|
await blockBlobClient.uploadData(body, {
|
|
blobHTTPHeaders: { blobContentType: input.type },
|
|
});
|
|
|
|
return { key };
|
|
}
|
|
|
|
async deleteFile(key: string): Promise<void> {
|
|
const containerClient = this.serviceClient.getContainerClient(this.containerName);
|
|
await containerClient.deleteBlob(key);
|
|
}
|
|
}
|