mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-10-08 19:40:21 +00:00
Self-heal name files when missing or empty
This commit is contained in:
parent
5d17dcc29b
commit
a2833f4ab2
@ -112,9 +112,30 @@ public partial class Workspaces : MSGComponentBase
|
||||
// Enumerate the chat directories:
|
||||
foreach (var tempChatDirPath in Directory.EnumerateDirectories(temporaryDirectories))
|
||||
{
|
||||
// Read the `name` file:
|
||||
// Read or create the `name` file (self-heal):
|
||||
var chatNamePath = Path.Join(tempChatDirPath, "name");
|
||||
var chatName = await File.ReadAllTextAsync(chatNamePath, Encoding.UTF8);
|
||||
string chatName;
|
||||
try
|
||||
{
|
||||
if (!File.Exists(chatNamePath))
|
||||
{
|
||||
chatName = T("Unnamed chat");
|
||||
await File.WriteAllTextAsync(chatNamePath, chatName, Encoding.UTF8);
|
||||
}
|
||||
else
|
||||
{
|
||||
chatName = await File.ReadAllTextAsync(chatNamePath, Encoding.UTF8);
|
||||
if (string.IsNullOrWhiteSpace(chatName))
|
||||
{
|
||||
chatName = T("Unnamed chat");
|
||||
await File.WriteAllTextAsync(chatNamePath, chatName, Encoding.UTF8);
|
||||
}
|
||||
}
|
||||
}
|
||||
catch
|
||||
{
|
||||
chatName = T("Unnamed chat");
|
||||
}
|
||||
|
||||
// Read the last change time of the chat:
|
||||
var chatThreadPath = Path.Join(tempChatDirPath, "thread.json");
|
||||
@ -158,9 +179,30 @@ public partial class Workspaces : MSGComponentBase
|
||||
// Enumerate the workspace directories:
|
||||
foreach (var workspaceDirPath in Directory.EnumerateDirectories(workspaceDirectories))
|
||||
{
|
||||
// Read the `name` file:
|
||||
// Read or create the `name` file (self-heal):
|
||||
var workspaceNamePath = Path.Join(workspaceDirPath, "name");
|
||||
var workspaceName = await File.ReadAllTextAsync(workspaceNamePath, Encoding.UTF8);
|
||||
string workspaceName;
|
||||
try
|
||||
{
|
||||
if (!File.Exists(workspaceNamePath))
|
||||
{
|
||||
workspaceName = T("Unnamed workspace");
|
||||
await File.WriteAllTextAsync(workspaceNamePath, workspaceName, Encoding.UTF8);
|
||||
}
|
||||
else
|
||||
{
|
||||
workspaceName = await File.ReadAllTextAsync(workspaceNamePath, Encoding.UTF8);
|
||||
if (string.IsNullOrWhiteSpace(workspaceName))
|
||||
{
|
||||
workspaceName = T("Unnamed workspace");
|
||||
await File.WriteAllTextAsync(workspaceNamePath, workspaceName, Encoding.UTF8);
|
||||
}
|
||||
}
|
||||
}
|
||||
catch
|
||||
{
|
||||
workspaceName = T("Unnamed workspace");
|
||||
}
|
||||
|
||||
workspaces.Add(new TreeItemData<ITreeItem>
|
||||
{
|
||||
@ -194,9 +236,30 @@ public partial class Workspaces : MSGComponentBase
|
||||
// Enumerate the workspace directory:
|
||||
foreach (var chatPath in Directory.EnumerateDirectories(workspacePath))
|
||||
{
|
||||
// Read the `name` file:
|
||||
// Read or create the `name` file (self-heal):
|
||||
var chatNamePath = Path.Join(chatPath, "name");
|
||||
var chatName = await File.ReadAllTextAsync(chatNamePath, Encoding.UTF8);
|
||||
string chatName;
|
||||
try
|
||||
{
|
||||
if (!File.Exists(chatNamePath))
|
||||
{
|
||||
chatName = T("Unnamed chat");
|
||||
await File.WriteAllTextAsync(chatNamePath, chatName, Encoding.UTF8);
|
||||
}
|
||||
else
|
||||
{
|
||||
chatName = await File.ReadAllTextAsync(chatNamePath, Encoding.UTF8);
|
||||
if (string.IsNullOrWhiteSpace(chatName))
|
||||
{
|
||||
chatName = T("Unnamed chat");
|
||||
await File.WriteAllTextAsync(chatNamePath, chatName, Encoding.UTF8);
|
||||
}
|
||||
}
|
||||
}
|
||||
catch
|
||||
{
|
||||
chatName = T("Unnamed chat");
|
||||
}
|
||||
|
||||
// Read the last change time of the chat:
|
||||
var chatThreadPath = Path.Join(chatPath, "thread.json");
|
||||
|
@ -83,7 +83,33 @@ public static class WorkspaceBehaviour
|
||||
|
||||
var workspacePath = Path.Join(SettingsManager.DataDirectory, "workspaces", workspaceId.ToString());
|
||||
var workspaceNamePath = Path.Join(workspacePath, "name");
|
||||
return await File.ReadAllTextAsync(workspaceNamePath, Encoding.UTF8);
|
||||
|
||||
try
|
||||
{
|
||||
// If the name file does not exist or is empty, self-heal with a default name.
|
||||
if (!File.Exists(workspaceNamePath))
|
||||
{
|
||||
var defaultName = TB("Unnamed workspace");
|
||||
Directory.CreateDirectory(workspacePath);
|
||||
await File.WriteAllTextAsync(workspaceNamePath, defaultName, Encoding.UTF8);
|
||||
return defaultName;
|
||||
}
|
||||
|
||||
var name = await File.ReadAllTextAsync(workspaceNamePath, Encoding.UTF8);
|
||||
if (string.IsNullOrWhiteSpace(name))
|
||||
{
|
||||
var defaultName = TB("Unnamed workspace");
|
||||
await File.WriteAllTextAsync(workspaceNamePath, defaultName, Encoding.UTF8);
|
||||
return defaultName;
|
||||
}
|
||||
|
||||
return name;
|
||||
}
|
||||
catch
|
||||
{
|
||||
// On any error, return a localized default without throwing.
|
||||
return TB("Unnamed workspace");
|
||||
}
|
||||
}
|
||||
|
||||
public static async Task DeleteChat(IDialogService dialogService, Guid workspaceId, Guid chatId, bool askForConfirmation = true)
|
||||
@ -124,13 +150,30 @@ public static class WorkspaceBehaviour
|
||||
private static async Task EnsureWorkspace(Guid workspaceId, string workspaceName)
|
||||
{
|
||||
var workspacePath = Path.Join(SettingsManager.DataDirectory, "workspaces", workspaceId.ToString());
|
||||
|
||||
if(Path.Exists(workspacePath))
|
||||
return;
|
||||
|
||||
Directory.CreateDirectory(workspacePath);
|
||||
var workspaceNamePath = Path.Join(workspacePath, "name");
|
||||
await File.WriteAllTextAsync(workspaceNamePath, workspaceName, Encoding.UTF8);
|
||||
|
||||
if(!Path.Exists(workspacePath))
|
||||
Directory.CreateDirectory(workspacePath);
|
||||
|
||||
try
|
||||
{
|
||||
// When the name file is missing or empty, write it (self-heal).
|
||||
// Otherwise, keep the existing name:
|
||||
if (!File.Exists(workspaceNamePath))
|
||||
{
|
||||
await File.WriteAllTextAsync(workspaceNamePath, workspaceName, Encoding.UTF8);
|
||||
}
|
||||
else
|
||||
{
|
||||
var existing = await File.ReadAllTextAsync(workspaceNamePath, Encoding.UTF8);
|
||||
if (string.IsNullOrWhiteSpace(existing))
|
||||
await File.WriteAllTextAsync(workspaceNamePath, workspaceName, Encoding.UTF8);
|
||||
}
|
||||
}
|
||||
catch
|
||||
{
|
||||
// Ignore IO issues to avoid interrupting background initialization.
|
||||
}
|
||||
}
|
||||
|
||||
public static async Task EnsureBiasWorkspace() => await EnsureWorkspace(KnownWorkspaces.BIAS_WORKSPACE_ID, "Bias of the Day");
|
||||
|
Loading…
Reference in New Issue
Block a user