mirror of
https://github.com/Mibew/mibew.git
synced 2025-03-23 02:21:23 +03:00
51 lines
1.6 KiB
PHP
51 lines
1.6 KiB
PHP
<?php
|
|
/*
|
|
* This file is a part of Mibew Messenger.
|
|
*
|
|
* Copyright 2005-2023 the original author or authors.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
define('MAINTENANCE_MODE', 'install');
|
|
|
|
// Initialize libraries
|
|
require_once(dirname(__FILE__) . '/libs/init.php');
|
|
|
|
use Mibew\Application;
|
|
use Mibew\Authentication\DummyAuthenticationManager;
|
|
use Mibew\Routing\Loader\DummyPluginLoader;
|
|
use Mibew\Routing\Router;
|
|
use Symfony\Component\Config\FileLocator;
|
|
use Symfony\Component\Config\Loader\LoaderResolver;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
use Symfony\Component\Routing\Loader\YamlFileLoader;
|
|
|
|
// Prepare router
|
|
$file_locator = new FileLocator(array(MIBEW_FS_ROOT));
|
|
$route_loader = new YamlFileLoader($file_locator);
|
|
$loader_resolver = new LoaderResolver(array(
|
|
$route_loader,
|
|
new DummyPluginLoader(),
|
|
));
|
|
$router = new Router($route_loader, 'configs/routing_install.yml');
|
|
|
|
$application = new Application($router, new DummyAuthenticationManager());
|
|
|
|
// Process request
|
|
$request = Request::createFromGlobals();
|
|
$response = $application->handleRequest($request);
|
|
|
|
// Send response to the user
|
|
$response->send();
|