#!/usr/bin/env python3
"""
Production Media Files Fix for cPanel
This script should be uploaded to your production server and run there
"""

import os
import sys
import django
from pathlib import Path

# Setup Django for production
sys.path.append('/home/acbptxvs/public_html/branchbusinessadvance.co.ke')
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'branch_system.settings_production')

try:
    django.setup()
    from users.models import CustomUser
    print("✅ Django setup successful")
except Exception as e:
    print(f"❌ Django setup failed: {e}")
    # Fallback setup
    sys.path.append('.')
    os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'branch_system.settings')
    django.setup()
    from users.models import CustomUser
    print("✅ Django setup successful (fallback)")

def create_placeholder_image_bytes():
    """Create a minimal 1x1 PNG image as bytes"""
    # 1x1 transparent PNG
    return b'\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x00\x01\x00\x00\x00\x01\x08\x06\x00\x00\x00\x1f\x15\xc4\x89\x00\x00\x00\rIDATx\x9cc\xf8\x0f\x00\x00\x01\x00\x01\x00\x00\x00\x00IEND\xaeB`\x82'

def create_placeholder_pdf_bytes():
    """Create a minimal PDF as bytes"""
    return b'%PDF-1.4\n1 0 obj\n<< /Type /Catalog /Pages 2 0 R >>\nendobj\n2 0 obj\n<< /Type /Pages /Kids [3 0 R] /Count 1 >>\nendobj\n3 0 obj\n<< /Type /Page /Parent 2 0 R /MediaBox [0 0 612 792] >>\nendobj\nxref\n0 4\n0000000000 65535 f \n0000000009 00000 n \n0000000058 00000 n \n0000000115 00000 n \ntrailer\n<< /Size 4 /Root 1 0 R >>\nstartxref\n174\n%%EOF'

def create_missing_file(file_path):
    """Create a missing file with appropriate placeholder content"""
    try:
        # Ensure directory exists
        file_path.parent.mkdir(parents=True, exist_ok=True)
        
        extension = file_path.suffix.lower()
        
        if extension in ['.jpg', '.jpeg', '.png']:
            content = create_placeholder_image_bytes()
        elif extension == '.pdf':
            content = create_placeholder_pdf_bytes()
        else:
            content = b'Placeholder file - original missing'
        
        with open(file_path, 'wb') as f:
            f.write(content)
        
        return True
    except Exception as e:
        print(f"❌ Failed to create {file_path}: {e}")
        return False

def fix_production_media():
    """Fix missing media files in production"""
    print("🔄 Fixing production media files...")
    
    # Base media directory
    media_base = Path('/home/acbptxvs/public_html/branchbusinessadvance.co.ke/media')
    
    # Alternative paths to try
    if not media_base.exists():
        media_base = Path('media')
    
    print(f"📁 Using media directory: {media_base}")
    
    missing_count = 0
    fixed_count = 0
    
    # Get all users
    try:
        users = CustomUser.objects.all()
        print(f"👥 Found {users.count()} users")
    except Exception as e:
        print(f"❌ Database error: {e}")
        return
    
    for user in users:
        # Check all file fields
        file_fields = [
            ('id_document', user.id_document),
            ('selfie', user.selfie),
            ('utility_bill', user.utility_bill),
            ('bank_statement', user.bank_statement),
            ('business_license', user.business_license),
            ('tax_certificate', user.tax_certificate),
            ('logbook', user.logbook),
            ('title_deed', user.title_deed),
            ('signature', user.signature),
        ]
        
        for field_name, file_field in file_fields:
            if file_field and str(file_field).strip():
                file_path_str = str(file_field)
                full_path = media_base / file_path_str
                
                if not full_path.exists():
                    print(f"❌ Missing: {file_path_str} (User: {user.username})")
                    missing_count += 1
                    
                    if create_missing_file(full_path):
                        print(f"✅ Created placeholder: {file_path_str}")
                        fixed_count += 1
    
    print(f"\n📊 Summary:")
    print(f"Missing files found: {missing_count}")
    print(f"Placeholder files created: {fixed_count}")
    
    return missing_count, fixed_count

def test_specific_file():
    """Test the specific file mentioned in the error"""
    problem_file = "kyc/selfies/WhatsApp_Image_2024-10-25_at_09_inyZyhk.41.21.jpeg"
    
    # Try different base paths
    possible_bases = [
        Path('/home/acbptxvs/public_html/branchbusinessadvance.co.ke/media'),
        Path('media'),
        Path('./media'),
    ]
    
    for base in possible_bases:
        full_path = base / problem_file
        print(f"Checking: {full_path}")
        print(f"  Exists: {full_path.exists()}")
        print(f"  Parent exists: {full_path.parent.exists()}")
        
        if not full_path.exists() and full_path.parent.exists():
            print(f"  Creating placeholder...")
            if create_missing_file(full_path):
                print(f"  ✅ Created successfully")
                return True
    
    return False

def main():
    print("🚀 Production Media Files Fix")
    print("=" * 50)
    
    try:
        # Test the specific problematic file first
        print("🎯 Testing specific problematic file...")
        test_specific_file()
        
        # Fix all missing files
        print("\n🔧 Fixing all missing media files...")
        missing, fixed = fix_production_media()
        
        print(f"\n🎉 Fix completed!")
        print(f"Files that were missing: {missing}")
        print(f"Placeholder files created: {fixed}")
        
        if fixed > 0:
            print("\n✅ The 404 errors should now be resolved!")
            print("All database file references now have corresponding files.")
        
    except Exception as e:
        print(f"❌ Error: {e}")
        import traceback
        traceback.print_exc()

if __name__ == '__main__':
    main()