feat: add Nabeh payment verification proxy and update UI components

This commit is contained in:
Hamza-Ayed
2026-07-11 22:14:37 +03:00
parent de761c1d97
commit 83f5bf516b
5 changed files with 74 additions and 10 deletions
+7
View File
@@ -23,6 +23,13 @@ ini_set('log_errors', '1');
$logPath = getenv('ERROR_LOG_PATH') ?: (__DIR__ . '/../logs/php_errors.log');
ini_set('error_log', $logPath);
// تعريف الدولة أو البيئة الحالية للسيرفر (مثلاً: syria, egypt, jordan)
// تُستخدم لتوجيه الروابط أو لتحديد السيرفر
$globalCountry = getenv('GLOBAL_COUNTRY') ?: 'syria';
if (!defined('GLOBAL_COUNTRY')) {
define('GLOBAL_COUNTRY', $globalCountry);
}
header_remove('X-Powered-By');
header('Content-Type: application/json; charset=UTF-8');
header('X-Content-Type-Options: nosniff');
+50
View File
@@ -0,0 +1,50 @@
<?php
/**
* Nabeh Integration — Verify Payment (Proxy to Wallet Server)
*
* This script forwards requests to the actual Wallet Server endpoint
* where the Gemini AI and invoice processing logic resides.
*/
header('Access-Control-Allow-Origin: *');
header('Access-Control-Allow-Methods: POST, OPTIONS');
header('Access-Control-Allow-Headers: Content-Type, X-API-Key');
if ($_SERVER['REQUEST_METHOD'] === 'OPTIONS') {
http_response_code(200);
exit;
}
require_once __DIR__ . '/../core/bootstrap.php';
$walletUrl = getenv('WALLET_SERVER_URL') ?: 'https://walletintaleq.intaleq.xyz';
$endpoint = rtrim($walletUrl, '/') . '/v2/main/ride/nabeh/verify_payment.php';
$headers = [
'Content-Type: application/json'
];
if (isset($_SERVER['HTTP_X_API_KEY'])) {
$headers[] = 'X-API-Key: ' . $_SERVER['HTTP_X_API_KEY'];
}
$rawInput = file_get_contents('php://input');
$ch = curl_init($endpoint);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $rawInput);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
// curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // Enable in local dev if needed
$response = curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
if ($httpCode) {
http_response_code($httpCode);
} else {
http_response_code(500);
$response = json_encode(['status' => 'error', 'message' => 'Failed to connect to Wallet Server']);
}
echo $response;
+5 -2
View File
@@ -9,6 +9,7 @@ import '../../controller/local/phone_intel/intl_phone_field.dart';
import '../../controller/functions/country_logic.dart';
import '../../constant/box_name.dart';
import '../../main.dart';
import '../home/map_widget.dart/left_main_menu_icons.dart';
// ─────────────────────────────────────────────────────────────────────────────
// SHARED DESIGN TOKENS
@@ -488,7 +489,8 @@ class _PhoneNumberScreenState extends State<PhoneNumberScreen> {
const BorderSide(color: Color(0xFFEF4444), width: 1.5),
),
),
initialCountryCode: CountryLogic.getCountryPrefix(box.read(BoxName.countryCode) ?? 'Syria'),
initialCountryCode: CountryLogic.getCountryPrefix(
box.read(BoxName.countryCode) ?? 'Syria'),
onChanged: (phone) {
_phoneController.text = phone.completeNumber;
},
@@ -540,7 +542,8 @@ class _OtpVerificationScreenState extends State<OtpVerificationScreen> {
void _submit() async {
if (_formKey.currentState!.validate()) {
setState(() => _isLoading = true);
await PhoneAuthHelper.verifyOtp(widget.phoneNumber, _otpController.text.trim());
await PhoneAuthHelper.verifyOtp(
widget.phoneNumber, _otpController.text.trim());
if (mounted) setState(() => _isLoading = false);
}
}
@@ -63,14 +63,18 @@ final Map<String, CarType> _carTypeCatalog = {
carType: 'Awfar Car',
carDetail: 'Old and affordable'.tr,
image: 'assets/images/balash.png'),
'Mishwar Vip': CarType(
carType: 'Mishwar Vip',
carDetail: 'Perfect for passengers seeking the latest car models'.tr,
image: 'assets/images/jeep.png'),
};
// ترتيب وتوفر أنواع السيارات حسب الدولة (بدون "Rayeh Gai" لأنها تُضاف
// تلقائياً حسب مسافة الرحلة بغض النظر عن الدولة).
const Map<String, List<String>> _carTypesByCountry = {
'Jordan': ['Fixed Price', 'Comfort', 'Electric', 'Lady'],
'Egypt': ['Fixed Price', 'Comfort', 'Lady', 'Scooter', 'Awfar Car'],
'Syria': ['Fixed Price', 'Comfort', 'Electric', 'Lady', 'Van'],
'Jordan': ['Fixed Price', 'Comfort', 'Mishwar Vip', 'Electric', 'Lady'],
'Egypt': ['Fixed Price', 'Comfort', 'Mishwar Vip', 'Lady', 'Scooter', 'Awfar Car'],
'Syria': ['Fixed Price', 'Comfort', 'Mishwar Vip', 'Electric', 'Lady', 'Van'],
};
List<CarType> _carTypesForCountry(String country) {
@@ -69,11 +69,11 @@ GetBuilder<MapEngineController> leftMainMenuIcons() {
tooltip: 'VIP Waiting Page',
onPressed: () => Get.to(() => VipWaittingPage()),
),
_buildMapActionButton(
icon: Icons.explore,
tooltip: 'Test Page',
onPressed: () => Get.to(() => TestPage()),
),
// _buildMapActionButton(
// icon: Icons.explore,
// tooltip: 'Test Page',
// onPressed: () => Get.to(() => TestPage()),
// ),
],
),
),