Files
intaleq/backend/ride/rides/updateRideAndCheckIfApplied.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

47 lines
1.4 KiB
PHP

<?php
require_once __DIR__ . '/../../connect.php';
$rideId = filterRequest("id");
$rideTimeStart = filterRequest("rideTimeStart");
$driverId = filterRequest("driver_id");
// Step 1: تأكد أن الرحلة غير محجوزة مسبقًا
$sqlCheck = "SELECT `status` FROM `ride` WHERE `id` = :rideId LIMIT 1";
$stmtCheck = $con->prepare($sqlCheck);
$stmtCheck->bindParam(":rideId", $rideId);
$stmtCheck->execute();
$ride = $stmtCheck->fetch(PDO::FETCH_ASSOC);
if (!$ride) {
jsonError("Ride not found.");
exit;
}
if ($ride['status'] === 'Apply') {
jsonError("This ride is already applied by another driver.");
exit;
}
// Step 2: تحديث حالة الرحلة وربط السائق بها
$sqlUpdate = "UPDATE `ride`
SET `driver_id` = :driverId,
`status` = 'Apply',
`rideTimeStart` = :rideTimeStart
WHERE `id` = :rideId";
$stmtUpdate = $con->prepare($sqlUpdate);
$stmtUpdate->bindParam(":driverId", $driverId);
$stmtUpdate->bindParam(":rideTimeStart", $rideTimeStart);
$stmtUpdate->bindParam(":rideId", $rideId);
$stmtUpdate->execute();
if ($stmtUpdate->rowCount() > 0) {
jsonSuccess(null, "Ride data updated successfully");
// يمكنك هنا إرسال إشعار للسائقين الآخرين إذا أردت
// FirebaseMessagesController()->sendNotificationToOtherDrivers(...)
} else {
jsonError("Failed to update ride data.");
}
?>