mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 08:50:15 +01:00
fix(getUserPluginAuthValue): throws error if no user matches (#1522)
This commit is contained in:
parent
ead1c3c797
commit
8f9ef13325
1 changed files with 24 additions and 4 deletions
|
|
@ -2,18 +2,38 @@ const PluginAuth = require('~/models/schema/pluginAuthSchema');
|
||||||
const { encrypt, decrypt } = require('~/server/utils/');
|
const { encrypt, decrypt } = require('~/server/utils/');
|
||||||
const { logger } = require('~/config');
|
const { logger } = require('~/config');
|
||||||
|
|
||||||
const getUserPluginAuthValue = async (user, authField) => {
|
/**
|
||||||
|
* Asynchronously retrieves and decrypts the authentication value for a user's plugin, based on a specified authentication field.
|
||||||
|
*
|
||||||
|
* @param {string} userId - The unique identifier of the user for whom the plugin authentication value is to be retrieved.
|
||||||
|
* @param {string} authField - The specific authentication field (e.g., 'API_KEY', 'URL') whose value is to be retrieved and decrypted.
|
||||||
|
* @returns {Promise<string|null>} A promise that resolves to the decrypted authentication value if found, or `null` if no such authentication value exists for the given user and field.
|
||||||
|
*
|
||||||
|
* The function throws an error if it encounters any issue during the retrieval or decryption process, or if the authentication value does not exist.
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* // To get the decrypted value of the 'token' field for a user with userId '12345':
|
||||||
|
* getUserPluginAuthValue('12345', 'token').then(value => {
|
||||||
|
* console.log(value);
|
||||||
|
* }).catch(err => {
|
||||||
|
* console.error(err);
|
||||||
|
* });
|
||||||
|
*
|
||||||
|
* @throws {Error} Throws an error if there's an issue during the retrieval or decryption process, or if the authentication value does not exist.
|
||||||
|
* @async
|
||||||
|
*/
|
||||||
|
const getUserPluginAuthValue = async (userId, authField) => {
|
||||||
try {
|
try {
|
||||||
const pluginAuth = await PluginAuth.findOne({ user, authField }).lean();
|
const pluginAuth = await PluginAuth.findOne({ userId, authField }).lean();
|
||||||
if (!pluginAuth) {
|
if (!pluginAuth) {
|
||||||
return null;
|
throw new Error(`No plugin auth ${authField} found for user ${userId}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
const decryptedValue = decrypt(pluginAuth.value);
|
const decryptedValue = decrypt(pluginAuth.value);
|
||||||
return decryptedValue;
|
return decryptedValue;
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
logger.error('[getUserPluginAuthValue]', err);
|
logger.error('[getUserPluginAuthValue]', err);
|
||||||
return err;
|
throw err;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue