72 lines
1.6 KiB
PHP
72 lines
1.6 KiB
PHP
<?php
|
|
/**
|
|
* This file is part of the ForkBB <https://github.com/forkbb>.
|
|
*
|
|
* @copyright (c) Visman <mio.visman@yandex.ru, https://github.com/MioVisman>
|
|
* @license The MIT License (MIT)
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ForkBB\Controllers;
|
|
|
|
use ForkBB\Core\Container;
|
|
use ForkBB\Models\Page;
|
|
|
|
class Update
|
|
{
|
|
public function __construct(protected Container $c)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Маршрутиризация
|
|
*/
|
|
public function routing(): Page
|
|
{
|
|
$this->c->user = $this->c->users->create(['id' => 1, 'group_id' => FORK_GROUP_ADMIN]); //???? id?
|
|
|
|
$this->c->Lang->load('common');
|
|
|
|
$r = $this->c->Router;
|
|
|
|
$r->add(
|
|
$r::GET,
|
|
'/admin/update/{uid}/{stage|i:\d+}[/{start|i:\d+}]',
|
|
'AdminUpdate:stage',
|
|
'AdminUpdateStage'
|
|
);
|
|
$r->add(
|
|
$r::DUO,
|
|
'/admin/update',
|
|
'AdminUpdate:view',
|
|
'AdminUpdate'
|
|
);
|
|
|
|
$uri = $_SERVER['REQUEST_URI'];
|
|
|
|
if (false !== ($pos = \strpos($uri, '?'))) {
|
|
$uri = \substr($uri, 0, $pos);
|
|
}
|
|
|
|
$uri = \rawurldecode($uri);
|
|
$method = $_SERVER['REQUEST_METHOD'];
|
|
$route = $r->route($method, $uri);
|
|
$page = null;
|
|
|
|
switch ($route[0]) {
|
|
case $r::OK:
|
|
// ... 200 OK
|
|
list($page, $action) = \explode(':', $route[1], 2);
|
|
$page = $this->c->$page->$action($route[2], $method);
|
|
|
|
break;
|
|
default:
|
|
$page = $this->c->AdminUpdate->view([], 'GET');
|
|
|
|
break;
|
|
}
|
|
|
|
return $page;
|
|
}
|
|
}
|