Initial commit with updated Auth and media ignored

This commit is contained in:
Hamza-Ayed
2026-04-28 13:04:27 +03:00
commit 67af97474c
477 changed files with 66444 additions and 0 deletions

32
ride/tips/add.php Executable file
View File

@@ -0,0 +1,32 @@
<?php
require_once __DIR__ . '/../../connect.php';
// استلام المتغيرات
$passengerID = filterRequest("passengerID");
$driverID = filterRequest("driverID");
$rideID = filterRequest("rideID");
$tipAmount = filterRequest("tipAmount");
// تحقق من صحة قيمة البقشيش
if (!is_numeric($tipAmount) || $tipAmount < 0 || $tipAmount > 99999999.99) {
jsonError("Invalid tip amount.");
exit();
}
// إدراج بيانات البقشيش
$sql = "INSERT INTO `tips` (`driverID`, `passengerID`, `rideID`, `tipAmount`)
VALUES (:driverID, :passengerID, :rideID, :tipAmount)";
$stmt = $con->prepare($sql);
$stmt->bindParam(':driverID', $driverID);
$stmt->bindParam(':passengerID', $passengerID);
$stmt->bindParam(':rideID', $rideID);
$stmt->bindParam(':tipAmount', $tipAmount);
// تنفيذ العملية
if ($stmt->execute() && $stmt->rowCount() > 0) {
jsonSuccess(null, "Tip inserted successfully");
} else {
jsonError("Failed to save tip information");
}
?>

35
ride/tips/get.php Normal file
View File

@@ -0,0 +1,35 @@
<?php
require_once __DIR__ . '/../../connect.php';
// فلترة البيانات
$driverID = filterRequest("driverID");
$passengerID = filterRequest("passendgerID"); // إذا كان الاسم كذلك في قاعدة البيانات
// إعداد SQL آمن باستخدام bindParam
$sql = "
SELECT
`id`,
`driverID`,
`passendgerID`,
`rideID`,
`tipAmount`
FROM
`tips`
WHERE
(`driverID` = :driverID OR `passendgerID` = :passengerID)
";
$stmt = $con->prepare($sql);
$stmt->bindParam(':driverID', $driverID);
$stmt->bindParam(':passengerID', $passengerID);
$stmt->execute();
$data = $stmt->fetchAll(PDO::FETCH_ASSOC);
// فحص النتائج
if ($data) {
jsonSuccess($data);
} else {
jsonError("No tips records found");
}
?>