d25d482dc2
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
125 lines
4.6 KiB
TypeScript
125 lines
4.6 KiB
TypeScript
import { existsSync } from 'fs'
|
|
import { mkdir } from 'fs/promises'
|
|
import path, { join } from 'path'
|
|
import { createLogger } from '@sim/logger'
|
|
import { env } from '@/lib/core/config/env'
|
|
import {
|
|
getStorageProvider,
|
|
S3_CONFIG,
|
|
USE_BLOB_STORAGE,
|
|
USE_S3_STORAGE,
|
|
} from '@/lib/uploads/config'
|
|
|
|
const logger = createLogger('UploadsSetup')
|
|
|
|
// turbopackIgnore: an unscoped process.cwd() makes node-file-tracing sweep the whole
|
|
// project (including next.config.ts) into every route graph that reaches this module.
|
|
// Two routes doing so emit the swept config into same-named server chunks — when their
|
|
// contents diverge, the build dies with "Two or more assets … same output path".
|
|
const PROJECT_ROOT = path.resolve(/*turbopackIgnore: true*/ process.cwd())
|
|
export const UPLOAD_DIR_SERVER = join(/*turbopackIgnore: true*/ PROJECT_ROOT, 'uploads')
|
|
|
|
/**
|
|
* Server-only function to ensure uploads directory exists
|
|
*/
|
|
async function ensureUploadsDirectory() {
|
|
if (USE_S3_STORAGE) {
|
|
logger.info('Using S3 storage, skipping local uploads directory creation')
|
|
return true
|
|
}
|
|
|
|
if (USE_BLOB_STORAGE) {
|
|
logger.info('Using Azure Blob storage, skipping local uploads directory creation')
|
|
return true
|
|
}
|
|
|
|
try {
|
|
if (!existsSync(UPLOAD_DIR_SERVER)) {
|
|
await mkdir(UPLOAD_DIR_SERVER, { recursive: true })
|
|
} else {
|
|
logger.info(`Uploads directory already exists at ${UPLOAD_DIR_SERVER}`)
|
|
}
|
|
return true
|
|
} catch (error) {
|
|
logger.error('Failed to create uploads directory:', error)
|
|
return false
|
|
}
|
|
}
|
|
|
|
// Immediately invoke on server startup
|
|
if (typeof process !== 'undefined') {
|
|
const storageProvider = getStorageProvider()
|
|
|
|
// Log storage mode
|
|
logger.info(`Storage provider: ${storageProvider}`)
|
|
|
|
if (USE_BLOB_STORAGE) {
|
|
// Verify Azure Blob credentials
|
|
if (!env.AZURE_STORAGE_CONTAINER_NAME) {
|
|
logger.warn('Azure Blob storage is enabled but AZURE_STORAGE_CONTAINER_NAME is not set')
|
|
} else if (!env.AZURE_ACCOUNT_NAME && !env.AZURE_CONNECTION_STRING) {
|
|
logger.warn(
|
|
'Azure Blob storage is enabled but neither AZURE_ACCOUNT_NAME nor AZURE_CONNECTION_STRING is set'
|
|
)
|
|
logger.warn(
|
|
'Set AZURE_ACCOUNT_NAME + AZURE_ACCOUNT_KEY or AZURE_CONNECTION_STRING for Azure Blob storage'
|
|
)
|
|
} else if (env.AZURE_ACCOUNT_NAME && !env.AZURE_ACCOUNT_KEY && !env.AZURE_CONNECTION_STRING) {
|
|
logger.warn(
|
|
'AZURE_ACCOUNT_NAME is set but AZURE_ACCOUNT_KEY is missing and no AZURE_CONNECTION_STRING provided'
|
|
)
|
|
logger.warn('Set AZURE_ACCOUNT_KEY or use AZURE_CONNECTION_STRING for authentication')
|
|
} else {
|
|
logger.info('Azure Blob storage credentials found in environment variables')
|
|
if (env.AZURE_CONNECTION_STRING) {
|
|
logger.info('Using Azure connection string for authentication')
|
|
} else {
|
|
logger.info('Using Azure account name and key for authentication')
|
|
}
|
|
}
|
|
} else if (USE_S3_STORAGE) {
|
|
// Verify AWS credentials
|
|
if (!env.S3_BUCKET_NAME || !env.AWS_REGION) {
|
|
logger.warn('S3 storage configuration is incomplete')
|
|
logger.warn('Set S3_BUCKET_NAME and AWS_REGION for S3 storage')
|
|
} else if (!env.AWS_ACCESS_KEY_ID || !env.AWS_SECRET_ACCESS_KEY) {
|
|
logger.warn('AWS credentials are not set in environment variables')
|
|
logger.warn('Set AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY for S3 storage')
|
|
} else {
|
|
logger.info('AWS S3 credentials found in environment variables')
|
|
}
|
|
|
|
if (env.S3_ENDPOINT) {
|
|
logger.info(
|
|
`Using S3-compatible endpoint: ${env.S3_ENDPOINT} (path-style: ${S3_CONFIG.forcePathStyle})`
|
|
)
|
|
}
|
|
} else {
|
|
// Local storage mode
|
|
logger.info('Using local file storage')
|
|
|
|
// Only initialize local uploads directory when using local storage
|
|
ensureUploadsDirectory().then((success) => {
|
|
if (success) {
|
|
logger.info('Local uploads directory initialized')
|
|
} else {
|
|
logger.error('Failed to initialize local uploads directory')
|
|
}
|
|
})
|
|
}
|
|
|
|
// Log additional configuration details
|
|
if (USE_BLOB_STORAGE && env.AZURE_STORAGE_KB_CONTAINER_NAME) {
|
|
logger.info(`Azure Blob knowledge base container: ${env.AZURE_STORAGE_KB_CONTAINER_NAME}`)
|
|
}
|
|
if (USE_BLOB_STORAGE && env.AZURE_STORAGE_COPILOT_CONTAINER_NAME) {
|
|
logger.info(`Azure Blob copilot container: ${env.AZURE_STORAGE_COPILOT_CONTAINER_NAME}`)
|
|
}
|
|
if (USE_S3_STORAGE && env.S3_KB_BUCKET_NAME) {
|
|
logger.info(`S3 knowledge base bucket: ${env.S3_KB_BUCKET_NAME}`)
|
|
}
|
|
if (USE_S3_STORAGE && env.S3_COPILOT_BUCKET_NAME) {
|
|
logger.info(`S3 copilot bucket: ${env.S3_COPILOT_BUCKET_NAME}`)
|
|
}
|
|
}
|