mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-19 18:00:15 +01:00
* chore: fix `endpoint` typescript issues and typo in console info message * feat(api): files GET endpoint and save only file_id references to messages * refactor(client): `useGetFiles` query hook, update file types, optimistic update of filesQuery on file upload * refactor(buildTree): update to use params object and accept fileMap * feat: map files to messages; refactor(ChatView): messages only available after files are fetched * fix: fetch files only when authenticated * feat(api): AppService - rename app.locals.configs to app.locals.paths - load custom config use fileStrategy from yaml config in app.locals * refactor: separate Firebase and Local strategies, call based on config * refactor: modularize file strategies and employ with use of DALL-E * refactor(librechat.yaml): add fileStrategy field * feat: add source to MongoFile schema, as well as BatchFile, and ExtendedFile types * feat: employ file strategies for upload/delete files * refactor(deleteFirebaseFile): add user id validation for firebase file deletion * chore(deleteFirebaseFile): update jsdocs * feat: employ strategies for vision requests * fix(client): handle messages with deleted files * fix(client): ensure `filesToDelete` always saves/sends `file.source` * feat(openAI): configurable `resendImages` and `imageDetail` * refactor(getTokenCountForMessage): recursive process only when array of Objects and only their values (not keys) aside from `image_url` types * feat(OpenAIClient): calculateImageTokenCost * chore: remove comment * refactor(uploadAvatar): employ fileStrategy for avatars, from social logins or user upload * docs: update docs on how to configure fileStrategy * fix(ci): mock winston and winston related modules, update DALLE3.spec.js with changes made * refactor(redis): change terminal message to reflect current development state * fix(DALL-E-2): pass fileStrategy to dall-e
278 lines
8.2 KiB
TypeScript
278 lines
8.2 KiB
TypeScript
import { v4 } from 'uuid';
|
|
import debounce from 'lodash/debounce';
|
|
import { QueryKeys } from 'librechat-data-provider';
|
|
import { useQueryClient } from '@tanstack/react-query';
|
|
import { useState, useEffect, useCallback } from 'react';
|
|
import type { TFile } from 'librechat-data-provider';
|
|
import type { ExtendedFile } from '~/common';
|
|
import { useToastContext } from '~/Providers/ToastContext';
|
|
import { useChatContext } from '~/Providers/ChatContext';
|
|
import { useUploadImageMutation } from '~/data-provider';
|
|
import useSetFilesToDelete from './useSetFilesToDelete';
|
|
import { NotificationSeverity } from '~/common';
|
|
|
|
const sizeMB = 20;
|
|
const maxSize = 25;
|
|
const fileLimit = 10;
|
|
const sizeLimit = sizeMB * 1024 * 1024; // 20 MB
|
|
const totalSizeLimit = maxSize * 1024 * 1024; // 25 MB
|
|
const supportedTypes = ['image/jpeg', 'image/jpg', 'image/png', 'image/webp'];
|
|
|
|
const useFileHandling = () => {
|
|
const queryClient = useQueryClient();
|
|
const { showToast } = useToastContext();
|
|
const [errors, setErrors] = useState<string[]>([]);
|
|
const setError = (error: string) => setErrors((prevErrors) => [...prevErrors, error]);
|
|
const { files, setFiles, setFilesLoading } = useChatContext();
|
|
const setFilesToDelete = useSetFilesToDelete();
|
|
|
|
const displayToast = useCallback(() => {
|
|
if (errors.length > 1) {
|
|
const errorList = Array.from(new Set(errors))
|
|
.map((e, i) => `${i > 0 ? '• ' : ''}${e}\n`)
|
|
.join('');
|
|
showToast({
|
|
message: errorList,
|
|
severity: NotificationSeverity.ERROR,
|
|
duration: 5000,
|
|
});
|
|
} else if (errors.length === 1) {
|
|
showToast({
|
|
message: errors[0],
|
|
severity: NotificationSeverity.ERROR,
|
|
duration: 5000,
|
|
});
|
|
}
|
|
|
|
setErrors([]);
|
|
}, [errors, showToast]);
|
|
|
|
const debouncedDisplayToast = debounce(displayToast, 250);
|
|
|
|
useEffect(() => {
|
|
if (errors.length > 0) {
|
|
debouncedDisplayToast();
|
|
}
|
|
|
|
return () => debouncedDisplayToast.cancel();
|
|
}, [errors, debouncedDisplayToast]);
|
|
|
|
const addFile = (newFile: ExtendedFile) => {
|
|
setFiles((currentFiles) => {
|
|
const updatedFiles = new Map(currentFiles);
|
|
updatedFiles.set(newFile.file_id, newFile);
|
|
return updatedFiles;
|
|
});
|
|
};
|
|
|
|
const replaceFile = (newFile: ExtendedFile) => {
|
|
setFiles((currentFiles) => {
|
|
const updatedFiles = new Map(currentFiles);
|
|
updatedFiles.set(newFile.file_id, newFile);
|
|
return updatedFiles;
|
|
});
|
|
};
|
|
|
|
const updateFileById = (fileId: string, updates: Partial<ExtendedFile>) => {
|
|
setFiles((currentFiles) => {
|
|
if (!currentFiles.has(fileId)) {
|
|
console.warn(`File with id ${fileId} not found.`);
|
|
return currentFiles;
|
|
}
|
|
|
|
const updatedFiles = new Map(currentFiles);
|
|
const currentFile = updatedFiles.get(fileId);
|
|
if (!currentFile) {
|
|
console.warn(`File with id ${fileId} not found.`);
|
|
return currentFiles;
|
|
}
|
|
updatedFiles.set(fileId, { ...currentFile, ...updates });
|
|
|
|
if (updates['filepath'] && updates['progress'] !== 1) {
|
|
const files = Object.fromEntries(updatedFiles);
|
|
setFilesToDelete(files);
|
|
}
|
|
|
|
return updatedFiles;
|
|
});
|
|
};
|
|
|
|
const deleteFileById = (fileId: string) => {
|
|
setFiles((currentFiles) => {
|
|
const updatedFiles = new Map(currentFiles);
|
|
if (updatedFiles.has(fileId)) {
|
|
updatedFiles.delete(fileId);
|
|
} else {
|
|
console.warn(`File with id ${fileId} not found.`);
|
|
}
|
|
|
|
const files = Object.fromEntries(updatedFiles);
|
|
setFilesToDelete(files);
|
|
return updatedFiles;
|
|
});
|
|
};
|
|
|
|
const uploadImage = useUploadImageMutation({
|
|
onSuccess: (data) => {
|
|
console.log('upload success', data);
|
|
updateFileById(data.temp_file_id, {
|
|
progress: 0.9,
|
|
filepath: data.filepath,
|
|
});
|
|
|
|
const _files = queryClient.getQueryData<TFile[]>([QueryKeys.files]) ?? [];
|
|
queryClient.setQueryData([QueryKeys.files], [..._files, data]);
|
|
|
|
setTimeout(() => {
|
|
updateFileById(data.temp_file_id, {
|
|
progress: 1,
|
|
file_id: data.file_id,
|
|
temp_file_id: data.temp_file_id,
|
|
filepath: data.filepath,
|
|
type: data.type,
|
|
height: data.height,
|
|
width: data.width,
|
|
filename: data.filename,
|
|
source: data.source,
|
|
});
|
|
}, 300);
|
|
},
|
|
onError: (error, body) => {
|
|
console.log('upload error', error);
|
|
deleteFileById(body.file_id);
|
|
setError('An error occurred while uploading the file.');
|
|
},
|
|
});
|
|
|
|
const uploadFile = async (extendedFile: ExtendedFile) => {
|
|
const formData = new FormData();
|
|
formData.append('file', extendedFile.file);
|
|
formData.append('file_id', extendedFile.file_id);
|
|
if (extendedFile.width) {
|
|
formData.append('width', extendedFile.width?.toString());
|
|
}
|
|
if (extendedFile.height) {
|
|
formData.append('height', extendedFile.height?.toString());
|
|
}
|
|
|
|
uploadImage.mutate({ formData, file_id: extendedFile.file_id });
|
|
};
|
|
|
|
const validateFiles = (fileList: File[]) => {
|
|
const existingFiles = Array.from(files.values());
|
|
const incomingTotalSize = fileList.reduce((total, file) => total + file.size, 0);
|
|
const currentTotalSize = existingFiles.reduce((total, file) => total + file.size, 0);
|
|
|
|
if (fileList.length + files.size > fileLimit) {
|
|
setError(`You can only upload up to ${fileLimit} files at a time.`);
|
|
return false;
|
|
}
|
|
|
|
for (let i = 0; i < fileList.length; i++) {
|
|
const originalFile = fileList[i];
|
|
if (!supportedTypes.includes(originalFile.type)) {
|
|
setError('Currently, only JPEG, JPG, PNG, and WEBP files are supported.');
|
|
return false;
|
|
}
|
|
|
|
if (originalFile.size >= sizeLimit) {
|
|
setError(`File size exceeds ${sizeMB} MB.`);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if (currentTotalSize + incomingTotalSize > totalSizeLimit) {
|
|
setError(`The total size of the files cannot exceed ${maxSize} MB.`);
|
|
return false;
|
|
}
|
|
|
|
const combinedFilesInfo = [
|
|
...existingFiles.map(
|
|
(file) => `${file.file.name}-${file.size}-${file.type?.split('/')[0] ?? 'file'}`,
|
|
),
|
|
...fileList.map((file) => `${file.name}-${file.size}-${file.type?.split('/')[0] ?? 'file'}`),
|
|
];
|
|
|
|
const uniqueFilesSet = new Set(combinedFilesInfo);
|
|
|
|
if (uniqueFilesSet.size !== combinedFilesInfo.length) {
|
|
setError('Duplicate file detected.');
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
};
|
|
|
|
const handleFiles = async (_files: FileList | File[]) => {
|
|
const fileList = Array.from(_files);
|
|
/* Validate files */
|
|
let filesAreValid: boolean;
|
|
try {
|
|
filesAreValid = validateFiles(fileList);
|
|
} catch (error) {
|
|
console.error('file validation error', error);
|
|
setError('An error occurred while validating the file.');
|
|
return;
|
|
}
|
|
if (!filesAreValid) {
|
|
setFilesLoading(false);
|
|
return;
|
|
}
|
|
|
|
/* Process files */
|
|
fileList.forEach((originalFile) => {
|
|
const file_id = v4();
|
|
try {
|
|
const preview = URL.createObjectURL(originalFile);
|
|
let extendedFile: ExtendedFile = {
|
|
file_id,
|
|
file: originalFile,
|
|
preview,
|
|
progress: 0.2,
|
|
size: originalFile.size,
|
|
};
|
|
|
|
addFile(extendedFile);
|
|
|
|
// async processing
|
|
const img = new Image();
|
|
img.onload = async () => {
|
|
extendedFile.width = img.width;
|
|
extendedFile.height = img.height;
|
|
extendedFile = {
|
|
...extendedFile,
|
|
progress: 0.6,
|
|
};
|
|
replaceFile(extendedFile);
|
|
|
|
await uploadFile(extendedFile);
|
|
URL.revokeObjectURL(preview);
|
|
};
|
|
img.src = preview;
|
|
} catch (error) {
|
|
deleteFileById(file_id);
|
|
console.log('file handling error', error);
|
|
setError('An error occurred while processing the file.');
|
|
}
|
|
});
|
|
};
|
|
|
|
const handleFileChange = (event: React.ChangeEvent<HTMLInputElement>) => {
|
|
event.stopPropagation();
|
|
if (event.target.files) {
|
|
setFilesLoading(true);
|
|
handleFiles(event.target.files);
|
|
// reset the input
|
|
event.target.value = '';
|
|
}
|
|
};
|
|
|
|
return {
|
|
handleFileChange,
|
|
handleFiles,
|
|
files,
|
|
setFiles,
|
|
};
|
|
};
|
|
|
|
export default useFileHandling;
|