2
0
Files
bot/packages/lib/s3/uploadFileToBucket.ts
2023-08-30 09:36:45 +02:00

37 lines
906 B
TypeScript

import { env } from '@typebot.io/env'
import { Client } from 'minio'
type Props = {
fileName: string
file: Buffer
mimeType: string
}
export const uploadFileToBucket = async ({
fileName,
file,
mimeType,
}: Props): Promise<string> => {
if (!env.S3_ENDPOINT || !env.S3_ACCESS_KEY || !env.S3_SECRET_KEY)
throw new Error(
'S3 not properly configured. Missing one of those variables: S3_ENDPOINT, S3_ACCESS_KEY, S3_SECRET_KEY'
)
const minioClient = new Client({
endPoint: env.S3_ENDPOINT,
port: env.S3_PORT,
useSSL: env.S3_SSL,
accessKey: env.S3_ACCESS_KEY,
secretKey: env.S3_SECRET_KEY,
region: env.S3_REGION,
})
await minioClient.putObject(env.S3_BUCKET, fileName, file, {
'Content-Type': mimeType,
})
return `http${env.S3_SSL ? 's' : ''}://${env.S3_ENDPOINT}${
env.S3_PORT ? `:${env.S3_PORT}` : ''
}/${env.S3_BUCKET}/${fileName}`
}