27 lines
844 B
PHP
27 lines
844 B
PHP
<?php
|
|
// ============================================================
|
|
// connect.php (النسخة الحديثة)
|
|
// بوابة التطبيقات (تستلزم JWT)
|
|
// ============================================================
|
|
|
|
require_once __DIR__ . '/core/bootstrap.php';
|
|
require_once __DIR__ . '/functions.php';
|
|
|
|
// 1. Rate Limiting and JWT Authentication
|
|
$limiter = new RateLimiter($redis);
|
|
$limiter->enforce(RateLimiter::identifier(), 'api');
|
|
|
|
$jwtService = new JwtService($redis);
|
|
$decoded = $jwtService->authenticate();
|
|
|
|
// متغيرات مساعدة للمطور
|
|
$user_id = $decoded->user_id ?? null;
|
|
$role = $decoded->role ?? 'passenger';
|
|
|
|
// 3. Database Connection
|
|
try {
|
|
$con = Database::get('main');
|
|
} catch (Exception $e) {
|
|
http_response_code(500);
|
|
exit(json_encode(['error' => 'Database connection failed']));
|
|
} |