update logic and refactor code
This commit is contained in:
@ -5,6 +5,12 @@ declare(strict_types=1);
|
||||
use DI\ContainerBuilder;
|
||||
use Slim\Factory\AppFactory;
|
||||
use Dotenv\Dotenv;
|
||||
use App\Middleware\CorsMiddleware;
|
||||
use Psr\Http\Message\ServerRequestInterface;
|
||||
use Psr\Http\Message\ResponseInterface;
|
||||
use App\Controllers\CaptchaController;
|
||||
use App\Controllers\ProxyController;
|
||||
use App\Controllers\LoginController;
|
||||
|
||||
require __DIR__ . '/../vendor/autoload.php';
|
||||
|
||||
@ -32,11 +38,11 @@ $containerBuilder->useAutowiring(true); // Enable autowiring globally
|
||||
|
||||
|
||||
// Add settings
|
||||
$settings = require __DIR__ . '/../src/Settings/settings.php';
|
||||
$settings = require __DIR__ . '/../src/Settings/Settings.php';
|
||||
$settings($containerBuilder);
|
||||
|
||||
// Add dependencies
|
||||
$dependencies = require __DIR__ . '/../src/Dependencies/dependencies.php';
|
||||
$dependencies = require __DIR__ . '/../src/Dependencies/Dependencies.php';
|
||||
$dependencies($containerBuilder);
|
||||
|
||||
// Build the container
|
||||
@ -49,22 +55,23 @@ AppFactory::setContainer($container);
|
||||
$app = AppFactory::create();
|
||||
|
||||
// 🔹 CORS middleware
|
||||
$app->add(function ($request, $handler) {
|
||||
$response = $handler->handle($request);
|
||||
$origin = $_SERVER['HTTP_ORIGIN'] ?? '*';
|
||||
$app->add(CorsMiddleware::class);
|
||||
|
||||
return $response
|
||||
->withHeader('Access-Control-Allow-Origin', $origin)
|
||||
->withHeader('Access-Control-Allow-Headers', 'Origin, X-Requested-With, Content-Type, Accept, Authorization')
|
||||
->withHeader('Access-Control-Allow-Methods', 'GET, POST, PUT, PATCH, DELETE, OPTIONS')
|
||||
->withHeader('Access-Control-Allow-Credentials', 'true');
|
||||
});
|
||||
|
||||
// Register middleware
|
||||
(require __DIR__ . '/../src/Bootstrap/middleware.php')($app);
|
||||
(require __DIR__ . '/../src/Bootstrap/Middleware.php')($app);
|
||||
|
||||
|
||||
// Register routes
|
||||
(require __DIR__ . '/../src/Bootstrap/routes.php')($app);
|
||||
|
||||
// API contianer proxy route
|
||||
$app->group('/api', function ($group) {
|
||||
$group->get('/captcha', [CaptchaController::class, 'get']);
|
||||
$group->post('/login', [LoginController::class, 'index']);
|
||||
|
||||
});
|
||||
|
||||
$app->any('/{routes:.*}', [ProxyController::class, 'forward']);
|
||||
|
||||
// Run app
|
||||
$app->run();
|
||||
|
||||
BIN
backend/app/public/last-access-logs/.DS_Store
vendored
BIN
backend/app/public/last-access-logs/.DS_Store
vendored
Binary file not shown.
27
backend/app/public/last-access-logs/testone.txt
Normal file
27
backend/app/public/last-access-logs/testone.txt
Normal file
@ -0,0 +1,27 @@
|
||||
2025-07-15 18:59:58 : http://lxdapp.local/api/login
|
||||
2025-07-15 18:59:59 : http://10.110.90.24//demo
|
||||
2025-07-15 19:00:26 : http://10.110.90.24//
|
||||
2025-07-15 19:01:46 : http://lxdapp.local/api/login
|
||||
2025-07-15 19:01:47 : http://10.110.90.24//
|
||||
2025-07-15 19:02:21 : http://10.110.90.24//
|
||||
2025-07-15 19:04:09 : http://lxdapp.local/api/login
|
||||
2025-07-15 19:04:10 : http://10.110.90.24//
|
||||
2025-07-15 19:11:18 : http://lxdapp.local/api/login
|
||||
2025-07-15 19:11:18 : http://10.110.90.24//
|
||||
2025-07-15 19:12:44 : http://10.110.90.24//sdfsd
|
||||
2025-07-15 19:13:12 : http://10.110.90.24//
|
||||
2025-07-15 19:17:17 : http://10.110.90.24//
|
||||
2025-07-15 19:25:26 : http://testone.lxdapp.local/api/login
|
||||
2025-07-15 19:25:28 : http://10.110.90.24//
|
||||
2025-07-16 09:15:04 : http://10.110.90.24//
|
||||
2025-07-16 09:21:18 : http://10.110.90.24//
|
||||
2025-07-16 09:22:08 : http://testone.lxdapp.local/api/login
|
||||
2025-07-16 09:22:09 : http://10.110.90.24//
|
||||
2025-07-16 09:30:13 : http://10.110.90.24//
|
||||
2025-07-16 09:32:41 : http://testone.lxdapp.local/api/login
|
||||
2025-07-16 09:32:42 : http://10.110.90.24//
|
||||
2025-07-16 09:33:50 : http://testone.lxdapp.local/api/login
|
||||
2025-07-16 09:33:50 : http://10.110.90.24//
|
||||
2025-07-16 09:33:58 : http://10.110.90.24//
|
||||
2025-07-16 09:45:10 : http://10.110.90.24//
|
||||
2025-07-16 09:45:12 : http://10.110.90.24//
|
||||
Reference in New Issue
Block a user