文件操作 - Router.php
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/solsculpting/public_html/wp-content/plugins/bunnycdn/src/Admin/Router.php
编辑文件内容
<?php // bunny.net WordPress Plugin // Copyright (C) 2024-2025 BunnyWay d.o.o. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. declare(strict_types=1); namespace Bunny\Wordpress\Admin; class Router { /** * @var array<string, class-string<Controller\ControllerInterface>> */ private const SECTIONS = ['about' => Controller\About::class, 'cdn' => Controller\Cdn::class, 'cdn-cache-purge' => Controller\CdnCachePurge::class, 'stream' => Controller\Stream::class, 'fonts' => Controller\Fonts::class, 'index' => Controller\Index::class, 'offloader' => Controller\Offloader::class, 'optimizer' => Controller\Optimizer::class, 'overview' => Controller\Overview::class, 'reset' => Controller\Reset::class, 'user-data' => Controller\UserData::class, 'wizard' => Controller\Wizard::class]; private const BEFORE_SETUP_SECTIONS = ['index', 'user-data', 'wizard']; private Container $container; public function __construct(Container $container) { $this->container = $container; } public function route(bool $isAjax = false): void { if (!current_user_can('manage_options')) { $this->render401($isAjax); return; } $section = 'index'; if (isset($_REQUEST['section'])) { $section = sanitize_key($_REQUEST['section']); } if ('1' !== get_option('bunnycdn_wizard_finished') && !in_array($section, self::BEFORE_SETUP_SECTIONS, true)) { $this->container->redirectToSection('index'); return; } if (isset(self::SECTIONS[$section])) { $controllerName = self::SECTIONS[$section]; $this->container->newController($controllerName)->run($isAjax); return; } $this->container->renderTemplateFile('index.error.php', ['error' => __('Page not found', 'bunnycdn')], ['cssClass' => 'index'], '_base.index.php'); } private function render401(bool $isAjax): void { header('HTTP/1.1 401 Unauthorized'); if ($isAjax) { wp_send_json_error(['message' => __('Unauthorized', 'bunnycdn')], 401); } else { $this->container->renderTemplateFile('index.error.php', ['error' => __('Unauthorized', 'bunnycdn')], ['cssClass' => 'index'], '_base.index.php'); } wp_die(); } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件