4f5e30e6cf
Add streaming progress support to Deno upgrades and hook it into the GUI. upgrade_deno() now accepts an optional progress_callback and uses subprocess.Popen to read stdout line-by-line (line-buffered, utf-8, errors replaced), collecting output and invoking the callback as lines arrive. Added DenoUpdateThread (QThread) with finished/progress/error signals and replaced the previous background thread usage in the updater UI with this QThread. GUI slots strip ANSI escapes, truncate long messages, and update status text; buttons are re-enabled on finish/error. Improved logging and error handling for upgrade failures.
781 lines
27 KiB
Python
781 lines
27 KiB
Python
import os
|
|
import shutil
|
|
import subprocess
|
|
import tempfile
|
|
import zipfile
|
|
from pathlib import Path
|
|
from typing import Optional
|
|
|
|
import requests
|
|
from PySide6.QtCore import Qt, QThread, Signal
|
|
from PySide6.QtGui import QIcon
|
|
from PySide6.QtWidgets import (
|
|
QDialog,
|
|
QHBoxLayout,
|
|
QLabel,
|
|
QMessageBox,
|
|
QProgressBar,
|
|
QPushButton,
|
|
QVBoxLayout,
|
|
)
|
|
|
|
from ..utils.ytsage_logger import logger
|
|
from ..utils.ytsage_localization import _
|
|
from ..utils.ytsage_constants import (
|
|
APP_BIN_DIR,
|
|
ICON_PATH,
|
|
OS_FULL_NAME,
|
|
OS_NAME,
|
|
SUBPROCESS_CREATIONFLAGS,
|
|
DENO_APP_BIN_PATH,
|
|
DENO_DOWNLOAD_URL,
|
|
DENO_SHA256_URL,
|
|
)
|
|
from .ytsage_ffmpeg import get_file_sha256
|
|
|
|
|
|
def verify_deno_sha256(file_path: Path, sha256_url: str) -> bool:
|
|
"""
|
|
Verify Deno file SHA256 hash against official checksums.
|
|
|
|
Args:
|
|
file_path: Path to the downloaded Deno zip file
|
|
sha256_url: URL to download the SHA256 checksum file
|
|
|
|
Returns:
|
|
bool: True if verification successful, False otherwise
|
|
"""
|
|
try:
|
|
# Download the SHA256 checksum file
|
|
logger.info(f"Downloading SHA256 checksum from: {sha256_url}")
|
|
response = requests.get(sha256_url, timeout=10)
|
|
response.raise_for_status()
|
|
checksum_content = response.text
|
|
|
|
# Parse the checksum file
|
|
# Format can be either:
|
|
# 1. Standard Unix format: "hash filename"
|
|
# 2. Verbose format: "Hash : <HASH>"
|
|
expected_hash = None
|
|
for line in checksum_content.strip().split("\n"):
|
|
line = line.strip()
|
|
if not line:
|
|
continue
|
|
|
|
# Try standard Unix format first (hash followed by spaces and filename)
|
|
if len(line) >= 64 and (" " in line or "\t" in line):
|
|
# Extract first 64 characters as potential hash
|
|
potential_hash = line.split()[0]
|
|
if len(potential_hash) == 64 and all(c in "0123456789abcdefABCDEF" for c in potential_hash):
|
|
expected_hash = potential_hash
|
|
break
|
|
|
|
# Try verbose format
|
|
if line.startswith("Hash"):
|
|
parts = line.split(":", 1)
|
|
if len(parts) == 2:
|
|
expected_hash = parts[1].strip()
|
|
break
|
|
|
|
if not expected_hash:
|
|
logger.error("Could not find SHA256 hash in checksum file")
|
|
logger.debug(f"Checksum file content: {checksum_content}")
|
|
return False
|
|
|
|
# Calculate actual hash of downloaded file
|
|
logger.info("Calculating SHA256 hash of downloaded file...")
|
|
actual_hash = get_file_sha256(file_path)
|
|
|
|
# Compare hashes (case-insensitive)
|
|
if actual_hash.lower() == expected_hash.lower():
|
|
logger.info("✓ SHA256 verification successful!")
|
|
logger.info(f" Expected: {expected_hash}")
|
|
logger.info(f" Actual: {actual_hash}")
|
|
return True
|
|
else:
|
|
logger.error("✗ SHA256 verification failed!")
|
|
logger.error(f" Expected: {expected_hash}")
|
|
logger.error(f" Actual: {actual_hash}")
|
|
return False
|
|
|
|
except requests.RequestException as e:
|
|
logger.error(f"Failed to download SHA256 checksum: {e}")
|
|
return False
|
|
except Exception as e:
|
|
logger.exception(f"Error during SHA256 verification: {e}")
|
|
return False
|
|
|
|
|
|
class DownloadDenoThread(QThread):
|
|
progress_signal = Signal(int)
|
|
status_signal = Signal(str)
|
|
finished_signal = Signal(bool, str)
|
|
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
def run(self) -> None:
|
|
temp_zip_path = None
|
|
try:
|
|
# Create temporary file for zip download
|
|
temp_zip_fd, temp_zip_path = tempfile.mkstemp(suffix=".zip")
|
|
os.close(temp_zip_fd) # Close the file descriptor
|
|
|
|
# Download with progress reporting
|
|
logger.info(f"Downloading Deno from: {DENO_DOWNLOAD_URL}")
|
|
self.status_signal.emit(_("deno.downloading"))
|
|
|
|
response = requests.get(DENO_DOWNLOAD_URL, stream=True)
|
|
response.raise_for_status()
|
|
total_size = int(response.headers.get("content-length", 0))
|
|
block_size = 8192 # 8KB blocks
|
|
|
|
if total_size == 0:
|
|
self.progress_signal.emit(100)
|
|
|
|
with open(temp_zip_path, "wb") as f:
|
|
downloaded = 0
|
|
for data in response.iter_content(block_size):
|
|
f.write(data)
|
|
downloaded += len(data)
|
|
if total_size > 0:
|
|
progress = int(downloaded / total_size * 100)
|
|
self.progress_signal.emit(progress)
|
|
|
|
logger.info("Download complete, verifying SHA256 hash...")
|
|
self.status_signal.emit(_("deno.verifying"))
|
|
|
|
# Verify SHA256 hash
|
|
if not verify_deno_sha256(Path(temp_zip_path), DENO_SHA256_URL):
|
|
# Hash verification failed - delete the downloaded file
|
|
logger.error("SHA256 verification failed! Removing downloaded file.")
|
|
if Path(temp_zip_path).exists():
|
|
Path(temp_zip_path).unlink()
|
|
self.finished_signal.emit(
|
|
False,
|
|
_("deno.verification_failed")
|
|
)
|
|
return
|
|
|
|
# Extract deno executable from zip
|
|
logger.info("Extracting Deno executable...")
|
|
self.status_signal.emit(_("deno.extracting"))
|
|
|
|
with zipfile.ZipFile(temp_zip_path, 'r') as zip_ref:
|
|
# Deno zip contains just the executable at root
|
|
executable_name = "deno.exe" if OS_NAME == "Windows" else "deno"
|
|
|
|
# Find the executable in the zip
|
|
if executable_name not in zip_ref.namelist():
|
|
logger.error(f"Executable '{executable_name}' not found in zip file")
|
|
self.finished_signal.emit(False, f"Executable '{executable_name}' not found in zip")
|
|
return
|
|
|
|
# Extract to app bin directory (while zip_ref is open)
|
|
target_dir = DENO_APP_BIN_PATH.parent
|
|
zip_ref.extract(executable_name, target_dir)
|
|
|
|
# Verify the extracted file exists
|
|
exe_path = DENO_APP_BIN_PATH
|
|
if not exe_path.exists():
|
|
logger.error(f"Extraction failed: {exe_path} does not exist")
|
|
self.finished_signal.emit(False, "Extraction failed")
|
|
return
|
|
|
|
# Make executable on macOS and Linux
|
|
if OS_NAME != "Windows":
|
|
os.chmod(exe_path, 0o755)
|
|
logger.info("Set executable permissions on Unix system")
|
|
|
|
# Clean up the temporary zip file
|
|
if temp_zip_path and Path(temp_zip_path).exists():
|
|
Path(temp_zip_path).unlink()
|
|
logger.info("Cleaned up temporary zip file")
|
|
|
|
logger.info("Deno downloaded, verified, and extracted successfully!")
|
|
self.finished_signal.emit(True, str(exe_path))
|
|
|
|
except Exception as e:
|
|
logger.exception(f"Error downloading/extracting Deno: {e}")
|
|
# Clean up temporary zip file on error
|
|
if temp_zip_path and Path(temp_zip_path).exists():
|
|
try:
|
|
Path(temp_zip_path).unlink()
|
|
except Exception:
|
|
pass
|
|
self.finished_signal.emit(False, str(e))
|
|
|
|
|
|
class DenoSetupDialog(QDialog):
|
|
setup_complete = Signal(str) # Signal emitting the path to Deno
|
|
|
|
def __init__(self, parent=None):
|
|
super().__init__(parent)
|
|
self.setWindowTitle(_("deno.setup_required"))
|
|
self.setMinimumWidth(520)
|
|
self.setMinimumHeight(300)
|
|
self.resize(520, 320)
|
|
|
|
# Set the window icon to match the main app
|
|
if parent and parent.windowIcon():
|
|
self.setWindowIcon(parent.windowIcon())
|
|
else:
|
|
icon_path = ICON_PATH
|
|
if Path.exists(icon_path):
|
|
self.setWindowIcon(QIcon(str(icon_path)))
|
|
|
|
self.init_ui()
|
|
|
|
# Apply dark theme styling to match app
|
|
self.setStyleSheet(
|
|
"""
|
|
QDialog {
|
|
background-color: #15181b;
|
|
color: #ffffff;
|
|
}
|
|
QLabel {
|
|
color: #cccccc;
|
|
line-height: 1.4;
|
|
}
|
|
QPushButton {
|
|
padding: 10px 20px;
|
|
background-color: #c90000;
|
|
border: none;
|
|
border-radius: 6px;
|
|
color: white;
|
|
font-weight: bold;
|
|
font-size: 13px;
|
|
min-width: 120px;
|
|
min-height: 20px;
|
|
}
|
|
QPushButton:hover {
|
|
background-color: #a50000;
|
|
}
|
|
QPushButton:pressed {
|
|
background-color: #800000;
|
|
}
|
|
QPushButton:disabled {
|
|
background-color: #666666;
|
|
color: #999999;
|
|
}
|
|
QProgressBar {
|
|
border: 2px solid #1d1e22;
|
|
border-radius: 6px;
|
|
text-align: center;
|
|
color: white;
|
|
background-color: #1d1e22;
|
|
height: 25px;
|
|
font-weight: bold;
|
|
}
|
|
QProgressBar::chunk {
|
|
background: qlineargradient(x1: 0, y1: 0, x2: 1, y2: 0,
|
|
stop: 0 #e60000, stop: 0.5 #ff3333, stop: 1 #c90000);
|
|
border-radius: 4px;
|
|
margin: 1px;
|
|
}
|
|
"""
|
|
)
|
|
|
|
def init_ui(self) -> None:
|
|
layout = QVBoxLayout()
|
|
layout.setSpacing(15)
|
|
layout.setContentsMargins(25, 25, 25, 25)
|
|
|
|
# Header title
|
|
title_label = QLabel(_("deno.setup_required"))
|
|
title_label.setStyleSheet("font-size: 16px; font-weight: bold; color: #ffffff; padding: 5px 0;")
|
|
title_label.setAlignment(Qt.AlignmentFlag.AlignCenter)
|
|
layout.addWidget(title_label)
|
|
|
|
# Information label with improved styling
|
|
info_label = QLabel(
|
|
_("deno.setup_description", os_name=OS_FULL_NAME)
|
|
)
|
|
info_label.setAlignment(Qt.AlignmentFlag.AlignCenter)
|
|
info_label.setWordWrap(True)
|
|
info_label.setStyleSheet("font-size: 13px; color: #cccccc; padding: 5px; line-height: 1.4;")
|
|
layout.addWidget(info_label)
|
|
|
|
# Progress bar with proper sizing
|
|
self.progress_bar = QProgressBar()
|
|
self.progress_bar.setVisible(False)
|
|
self.progress_bar.setFixedHeight(20)
|
|
self.progress_bar.setStyleSheet(
|
|
"""
|
|
QProgressBar {
|
|
border: 1px solid #3d3d3d;
|
|
border-radius: 8px;
|
|
background-color: #1d1e22;
|
|
text-align: center;
|
|
color: #ffffff;
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
height: 20px;
|
|
}
|
|
QProgressBar::chunk {
|
|
background-color: #c90000;
|
|
border-radius: 6px;
|
|
margin: 1px;
|
|
}
|
|
"""
|
|
)
|
|
layout.addWidget(self.progress_bar)
|
|
|
|
# Status label with better spacing
|
|
self.status_label = QLabel("")
|
|
self.status_label.setAlignment(Qt.AlignmentFlag.AlignCenter)
|
|
self.status_label.setStyleSheet("font-size: 12px; color: #cccccc; padding: 8px 0;")
|
|
self.status_label.setWordWrap(True)
|
|
layout.addWidget(self.status_label)
|
|
|
|
# Add stretch to push buttons to bottom
|
|
layout.addStretch()
|
|
|
|
# Button layout with improved spacing
|
|
button_layout = QHBoxLayout()
|
|
button_layout.setSpacing(15)
|
|
button_layout.setContentsMargins(0, 10, 0, 0)
|
|
|
|
self.setup_button = QPushButton(_("deno.setup_button"))
|
|
self.setup_button.clicked.connect(self.download_deno)
|
|
|
|
self.cancel_button = QPushButton(_("buttons.cancel"))
|
|
self.cancel_button.clicked.connect(self.reject)
|
|
|
|
button_layout.addWidget(self.setup_button)
|
|
button_layout.addWidget(self.cancel_button)
|
|
layout.addLayout(button_layout)
|
|
|
|
self.setLayout(layout)
|
|
|
|
def download_deno(self) -> None:
|
|
self.progress_bar.setVisible(True)
|
|
self.progress_bar.setValue(0)
|
|
self.status_label.setText(_("deno.downloading"))
|
|
self.setup_button.setEnabled(False)
|
|
self.cancel_button.setEnabled(False)
|
|
|
|
self.download_thread = DownloadDenoThread()
|
|
self.download_thread.progress_signal.connect(self.update_progress)
|
|
self.download_thread.status_signal.connect(self.update_status)
|
|
self.download_thread.finished_signal.connect(self.download_finished)
|
|
self.download_thread.start()
|
|
|
|
def update_progress(self, value) -> None:
|
|
self.progress_bar.setValue(value)
|
|
|
|
def update_status(self, status: str) -> None:
|
|
self.status_label.setText(status)
|
|
|
|
def download_finished(self, success, result) -> None:
|
|
self.setup_button.setEnabled(True)
|
|
self.cancel_button.setEnabled(True)
|
|
|
|
if success:
|
|
self.status_label.setText(_("deno.success"))
|
|
self.setup_complete.emit(result)
|
|
self.accept()
|
|
else:
|
|
self.status_label.setText(f"{_('deno.download_error', error=result)}")
|
|
error_dialog = QMessageBox(self)
|
|
error_dialog.setIcon(QMessageBox.Icon.Critical)
|
|
error_dialog.setWindowTitle(_("deno.download_failed"))
|
|
error_dialog.setText(_("deno.download_error", error=result))
|
|
error_dialog.setWindowIcon(self.windowIcon())
|
|
error_dialog.setStyleSheet(
|
|
"""
|
|
QMessageBox {
|
|
background-color: #15181b;
|
|
color: #ffffff;
|
|
}
|
|
QLabel {
|
|
color: #ffffff;
|
|
}
|
|
QPushButton {
|
|
padding: 8px 15px;
|
|
background-color: #c90000;
|
|
border: none;
|
|
border-radius: 4px;
|
|
color: white;
|
|
font-weight: bold;
|
|
}
|
|
QPushButton:hover {
|
|
background-color: #a50000;
|
|
}
|
|
"""
|
|
)
|
|
error_dialog.exec()
|
|
|
|
|
|
def check_deno_binary() -> Optional[Path]:
|
|
"""
|
|
Check if Deno binary exists in the app's bin directory ONLY.
|
|
We only use our managed binary, not system PATH.
|
|
|
|
Returns:
|
|
Path or None: Path to Deno binary if found in app bin, None otherwise
|
|
"""
|
|
exe_path = DENO_APP_BIN_PATH
|
|
if exe_path.exists():
|
|
# Make sure it's executable on Unix systems
|
|
if OS_NAME != "Windows" and not os.access(exe_path, os.X_OK):
|
|
try:
|
|
os.chmod(exe_path, 0o755)
|
|
logger.info(f"Fixed permissions on Deno at {exe_path}")
|
|
except Exception as e:
|
|
logger.exception(f"Could not set executable permissions on {exe_path}: {e}")
|
|
logger.info(f"Found Deno in app bin directory: {exe_path}")
|
|
return exe_path
|
|
|
|
# Binary not found in app directory - return None to trigger setup
|
|
logger.warning(f"Deno binary not found in app bin directory: {exe_path}")
|
|
return None
|
|
|
|
|
|
def check_deno_installed() -> bool:
|
|
"""
|
|
Check if Deno is installed and accessible.
|
|
|
|
Returns:
|
|
bool: True if Deno is found and working, False otherwise
|
|
"""
|
|
try:
|
|
deno_path = check_deno_binary()
|
|
if deno_path:
|
|
# Try to run deno --version to verify it's working
|
|
try:
|
|
result = subprocess.run(
|
|
[str(deno_path), "--version"],
|
|
capture_output=True,
|
|
text=True,
|
|
timeout=5,
|
|
creationflags=SUBPROCESS_CREATIONFLAGS
|
|
)
|
|
return result.returncode == 0
|
|
except Exception:
|
|
return False
|
|
return False
|
|
except Exception:
|
|
return False
|
|
|
|
|
|
def get_deno_path() -> Path:
|
|
"""
|
|
Get the Deno path from the app's bin directory.
|
|
|
|
Returns:
|
|
Path or str: Path to Deno binary, or "deno" as fallback command
|
|
"""
|
|
deno_path = check_deno_binary()
|
|
if deno_path:
|
|
logger.info(f"Using Deno from: {deno_path}")
|
|
return deno_path
|
|
|
|
# If not found, fall back to the command name as a last resort
|
|
logger.info("Deno not found in app directory, falling back to command name")
|
|
return "deno" # type: ignore[return-value]
|
|
|
|
|
|
def get_deno_version_direct(deno_path=None) -> str:
|
|
"""
|
|
Get Deno version directly without caching.
|
|
|
|
Args:
|
|
deno_path: Optional path to Deno binary. If None, uses get_deno_path()
|
|
|
|
Returns:
|
|
str: Version string or error message
|
|
"""
|
|
try:
|
|
if deno_path is None:
|
|
deno_path = get_deno_path()
|
|
|
|
if not deno_path or deno_path == "deno":
|
|
return "Not found"
|
|
|
|
result = subprocess.run(
|
|
[str(deno_path), "--version"],
|
|
capture_output=True,
|
|
text=True,
|
|
timeout=10,
|
|
creationflags=SUBPROCESS_CREATIONFLAGS
|
|
)
|
|
|
|
if result.returncode == 0:
|
|
# Deno outputs: "deno 1.38.0 (release, x86_64-pc-windows-msvc)"
|
|
# Extract version from first line
|
|
lines = result.stdout.strip().split("\n")
|
|
if lines:
|
|
first_line = lines[0]
|
|
# Extract version number (e.g., "1.38.0" from "deno 1.38.0 ...")
|
|
parts = first_line.split()
|
|
if len(parts) >= 2 and parts[0] == "deno":
|
|
return parts[1]
|
|
return first_line.strip()
|
|
return "Unknown version"
|
|
else:
|
|
return "Error getting version"
|
|
except Exception as e:
|
|
logger.exception(f"Error getting Deno version: {e}")
|
|
return "Error getting version"
|
|
|
|
|
|
def setup_deno(parent_widget=None):
|
|
"""
|
|
Show the Deno setup dialog and handle the result.
|
|
|
|
Returns:
|
|
str: Path to Deno binary
|
|
"""
|
|
logger.debug("Starting Deno setup dialog")
|
|
dialog = DenoSetupDialog(parent_widget)
|
|
|
|
# Store the setup result from the signal
|
|
setup_result = {"path": None}
|
|
|
|
def on_setup_complete(path) -> None:
|
|
logger.debug(f"Received setup_complete signal with path: {path}")
|
|
setup_result["path"] = path
|
|
|
|
# Connect to the setup_complete signal
|
|
dialog.setup_complete.connect(on_setup_complete)
|
|
|
|
# Show the dialog
|
|
result = dialog.exec()
|
|
logger.debug(f"Dialog result: {result} (Accepted={QDialog.DialogCode.Accepted})")
|
|
|
|
if result == QDialog.DialogCode.Accepted:
|
|
# First check if we received a path from the signal
|
|
if setup_result["path"]:
|
|
path_obj = Path(setup_result["path"]) if isinstance(setup_result["path"], str) else setup_result["path"]
|
|
if path_obj.exists():
|
|
logger.debug(f"Using path from signal: {setup_result['path']}")
|
|
return str(setup_result["path"])
|
|
|
|
# Get the expected path for verification as fallback
|
|
expected_path = DENO_APP_BIN_PATH
|
|
logger.debug(f"Expected Deno path: {expected_path}")
|
|
|
|
# Verify the path exists after dialog is accepted
|
|
if expected_path.exists():
|
|
logger.debug(f"Deno successfully found at expected path: {expected_path}")
|
|
return str(expected_path)
|
|
else:
|
|
logger.debug(f"Expected path does not exist, trying alternate detection")
|
|
# Try to use the get_deno_path function to find Deno elsewhere
|
|
deno_path = get_deno_path()
|
|
logger.debug(f"Alternate detection result: {deno_path}")
|
|
if deno_path != "deno":
|
|
path_obj = Path(deno_path) if isinstance(deno_path, str) else deno_path
|
|
if path_obj.exists():
|
|
logger.debug(f"Deno found at alternate location: {deno_path}")
|
|
return str(deno_path)
|
|
|
|
# Something went wrong, show an error message
|
|
logger.debug(f"Setup failed, showing error dialog")
|
|
if parent_widget:
|
|
error_dialog = QMessageBox(parent_widget)
|
|
error_dialog.setIcon(QMessageBox.Icon.Warning)
|
|
error_dialog.setWindowTitle(_("deno.setup_error"))
|
|
error_dialog.setText(_("deno.setup_failed"))
|
|
error_dialog.setWindowIcon(parent_widget.windowIcon())
|
|
error_dialog.setStyleSheet(
|
|
"""
|
|
QMessageBox {
|
|
background-color: #15181b;
|
|
color: #ffffff;
|
|
}
|
|
QLabel {
|
|
color: #ffffff;
|
|
}
|
|
QPushButton {
|
|
padding: 8px 15px;
|
|
background-color: #c90000;
|
|
border: none;
|
|
border-radius: 4px;
|
|
color: white;
|
|
font-weight: bold;
|
|
}
|
|
QPushButton:hover {
|
|
background-color: #a50000;
|
|
}
|
|
"""
|
|
)
|
|
error_dialog.exec()
|
|
logger.warning(f"Deno setup failed, path does not exist: {expected_path}")
|
|
else:
|
|
logger.debug("User cancelled the setup dialog")
|
|
|
|
# User cancelled or setup failed, return the fallback command
|
|
logger.debug("Returning fallback command 'deno'")
|
|
return "deno"
|
|
|
|
|
|
def get_latest_deno_version() -> Optional[str]:
|
|
"""
|
|
Fetch the latest Deno version from GitHub API.
|
|
|
|
Returns:
|
|
str: Version string (e.g., "2.5.6") or None if fetch failed
|
|
"""
|
|
try:
|
|
response = requests.get(
|
|
"https://api.github.com/repos/denoland/deno/releases/latest",
|
|
timeout=10
|
|
)
|
|
response.raise_for_status()
|
|
data = response.json()
|
|
|
|
# Get tag_name (e.g., "v2.5.6") and remove 'v' prefix
|
|
tag_name = data.get("tag_name", "")
|
|
if tag_name.startswith("v"):
|
|
version = tag_name[1:]
|
|
else:
|
|
version = tag_name
|
|
|
|
logger.info(f"Latest Deno version: {version}")
|
|
return version
|
|
|
|
except requests.RequestException as e:
|
|
logger.error(f"Failed to fetch latest Deno version: {e}")
|
|
return None
|
|
except Exception as e:
|
|
logger.exception(f"Unexpected error fetching Deno version: {e}")
|
|
return None
|
|
|
|
|
|
def compare_deno_versions(current: str, latest: str) -> bool:
|
|
"""
|
|
Compare two Deno version strings.
|
|
|
|
Args:
|
|
current: Current version string (e.g., "2.5.6")
|
|
latest: Latest version string (e.g., "2.5.7")
|
|
|
|
Returns:
|
|
bool: True if update is needed (latest > current), False otherwise
|
|
"""
|
|
try:
|
|
import re
|
|
|
|
def parse_version(version_str: str) -> tuple:
|
|
"""Parse version string into tuple of integers."""
|
|
# Remove 'v' prefix if present
|
|
if version_str.startswith('v'):
|
|
version_str = version_str[1:]
|
|
|
|
# Extract version numbers
|
|
match = re.search(r'(\d+\.\d+\.\d+)', version_str)
|
|
if match:
|
|
version_str = match.group(1)
|
|
|
|
parts = version_str.split('.')
|
|
return tuple(int(p) for p in parts if p.isdigit())
|
|
|
|
current_tuple = parse_version(current)
|
|
latest_tuple = parse_version(latest)
|
|
|
|
logger.debug(f"Comparing Deno versions: {current_tuple} vs {latest_tuple}")
|
|
return latest_tuple > current_tuple
|
|
|
|
except (ValueError, AttributeError) as e:
|
|
logger.warning(f"Could not compare Deno versions: {e}")
|
|
return False
|
|
|
|
|
|
def upgrade_deno(progress_callback=None) -> tuple[bool, str]:
|
|
"""
|
|
Upgrade Deno to the latest version using 'deno upgrade' command.
|
|
|
|
Args:
|
|
progress_callback: Optional function to call with output lines for progress tracking
|
|
|
|
Returns:
|
|
tuple: (success: bool, output: str) - Success status and command output
|
|
"""
|
|
try:
|
|
deno_path = DENO_APP_BIN_PATH
|
|
|
|
if not deno_path.exists():
|
|
error_msg = f"Deno binary not found at: {deno_path}"
|
|
logger.error(error_msg)
|
|
return False, error_msg
|
|
|
|
logger.info(f"Upgrading Deno using: {deno_path}")
|
|
|
|
# Run deno upgrade command with output capturing
|
|
process = subprocess.Popen(
|
|
[str(deno_path), "upgrade"],
|
|
stdout=subprocess.PIPE,
|
|
stderr=subprocess.STDOUT,
|
|
text=True,
|
|
creationflags=SUBPROCESS_CREATIONFLAGS,
|
|
bufsize=1, # Line buffered
|
|
encoding='utf-8',
|
|
errors='replace'
|
|
)
|
|
|
|
full_output = []
|
|
|
|
# Read output line by line as it is generated
|
|
while True:
|
|
line = process.stdout.readline()
|
|
if not line and process.poll() is not None:
|
|
break
|
|
|
|
if line:
|
|
line_str = line.strip()
|
|
if line_str:
|
|
full_output.append(line_str)
|
|
logger.debug(f"Deno upgrade output: {line_str}")
|
|
if progress_callback:
|
|
progress_callback(line_str)
|
|
|
|
return_code = process.poll()
|
|
output = "\n".join(full_output)
|
|
|
|
if return_code == 0:
|
|
logger.info("Deno upgrade successful")
|
|
return True, output
|
|
else:
|
|
logger.error(f"Deno upgrade failed with code {return_code}")
|
|
logger.error(f"Output: {output}")
|
|
return False, output
|
|
|
|
except subprocess.TimeoutExpired:
|
|
error_msg = "Deno upgrade timed out after 5 minutes"
|
|
logger.error(error_msg)
|
|
return False, error_msg
|
|
except Exception as e:
|
|
error_msg = f"Error upgrading Deno: {str(e)}"
|
|
logger.exception(error_msg)
|
|
return False, error_msg
|
|
|
|
|
|
def check_deno_update() -> tuple[bool, str, str]:
|
|
"""
|
|
Check if a Deno update is available.
|
|
|
|
Returns:
|
|
tuple: (update_needed: bool, current_version: str, latest_version: str)
|
|
"""
|
|
try:
|
|
# Get current version
|
|
current_version = get_deno_version_direct()
|
|
if current_version in ["Not found", "Error getting version"]:
|
|
return False, current_version, "Unknown"
|
|
|
|
# Get latest version
|
|
latest_version = get_latest_deno_version()
|
|
if not latest_version:
|
|
return False, current_version, "Error"
|
|
|
|
# Compare versions
|
|
update_needed = compare_deno_versions(current_version, latest_version)
|
|
|
|
return update_needed, current_version, latest_version
|
|
|
|
except Exception as e:
|
|
logger.exception(f"Error checking Deno update: {e}")
|
|
return False, "Error", "Error"
|