mirror of
https://github.com/thecyberlearn/quantum-ai-v3.git
synced 2026-08-18 19:12:56 +00:00
121 lines
4.7 KiB
Python
121 lines
4.7 KiB
Python
from django.core.management.base import BaseCommand
|
|
from django.contrib.auth import get_user_model
|
|
from django.conf import settings
|
|
import secrets
|
|
import getpass
|
|
|
|
User = get_user_model()
|
|
|
|
|
|
class Command(BaseCommand):
|
|
help = 'Reset admin user - delete existing and create fresh'
|
|
|
|
def add_arguments(self, parser):
|
|
parser.add_argument(
|
|
'--password',
|
|
type=str,
|
|
help='Admin password (if not provided, will generate secure random password)'
|
|
)
|
|
parser.add_argument(
|
|
'--prompt-password',
|
|
action='store_true',
|
|
help='Prompt for password input (secure)'
|
|
)
|
|
|
|
def handle(self, *args, **options):
|
|
email = 'admin@quantumtaskai.com'
|
|
username = 'admin'
|
|
|
|
# Secure password handling
|
|
if options['prompt_password']:
|
|
password = getpass.getpass("Enter admin password: ")
|
|
if not password:
|
|
self.stdout.write(self.style.ERROR("Password cannot be empty"))
|
|
return
|
|
elif options['password']:
|
|
password = options['password']
|
|
else:
|
|
# Generate secure random password
|
|
password = secrets.token_urlsafe(16)
|
|
self.stdout.write(f"🔐 Generated secure password: {password}")
|
|
self.stdout.write("⚠️ SAVE THIS PASSWORD SECURELY - it will not be shown again!")
|
|
|
|
self.stdout.write("🔄 Resetting admin user...")
|
|
|
|
# Check for existing admin user (update instead of creating new)
|
|
existing_admin = None
|
|
|
|
# Check for users with admin emails
|
|
admin_emails = ['admin@quantumtaskai.com', 'admin@netcop.ai']
|
|
for admin_email in admin_emails:
|
|
try:
|
|
existing_admin = User.objects.get(email=admin_email)
|
|
self.stdout.write(f"📧 Found existing admin with email: {admin_email}")
|
|
break
|
|
except User.DoesNotExist:
|
|
pass
|
|
|
|
# Check for users with admin username if no email match
|
|
if not existing_admin:
|
|
try:
|
|
existing_admin = User.objects.get(username=username)
|
|
self.stdout.write(f"👤 Found existing admin with username: {username}")
|
|
except User.DoesNotExist:
|
|
pass
|
|
|
|
if existing_admin:
|
|
# Update existing admin user
|
|
self.stdout.write("🔄 Updating existing admin user...")
|
|
existing_admin.username = username
|
|
existing_admin.email = email
|
|
existing_admin.set_password(password)
|
|
existing_admin.is_superuser = True
|
|
existing_admin.is_staff = True
|
|
existing_admin.is_active = True
|
|
existing_admin.save()
|
|
user = existing_admin
|
|
self.stdout.write("✅ Existing admin user updated successfully!")
|
|
else:
|
|
# Create fresh admin user
|
|
self.stdout.write("🆕 Creating fresh admin user...")
|
|
user = User.objects.create_superuser(
|
|
username=username,
|
|
email=email,
|
|
password=password,
|
|
)
|
|
|
|
# Add initial balance
|
|
user.add_balance(100, "Initial admin balance")
|
|
|
|
# Verify user was created correctly
|
|
user.refresh_from_db()
|
|
|
|
self.stdout.write("✅ Fresh admin user created successfully!")
|
|
self.stdout.write(f"📧 Email: {user.email}")
|
|
self.stdout.write(f"👤 Username: {user.username}")
|
|
self.stdout.write(f"🔐 Password: {password}")
|
|
self.stdout.write(f"⚡ Is superuser: {user.is_superuser}")
|
|
self.stdout.write(f"👥 Is staff: {user.is_staff}")
|
|
self.stdout.write(f"✅ Is active: {user.is_active}")
|
|
self.stdout.write(f"💰 Balance: {user.wallet_balance} AED")
|
|
|
|
self.stdout.write("\n🎯 Login Instructions:")
|
|
self.stdout.write("URL: https://www.quantumtaskai.com/admin/")
|
|
self.stdout.write(f"Email: {email}")
|
|
self.stdout.write(f"Username: {username}")
|
|
self.stdout.write(f"Password: {password}")
|
|
|
|
self.stdout.write("\n🔍 Authentication Test:")
|
|
# Test authentication
|
|
from django.contrib.auth import authenticate
|
|
auth_user = authenticate(username=email, password=password)
|
|
if auth_user:
|
|
self.stdout.write("✅ Email authentication: WORKING")
|
|
else:
|
|
self.stdout.write("❌ Email authentication: FAILED")
|
|
|
|
auth_user = authenticate(username=username, password=password)
|
|
if auth_user:
|
|
self.stdout.write("✅ Username authentication: WORKING")
|
|
else:
|
|
self.stdout.write("❌ Username authentication: FAILED") |