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
59 lines
1.6 KiB
JavaScript
59 lines
1.6 KiB
JavaScript
const path = require('path');
|
|
const fs = require('fs/promises');
|
|
const { logger } = require('@librechat/data-schemas');
|
|
const { loadServiceKey, isUserProvided } = require('@librechat/api');
|
|
const { config } = require('./EndpointService');
|
|
|
|
const defaultServiceKeyPath = path.join(__dirname, '../../..', 'data', 'auth.json');
|
|
|
|
async function getServiceKeyPath() {
|
|
const serviceKeyPath = process.env.GOOGLE_SERVICE_KEY_FILE?.trim();
|
|
if (serviceKeyPath) {
|
|
return serviceKeyPath;
|
|
}
|
|
|
|
try {
|
|
await fs.access(defaultServiceKeyPath);
|
|
return defaultServiceKeyPath;
|
|
} catch (error) {
|
|
if (error?.code !== 'ENOENT') {
|
|
logger.warn(
|
|
`Unable to access default Google service key file: ${defaultServiceKeyPath}`,
|
|
error,
|
|
);
|
|
}
|
|
return null;
|
|
}
|
|
}
|
|
|
|
async function loadAsyncEndpoints() {
|
|
let serviceKey;
|
|
let googleUserProvides = false;
|
|
const { googleKey } = config;
|
|
|
|
/** Check if GOOGLE_KEY is provided at all(including 'user_provided') */
|
|
const isGoogleKeyProvided = googleKey && googleKey.trim() !== '';
|
|
|
|
if (isGoogleKeyProvided) {
|
|
/** If GOOGLE_KEY is provided, check if it's user_provided */
|
|
googleUserProvides = isUserProvided(googleKey);
|
|
} else {
|
|
const serviceKeyPath = await getServiceKeyPath();
|
|
|
|
if (serviceKeyPath) {
|
|
try {
|
|
serviceKey = await loadServiceKey(serviceKeyPath);
|
|
} catch (error) {
|
|
logger.warn('Error loading Google service key', error);
|
|
serviceKey = null;
|
|
}
|
|
}
|
|
}
|
|
|
|
const google = serviceKey || isGoogleKeyProvided ? { userProvide: googleUserProvides } : false;
|
|
|
|
return { google };
|
|
}
|
|
|
|
module.exports = loadAsyncEndpoints;
|