mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-22 06:00:56 +02:00

* localization + api-endpoint * docs: added firebase documentation * chore: icons * chore: SettingsTabs * feat: account pannel; fix: gear icons * docs: position update * feat: firebase * feat: plugin support * route * fixed bugs with firebase and moved a lot of files * chore(DALLE3): using UUID v4 * feat: support for social strategies; moved '/images' path * fix: data ignored * gitignore update * docs: update firebase guide * refactor: Firebase - use singleton pattern for firebase initialization, initially on server start - reorganize imports, move firebase specific files to own service under Files - rename modules to remove 'avatar' redundancy - fix imports based on changes * ci(DALLE/DALLE3): fix tests to use logger and new expected outputs, add firebase tests * refactor(loadToolWithAuth): pass userId to tool as field * feat(images/parse): feat: Add URL Image Basename Extraction Implement a new module to extract the basename of an image from a given URL. This addition includes the function, which parses the URL and retrieves the basename using the Node.js 'url' and 'path' modules. The function is documented with JSDoc comments for better maintainability and understanding. This feature enhances the application's ability to handle and process image URLs efficiently. * refactor(addImages): function to use a more specific regular expression for observedImagePath based on the generated image markdown standard across the app * refactor(DALLE/DALLE3): utilize `getImageBasename` and `this.userId`; fix: pass correct image path to firebase url helper * fix(addImages): make more general to match any image markdown descriptor * fix(parse/getImageBasename): test result of this function for an actual image basename * ci(DALLE3): mock getImageBasename * refactor(AuthContext): use Recoil atom state for user * feat: useUploadAvatarMutation, react-query hook for avatar upload * fix(Toast): stack z-order of Toast over all components (1000) * refactor(showToast): add optional status field to avoid importing NotificationSeverity on each use of the function * refactor(routes/avatar): remove unnecessary get route, get userId from req.user.id, require auth on POST request * chore(uploadAvatar): TODO: remove direct use of Model, `User` * fix(client): fix Spinner imports * refactor(Avatar): use react-query hook, Toast, remove unnecessary states, add optimistic UI to upload * fix(avatar/localStrategy): correctly save local profile picture and cache bust for immediate rendering; fix: firebase init info message (only show once) * fix: use `includes` instead of `endsWith` for checking manual query of avatar image path in case more queries are appended (as is done in avatar/localStrategy) --------- Co-authored-by: Danny Avila <messagedaniel@protonmail.com>
63 lines
2.1 KiB
JavaScript
63 lines
2.1 KiB
JavaScript
const sharp = require('sharp');
|
|
const fetch = require('node-fetch');
|
|
const fs = require('fs').promises;
|
|
const User = require('~/models/User');
|
|
const { getFirebaseStorage } = require('~/server/services/Files/Firebase/initialize');
|
|
const firebaseStrategy = require('./firebaseStrategy');
|
|
const localStrategy = require('./localStrategy');
|
|
const { logger } = require('~/config');
|
|
|
|
async function convertToWebP(inputBuffer) {
|
|
return sharp(inputBuffer).resize({ width: 150 }).toFormat('webp').toBuffer();
|
|
}
|
|
|
|
async function uploadAvatar(userId, input, manual) {
|
|
try {
|
|
if (userId === undefined) {
|
|
throw new Error('User ID is undefined');
|
|
}
|
|
const _id = userId;
|
|
// TODO: remove direct use of Model, `User`
|
|
const oldUser = await User.findOne({ _id });
|
|
let imageBuffer;
|
|
if (typeof input === 'string') {
|
|
const response = await fetch(input);
|
|
|
|
if (!response.ok) {
|
|
throw new Error(`Failed to fetch image from URL. Status: ${response.status}`);
|
|
}
|
|
imageBuffer = await response.buffer();
|
|
} else if (input instanceof Buffer) {
|
|
imageBuffer = input;
|
|
} else if (typeof input === 'object' && input instanceof File) {
|
|
const fileContent = await fs.readFile(input.path);
|
|
imageBuffer = Buffer.from(fileContent);
|
|
} else {
|
|
throw new Error('Invalid input type. Expected URL, Buffer, or File.');
|
|
}
|
|
const { width, height } = await sharp(imageBuffer).metadata();
|
|
const minSize = Math.min(width, height);
|
|
const squaredBuffer = await sharp(imageBuffer)
|
|
.extract({
|
|
left: Math.floor((width - minSize) / 2),
|
|
top: Math.floor((height - minSize) / 2),
|
|
width: minSize,
|
|
height: minSize,
|
|
})
|
|
.toBuffer();
|
|
const webPBuffer = await convertToWebP(squaredBuffer);
|
|
const storage = getFirebaseStorage();
|
|
if (storage) {
|
|
const url = await firebaseStrategy(userId, webPBuffer, oldUser, manual);
|
|
return url;
|
|
}
|
|
|
|
const url = await localStrategy(userId, webPBuffer, oldUser, manual);
|
|
return url;
|
|
} catch (error) {
|
|
logger.error('Error uploading the avatar:', error);
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
module.exports = uploadAvatar;
|