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

40
ride/egyptPhones/add.php Normal file
View File

@@ -0,0 +1,40 @@
<?php
require_once __DIR__ . '/../../connect.php';
// Get the values from the request
$phones = filterRequest("phones");
$name = filterRequest("name");
$phones2 = filterRequest("phones2");
// Check if required fields are provided
if (empty($phones)) {
jsonError($message = "Phone number is required.");
exit();
}
// Prepare the SQL query to insert data into contactEgypt
$sql = "INSERT INTO `contactEgypt`(`phones`, `name`, `phones2`) VALUES (
:phones,
:name,
:phones2
)";
$stmt = $con->prepare($sql);
$stmt->bindParam(':phones', $phones);
$stmt->bindParam(':name', $name);
$stmt->bindParam(':phones2', $phones2);
try {
$stmt->execute();
if ($stmt->rowCount() > 0) {
// Print a success message
jsonSuccess($message = "Contact data saved successfully");
} else {
// Print a failure message
jsonError($message = "Failed to save contact data");
}
} catch (PDOException $e) {
// Print error message
jsonError($message = "Database error: " . $e->getMessage());
}
?>

View File

0
ride/egyptPhones/get.php Normal file
View File

37
ride/egyptPhones/syrianAdd.php Executable file
View File

@@ -0,0 +1,37 @@
<?php
require_once __DIR__ . '/../../connect.php'; // تأكد من أن هذا المسار صحيح
// --- استقبال البيانات من التطبيق ---
$driverId = filterRequest("driverId");
$name = filterRequest("name");
$phone = filterRequest("phone");
// --- التحقق من وجود البيانات الضرورية ---
if (empty($driverId) || empty($phone)) {
jsonError("Driver ID and Phone number are required.");
exit();
}
// --- إعداد استعلام SQL ---
// نستخدم "INSERT IGNORE" لتجنب إدخال سجلات مكررة بناءً على المفتاح الفريد (driverId, phone)
// إذا كان السجل موجوداً مسبقاً، سيتجاهله الاستعلام ببساطة
$sql = "INSERT IGNORE INTO `contactSyria`(`driverId`, `name`, `phone`) VALUES (:driverId, :name, :phone)";
$stmt = $con->prepare($sql);
$stmt->bindParam(':driverId', $driverId);
$stmt->bindParam(':name', $name);
$stmt->bindParam(':phone', $phone);
try {
$stmt->execute();
// rowCount() ستكون 1 عند إضافة سجل جديد، و 0 عند تجاهل سجل مكرر
if ($stmt->rowCount() > 0) {
jsonSuccess(null, "New contact saved successfully");
} else {
jsonSuccess(null, "Contact already exists for this driver.");
}
} catch (PDOException $e) {
// إرجاع رسالة خطأ في حال حدوث مشكلة في قاعدة البيانات
jsonError("Database error: " . $e->getMessage());
}
?>