Files
intaleq/backend/ride/heatmap/heatmap_live.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

98 lines
3.5 KiB
PHP

<?php
require_once __DIR__ . '/../connect.php';
// If Main Redis is not available, return empty array
if (!isset($redis) || $redis === null) {
echo json_encode([]);
exit();
}
$grid_size = 0.0135;
$keys = [];
try {
// Prefix 'siro:' is automatically applied by $redis
$keys = $redis->keys("demand:grid:*");
} catch (Exception $e) {
error_log("[heatmap_live.php] Redis keys error: " . $e->getMessage());
echo json_encode([]);
exit();
}
$heatmap_data = [];
foreach ($keys as $key) {
// The keys returned by $redis->keys() will actually contain the 'siro:' prefix
// e.g. siro:demand:grid:33.5135_36.2735
$parts = explode(":", $key);
$coords = explode("_", end($parts));
if (count($coords) == 2) {
$lat = (float)$coords[0];
$lng = (float)$coords[1];
// We must strip 'siro:' to use $redis->get() because $redis auto-prefixes everything!
// Actually, $redis->keys() returns the physical key "siro:demand:grid:X"
// But $redis->get("demand:grid:X") automatically prepends "siro:".
// So we must strip the "siro:" part before passing to get()
$clean_key = str_replace("siro:", "", $key);
$count = (int)$redis->get($clean_key);
// Fetch active drivers using Location Redis
$available_drivers = 0;
try {
global $redisLocation;
if (isset($redisLocation) && $redisLocation !== null) {
$drivers = $redisLocation->georadius('geo:drivers:available', $lng, $lat, 0.75, 'km');
$availableDrivers = count($drivers);
}
} catch (Exception $e) {}
$intensity = 'low';
$surge_ratio = ($available_drivers > 0) ? ($count / $available_drivers) : $count;
if ($surge_ratio > 2.0 || $count >= 5) {
$intensity = 'high';
} else if ($surge_ratio > 1.2 || $count >= 3) {
$intensity = 'medium';
}
$heatmap_data[] = [
"lat" => $lat,
"lng" => $lng,
"count" => $count,
"intensity" => $intensity
];
}
}
// === MERGE AI HOT ZONES ===
// ندمج مناطق الذروة الخاصة بالمنافسين (التي استخرجها الذكاء الاصطناعي) لتظهر باللون الأحمر (High)
try {
$aiHotZonesJson = $redis->get('siro:cache:ai:hotzones');
if ($aiHotZonesJson) {
$aiZonesData = json_decode($aiHotZonesJson, true);
if (isset($aiZonesData['status']) && $aiZonesData['status'] == 'success' && isset($aiZonesData['data'])) {
foreach ($aiZonesData['data'] as $zone) {
// نضيفها للمصفوفة ليقوم تطبيق الفلاتر برسمها كمربعات حمراء تلقائياً
$heatmap_data[] = [
"lat" => (float)$zone['latitude'],
"lng" => (float)$zone['longitude'],
"count" => 99, // رقم كبير لإجبار التطبيق على تلوينها بالأحمر (High)
"intensity" => "high",
"is_ai_surge" => true,
"competitor" => $zone['top_competitor'] ?? '',
"price" => $zone['avg_price'] ?? 0
];
}
}
}
} catch (Exception $e) {
error_log("[heatmap_live.php] AI Hotzones merge error: " . $e->getMessage());
}
// Output the JSON array as expected by home_captain_controller.dart
header('Content-Type: application/json');
echo json_encode($heatmap_data);
?>