2026-01-15 20:19:06 +02:00
|
|
|
import type {
|
|
|
|
|
DirectoryListResult,
|
|
|
|
|
FileSearchQuery,
|
|
|
|
|
FileSearchResult,
|
|
|
|
|
FilesAPI,
|
|
|
|
|
} from '@openchamber/ui/lib/api/types';
|
2025-12-07 19:32:53 +02:00
|
|
|
|
|
|
|
|
const normalizePath = (path: string): string => path.replace(/\\/g, '/');
|
|
|
|
|
|
2026-01-15 20:19:06 +02:00
|
|
|
type WebDirectoryEntry = {
|
|
|
|
|
name?: string;
|
|
|
|
|
path?: string;
|
|
|
|
|
isDirectory?: boolean;
|
|
|
|
|
isFile?: boolean;
|
|
|
|
|
isSymbolicLink?: boolean;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
type WebDirectoryListResponse = {
|
|
|
|
|
directory?: string;
|
|
|
|
|
path?: string;
|
|
|
|
|
entries?: WebDirectoryEntry[];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const toDirectoryListResult = (fallbackDirectory: string, payload: WebDirectoryListResponse): DirectoryListResult => {
|
|
|
|
|
const directory = normalizePath(payload?.directory || payload?.path || fallbackDirectory);
|
|
|
|
|
const entries = Array.isArray(payload?.entries) ? payload.entries : [];
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
directory,
|
|
|
|
|
entries: entries
|
|
|
|
|
.filter((entry): entry is Required<Pick<WebDirectoryEntry, 'name' | 'path'>> & { isDirectory?: boolean } =>
|
|
|
|
|
Boolean(entry && typeof entry.name === 'string' && typeof entry.path === 'string')
|
|
|
|
|
)
|
|
|
|
|
.map((entry) => ({
|
|
|
|
|
name: entry.name,
|
|
|
|
|
path: normalizePath(entry.path),
|
|
|
|
|
isDirectory: Boolean(entry.isDirectory),
|
|
|
|
|
})),
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2025-12-07 19:32:53 +02:00
|
|
|
export const createWebFilesAPI = (): FilesAPI => ({
|
|
|
|
|
async listDirectory(path: string): Promise<DirectoryListResult> {
|
|
|
|
|
const target = normalizePath(path);
|
2026-01-15 20:19:06 +02:00
|
|
|
const params = new URLSearchParams();
|
|
|
|
|
if (target) {
|
|
|
|
|
params.set('path', target);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const response = await fetch(`/api/fs/list${params.toString() ? `?${params.toString()}` : ''}`);
|
2025-12-07 19:32:53 +02:00
|
|
|
|
|
|
|
|
if (!response.ok) {
|
|
|
|
|
const error = await response.json().catch(() => ({ error: response.statusText }));
|
2026-01-15 20:19:06 +02:00
|
|
|
throw new Error((error as { error?: string }).error || 'Failed to list directory');
|
2025-12-07 19:32:53 +02:00
|
|
|
}
|
|
|
|
|
|
2026-01-15 20:19:06 +02:00
|
|
|
const result = (await response.json()) as WebDirectoryListResponse;
|
|
|
|
|
return toDirectoryListResult(target, result);
|
2025-12-07 19:32:53 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
async search(payload: FileSearchQuery): Promise<FileSearchResult[]> {
|
2026-01-15 20:19:06 +02:00
|
|
|
const params = new URLSearchParams();
|
|
|
|
|
|
|
|
|
|
const directory = normalizePath(payload.directory);
|
|
|
|
|
if (directory) {
|
|
|
|
|
params.set('directory', directory);
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-04 01:41:01 +02:00
|
|
|
params.set('query', payload.query);
|
|
|
|
|
params.set('dirs', 'false');
|
|
|
|
|
params.set('type', 'file');
|
2026-01-15 20:19:06 +02:00
|
|
|
|
|
|
|
|
if (typeof payload.maxResults === 'number' && Number.isFinite(payload.maxResults)) {
|
|
|
|
|
params.set('limit', String(payload.maxResults));
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-04 01:41:01 +02:00
|
|
|
const response = await fetch(`/api/find/file?${params.toString()}`);
|
2025-12-07 19:32:53 +02:00
|
|
|
|
|
|
|
|
if (!response.ok) {
|
|
|
|
|
const error = await response.json().catch(() => ({ error: response.statusText }));
|
2026-01-15 20:19:06 +02:00
|
|
|
throw new Error((error as { error?: string }).error || 'Failed to search files');
|
2025-12-07 19:32:53 +02:00
|
|
|
}
|
|
|
|
|
|
2026-03-04 01:41:01 +02:00
|
|
|
const result = (await response.json()) as string[];
|
|
|
|
|
const files = Array.isArray(result) ? result : [];
|
2026-01-15 20:19:06 +02:00
|
|
|
|
2026-03-04 01:41:01 +02:00
|
|
|
return files.map((relativePath) => ({
|
|
|
|
|
path: normalizePath(`${directory}/${relativePath}`),
|
|
|
|
|
preview: [normalizePath(relativePath)],
|
|
|
|
|
}));
|
2025-12-07 19:32:53 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
async createDirectory(path: string): Promise<{ success: boolean; path: string }> {
|
|
|
|
|
const target = normalizePath(path);
|
|
|
|
|
const response = await fetch('/api/fs/mkdir', {
|
|
|
|
|
method: 'POST',
|
|
|
|
|
headers: { 'Content-Type': 'application/json' },
|
|
|
|
|
body: JSON.stringify({ path: target }),
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (!response.ok) {
|
|
|
|
|
const error = await response.json().catch(() => ({ error: response.statusText }));
|
2026-01-15 20:19:06 +02:00
|
|
|
throw new Error((error as { error?: string }).error || 'Failed to create directory');
|
2025-12-07 19:32:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const result = await response.json();
|
|
|
|
|
return {
|
|
|
|
|
success: Boolean(result?.success),
|
|
|
|
|
path: typeof result?.path === 'string' ? normalizePath(result.path) : target,
|
|
|
|
|
};
|
|
|
|
|
},
|
2026-01-15 20:19:06 +02:00
|
|
|
|
2026-04-01 15:18:05 +08:00
|
|
|
async statFile(path: string): Promise<{ path: string; isFile: boolean; size: number }> {
|
|
|
|
|
const target = normalizePath(path);
|
|
|
|
|
const response = await fetch(`/api/fs/stat?path=${encodeURIComponent(target)}`);
|
|
|
|
|
|
|
|
|
|
if (!response.ok) {
|
|
|
|
|
const error = await response.json().catch(() => ({ error: response.statusText }));
|
|
|
|
|
throw new Error((error as { error?: string }).error || 'Failed to stat file');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const result = await response.json().catch(() => ({}));
|
|
|
|
|
return {
|
|
|
|
|
path: typeof (result as { path?: string }).path === 'string' ? normalizePath((result as { path: string }).path) : target,
|
|
|
|
|
isFile: Boolean((result as { isFile?: boolean }).isFile),
|
|
|
|
|
size: typeof (result as { size?: number }).size === 'number' ? (result as { size: number }).size : 0,
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
|
2026-01-15 20:19:06 +02:00
|
|
|
async readFile(path: string): Promise<{ content: string; path: string }> {
|
|
|
|
|
const target = normalizePath(path);
|
|
|
|
|
const response = await fetch(`/api/fs/read?path=${encodeURIComponent(target)}`);
|
|
|
|
|
|
|
|
|
|
if (!response.ok) {
|
|
|
|
|
const error = await response.json().catch(() => ({ error: response.statusText }));
|
|
|
|
|
throw new Error((error as { error?: string }).error || 'Failed to read file');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const content = await response.text();
|
|
|
|
|
return { content, path: target };
|
|
|
|
|
},
|
2026-01-18 17:29:22 +02:00
|
|
|
|
|
|
|
|
async writeFile(path: string, content: string): Promise<{ success: boolean; path: string }> {
|
|
|
|
|
const target = normalizePath(path);
|
|
|
|
|
const response = await fetch('/api/fs/write', {
|
|
|
|
|
method: 'POST',
|
|
|
|
|
headers: { 'Content-Type': 'application/json' },
|
|
|
|
|
body: JSON.stringify({ path: target, content }),
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (!response.ok) {
|
|
|
|
|
const error = await response.json().catch(() => ({ error: response.statusText }));
|
|
|
|
|
throw new Error((error as { error?: string }).error || 'Failed to write file');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const result = await response.json().catch(() => ({}));
|
|
|
|
|
return {
|
|
|
|
|
success: Boolean((result as { success?: boolean }).success),
|
|
|
|
|
path: typeof (result as { path?: string }).path === 'string' ? normalizePath((result as { path: string }).path) : target,
|
|
|
|
|
};
|
|
|
|
|
},
|
2026-01-22 22:24:11 +06:00
|
|
|
|
|
|
|
|
async delete(path: string): Promise<{ success: boolean }> {
|
|
|
|
|
const target = normalizePath(path);
|
|
|
|
|
const response = await fetch('/api/fs/delete', {
|
|
|
|
|
method: 'POST',
|
|
|
|
|
headers: { 'Content-Type': 'application/json' },
|
|
|
|
|
body: JSON.stringify({ path: target }),
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (!response.ok) {
|
|
|
|
|
const error = await response.json().catch(() => ({ error: response.statusText }));
|
|
|
|
|
throw new Error((error as { error?: string }).error || 'Failed to delete file');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const result = await response.json().catch(() => ({}));
|
|
|
|
|
return { success: Boolean((result as { success?: boolean }).success) };
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
async rename(oldPath: string, newPath: string): Promise<{ success: boolean; path: string }> {
|
|
|
|
|
const response = await fetch('/api/fs/rename', {
|
|
|
|
|
method: 'POST',
|
|
|
|
|
headers: { 'Content-Type': 'application/json' },
|
|
|
|
|
body: JSON.stringify({ oldPath, newPath }),
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (!response.ok) {
|
|
|
|
|
const error = await response.json().catch(() => ({ error: response.statusText }));
|
|
|
|
|
throw new Error((error as { error?: string }).error || 'Failed to rename file');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const result = await response.json().catch(() => ({}));
|
|
|
|
|
return {
|
|
|
|
|
success: Boolean((result as { success?: boolean }).success),
|
|
|
|
|
path: typeof (result as { path?: string }).path === 'string' ? normalizePath((result as { path: string }).path) : newPath,
|
|
|
|
|
};
|
|
|
|
|
},
|
2026-02-23 05:07:22 +07:00
|
|
|
|
|
|
|
|
async revealPath(targetPath: string): Promise<{ success: boolean }> {
|
|
|
|
|
const response = await fetch('/api/fs/reveal', {
|
|
|
|
|
method: 'POST',
|
|
|
|
|
headers: { 'Content-Type': 'application/json' },
|
|
|
|
|
body: JSON.stringify({ path: normalizePath(targetPath) }),
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (!response.ok) {
|
|
|
|
|
const error = await response.json().catch(() => ({ error: response.statusText }));
|
|
|
|
|
throw new Error((error as { error?: string }).error || 'Failed to reveal path');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const result = await response.json().catch(() => ({}));
|
|
|
|
|
return { success: Boolean((result as { success?: boolean }).success) };
|
|
|
|
|
},
|
2025-12-07 19:32:53 +02:00
|
|
|
});
|