From b3bb8a479fe5c783453be225552b356b364f481c Mon Sep 17 00:00:00 2001 From: Flatlogic Bot Date: Sat, 8 Nov 2025 19:46:15 +0000 Subject: [PATCH] UBPay --- .perm_test_apache | 0 .perm_test_exec | 0 ai/LocalAIApi.php | 311 ++++++++++++++++++++++++++++++++++++++++++ ai/config.php | 52 +++++++ assets/css/custom.css | 47 +++++++ dashboard.php | 139 +++++++++++++++++++ index.php | 280 ++++++++++++++++++------------------- register.php | 80 +++++++++++ 8 files changed, 765 insertions(+), 144 deletions(-) create mode 100644 .perm_test_apache create mode 100644 .perm_test_exec create mode 100644 ai/LocalAIApi.php create mode 100644 ai/config.php create mode 100644 assets/css/custom.css create mode 100644 dashboard.php create mode 100644 register.php diff --git a/.perm_test_apache b/.perm_test_apache new file mode 100644 index 0000000..e69de29 diff --git a/.perm_test_exec b/.perm_test_exec new file mode 100644 index 0000000..e69de29 diff --git a/ai/LocalAIApi.php b/ai/LocalAIApi.php new file mode 100644 index 0000000..00b1b00 --- /dev/null +++ b/ai/LocalAIApi.php @@ -0,0 +1,311 @@ + [ +// ['role' => 'system', 'content' => 'You are a helpful assistant.'], +// ['role' => 'user', 'content' => 'Tell me a bedtime story.'], +// ], +// ]); +// if (!empty($response['success'])) { +// $decoded = LocalAIApi::decodeJsonFromResponse($response); +// } + +class LocalAIApi +{ + /** @var array|null */ + private static ?array $configCache = null; + + /** + * Signature compatible with the OpenAI Responses API. + * + * @param array $params Request body (model, input, text, reasoning, metadata, etc.). + * @param array $options Extra options (timeout, verify_tls, headers, path, project_uuid). + * @return array{ + * success:bool, + * status?:int, + * data?:mixed, + * error?:string, + * response?:mixed, + * message?:string + * } + */ + public static function createResponse(array $params, array $options = []): array + { + $cfg = self::config(); + $payload = $params; + + if (empty($payload['input']) || !is_array($payload['input'])) { + return [ + 'success' => false, + 'error' => 'input_missing', + 'message' => 'Parameter "input" is required and must be an array.', + ]; + } + + if (!isset($payload['model']) || $payload['model'] === '') { + $payload['model'] = $cfg['default_model']; + } + + return self::request($options['path'] ?? null, $payload, $options); + } + + /** + * Snake_case alias for createResponse (matches the provided example). + * + * @param array $params + * @param array $options + * @return array + */ + public static function create_response(array $params, array $options = []): array + { + return self::createResponse($params, $options); + } + + /** + * Perform a raw request to the AI proxy. + * + * @param string $path Endpoint (may be an absolute URL). + * @param array $payload JSON payload. + * @param array $options Additional request options. + * @return array + */ + public static function request(?string $path = null, array $payload = [], array $options = []): array + { + if (!function_exists('curl_init')) { + return [ + 'success' => false, + 'error' => 'curl_missing', + 'message' => 'PHP cURL extension is missing. Install or enable it on the VM.', + ]; + } + + $cfg = self::config(); + + $projectUuid = $cfg['project_uuid']; + if (empty($projectUuid)) { + return [ + 'success' => false, + 'error' => 'project_uuid_missing', + 'message' => 'PROJECT_UUID is not defined; aborting AI request.', + ]; + } + + $defaultPath = $cfg['responses_path'] ?? null; + $resolvedPath = $path ?? ($options['path'] ?? $defaultPath); + if (empty($resolvedPath)) { + return [ + 'success' => false, + 'error' => 'project_id_missing', + 'message' => 'PROJECT_ID is not defined; cannot resolve AI proxy endpoint.', + ]; + } + + $url = self::buildUrl($resolvedPath, $cfg['base_url']); + $baseTimeout = isset($cfg['timeout']) ? (int) $cfg['timeout'] : 30; + $timeout = isset($options['timeout']) ? (int) $options['timeout'] : $baseTimeout; + if ($timeout <= 0) { + $timeout = 30; + } + + $baseVerifyTls = array_key_exists('verify_tls', $cfg) ? (bool) $cfg['verify_tls'] : true; + $verifyTls = array_key_exists('verify_tls', $options) + ? (bool) $options['verify_tls'] + : $baseVerifyTls; + + $projectHeader = $cfg['project_header']; + + $headers = [ + 'Content-Type: application/json', + 'Accept: application/json', + ]; + $headers[] = $projectHeader . ': ' . $projectUuid; + if (!empty($options['headers']) && is_array($options['headers'])) { + foreach ($options['headers'] as $header) { + if (is_string($header) && $header !== '') { + $headers[] = $header; + } + } + } + + if (!empty($projectUuid) && !array_key_exists('project_uuid', $payload)) { + $payload['project_uuid'] = $projectUuid; + } + + $body = json_encode($payload, JSON_UNESCAPED_UNICODE); + if ($body === false) { + return [ + 'success' => false, + 'error' => 'json_encode_failed', + 'message' => 'Failed to encode request body to JSON.', + ]; + } + + $ch = curl_init($url); + curl_setopt($ch, CURLOPT_POST, true); + curl_setopt($ch, CURLOPT_POSTFIELDS, $body); + curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); + curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); + curl_setopt($ch, CURLOPT_TIMEOUT, $timeout); + curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5); + curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, $verifyTls); + curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, $verifyTls ? 2 : 0); + curl_setopt($ch, CURLOPT_FAILONERROR, false); + + $responseBody = curl_exec($ch); + if ($responseBody === false) { + $error = curl_error($ch) ?: 'Unknown cURL error'; + curl_close($ch); + return [ + 'success' => false, + 'error' => 'curl_error', + 'message' => $error, + ]; + } + + $status = (int) curl_getinfo($ch, CURLINFO_HTTP_CODE); + curl_close($ch); + + $decoded = null; + if ($responseBody !== '' && $responseBody !== null) { + $decoded = json_decode($responseBody, true); + if (json_last_error() !== JSON_ERROR_NONE) { + $decoded = null; + } + } + + if ($status >= 200 && $status < 300) { + return [ + 'success' => true, + 'status' => $status, + 'data' => $decoded ?? $responseBody, + ]; + } + + $errorMessage = 'AI proxy request failed'; + if (is_array($decoded)) { + $errorMessage = $decoded['error'] ?? $decoded['message'] ?? $errorMessage; + } elseif (is_string($responseBody) && $responseBody !== '') { + $errorMessage = $responseBody; + } + + return [ + 'success' => false, + 'status' => $status, + 'error' => $errorMessage, + 'response' => $decoded ?? $responseBody, + ]; + } + + /** + * Extract plain text from a Responses API payload. + * + * @param array $response Result of LocalAIApi::createResponse|request. + * @return string + */ + public static function extractText(array $response): string + { + $payload = $response['data'] ?? $response; + if (!is_array($payload)) { + return ''; + } + + if (!empty($payload['output']) && is_array($payload['output'])) { + $combined = ''; + foreach ($payload['output'] as $item) { + if (!isset($item['content']) || !is_array($item['content'])) { + continue; + } + foreach ($item['content'] as $block) { + if (is_array($block) && ($block['type'] ?? '') === 'output_text' && !empty($block['text'])) { + $combined .= $block['text']; + } + } + } + if ($combined !== '') { + return $combined; + } + } + + if (!empty($payload['choices'][0]['message']['content'])) { + return (string) $payload['choices'][0]['message']['content']; + } + + return ''; + } + + /** + * Attempt to decode JSON emitted by the model (handles markdown fences). + * + * @param array $response + * @return array|null + */ + public static function decodeJsonFromResponse(array $response): ?array + { + $text = self::extractText($response); + if ($text === '') { + return null; + } + + $decoded = json_decode($text, true); + if (is_array($decoded)) { + return $decoded; + } + + $stripped = preg_replace('/^```json|```$/m', '', trim($text)); + if ($stripped !== null && $stripped !== $text) { + $decoded = json_decode($stripped, true); + if (is_array($decoded)) { + return $decoded; + } + } + + return null; + } + + /** + * Load configuration from ai/config.php. + * + * @return array + */ + private static function config(): array + { + if (self::$configCache === null) { + $configPath = __DIR__ . '/config.php'; + if (!file_exists($configPath)) { + throw new RuntimeException('AI config file not found: ai/config.php'); + } + $cfg = require $configPath; + if (!is_array($cfg)) { + throw new RuntimeException('Invalid AI config format: expected array'); + } + self::$configCache = $cfg; + } + + return self::$configCache; + } + + /** + * Build an absolute URL from base_url and a path. + */ + private static function buildUrl(string $path, string $baseUrl): string + { + $trimmed = trim($path); + if ($trimmed === '') { + return $baseUrl; + } + if (str_starts_with($trimmed, 'http://') || str_starts_with($trimmed, 'https://')) { + return $trimmed; + } + if ($trimmed[0] === '/') { + return $baseUrl . $trimmed; + } + return $baseUrl . '/' . $trimmed; + } +} + +// Legacy alias for backward compatibility with the previous class name. +if (!class_exists('OpenAIService')) { + class_alias(LocalAIApi::class, 'OpenAIService'); +} diff --git a/ai/config.php b/ai/config.php new file mode 100644 index 0000000..1ba1596 --- /dev/null +++ b/ai/config.php @@ -0,0 +1,52 @@ + $baseUrl, + 'responses_path' => $responsesPath, + 'project_id' => $projectId, + 'project_uuid' => $projectUuid, + 'project_header' => 'project-uuid', + 'default_model' => 'gpt-5', + 'timeout' => 30, + 'verify_tls' => true, +]; diff --git a/assets/css/custom.css b/assets/css/custom.css new file mode 100644 index 0000000..9f9a6aa --- /dev/null +++ b/assets/css/custom.css @@ -0,0 +1,47 @@ +/* UBPay Custom Styles */ +@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap'); + +:root { + --bs-primary: #00A859; + --bs-secondary: #FFC107; + --bs-light: #F8F9FA; + --bs-dark: #212529; + --bs-font-sans-serif: 'Poppins', sans-serif; + --bs-border-radius: 0.5rem; + --bs-border-radius-lg: 1rem; +} + +body { + background-color: var(--bs-light); + font-family: var(--bs-font-sans-serif); +} + +.btn-primary { + background-color: var(--bs-primary); + border-color: var(--bs-primary); +} + +.btn-primary:hover { + background-color: #008245; + border-color: #00733d; +} + +.form-control:focus { + border-color: var(--bs-primary); + box-shadow: 0 0 0 0.25rem rgba(0, 168, 89, 0.25); +} + +.navbar-brand { + font-weight: 700; + color: var(--bs-primary) !important; +} + +.brand-gradient { + background: linear-gradient(135deg, #00A859 0%, #007B5F 100%); + color: white; +} + +.registration-card { + border: none; + box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15); +} diff --git a/dashboard.php b/dashboard.php new file mode 100644 index 0000000..67b67ad --- /dev/null +++ b/dashboard.php @@ -0,0 +1,139 @@ + + + + + + UBPay Dashboard + + + + + + + + +
+
+
+

Welcome, User!

+
+
+ +
+ +
+
+
+
Wallet Balance
+

R1,250.75

+

Available Funds

+
+
+
+ + +
+
+
+
Quick Actions
+
+ + + +
+
+
+
+
+ + +
+
+
+
+
Recent Transactions
+ exec("CREATE TABLE IF NOT EXISTS transactions ( + id INT AUTO_INCREMENT PRIMARY KEY, + description VARCHAR(255) NOT NULL, + amount DECIMAL(10, 2) NOT NULL, + type VARCHAR(50) NOT NULL, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP + )"); + + // Clear existing transactions and insert sample data for demonstration + $pdo->exec("TRUNCATE TABLE transactions"); + $transactions = [ + ['Payment to Shoprite', -120.50, 'Merchant Payment'], + ['Received from J. Doe', 250.00, 'P2P Transfer'], + ['Airtime Purchase (MTN)', -50.00, 'Bill Payment'], + ['Payment to Pick n Pay', -340.75, 'Merchant Payment'], + ['Received from A. Smith', 500.00, 'P2P Transfer'], + ]; + $stmt = $pdo->prepare("INSERT INTO transactions (description, amount, type) VALUES (?, ?, ?)"); + foreach ($transactions as $tx) { + $stmt->execute($tx); + } + + + // Fetch transactions + $stmt = $pdo->query("SELECT description, amount, type, created_at FROM transactions ORDER BY created_at DESC"); + $transactions = $stmt->fetchAll(); + + if (count($transactions) > 0) { + echo '
    '; + foreach ($transactions as $tx) { + $amount_class = $tx['amount'] > 0 ? 'text-success' : 'text-danger'; + $icon = $tx['amount'] > 0 ? 'bi-arrow-down-circle-fill' : 'bi-arrow-up-circle-fill'; + $amount_prefix = $tx['amount'] > 0 ? '+' : '-'; + $formatted_amount = 'R' . number_format(abs($tx['amount']), 2); + + echo '
  • '; + echo '
    '; + echo ''; + echo '' . htmlspecialchars($tx['description']) . ''; + echo '' . htmlspecialchars($tx['type']) . ''; + echo '
    '; + echo '' . $amount_prefix . ' ' . $formatted_amount . ''; + echo '
  • '; + } + echo '
'; + } else { + echo '

No recent transactions.

'; + } + } catch (PDOException $e) { + echo '

Database error: ' . htmlspecialchars($e->getMessage()) . '

'; + } + ?> +
+
+
+
+
+ +
+ © 2025 UBPay. All Rights Reserved. +
+ + + + diff --git a/index.php b/index.php index 7205f3d..4a58525 100644 --- a/index.php +++ b/index.php @@ -1,150 +1,142 @@ - - + - - - New Style - - - - - - - - - - - - - - - - - - - + + + + + UBPay - Welcome + + + + + + + + + + + + + + + + + + + + + -
-
-

Analyzing your requirements and generating your website…

-
- Loading… -
-

AI is collecting your requirements and applying the first changes.

-

This page will update automatically as the plan is implemented.

-

Runtime: PHP — UTC

+ + +
+
-
-
- Page updated: (UTC) -
+ + + + + +
+
+ + +
+

The Future of Payments in Southern Africa

+

Join UBPay for fast, secure, and low-cost payments. Built for everyone, from street vendors to cross-border businesses. Financial inclusion starts here.

+
+ + +
+
+
+

Create Your Account

+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ +
+
+ +
+
+ +
+
+ + +
+

© UBPay. All rights reserved.

+
+ + + + - + \ No newline at end of file diff --git a/register.php b/register.php new file mode 100644 index 0000000..3eec7dc --- /dev/null +++ b/register.php @@ -0,0 +1,80 @@ +exec(" + CREATE TABLE IF NOT EXISTS users ( + id INT AUTO_INCREMENT PRIMARY KEY, + full_name VARCHAR(255) NOT NULL, + mobile_number VARCHAR(20) NOT NULL UNIQUE, + password_hash VARCHAR(255) NOT NULL, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP + ); + "); + + // --- Check if user already exists --- + $stmt = $pdo->prepare("SELECT id FROM users WHERE mobile_number = :mobile_number"); + $stmt->execute(['mobile_number' => $mobile_number]); + if ($stmt->fetch()) { + redirect_with_message('error', 'A user with this mobile number already exists.'); + } + + // --- Create User --- + $password_hash = password_hash($password, PASSWORD_DEFAULT); + + $stmt = $pdo->prepare( + "INSERT INTO users (full_name, mobile_number, password_hash) VALUES (:full_name, :mobile_number, :password_hash)" + ); + + $stmt->execute([ + ':full_name' => $full_name, + ':mobile_number' => $mobile_number, + ':password_hash' => $password_hash + ]); + + redirect_with_message('success', 'Registration successful! You can now log in.'); + +} catch (PDOException $e) { + // In a real app, you would log this error. + // error_log("Registration failed: " . $e->getMessage()); + redirect_with_message('error', 'An internal error occurred. Please try again later.'); +}