49 lines
2.0 KiB
PHP
49 lines
2.0 KiB
PHP
|
|
<?php
|
|
// ═══════════════════════════════════════════════════════════════
|
|
// update_driver_fingerprint_admin.php
|
|
// ───────────────────────────────────────────────────────────────
|
|
// ⚠️ يُستخدم فقط أثناء الترحيل ثم يُحذف
|
|
// ═══════════════════════════════════════════════════════════════
|
|
|
|
|
|
require_once __DIR__ . '/../get_connect.php';
|
|
|
|
header('Content-Type: application/json');
|
|
header('Access-Control-Allow-Origin: https://intaleqapp.com');
|
|
header('Access-Control-Allow-Methods: POST, OPTIONS');
|
|
header('Access-Control-Allow-Headers: Content-Type, Authorization');
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] === 'OPTIONS') { http_response_code(200); exit; }
|
|
|
|
$adminKey = filterRequest('admin_key') ?? '';
|
|
$expectedAdminKey = getenv('MIGRATION_ADMIN_KEY');
|
|
|
|
if (empty($adminKey) || !hash_equals($expectedAdminKey, $adminKey)) {
|
|
http_response_code(403);
|
|
exit(json_encode(['error' => 'Forbidden']));
|
|
}
|
|
|
|
try {
|
|
$captainId = filterRequest('captain_id') ?? '';
|
|
$fingerprint = filterRequest('fingerprint') ?? '';
|
|
|
|
if (empty($captainId) || empty($fingerprint)) {
|
|
http_response_code(400);
|
|
exit(json_encode(['error' => 'Missing parameters']));
|
|
}
|
|
|
|
$stmt = $con->prepare('
|
|
UPDATE driverToken
|
|
SET fingerPrint = :fp
|
|
WHERE captain_id = :cid
|
|
');
|
|
$stmt->execute([':fp' => $fingerprint, ':cid' => $captainId]);
|
|
|
|
echo json_encode(['status' => 'success', 'affected' => $stmt->rowCount()]);
|
|
|
|
} catch (Exception $e) {
|
|
error_log('❌ [update_driver_fingerprint_admin] ' . $e->getMessage());
|
|
http_response_code(500);
|
|
echo json_encode(['error' => 'Server error']);
|
|
} |