load(); } catch (\Dotenv\Exception\InvalidPathException $e) { // } //Enable error display in details when APP_ENV=local if(envi('APP_ENV')=='local') { Logger::systemLogs(true); }else{ Logger::systemLogs(false); } $container = new Container(); // Set container to create App with on AppFactory AppFactory::setContainer($container); $app = AppFactory::create(); $responseFactory = $app->getResponseFactory(); $routeCollector = $app->getRouteCollector(); $routeCollector->setDefaultInvocationStrategy(new RequestResponseArgs()); $routeParser = $app->getRouteCollector()->getRouteParser(); require_once __DIR__ . '/database.php'; $desiredLanguage = 'en_US'; // Default language // Check for a URL parameter if (isset($_GET['lang'])) { $desiredLanguage = $_GET['lang']; } $languageFile = '../lang/' . $desiredLanguage . '/messages.po'; if (!file_exists($languageFile)) { $desiredLanguage = 'en_US'; // Fallback $languageFile = '../lang/en_US/messages.po'; } $loader = new PoLoader(); $translations = $loader->loadFile($languageFile); $container->set('router', function () use ($routeParser) { return $routeParser; }); $container->set('db', function () use ($db) { return $db; }); $container->set('pdo', function () use ($pdo) { return $pdo; }); $container->set('auth', function() { return new \App\Auth\Auth; }); $container->set('flash', function() { return new \Slim\Flash\Messages; }); $container->set('view', function ($container) use ($translations) { $view = Twig::create(__DIR__ . '/../resources/views', [ 'cache' => false, ]); $view->getEnvironment()->addGlobal('auth', [ 'isLogin' => $container->get('auth')->isLogin(), 'user' => $container->get('auth')->user(), ]); $view->getEnvironment()->addGlobal('flash', $container->get('flash')); if (isset($_SESSION['_screen_mode'])) { $view->getEnvironment()->addGlobal('screen_mode', $_SESSION['_screen_mode']); } else { $view->getEnvironment()->addGlobal('screen_mode', 'light'); } $translateFunction = new TwigFunction('__', function ($text) use ($translations) { // Find the translation $translation = $translations->find(null, $text); if ($translation) { return $translation->getTranslation(); } // Return the original text if translation not found return $text; }); $view->getEnvironment()->addFunction($translateFunction); //route $route = new TwigFunction('route', function ($name) { return route($name); }); $view->getEnvironment()->addFunction($route); // Define the route_is function $routeIs = new \Twig\TwigFunction('route_is', function ($routeName) { return strpos($_SERVER['REQUEST_URI'], $routeName) !== false; }); $view->getEnvironment()->addFunction($routeIs); //assets $assets = new TwigFunction('assets', function ($location) { return assets($location); }); $view->getEnvironment()->addFunction($assets); //Pagination $pagination = new TwigFunction("links", function ($object) { }); $view->getEnvironment()->addFunction($pagination); return $view; }); $app->add(TwigMiddleware::createFromContainer($app)); $container->set('validator', function ($container) { return new App\Lib\Validator; }); $container->set('csrf', function($container) use ($responseFactory) { return new Guard($responseFactory); }); $app->add(new \App\Middleware\ValidationErrorsMiddleware($container)); $app->add(new \App\Middleware\OldInputMiddleware($container)); $app->add(new \App\Middleware\CsrfViewMiddleware($container)); $app->add('csrf'); $app->setBasePath(routePath()); require __DIR__ . '/../routes/web.php';