Files
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

80 lines
2.6 KiB
PHP

<?php
require_once __DIR__ . '/../../connect.php';
/* ───── 1) جلب الحقول من طلب POST ───── */
$driverID = filterRequest("driverID");
$vin = filterRequest("vin");
$carPlate = filterRequest("car_plate");
$make = filterRequest("make");
$model = filterRequest("model");
$year = filterRequest("year");
$expirationDate = filterRequest("expiration_date");
$color = filterRequest("color");
$owner = filterRequest("owner");
$colorHex = filterRequest("color_hex");
$fuel = filterRequest("fuel");
/* ───── 2) التحقق من الحقول الأساسية ───── */
$required = [
'driverID' => $driverID,
'vin' => $vin,
'car_plate' => $carPlate,
'make' => $make,
'model' => $model,
'year' => $year,
'expirationDate' => $expirationDate,
'color' => $color,
'owner' => $owner,
'colorHex' => $colorHex,
'fuel' => $fuel,
];
foreach ($required as $field => $val) {
if ($val === null || $val === '') {
jsonError("Missing required field: $field");
exit;
}
}
/* ───── 3) تشفير الحقول الحساسة ───── */
$vin = $encryptionHelper->encryptData($vin);
$carPlate = $encryptionHelper->encryptData($carPlate);
$owner = $encryptionHelper->encryptData($owner);
/* ───── 4) هل لدى السائق مركبة مُسجلة سابقًا؟ ───── */
$hasCar = $con->prepare("SELECT 1 FROM CarRegistration WHERE driverID = :d LIMIT 1");
$hasCar->execute([':d' => $driverID]);
$isDefault = $hasCar->rowCount() === 0 ? 1 : 0;
/* ───── 5) إدراج السجل ───── */
$sql = "
INSERT INTO CarRegistration (
driverID, vin, car_plate, make, model, year, expiration_date,
color, owner, color_hex, fuel, isDefault, created_at, status
) VALUES (
:driverID, :vin, :carPlate, :make, :model, :year, :expirationDate,
:color, :owner, :colorHex, :fuel, :isDefault, NOW(), 'yet'
)
";
$ins = $con->prepare($sql);
$ins->execute([
':driverID' => $driverID,
':vin' => $vin,
':carPlate' => $carPlate,
':make' => $make,
':model' => $model,
':year' => $year,
':expirationDate' => $expirationDate,
':color' => $color,
':owner' => $owner,
':colorHex' => $colorHex,
':fuel' => $fuel,
':isDefault' => $isDefault,
]);
if ($ins->rowCount() > 0) {
jsonSuccess(null, "Car registration saved.");
} else {
jsonError("Failed to save car registration.");
}