Files
intaleq/backend/serviceapp/getDriverDetailsForActivate.php
T
Hamza-AyedandClaude Opus 5 92dc6b3641 chore: استيراد أولي من سيرو (ecfe7568) — بلا أي تعديل
نسخة كاملة من مستودع سيرو عند ecfe7568 لتكون أساس تطبيق «انطلق».
نُسخ المتعقَّب في git فقط (12,509 ملفاً / 302 م.ب) بـ git archive، لا
`cp -r` — فاستُثنيت تلقائياً مخلفات البناء (build · node_modules ·
.dart_tool · .gradle · Pods ≈ 10.7 غ.ب) وكل ما يستثنيه .gitignore.

هذا الكوميت **بلا أي تعديل عمداً** حتى يكون كل ما يليه فرقاً مقروءاً
مقابل سيرو الأصلي. سيرو نفسه لم يُمسّ.

⚠️ لا يبني بعد: `.env` و`lib/env/env.g.dart` غير متعقَّبين في سيرو (وهذا
صحيح — أسرار لكل مستأجر). كل تطبيق فلاتر هنا يحتاج .env خاصاً بانطلق ثم
توليد env.g.dart عبر build_runner. لا تُنسخ أسرار سيرو.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-07-27 05:10:29 +03:00

67 lines
2.3 KiB
PHP

<?php
require_once __DIR__ . '/../connect.php';
$driverId = filterRequest("driverId");
$sql = "SELECT d.*, cr.*
FROM `driver` d
LEFT JOIN `CarRegistration` cr ON cr.driverID = d.id
WHERE d.id = :driverId ";
$stmt = $con->prepare($sql);
$stmt->execute([':driverId' => $driverId]);
if ($stmt->rowCount() > 0) {
$row = $stmt->fetch(PDO::FETCH_ASSOC);
// فك التشفير للحقول المطلوبة
$fieldsToDecrypt = [
'phone','email','gender','national_number','first_name','last_name',
'name_arabic','address','site','vin','car_plate','owner','birthdate'
];
foreach ($fieldsToDecrypt as $field) {
if (isset($row[$field]) && $row[$field] !== '') {
try {
$row[$field] = $encryptionHelper->decryptData($row[$field]);
} catch (Exception $e) {
$row[$field] = "Decryption Failed";
}
}
}
// ✅ جلب روابط المستندات من driver_documents
$docsSql = "SELECT doc_type, link, image_name FROM driver_documents WHERE driverID = :driverId2 ORDER BY doc_type";
$docsStmt = $con->prepare($docsSql);
$docsStmt->execute([':driverId2' => $driverId]);
$documents = $docsStmt->fetchAll(PDO::FETCH_ASSOC);
$row['documents'] = $documents ?: [];
// ✅ فك JSON لـ ai_data و user_input
if (!empty($row['ai_data'])) {
$decoded = json_decode($row['ai_data'], true);
$row['ai_data'] = $decoded ?: $row['ai_data'];
}
if (!empty($row['user_input'])) {
$decoded = json_decode($row['user_input'], true);
$row['user_input'] = $decoded ?: $row['user_input'];
}
// ✅ إزالة الحقول الحسّاسة من الاستجابة
$fieldsToRemove = ['password', 'password_hash', 'salt', 'reset_token'];
foreach ($fieldsToRemove as $f) {
if (array_key_exists($f, $row)) {
unset($row[$f]);
}
}
// عشان الـ licenseIssueDate متناسق مع الفلتر
if (empty($row['licenseIssueDate']) && !empty($row['issue_date'])) {
$row['licenseIssueDate'] = $row['issue_date'];
}
// إرسال الاستجابة
jsonSuccess([$row]);
} else {
jsonError("No data found for the specified driver ID");
}