Spaces:
Sleeping
Sleeping
File size: 15,231 Bytes
519c06d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 |
#!/usr/bin/env python3
"""
ResearchMate Management Script
Central management system for ResearchMate operations
"""
import os
import sys
import json
import logging
import argparse
from pathlib import Path
from typing import Dict, List, Optional, Any
import subprocess
import shutil
from datetime import datetime
# Setup logging
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(levelname)s - %(message)s',
handlers=[
logging.FileHandler(Path(__file__).parent.parent.parent / 'logs' / 'manager.log'),
logging.StreamHandler()
]
)
logger = logging.getLogger(__name__)
class ResearchMateManager:
"""Central management system for ResearchMate"""
def __init__(self, project_root: Optional[Path] = None):
self.project_root = project_root or Path(__file__).parent.parent.parent
self.config_dir = self.project_root / "config"
self.venv_path = self.project_root / "venv"
self.backup_dir = self.project_root / "backups"
def print_banner(self):
"""Print management banner"""
banner = """
ResearchMate Management System
==============================
AI Research Assistant - Management Console
"""
print(banner)
logger.info("ResearchMate Management System started")
def show_status(self):
"""Show system status"""
print("\nSystem Status:")
print("=" * 40)
# Check virtual environment
python_path = self.get_venv_python()
venv_status = "Active" if python_path.exists() else "Missing"
print(f"Virtual Environment: {venv_status}")
# Check configuration
config_file = self.config_dir / "config.json"
config_status = "Configured" if config_file.exists() else "Missing"
print(f"Configuration: {config_status}")
# Check database
chroma_dir = self.project_root / "chroma_persist"
db_status = "Ready" if chroma_dir.exists() else "Not initialized"
print(f"Database: {db_status}")
# Check dependencies
try:
result = subprocess.run([
str(python_path), "-c", "import fastapi, groq, chromadb; print('OK')"
], capture_output=True, text=True)
deps_status = "Installed" if result.returncode == 0 else "Missing"
except:
deps_status = "Missing"
print(f"Dependencies: {deps_status}")
# Check logs
log_files = list(Path("logs").glob("*.log")) if Path("logs").exists() else []
print(f"Log Files: {len(log_files)} files")
# Check uploads
upload_dir = self.project_root / "uploads"
upload_count = len(list(upload_dir.glob("*"))) if upload_dir.exists() else 0
print(f"Uploaded Files: {upload_count} files")
def get_venv_python(self) -> Path:
"""Get path to Python executable in virtual environment"""
# If we're already in a virtual environment, use current Python
if hasattr(sys, 'real_prefix') or (hasattr(sys, 'base_prefix') and sys.base_prefix != sys.prefix):
return Path(sys.executable)
# Otherwise, look for venv in project
if os.name == 'nt': # Windows
# Check both locations
scripts_python = self.venv_path / "Scripts" / "python.exe"
direct_python = self.venv_path / "python.exe"
if scripts_python.exists():
return scripts_python
elif direct_python.exists():
return direct_python
else:
return scripts_python # Default fallback
else:
return self.venv_path / "bin" / "python"
def install_dependencies(self):
"""Install or update dependencies"""
try:
logger.info("Installing dependencies...")
python_path = self.get_venv_python()
# Install main dependencies
subprocess.run([
str(python_path), "-m", "pip", "install",
"-r", "requirements.txt", "--upgrade"
], check=True)
# Install development dependencies if file exists
dev_requirements = self.project_root / "requirements-dev.txt"
if dev_requirements.exists():
subprocess.run([
str(python_path), "-m", "pip", "install",
"-r", str(dev_requirements), "--upgrade"
], check=True)
logger.info("Dependencies installed successfully")
return True
except Exception as e:
logger.error(f"Failed to install dependencies: {e}")
return False
def backup_data(self):
"""Create backup of important data"""
try:
logger.info("Creating backup...")
# Create backup directory
timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
backup_path = self.backup_dir / f"backup_{timestamp}"
backup_path.mkdir(parents=True, exist_ok=True)
# Backup directories
backup_items = [
("config", "Configuration files"),
("chroma_persist", "Database"),
("uploads", "Uploaded files"),
("logs", "Log files")
]
for item, description in backup_items:
source = self.project_root / item
if source.exists():
dest = backup_path / item
if source.is_dir():
shutil.copytree(source, dest)
else:
shutil.copy2(source, dest)
logger.info(f"Backed up: {description}")
# Create backup info file
backup_info = {
"timestamp": timestamp,
"version": "2.0.0",
"items": [item for item, _ in backup_items]
}
with open(backup_path / "backup_info.json", 'w') as f:
json.dump(backup_info, f, indent=2)
logger.info(f"Backup created: {backup_path}")
return True
except Exception as e:
logger.error(f"Failed to create backup: {e}")
return False
def restore_data(self, backup_name: str):
"""Restore data from backup"""
try:
logger.info(f"Restoring from backup: {backup_name}")
backup_path = self.backup_dir / backup_name
if not backup_path.exists():
logger.error(f"Backup not found: {backup_name}")
return False
# Read backup info
backup_info_file = backup_path / "backup_info.json"
if backup_info_file.exists():
with open(backup_info_file, 'r') as f:
backup_info = json.load(f)
logger.info(f"Restoring backup from: {backup_info['timestamp']}")
# Restore items
for item in backup_path.iterdir():
if item.name == "backup_info.json":
continue
dest = self.project_root / item.name
# Remove existing
if dest.exists():
if dest.is_dir():
shutil.rmtree(dest)
else:
dest.unlink()
# Restore
if item.is_dir():
shutil.copytree(item, dest)
else:
shutil.copy2(item, dest)
logger.info(f"Restored: {item.name}")
logger.info("Restore completed successfully")
return True
except Exception as e:
logger.error(f"Failed to restore backup: {e}")
return False
def list_backups(self):
"""List available backups"""
if not self.backup_dir.exists():
print("No backups found")
return
backups = [d for d in self.backup_dir.iterdir() if d.is_dir()]
if not backups:
print("No backups found")
return
print("\nAvailable Backups:")
print("=" * 40)
for backup in sorted(backups):
backup_info_file = backup / "backup_info.json"
if backup_info_file.exists():
with open(backup_info_file, 'r') as f:
info = json.load(f)
timestamp = info.get('timestamp', 'Unknown')
print(f"- {backup.name} (Created: {timestamp})")
else:
print(f"- {backup.name}")
def clean_logs(self):
"""Clean old log files"""
try:
logger.info("Cleaning logs...")
logs_dir = self.project_root / "logs"
if not logs_dir.exists():
logger.info("No logs directory found")
return True
# Keep only last 10 log files
log_files = sorted(logs_dir.glob("*.log"), key=lambda x: x.stat().st_mtime, reverse=True)
if len(log_files) > 10:
for log_file in log_files[10:]:
log_file.unlink()
logger.info(f"Removed old log: {log_file.name}")
logger.info("Log cleanup completed")
return True
except Exception as e:
logger.error(f"Failed to clean logs: {e}")
return False
def reset_database(self):
"""Reset ChromaDB database"""
try:
logger.info("Resetting database...")
chroma_dir = self.project_root / "chroma_persist"
if chroma_dir.exists():
shutil.rmtree(chroma_dir)
logger.info("Database reset completed")
else:
logger.info("Database directory not found")
return True
except Exception as e:
logger.error(f"Failed to reset database: {e}")
return False
def run_tests(self):
"""Run test suite"""
try:
logger.info("Running tests...")
# Check if tests directory exists
tests_dir = self.project_root / "src" / "tests"
if not tests_dir.exists():
logger.info("No tests directory found - skipping test run")
return True
# Check if any test files exist
test_files = list(tests_dir.glob("test_*.py"))
if not test_files:
logger.info("No test files found - skipping test run")
return True
logger.info(f"Found {len(test_files)} test files")
# Run tests directly with Python (no pytest required)
python_path = self.get_venv_python()
logger.info(f"Using Python executable: {python_path}")
logger.info(f"Python executable exists: {python_path.exists()}")
all_passed = True
for test_file in test_files:
logger.info(f"Running: {test_file.name}")
logger.info(f"Full test path: {test_file}")
result = subprocess.run([
str(python_path), str(test_file)
], capture_output=True, text=True, cwd=self.project_root)
if result.returncode == 0:
logger.info(f"PASS: {test_file.name}")
if result.stdout:
logger.info(f"Output:\n{result.stdout}")
else:
logger.error(f"FAIL: {test_file.name}")
if result.stdout:
logger.error(f"Output:\n{result.stdout}")
if result.stderr:
logger.error(f"Errors:\n{result.stderr}")
all_passed = False
if all_passed:
logger.info("All tests passed successfully!")
else:
logger.error("Some tests failed!")
return all_passed
except Exception as e:
logger.error(f"Failed to run tests: {e}")
return False
def start_server(self, mode: str = "production"):
"""Start server in different modes"""
try:
if mode == "development":
logger.info("Starting development server...")
subprocess.run([
sys.executable, "src/scripts/dev_server.py"
], cwd=self.project_root)
else:
logger.info("Starting production server...")
subprocess.run([
sys.executable, "src/scripts/deploy.py"
], cwd=self.project_root)
except KeyboardInterrupt:
logger.info("Server stopped by user")
except Exception as e:
logger.error(f"Failed to start server: {e}")
def main():
"""Main management function"""
parser = argparse.ArgumentParser(description="ResearchMate Management System")
parser.add_argument("command", choices=[
"status", "install", "backup", "restore", "list-backups",
"clean-logs", "reset-db", "test", "start", "dev"
], help="Management command")
parser.add_argument("--backup-name", help="Backup name for restore command")
args = parser.parse_args()
manager = ResearchMateManager()
manager.print_banner()
if args.command == "status":
manager.show_status()
elif args.command == "install":
manager.install_dependencies()
elif args.command == "backup":
manager.backup_data()
elif args.command == "restore":
if not args.backup_name:
print("Error: --backup-name required for restore")
sys.exit(1)
manager.restore_data(args.backup_name)
elif args.command == "list-backups":
manager.list_backups()
elif args.command == "clean-logs":
manager.clean_logs()
elif args.command == "reset-db":
manager.reset_database()
elif args.command == "test":
manager.run_tests()
elif args.command == "start":
manager.start_server("production")
elif args.command == "dev":
manager.start_server("development")
if __name__ == "__main__":
main()
|