نسخة كاملة من مستودع سيرو عند 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>
38 lines
1.2 KiB
PHP
38 lines
1.2 KiB
PHP
<?php
|
|
require_once __DIR__ . '/../../connect.php';
|
|
|
|
// Sanitize and validate input
|
|
$driverId = filterRequest("driverId");
|
|
|
|
// SQL query to check if a gift already exists for the driver (unclaimed)
|
|
$checkSql = "SELECT COUNT(*) FROM driver_gifts WHERE driver_id = :driverId -- AND is_claimed = 0";
|
|
|
|
try {
|
|
$checkStmt = $con->prepare($checkSql);
|
|
$checkStmt->bindParam(':driverId', $driverId, PDO::PARAM_INT);
|
|
$checkStmt->execute();
|
|
$giftExists = $checkStmt->fetchColumn();
|
|
|
|
if ($giftExists > 0) {
|
|
jsonError("Gift already exists for this driver");
|
|
exit;
|
|
}
|
|
|
|
// Insert a new claimed gift
|
|
$sql = "INSERT INTO driver_gifts (driver_id, gift_description, is_claimed)
|
|
VALUES (:driverId, 'new account 300 le', 1)";
|
|
$stmt = $con->prepare($sql);
|
|
$stmt->bindParam(':driverId', $driverId, PDO::PARAM_INT);
|
|
$stmt->execute();
|
|
|
|
if ($stmt->rowCount() > 0) {
|
|
jsonSuccess(null, "Gift data saved successfully");
|
|
} else {
|
|
jsonError("Failed to save gift data");
|
|
}
|
|
|
|
} catch (PDOException $e) {
|
|
error_log("Database Error: " . $e->getMessage());
|
|
jsonError("An error occurred while saving the data");
|
|
}
|
|
?>
|