mirror of
https://github.com/Studio-Saelix/sencho.git
synced 2026-08-19 14:56:27 +00:00
feat(volumes): add read-only volume browser (#926)
* feat(volumes): add read-only volume browser Adds a browser for the contents of any Docker named volume. Click the folder icon on a volume row (admin only) to open a sheet with a directory tree on the left and a file viewer on the right. Backend ------- New VolumeBrowserService spawns a one-shot Alpine 3.20 helper container with the target volume mounted read-only at /v. The container runs as nobody (65534:65534) with a read-only rootfs, no network, all caps dropped, no-new-privileges, and capped at 64 PIDs and 128 MiB. The helper image is pulled on first use per node. Listing and stat use a portable busybox-compatible shell loop (find -printf is not available on Alpine). Reads use head -c with an explicit -- separator; the helper's working directory is /v so user paths are passed as ./<path> argv elements and never as flags. The container lifecycle is managed manually (create, attach, start, wait, remove) to avoid the AutoRemove race where dockerode sees a 404 on its post-exit container lookup. Path safety: relative paths are sanitized server-side, rejecting parent-escape segments, absolute paths, null bytes, and oversized input. Symlinks are listed but never followed on read. Files larger than 5 MB are truncated; binary content is detected via null-byte scan and returned base64-encoded. Non-zero helper exits map to 404, 403, or 500 by classifying stderr. Routes mounted at /api/volumes: - GET /:name/list?path= - GET /:name/stat?path= - GET /:name/read?path= All three require admin. The read endpoint always inserts an audit log row (success or failure) with the actual response status code, volume name, and relative path. Frontend -------- FileTree generalized to take a loadDir callback and a sourceKey instead of a hard-coded stackName. The single existing consumer (StackFileExplorer) was updated and its tests rewritten. The loader is read through a ref so re-creating the arrow on every parent render does not re-trigger the root fetch effect. New VolumeBrowserSheet renders the tree against the volume API, shows file content (hex view for binaries), and surfaces truncation. Rapid sheet open and reopen on different volumes is generation- checked to avoid stomping the visible result with a stale read. A persistent footnote reminds the user that file reads are recorded in the audit log, and the docs page warns about the typical contents of database volumes. Tests ----- 15 new vitest cases cover the pure helpers (path traversal, volume name validation, binary detection). The Docker-facing exec path is exercised by manual end-to-end via curl against a seeded volume. * fix(volumes): truncate long volume names in browser sheet header Wide volume names overlapped the close X. Reserve right padding on the header, set min-w-0 on the flex title, mark the icon and refresh button shrink-0, and truncate the name span. * fix(volumes): satisfy lint on volume browser additions prefer-const on sanitizeRelPath's local; drop unused FileTree entry arg from the file-select callback (variance lets the arrow take fewer params than the contract).
This commit is contained in:
@@ -0,0 +1,171 @@
|
||||
import { useCallback, useEffect, useRef, useState } from 'react';
|
||||
import { HardDrive, RefreshCw } from 'lucide-react';
|
||||
import { Sheet, SheetContent, SheetHeader, SheetTitle } from '@/components/ui/sheet';
|
||||
import { Skeleton } from '@/components/ui/skeleton';
|
||||
import { Button } from '@/components/ui/button';
|
||||
import { toast } from '@/components/ui/toast-store';
|
||||
import { FileTree } from '@/components/files/FileTree';
|
||||
import type { FileEntry } from '@/lib/stackFilesApi';
|
||||
import { listVolumeDirectory, readVolumeFile } from '@/lib/volumeApi';
|
||||
import type { VolumeFileResult } from '@/lib/volumeApi';
|
||||
import { formatBytes } from '@/lib/utils';
|
||||
|
||||
interface VolumeBrowserSheetProps {
|
||||
volumeName: string | null;
|
||||
onClose: () => void;
|
||||
}
|
||||
|
||||
export function VolumeBrowserSheet({ volumeName, onClose }: VolumeBrowserSheetProps) {
|
||||
const [refreshKey, setRefreshKey] = useState(0);
|
||||
const [selectedPath, setSelectedPath] = useState<string>('');
|
||||
const [fileLoading, setFileLoading] = useState(false);
|
||||
const [fileResult, setFileResult] = useState<VolumeFileResult | null>(null);
|
||||
// Generation counter so a slow read for a stale (volume, path) selection
|
||||
// cannot stomp the visible result after the user has moved on.
|
||||
const readGenerationRef = useRef(0);
|
||||
|
||||
useEffect(() => {
|
||||
// Cancel any in-flight read when the volume context changes.
|
||||
readGenerationRef.current += 1;
|
||||
}, [volumeName]);
|
||||
|
||||
const handleSelectFile = useCallback(async (relPath: string) => {
|
||||
if (!volumeName) return;
|
||||
const generation = ++readGenerationRef.current;
|
||||
const targetVolume = volumeName;
|
||||
setSelectedPath(relPath);
|
||||
setFileLoading(true);
|
||||
setFileResult(null);
|
||||
try {
|
||||
const result = await readVolumeFile(targetVolume, relPath);
|
||||
if (readGenerationRef.current !== generation) return;
|
||||
setFileResult(result);
|
||||
} catch (err: unknown) {
|
||||
if (readGenerationRef.current !== generation) return;
|
||||
const msg = err instanceof Error ? err.message : 'Failed to read file.';
|
||||
toast.error(msg);
|
||||
} finally {
|
||||
if (readGenerationRef.current === generation) setFileLoading(false);
|
||||
}
|
||||
}, [volumeName]);
|
||||
|
||||
const handleClose = (open: boolean) => {
|
||||
if (!open) {
|
||||
setSelectedPath('');
|
||||
setFileResult(null);
|
||||
setFileLoading(false);
|
||||
onClose();
|
||||
}
|
||||
};
|
||||
|
||||
const loadDir = useCallback(
|
||||
(relPath: string) => {
|
||||
if (!volumeName) return Promise.resolve<FileEntry[]>([]);
|
||||
return listVolumeDirectory(volumeName, relPath);
|
||||
},
|
||||
[volumeName]
|
||||
);
|
||||
|
||||
return (
|
||||
<Sheet open={!!volumeName} onOpenChange={handleClose}>
|
||||
<SheetContent className="sm:max-w-3xl">
|
||||
<SheetHeader className="pr-10">
|
||||
<SheetTitle className="flex items-center gap-2 min-w-0">
|
||||
<HardDrive className="w-4 h-4 text-muted-foreground shrink-0" strokeWidth={1.5} />
|
||||
<span className="font-mono text-sm truncate">{volumeName}</span>
|
||||
<Button
|
||||
variant="ghost"
|
||||
size="icon"
|
||||
className="h-7 w-7 ml-auto shrink-0"
|
||||
onClick={() => setRefreshKey((k) => k + 1)}
|
||||
title="Refresh tree"
|
||||
aria-label="Refresh tree"
|
||||
>
|
||||
<RefreshCw className="w-3.5 h-3.5" strokeWidth={1.5} />
|
||||
</Button>
|
||||
</SheetTitle>
|
||||
</SheetHeader>
|
||||
|
||||
{volumeName && (
|
||||
<div className="grid grid-cols-[260px_1fr] gap-3 mt-4 h-[calc(100vh-180px)]">
|
||||
<div className="rounded-md border border-card-border bg-card overflow-hidden">
|
||||
<FileTree
|
||||
key={`${volumeName}:${refreshKey}`}
|
||||
sourceKey={volumeName}
|
||||
loadDir={loadDir}
|
||||
refreshKey={refreshKey}
|
||||
selectedPath={selectedPath}
|
||||
onSelectFile={handleSelectFile}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="rounded-md border border-card-border bg-card overflow-hidden flex flex-col">
|
||||
{!selectedPath && (
|
||||
<div className="flex-1 flex items-center justify-center p-6 text-xs text-muted-foreground italic">
|
||||
Select a file to preview.
|
||||
</div>
|
||||
)}
|
||||
{selectedPath && fileLoading && (
|
||||
<div className="p-3 space-y-2">
|
||||
<Skeleton className="h-4 w-1/3" />
|
||||
<Skeleton className="h-4 w-full" />
|
||||
<Skeleton className="h-4 w-full" />
|
||||
<Skeleton className="h-4 w-3/4" />
|
||||
</div>
|
||||
)}
|
||||
{selectedPath && !fileLoading && fileResult && (
|
||||
<FileResultPanel path={selectedPath} result={fileResult} />
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
|
||||
<p className="mt-3 text-[11px] text-muted-foreground">
|
||||
File reads are recorded in the audit log.
|
||||
</p>
|
||||
</SheetContent>
|
||||
</Sheet>
|
||||
);
|
||||
}
|
||||
|
||||
function FileResultPanel({ path, result }: { path: string; result: VolumeFileResult }) {
|
||||
const decoded = result.binary ? base64ToHex(result.content) : result.content;
|
||||
return (
|
||||
<div className="flex-1 flex flex-col min-h-0">
|
||||
<div className="flex items-center justify-between gap-3 px-3 py-2 border-b border-card-border">
|
||||
<span className="font-mono text-[11px] text-muted-foreground truncate" title={path}>{path}</span>
|
||||
<span className="text-[11px] text-muted-foreground tabular-nums">
|
||||
{formatBytes(result.size)}{result.binary ? ' · binary' : ''}{result.truncated ? ' · truncated' : ''}
|
||||
</span>
|
||||
</div>
|
||||
{result.truncated && (
|
||||
<div className="px-3 py-1.5 text-[11px] text-warning bg-warning/10 border-b border-card-border">
|
||||
Showing first {formatBytes(5 * 1024 * 1024)}. Larger files cannot be downloaded from this view.
|
||||
</div>
|
||||
)}
|
||||
<pre className="flex-1 overflow-auto p-3 font-mono text-[11px] whitespace-pre-wrap break-all leading-relaxed">
|
||||
{decoded}
|
||||
</pre>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
function base64ToHex(b64: string): string {
|
||||
try {
|
||||
const binary = atob(b64);
|
||||
const out: string[] = [];
|
||||
for (let i = 0; i < binary.length; i += 16) {
|
||||
const offset = i.toString(16).padStart(8, '0');
|
||||
const chunk = binary.slice(i, i + 16);
|
||||
const hex = Array.from(chunk).map((c) => c.charCodeAt(0).toString(16).padStart(2, '0')).join(' ');
|
||||
const ascii = Array.from(chunk).map((c) => {
|
||||
const code = c.charCodeAt(0);
|
||||
return code >= 32 && code <= 126 ? c : '.';
|
||||
}).join('');
|
||||
out.push(`${offset} ${hex.padEnd(48, ' ')} ${ascii}`);
|
||||
}
|
||||
return out.join('\n');
|
||||
} catch {
|
||||
return '(unable to decode binary content)';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user