2016-08-01 16:04:44 +00:00
|
|
|
<?php
|
2016-09-07 22:28:28 +00:00
|
|
|
|
2015-10-31 14:42:25 +00:00
|
|
|
require_once __DIR__.'/vendor/autoload.php';
|
2017-01-10 22:37:29 +00:00
|
|
|
use Alltube\Config;
|
2017-01-10 22:39:58 +00:00
|
|
|
use Alltube\Controller\FrontController;
|
2017-05-30 20:20:16 +00:00
|
|
|
use Alltube\LocaleManager;
|
2017-05-29 19:11:59 +00:00
|
|
|
use Alltube\LocaleMiddleware;
|
2017-05-02 15:04:55 +00:00
|
|
|
use Alltube\PlaylistArchiveStream;
|
2017-01-10 22:37:29 +00:00
|
|
|
use Alltube\UglyRouter;
|
2017-04-25 22:50:19 +00:00
|
|
|
use Alltube\ViewFactory;
|
|
|
|
use Slim\App;
|
2015-10-29 20:19:40 +00:00
|
|
|
|
2016-10-26 15:16:17 +00:00
|
|
|
if (isset($_SERVER['REQUEST_URI']) && strpos($_SERVER['REQUEST_URI'], '/index.php') !== false) {
|
2016-07-27 00:19:29 +00:00
|
|
|
header('Location: '.str_ireplace('/index.php', '/', $_SERVER['REQUEST_URI']));
|
|
|
|
die;
|
|
|
|
}
|
|
|
|
|
2017-05-02 15:04:55 +00:00
|
|
|
stream_wrapper_register('playlist', PlaylistArchiveStream::class);
|
|
|
|
|
2017-04-25 22:50:19 +00:00
|
|
|
$app = new App();
|
2016-03-29 23:39:47 +00:00
|
|
|
$container = $app->getContainer();
|
2017-01-10 22:37:29 +00:00
|
|
|
$config = Config::getInstance();
|
|
|
|
if ($config->uglyUrls) {
|
|
|
|
$container['router'] = new UglyRouter();
|
|
|
|
}
|
2017-04-25 22:50:19 +00:00
|
|
|
$container['view'] = ViewFactory::create($container);
|
2017-05-30 20:20:16 +00:00
|
|
|
$container['locale'] = new LocaleManager($_COOKIE);
|
|
|
|
$app->add(new LocaleMiddleware($container));
|
2016-03-29 23:39:47 +00:00
|
|
|
|
2017-04-25 21:04:59 +00:00
|
|
|
$controller = new FrontController($container, null, $_COOKIE);
|
2016-04-08 17:06:41 +00:00
|
|
|
|
2016-09-07 22:28:28 +00:00
|
|
|
$container['errorHandler'] = [$controller, 'error'];
|
2016-04-30 23:25:08 +00:00
|
|
|
|
2015-10-29 20:23:02 +00:00
|
|
|
$app->get(
|
|
|
|
'/',
|
2016-09-07 22:28:28 +00:00
|
|
|
[$controller, 'index']
|
2016-06-09 19:15:44 +00:00
|
|
|
)->setName('index');
|
2015-10-29 20:23:02 +00:00
|
|
|
$app->get(
|
|
|
|
'/extractors',
|
2016-09-07 22:28:28 +00:00
|
|
|
[$controller, 'extractors']
|
2016-03-29 23:39:47 +00:00
|
|
|
)->setName('extractors');
|
2016-10-20 21:01:31 +00:00
|
|
|
$app->any(
|
2015-10-29 20:23:02 +00:00
|
|
|
'/video',
|
2016-09-07 22:28:28 +00:00
|
|
|
[$controller, 'video']
|
2016-03-29 23:39:47 +00:00
|
|
|
)->setName('video');
|
2015-10-31 10:48:14 +00:00
|
|
|
$app->get(
|
|
|
|
'/redirect',
|
2016-09-07 22:28:28 +00:00
|
|
|
[$controller, 'redirect']
|
2016-04-10 19:42:38 +00:00
|
|
|
)->setName('redirect');
|
2017-05-30 20:20:16 +00:00
|
|
|
$app->get(
|
|
|
|
'/locale/{locale}',
|
|
|
|
[$controller, 'locale']
|
|
|
|
)->setName('locale');
|
2015-10-29 20:19:40 +00:00
|
|
|
$app->run();
|