نسخة كاملة من مستودع سيرو عند 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>
25 lines
683 B
PHP
25 lines
683 B
PHP
<?php
|
|
// logout.php — تسجيل الخروج الآمن وإلغاء التوكن
|
|
|
|
require_once __DIR__ . '/connect.php';
|
|
|
|
try {
|
|
$jwtService = new JwtService($redis);
|
|
$decoded = $jwtService->authenticate();
|
|
|
|
$jti = $decoded->jti ?? null;
|
|
$exp = $decoded->exp ?? 0;
|
|
$remaining = $exp - time();
|
|
|
|
if ($jti && $remaining > 0) {
|
|
$jwtService->revokeToken($jti, $remaining);
|
|
securityLog("User logged out and token revoked", ['user_id' => $decoded->user_id, 'jti' => $jti]);
|
|
}
|
|
|
|
jsonSuccess(null, "Logged out successfully");
|
|
|
|
} catch (Exception $e) {
|
|
error_log("[logout.php] " . $e->getMessage());
|
|
jsonError("Logout failed", 500);
|
|
}
|