Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🖼️ fix: Avatar Handling for Agents and Assistants #4507

Merged
merged 1 commit into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions api/server/controllers/agents/v1.js
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,6 @@ const uploadAgentAvatarHandler = async (req, res) => {
return res.status(400).json({ message: 'Agent ID is required' });
}

let { avatar: _avatar = '{}' } = req.body;

const image = await uploadImageBuffer({
req,
context: FileContext.avatar,
Expand All @@ -236,18 +234,20 @@ const uploadAgentAvatarHandler = async (req, res) => {
},
});

let _avatar;
try {
_avatar = JSON.parse(_avatar);
const agent = await getAgent({ id: agent_id });
_avatar = agent.avatar;
} catch (error) {
logger.error('[/avatar/:agent_id] Error parsing avatar', error);
logger.error('[/avatar/:agent_id] Error fetching agent', error);
_avatar = {};
}

if (_avatar && _avatar.source) {
const { deleteFile } = getStrategyFunctions(_avatar.source);
try {
await deleteFile(req, { filepath: _avatar.filepath });
await deleteFileByFilter({ filepath: _avatar.filepath });
await deleteFileByFilter({ user: req.user.id, filepath: _avatar.filepath });
} catch (error) {
logger.error('[/avatar/:agent_id] Error deleting old avatar', error);
}
Expand Down
13 changes: 8 additions & 5 deletions api/server/controllers/assistants/v1.js
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,6 @@ const getAssistantDocuments = async (req, res) => {
* @param {string} req.params.assistant_id - The ID of the assistant.
* @param {Express.Multer.File} req.file - The avatar image file.
* @param {object} req.body - Request body
* @param {string} [req.body.metadata] - Optional metadata for the assistant's avatar.
* @returns {Object} 200 - success response - application/json
*/
const uploadAssistantAvatar = async (req, res) => {
Expand All @@ -251,7 +250,6 @@ const uploadAssistantAvatar = async (req, res) => {
return res.status(400).json({ message: 'Assistant ID is required' });
}

let { metadata: _metadata = '{}' } = req.body;
const { openai } = await getOpenAIClient({ req, res });
await validateAuthor({ req, openai });

Expand All @@ -263,18 +261,23 @@ const uploadAssistantAvatar = async (req, res) => {
},
});

let _metadata;

try {
_metadata = JSON.parse(_metadata);
const assistant = await openai.beta.assistants.retrieve(assistant_id);
if (assistant) {
_metadata = assistant.metadata;
}
} catch (error) {
logger.error('[/avatar/:assistant_id] Error parsing metadata', error);
logger.error('[/avatar/:assistant_id] Error fetching assistant', error);
_metadata = {};
}

if (_metadata.avatar && _metadata.avatar_source) {
const { deleteFile } = getStrategyFunctions(_metadata.avatar_source);
try {
await deleteFile(req, { filepath: _metadata.avatar });
await deleteFileByFilter({ filepath: _metadata.avatar });
await deleteFileByFilter({ user: req.user.id, filepath: _metadata.avatar });
} catch (error) {
logger.error('[/avatar/:assistant_id] Error deleting old avatar', error);
}
Expand Down
16 changes: 14 additions & 2 deletions api/server/services/Files/Local/crud.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,20 @@ const deleteLocalFile = async (req, file) => {
}

if (file.filepath.startsWith(`/uploads/${req.user.id}`)) {
const basePath = file.filepath.split('/uploads/')[1];
const filepath = path.join(uploads, basePath);
const userUploadDir = path.join(uploads, req.user.id);
const basePath = file.filepath.split(`/uploads/${req.user.id}/`)[1];

if (!basePath) {
throw new Error(`Invalid file path: ${file.filepath}`);
}

const filepath = path.join(userUploadDir, basePath);

const rel = path.relative(userUploadDir, filepath);
if (rel.startsWith('..') || path.isAbsolute(rel) || rel.includes(`..${path.sep}`)) {
throw new Error(`Invalid file path: ${file.filepath}`);
}

await fs.promises.unlink(filepath);
return;
}
Expand Down
4 changes: 0 additions & 4 deletions client/src/components/SidePanel/Agents/AgentAvatar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,6 @@ function Avatar({
formData.append('file', input, input.name);
formData.append('agent_id', createMutation.data.id);

if (typeof createMutation.data.avatar === 'object') {
formData.append('avatar', JSON.stringify(createMutation.data.avatar));
}

uploadAvatar({
agent_id: createMutation.data.id,
postCreation: true,
Expand Down
29 changes: 10 additions & 19 deletions client/src/components/SidePanel/Builder/AssistantAvatar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ function Avatar({
setInput(null);
setPreviewUrl(data.metadata?.avatar as string | null);

const res = queryClient.getQueryData<AssistantListResponse>([
const res = queryClient.getQueryData<AssistantListResponse | undefined>([
QueryKeys.assistants,
endpoint,
defaultOrderQuery,
Expand All @@ -78,16 +78,15 @@ function Avatar({
return;
}

const assistants =
res.data.map((assistant) => {
if (assistant.id === assistant_id) {
return {
...assistant,
...data,
};
}
return assistant;
}) ?? [];
const assistants = res.data.map((assistant) => {
if (assistant.id === assistant_id) {
return {
...assistant,
...data,
};
}
return assistant;
});

queryClient.setQueryData<AssistantListResponse>(
[QueryKeys.assistants, endpoint, defaultOrderQuery],
Expand Down Expand Up @@ -149,10 +148,6 @@ function Avatar({
formData.append('file', input, input.name);
formData.append('assistant_id', createMutation.data.id);

if (typeof createMutation.data.metadata === 'object') {
formData.append('metadata', JSON.stringify(createMutation.data.metadata));
}

uploadAvatar({
assistant_id: createMutation.data.id,
model: activeModel,
Expand Down Expand Up @@ -195,10 +190,6 @@ function Avatar({
formData.append('file', file, file.name);
formData.append('assistant_id', assistant_id);

if (typeof metadata === 'object') {
formData.append('metadata', JSON.stringify(metadata));
}

uploadAvatar({
assistant_id,
model: activeModel,
Expand Down
Loading