1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?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
- {
- /**
- * Контейнер
- * @var Container
- */
- protected $c;
- public function __construct(Container $container)
- {
- $this->c = $container;
- }
- /**
- * Маршрутиризация
- */
- public function routing(): Page
- {
- $uri = $_SERVER['REQUEST_URI'];
- if (false !== ($pos = \strpos($uri, '?'))) {
- $uri = \substr($uri, 0, $pos);
- }
- $uri = \rawurldecode($uri);
- $this->c->user = $this->c->users->create(['id' => 2, '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'
- );
- $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;
- }
- }
|