e115934061
Publish `@librechat/data-schemas` to NPM / pack (push) Failing after 8s
Publish `@librechat/client` to NPM / pack (push) Failing after 0s
GitNexus Index / index (push) Failing after 1s
Sync Locize Translations & Create Translation PR / Create Translation PR on Version Published (push) Has been skipped
Sync Helm Chart Tags / Sync chart tags (push) Failing after 2s
Publish `librechat-data-provider` to NPM / pack (push) Failing after 1s
Docker Dev Images Build / build (Dockerfile, librechat-dev, node) (push) Failing after 1s
Docker Dev Images Build / build (Dockerfile.multi, librechat-dev-api, api-build) (push) Failing after 0s
Sync Helm Chart Tags / Ignore non-main push (push) Has been skipped
Sync Locize Translations & Create Translation PR / Sync Translation Keys with Locize (push) Failing after 1s
Publish `@librechat/client` to NPM / publish-npm (push) Has been cancelled
Publish `librechat-data-provider` to NPM / publish-npm (push) Has been cancelled
GitNexus Index / post-index (push) Has been cancelled
Publish `@librechat/data-schemas` to NPM / publish-npm (push) Has been cancelled
61 lines
2.3 KiB
JavaScript
61 lines
2.3 KiB
JavaScript
const { FileSources, FileContext } = require('librechat-data-provider');
|
|
|
|
/**
|
|
* Determines the appropriate file storage strategy based on file type and configuration.
|
|
*
|
|
* @param {AppConfig} appConfig - App configuration object containing fileStrategy and fileStrategies
|
|
* @param {Object} options - File context options
|
|
* @param {boolean} options.isAvatar - Whether this is an avatar upload
|
|
* @param {boolean} options.isImage - Whether this is an image upload
|
|
* @param {string} options.context - File context from FileContext enum
|
|
* @returns {string} Storage strategy to use (e.g., FileSources.local, 's3', 'azure')
|
|
*
|
|
* @example
|
|
* // Legacy single strategy
|
|
* getFileStrategy({ fileStrategy: 's3' }) // Returns 's3'
|
|
*
|
|
* @example
|
|
* // Granular strategies
|
|
* getFileStrategy(
|
|
* {
|
|
* fileStrategy: 's3',
|
|
* fileStrategies: { avatar: FileSources.local, document: 's3' }
|
|
* },
|
|
* { isAvatar: true }
|
|
* ) // Returns FileSources.local
|
|
*/
|
|
function getFileStrategy(appConfig, { isAvatar = false, isImage = false, context = null } = {}) {
|
|
// Fallback to legacy single strategy if no granular config
|
|
if (!appConfig?.fileStrategies) {
|
|
return appConfig.fileStrategy || FileSources.local; // Default to FileSources.local if undefined
|
|
}
|
|
|
|
const strategies = appConfig.fileStrategies;
|
|
const defaultStrategy = strategies.default || appConfig.fileStrategy || FileSources.local;
|
|
|
|
// Priority order for strategy selection:
|
|
// 1. Specific file type strategy
|
|
// 2. Default strategy from fileStrategies
|
|
// 3. Legacy fileStrategy
|
|
// 4. FileSources.local as final fallback
|
|
|
|
let selectedStrategy;
|
|
|
|
if (isAvatar || context === FileContext.avatar) {
|
|
selectedStrategy = strategies.avatar || defaultStrategy;
|
|
} else if (context === FileContext.skill_file) {
|
|
// Skill files: explicit skills strategy → fall back by type → default
|
|
selectedStrategy =
|
|
strategies.skills || (isImage ? strategies.image : strategies.document) || defaultStrategy;
|
|
} else if (isImage || context === FileContext.image_generation) {
|
|
selectedStrategy = strategies.image || defaultStrategy;
|
|
} else {
|
|
// All other files (documents, attachments, etc.)
|
|
selectedStrategy = strategies.document || defaultStrategy;
|
|
}
|
|
|
|
return selectedStrategy || FileSources.local; // Final fallback to FileSources.local
|
|
}
|
|
|
|
module.exports = { getFileStrategy };
|