62 lines
1.7 KiB
PHP
62 lines
1.7 KiB
PHP
<?php
|
|
/**
|
|
* Advanced Migration Script: Schema Update + Data Encryption
|
|
*/
|
|
|
|
require_once __DIR__ . '/../app/bootstrap/init.php';
|
|
|
|
use App\Core\Database;
|
|
use App\Core\Encryption;
|
|
|
|
$db = Database::getInstance();
|
|
|
|
echo "--- Starting Security Migration ---\n";
|
|
|
|
// 1. Add email_hash column if it doesn't exist
|
|
try {
|
|
$db->exec("ALTER TABLE users ADD COLUMN email_hash VARCHAR(64) AFTER email, ADD INDEX (email_hash)");
|
|
echo "[OK] Added email_hash column and index.\n";
|
|
} catch (\Exception $e) {
|
|
echo "[SKIP] email_hash column might already exist.\n";
|
|
}
|
|
|
|
// 2. Fetch all users to encrypt their data
|
|
$stmt = $db->query("SELECT id, name, email FROM users");
|
|
$users = $stmt->fetchAll();
|
|
|
|
echo "Found " . count($users) . " users. Starting encryption...\n";
|
|
|
|
$updateStmt = $db->prepare("UPDATE users SET name = ?, email = ?, email_hash = ? WHERE id = ?");
|
|
|
|
foreach ($users as $user) {
|
|
// Check if data is already encrypted (to avoid double encryption)
|
|
$isAlreadyEncrypted = Encryption::decrypt($user['email']) !== false;
|
|
|
|
if ($isAlreadyEncrypted) {
|
|
echo "User ID {$user['id']} is already encrypted. Skipping.\n";
|
|
continue;
|
|
}
|
|
|
|
// Encrypt Name
|
|
$encryptedName = Encryption::encrypt($user['name']);
|
|
|
|
// Encrypt Email
|
|
$encryptedEmail = Encryption::encrypt($user['email']);
|
|
|
|
// Generate Hash for lookup
|
|
$emailHash = hash('sha256', strtolower($user['email']));
|
|
|
|
$updateStmt->execute([
|
|
$encryptedName,
|
|
$encryptedEmail,
|
|
$emailHash,
|
|
$user['id']
|
|
]);
|
|
|
|
echo "User ID {$user['id']} migrated successfully.\n";
|
|
}
|
|
|
|
// (Table creation logic removed because it is properly handled by schema.sql)
|
|
|
|
echo "--- Migration Complete ---\n";
|