mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2026-04-25 08:56:21 +00:00
update storage-overview.tsx
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import { useEffect, useState } from "react"
|
import { useEffect, useState } from "react"
|
||||||
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
|
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
|
||||||
import { HardDrive, Database, AlertTriangle, CheckCircle2, XCircle, Square, Thermometer, Archive, Info, Clock, Usb, Server, Activity, FileText, Play, Loader2 } from "lucide-react"
|
import { HardDrive, Database, AlertTriangle, CheckCircle2, XCircle, Square, Thermometer, Archive, Info, Clock, Usb, Server, Activity, FileText, Play, Loader2, Download } from "lucide-react"
|
||||||
import { Badge } from "@/components/ui/badge"
|
import { Badge } from "@/components/ui/badge"
|
||||||
import { Progress } from "@/components/ui/progress"
|
import { Progress } from "@/components/ui/progress"
|
||||||
import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle } from "@/components/ui/dialog"
|
import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle } from "@/components/ui/dialog"
|
||||||
@@ -1869,6 +1869,10 @@ interface SmartTestStatus {
|
|||||||
status: 'ok' | 'warning' | 'critical'
|
status: 'ok' | 'warning' | 'critical'
|
||||||
}>
|
}>
|
||||||
}
|
}
|
||||||
|
tools_installed?: {
|
||||||
|
smartctl: boolean
|
||||||
|
nvme: boolean
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function SmartTestTab({ disk }: SmartTestTabProps) {
|
function SmartTestTab({ disk }: SmartTestTabProps) {
|
||||||
@@ -1897,6 +1901,35 @@ function SmartTestTab({ disk }: SmartTestTabProps) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const [testError, setTestError] = useState<string | null>(null)
|
const [testError, setTestError] = useState<string | null>(null)
|
||||||
|
const [installing, setInstalling] = useState(false)
|
||||||
|
|
||||||
|
// Check if required tools are installed for this disk type
|
||||||
|
const isNvme = disk.name.startsWith('nvme')
|
||||||
|
const toolsAvailable = testStatus.tools_installed
|
||||||
|
? (isNvme ? testStatus.tools_installed.nvme : testStatus.tools_installed.smartctl)
|
||||||
|
: true // Assume true until we get the status
|
||||||
|
|
||||||
|
const installSmartTools = async () => {
|
||||||
|
try {
|
||||||
|
setInstalling(true)
|
||||||
|
setTestError(null)
|
||||||
|
const res = await fetch('/api/storage/smart/tools/install', {
|
||||||
|
method: 'POST',
|
||||||
|
headers: { 'Content-Type': 'application/json' },
|
||||||
|
body: JSON.stringify({ install_all: true })
|
||||||
|
})
|
||||||
|
const data = await res.json()
|
||||||
|
if (data.success) {
|
||||||
|
fetchSmartStatus()
|
||||||
|
} else {
|
||||||
|
setTestError(data.error || 'Installation failed. Try manually: apt-get install smartmontools nvme-cli')
|
||||||
|
}
|
||||||
|
} catch {
|
||||||
|
setTestError('Failed to install tools. Try manually: apt-get install smartmontools nvme-cli')
|
||||||
|
} finally {
|
||||||
|
setInstalling(false)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const runSmartTest = async (testType: 'short' | 'long') => {
|
const runSmartTest = async (testType: 'short' | 'long') => {
|
||||||
try {
|
try {
|
||||||
@@ -1944,6 +1977,50 @@ function SmartTestTab({ disk }: SmartTestTabProps) {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// If tools not available, show install button only
|
||||||
|
if (!toolsAvailable && !loading) {
|
||||||
|
return (
|
||||||
|
<div className="space-y-6">
|
||||||
|
<div className="space-y-4">
|
||||||
|
<div className="flex items-start gap-3 p-4 rounded-lg bg-amber-500/10 border border-amber-500/20">
|
||||||
|
<AlertTriangle className="h-5 w-5 text-amber-500 mt-0.5 flex-shrink-0" />
|
||||||
|
<div className="flex-1">
|
||||||
|
<p className="font-medium text-amber-500">SMART Tools Not Installed</p>
|
||||||
|
<p className="text-sm text-muted-foreground mt-1">
|
||||||
|
{isNvme
|
||||||
|
? 'nvme-cli is required to run SMART tests on NVMe disks.'
|
||||||
|
: 'smartmontools is required to run SMART tests on this disk.'}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Button
|
||||||
|
onClick={installSmartTools}
|
||||||
|
disabled={installing}
|
||||||
|
className="w-full gap-2 bg-[#4A9BA8] hover:bg-[#3d8591] text-white border-0"
|
||||||
|
>
|
||||||
|
{installing ? (
|
||||||
|
<Loader2 className="h-4 w-4 animate-spin" />
|
||||||
|
) : (
|
||||||
|
<Download className="h-4 w-4" />
|
||||||
|
)}
|
||||||
|
{installing ? 'Installing SMART Tools...' : 'Install SMART Tools'}
|
||||||
|
</Button>
|
||||||
|
|
||||||
|
{testError && (
|
||||||
|
<div className="flex items-start gap-2 p-3 rounded-lg bg-red-500/10 border border-red-500/20 text-red-400">
|
||||||
|
<AlertTriangle className="h-4 w-4 mt-0.5 flex-shrink-0" />
|
||||||
|
<div>
|
||||||
|
<p className="text-sm font-medium">Installation Failed</p>
|
||||||
|
<p className="text-xs opacity-80">{testError}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="space-y-6">
|
<div className="space-y-6">
|
||||||
{/* Quick Actions */}
|
{/* Quick Actions */}
|
||||||
@@ -2001,28 +2078,12 @@ function SmartTestTab({ disk }: SmartTestTabProps) {
|
|||||||
{testError && (
|
{testError && (
|
||||||
<div className="flex items-start gap-2 p-3 rounded-lg bg-red-500/10 border border-red-500/20 text-red-400">
|
<div className="flex items-start gap-2 p-3 rounded-lg bg-red-500/10 border border-red-500/20 text-red-400">
|
||||||
<AlertTriangle className="h-4 w-4 mt-0.5 flex-shrink-0" />
|
<AlertTriangle className="h-4 w-4 mt-0.5 flex-shrink-0" />
|
||||||
<div>
|
<div className="flex-1">
|
||||||
<p className="text-sm font-medium">Failed to start test</p>
|
<p className="text-sm font-medium">Failed to start test</p>
|
||||||
<p className="text-xs opacity-80">{testError}</p>
|
<p className="text-xs opacity-80">{testError}</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{/* Tools not installed warning */}
|
|
||||||
{testStatus.tools_installed && (!testStatus.tools_installed.smartctl || !testStatus.tools_installed.nvme) && (
|
|
||||||
<div className="flex items-start gap-2 p-3 rounded-lg bg-amber-500/10 border border-amber-500/20 text-amber-400">
|
|
||||||
<AlertTriangle className="h-4 w-4 mt-0.5 flex-shrink-0" />
|
|
||||||
<div>
|
|
||||||
<p className="text-sm font-medium">SMART tools not fully installed</p>
|
|
||||||
<p className="text-xs opacity-80">
|
|
||||||
{!testStatus.tools_installed.smartctl && 'smartmontools (for SATA/SAS) '}
|
|
||||||
{!testStatus.tools_installed.smartctl && !testStatus.tools_installed.nvme && 'and '}
|
|
||||||
{!testStatus.tools_installed.nvme && 'nvme-cli (for NVMe) '}
|
|
||||||
not found. Click a test button to auto-install.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Test Progress */}
|
{/* Test Progress */}
|
||||||
|
|||||||
@@ -6368,8 +6368,18 @@ def _ensure_smart_tools(install_if_missing=False):
|
|||||||
has_nvme = shutil.which('nvme') is not None
|
has_nvme = shutil.which('nvme') is not None
|
||||||
|
|
||||||
installed = {'smartctl': False, 'nvme': False}
|
installed = {'smartctl': False, 'nvme': False}
|
||||||
|
install_errors = []
|
||||||
|
|
||||||
if install_if_missing:
|
if install_if_missing and (not has_smartctl or not has_nvme):
|
||||||
|
# Run apt-get update first
|
||||||
|
try:
|
||||||
|
subprocess.run(
|
||||||
|
['apt-get', 'update'],
|
||||||
|
capture_output=True, text=True, timeout=60
|
||||||
|
)
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
if not has_smartctl:
|
if not has_smartctl:
|
||||||
try:
|
try:
|
||||||
# Install smartmontools
|
# Install smartmontools
|
||||||
@@ -6380,8 +6390,10 @@ def _ensure_smart_tools(install_if_missing=False):
|
|||||||
if proc.returncode == 0:
|
if proc.returncode == 0:
|
||||||
has_smartctl = shutil.which('smartctl') is not None
|
has_smartctl = shutil.which('smartctl') is not None
|
||||||
installed['smartctl'] = has_smartctl
|
installed['smartctl'] = has_smartctl
|
||||||
except Exception:
|
else:
|
||||||
pass
|
install_errors.append(f"smartmontools: {proc.stderr.strip()}")
|
||||||
|
except Exception as e:
|
||||||
|
install_errors.append(f"smartmontools: {str(e)}")
|
||||||
|
|
||||||
if not has_nvme:
|
if not has_nvme:
|
||||||
try:
|
try:
|
||||||
@@ -6393,13 +6405,16 @@ def _ensure_smart_tools(install_if_missing=False):
|
|||||||
if proc.returncode == 0:
|
if proc.returncode == 0:
|
||||||
has_nvme = shutil.which('nvme') is not None
|
has_nvme = shutil.which('nvme') is not None
|
||||||
installed['nvme'] = has_nvme
|
installed['nvme'] = has_nvme
|
||||||
except Exception:
|
else:
|
||||||
pass
|
install_errors.append(f"nvme-cli: {proc.stderr.strip()}")
|
||||||
|
except Exception as e:
|
||||||
|
install_errors.append(f"nvme-cli: {str(e)}")
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'smartctl': has_smartctl,
|
'smartctl': has_smartctl,
|
||||||
'nvme': has_nvme,
|
'nvme': has_nvme,
|
||||||
'just_installed': installed
|
'just_installed': installed,
|
||||||
|
'install_errors': install_errors
|
||||||
}
|
}
|
||||||
|
|
||||||
def _parse_smart_attributes(output_lines):
|
def _parse_smart_attributes(output_lines):
|
||||||
@@ -6697,25 +6712,50 @@ def api_smart_tools_install():
|
|||||||
"""Install SMART tools (smartmontools and nvme-cli)."""
|
"""Install SMART tools (smartmontools and nvme-cli)."""
|
||||||
try:
|
try:
|
||||||
data = request.get_json() or {}
|
data = request.get_json() or {}
|
||||||
packages = data.get('packages', ['smartmontools', 'nvme-cli'])
|
install_all = data.get('install_all', False)
|
||||||
|
packages = data.get('packages', ['smartmontools', 'nvme-cli'] if install_all else [])
|
||||||
|
|
||||||
|
if not packages and install_all:
|
||||||
|
packages = ['smartmontools', 'nvme-cli']
|
||||||
|
|
||||||
|
if not packages:
|
||||||
|
return jsonify({'error': 'No packages specified'}), 400
|
||||||
|
|
||||||
|
# Run apt-get update first
|
||||||
|
update_proc = subprocess.run(
|
||||||
|
['apt-get', 'update'],
|
||||||
|
capture_output=True, text=True, timeout=60
|
||||||
|
)
|
||||||
|
|
||||||
results = {}
|
results = {}
|
||||||
|
all_success = True
|
||||||
for pkg in packages:
|
for pkg in packages:
|
||||||
if pkg not in ('smartmontools', 'nvme-cli'):
|
if pkg not in ('smartmontools', 'nvme-cli'):
|
||||||
results[pkg] = {'success': False, 'error': 'Invalid package name'}
|
results[pkg] = {'success': False, 'error': 'Invalid package name'}
|
||||||
|
all_success = False
|
||||||
continue
|
continue
|
||||||
|
|
||||||
# Update apt cache and install
|
# Install package
|
||||||
proc = subprocess.run(
|
proc = subprocess.run(
|
||||||
['apt-get', 'install', '-y', pkg],
|
['apt-get', 'install', '-y', pkg],
|
||||||
capture_output=True, text=True, timeout=120
|
capture_output=True, text=True, timeout=120
|
||||||
)
|
)
|
||||||
|
success = proc.returncode == 0
|
||||||
results[pkg] = {
|
results[pkg] = {
|
||||||
'success': proc.returncode == 0,
|
'success': success,
|
||||||
'output': proc.stdout if proc.returncode == 0 else proc.stderr
|
'output': proc.stdout if success else proc.stderr
|
||||||
}
|
}
|
||||||
|
if not success:
|
||||||
|
all_success = False
|
||||||
|
|
||||||
return jsonify(results)
|
# Check what's now installed
|
||||||
|
tools = _ensure_smart_tools()
|
||||||
|
|
||||||
|
return jsonify({
|
||||||
|
'success': all_success,
|
||||||
|
'results': results,
|
||||||
|
'tools': tools
|
||||||
|
})
|
||||||
except subprocess.TimeoutExpired:
|
except subprocess.TimeoutExpired:
|
||||||
return jsonify({'error': 'Installation timeout'}), 504
|
return jsonify({'error': 'Installation timeout'}), 504
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
|||||||
Reference in New Issue
Block a user