HEX
Server: nginx/1.28.3
System: Linux VM-0-7-opencloudos 6.6.117-45.oc9.x86_64 #1 SMP Thu Dec 4 10:26:39 CST 2025 x86_64
User: www (1000)
PHP: 8.2.28
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/www.213n.cn/wp-content/plugins/wpturbo/module/turbo.php
<?php

/**
 * Class WPTurbo
 * @author quaniz
 * Author URI: https://www.wbolt.com
 */


class WPTurbo extends WPTurbo_Base
{
    public function __construct()
    {

        register_deactivation_hook(WPTURBO_BASE, array($this, 'plugin_deactivate'));
        if (is_admin()) {

            add_action('admin_menu', array($this, 'admin_menu'));

            add_filter('plugin_action_links', array($this, 'actionLinks'), 10, 2);

            add_action('admin_enqueue_scripts', array($this, 'admin_enqueue_scripts'), 1);

            add_filter('plugin_row_meta', array(__CLASS__, 'plugin_row_meta'), 10, 2);

            add_action('admin_notices', array($this, 'admin_notices'));

            add_action('wp_ajax_wpturbo', array($this, 'wpturbo_ajax'));
        }
    }

    public function plugin_deactivate()
    {
        if (wp_next_scheduled('wpturbo_optimize_database')) {
            wp_clear_scheduled_hook('wpturbo_optimize_database');
        }
    }

    public function wpturbo_ajax()
    {
        $op = trim(self::param('op'));
        if (!$op) {
            return;
        }
        $arrow = [
            'chk_ver',
            'promote',
            'options',
            'verify'
        ];
        if (!in_array($op, $arrow)) {
            return;
        }
        if (!current_user_can('manage_options')) {
            if ('chk_ver' === $op) {
                exit();
            }
            self::ajax_resp(['code' => 1, 'desc' => 'deny']);
            return;
        }

        if (!wp_verify_nonce(sanitize_text_field(self::param('_ajax_nonce')), 'wp_ajax_wpturbo')) {
            if ('chk_ver' === $op) {
                exit();
            }
            self::ajax_resp(['code' => 1, 'desc' => 'illegal']);
            return;
        }
        switch ($op) {
            case 'chk_ver':
                $http = wp_remote_get('https://www.wbolt.com/wb-api/v1/themes/checkver?code=wpturbo&ver=' . WPTURBO_VERSION . '&chk=1', array('sslverify' => false, 'headers' => array('referer' => home_url()),));

                if (wp_remote_retrieve_response_code($http) == 200) {
                    echo esc_html(wp_remote_retrieve_body($http));
                }

                exit();
                break;
            case 'promote':
                $ret = ['code' => 0, 'desc' => 'success', 'data' => ''];
                $data = [];
                $expired = 0;
                $update_cache = false;
                do {
                    $option = get_option('wb_wpturbo_promote', null);
                    do {
                        if (!$option || !is_array($option)) {
                            break;
                        }

                        if (!isset($option['expired']) || empty($option['expired'])) {
                            break;
                        }

                        $expired = intval($option['expired']);
                        if ($expired < current_time('U')) {
                            $expired = 0;
                            break;
                        }

                        if (!isset($option['data']) || empty($option['data'])) {
                            break;
                        }

                        $data = $option['data'];
                    } while (0);

                    if ($data) {
                        $ret['data'] = $data;
                        break;
                    }
                    if ($expired) {
                        break;
                    }

                    $update_cache = true;
                    $param = ['c' => 'wpturbo', 'h' => $_SERVER['HTTP_HOST']];
                    $http = wp_remote_post('https://www.wbolt.com/wb-api/v1/promote', array('sslverify' => false, 'body' => $param, 'headers' => array('referer' => home_url()),));

                    if (is_wp_error($http)) {
                        $ret['error'] = $http->get_error_message();
                        break;
                    }
                    if (wp_remote_retrieve_response_code($http) !== 200) {
                        $ret['error-code'] = '201';
                        break;
                    }
                    $body = trim(wp_remote_retrieve_body($http));
                    if (!$body) {
                        $ret['empty'] = 1;
                        break;
                    }
                    $data = json_decode($body, true);
                    if (!$data) {
                        $ret['json-error'] = 1;
                        $ret['body'] = $body;
                        break;
                    }
                    //data = [title=>'',image=>'','expired'=>'2021-05-12','url=>'']
                    $ret['data'] = $data;
                    if (isset($data['expired']) && $data['expired'] && preg_match('#^\d{4}-\d{2}-\d{2}$#', $data['expired'])) {
                        $expired = strtotime($data['expired'] . ' 23:50:00');
                    }
                } while (0);
                if ($update_cache) {
                    if (!$expired) {
                        $expired = current_time('U') + 21600;
                    }
                    update_option('wb_wpturbo_promote', ['data' => $ret['data'], 'expired' => $expired], false);
                }
                self::ajax_resp($ret);
                break;

            case 'options':
                $ver = get_option('wb_wpturbo_ver', 0);
                $cnf = '';
                if ($ver) {
                    $cnf = get_option('wb_wpturbo_cnf_' . $ver, '');
                }
                self::ajax_resp(['o' => $cnf]);

                break;

            case 'verify':

                $param = array(
                    'code' => sanitize_text_field(self::param('key')),
                    'host' => sanitize_text_field(self::param('host')),
                    'ver' => 'wpturbo',
                );
                $err = '';
                do {
                    if (empty($param['code']) || empty($param['host'])) {
                        $err = '不合法请求,参数无效';
                        break;
                    }
                    $http = wp_remote_post('https://www.wbolt.com/wb-api/v1/verify', array('sslverify' => false, 'body' => $param, 'headers' => array('referer' => home_url()),));
                    if (is_wp_error($http)) {
                        $err = '校验失败,请稍后再试(错误代码001[' . $http->get_error_message() . '])';
                        break;
                    }

                    if ($http['response']['code'] != 200) {
                        $err = '校验失败,请稍后再试(错误代码001[' . $http['response']['code'] . '])';
                        break;
                    }

                    $body = $http['body'];

                    if (empty($body)) {
                        $err = '发生异常错误,联系<a href="https://www.wbolt.com/?wb=member#/contact" target="_blank">技术支持</a>(错误代码 010)';
                        break;
                    }

                    $data = json_decode($body, true);

                    if (empty($data)) {
                        $err = '发生异常错误,联系<a href="https://www.wbolt.com/?wb=member#/contact" target="_blank">技术支持</a>(错误代码011)';
                        break;
                    }
                    if (empty($data['data'])) {
                        $err = '校验失败,请稍后再试(错误代码004)';
                        break;
                    }
                    if ($data['code']) {
                        $err_code = $data['data'];
                        switch ($err_code) {
                            case 100:
                            case 101:
                            case 102:
                            case 103:
                                $err = '插件配置参数错误,联系<a href="https://www.wbolt.com/?wb=member#/contact" target="_blank">技术支持</a>(错误代码' . $err_code . ')';
                                break;
                            case 200:
                                $err = '输入key无效,请输入正确key(错误代码200)';
                                break;
                            case 201:
                                $err = 'key使用次数超出限制范围(错误代码201)';
                                break;
                            case 202:
                            case 203:
                            case 204:
                                $err = '校验服务器异常,联系<a href="https://www.wbolt.com/?wb=member#/contact" target="_blank">技术支持</a>(错误代码' . $err_code . ')';
                                break;
                            default:
                                $err = '发生异常错误,联系<a href="https://www.wbolt.com/?wb=member#/contact" target="_blank">技术支持</a>(错误代码' . $err_code . ')';
                        }

                        break;
                    }

                    update_option('wb_wpturbo_ver', $data['v'], false);
                    update_option('wb_wpturbo_cnf_' . $data['v'], $data['data'], false);

                    self::ajax_resp(['code' => 0, 'data' => 'success']);
                    return;
                } while (false);
                self::ajax_resp(['code' => 1, 'data' => $err]);
                break;
        }
    }



    public function admin_menu()
    {

        global $submenu;

        add_menu_page(
            'WPTurbo',
            'WPTurbo',
            'administrator',
            'wpturbo',
            array($this, 'render_views'),
            plugin_dir_url(WPTURBO_BASE) . 'assets/icon_for_menu.svg'
        );

        $sub_menus = [
            [
                'name' => 'WP瘦身',
                'slug' => 'reduce'
            ],
            [
                'name' => '速度优化',
                'slug' => 'cdn'
            ],
            [
                'name' => '数据库优化',
                'slug' => 'database'
            ],
            [
                'name' => '对象存储',
                'slug' => 'storage'
            ],
            [
                'name' => '许可授权',
                'slug' => 'license'
            ]
        ];

        foreach ($sub_menus as $item) {
            add_submenu_page(
                'wpturbo',
                $item['name'],
                $item['name'],
                'manage_options',
                'wpturbo#/' . $item['slug'],
                array(__CLASS__, 'render_views')
            );
        }
        // if(!get_option('wb_wpturbo_ver',0)){
        //     add_submenu_page('wpturbo','升至Pro版', '<span style="color: #FCB214;">升至Pro版</span>', 'administrator',"https://www.wbolt.com/plugins/wpturbo' target='_blank'"  );
        // }

        unset($submenu['wpturbo'][0]);
    }

    public static function render_views()
    {
        if (!current_user_can('manage_options')) {
            wp_die(esc_html(__('You do not have sufficient permissions to access this page.')));
        }
        // global $wpdb;

        echo '<div class="wbs-wrap" id="optionsframework-wrap">';
        echo '<div id="app"></div>';
        echo '</div>';
    }

    public static function plugin_row_meta($links, $file)
    {

        $base = plugin_basename(WPTURBO_BASE);
        if ($file == $base) {
            $links[] = '<a href="https://www.wbolt.com/plugins/wpturbo">插件主页</a>';
            $links[] = '<a href="https://www.wbolt.com/wpturbo-plugin-documentation.html">说明文档</a>';
            $links[] = '<a href="https://www.wbolt.com/plugins/wpturbo#J_commentsSection">反馈</a>';
        }

        return $links;
    }

    public function admin_enqueue_scripts($hook)
    {


        if (!preg_match('#wpturbo#', $hook)) {
            return;
        }
        //wp_enqueue_media();
        wp_register_script('wpturbo-inline-js', false, null, false);
        wp_enqueue_script('wpturbo-inline-js');

        $wb_cnf = array(
            'base_url' => admin_url(),
            'ajax_url' => admin_url('admin-ajax.php'),
            'dir_url' => WPTURBO_URI,
            'pd_code' => "wpturbo",
            'pd_title' => 'WPTurbo',
            'pd_version' => WPTURBO_VERSION,
            'is_pro' => intval(get_option('wb_wpturbo_ver', 0)),
            'action' => array(
                'act' => 'wpturbo',
                'fetch' => 'get_setting',
                'push' => 'set_setting'
            )
        );

        //$options = $this->cnf();

        $wb_ajax_nonce = wp_create_nonce('wp_ajax_wpturbo');

        $inline_script = 'var _wb_wpturbo_ajax_nonce = "' . $wb_ajax_nonce . '",
		    wb_cnf=' . wp_json_encode($wb_cnf) . ';window.wb_vue_path="' . WPTURBO_URI . 'tpl/";' . "\n";

        wp_add_inline_script('wpturbo-inline-js', $inline_script, 'before');

        add_filter('style_loader_tag', function ($tag, $handle, $href, $media) {
            if (!preg_match('#^vue-#', $media)) {
                return $tag;
            }

            $media = htmlspecialchars_decode($media);
            $r = [];
            parse_str(str_replace('vue-', '', $media), $r);
            $rel = '';
            $attr = [];
            if ($r && is_array($r)) {
                if (isset($r['rel'])) {
                    $rel = $r['rel'];
                    unset($r['rel']);
                }
                foreach ($r as $attr_k => $attr_v) {
                    $attr[] = sprintf('%s="%s"', $attr_k, esc_attr($attr_v));
                }
            }

            $tag = sprintf(
                '<link href="%s" rel="%s" %s/>' . "\n",
                $href,
                $rel,
                implode(" ", $attr)
            );
            return $tag;
        }, 10, 4);
        add_filter('script_loader_tag', function ($tag, $handle, $src) {
            if (!preg_match('#-vue-js-#', $handle)) {
                return $tag;
            }
            $parts = explode('?', $src, 2);
            $src = $parts[0];
            $type = '';
            $attr = '';
            if (isset($parts[1])) {
                $r = [];
                parse_str(htmlspecialchars_decode($parts[1]), $r);
                //print_r($r);
                if ($r) {
                    if (isset($r['type'])) {
                        $type = sprintf(' type="%s"', esc_attr($r['type']));
                        unset($r['type']);
                    }
                    $attr_txt = '';
                    if (isset($r['attr'])) {
                        $attr_txt = $r['attr'];
                        unset($r['attr']);
                    }
                    foreach ($r as $k => $v) {
                        $attr .= sprintf(' %s="%s"', $k, esc_attr($v));
                    }
                    if ($attr_txt) {
                        $attr .= sprintf(' %s', esc_attr($attr_txt));
                    }
                }
            }
            //print_r([$handle,$src]);

            $tag = sprintf('<script%s src="%s"%s id="%s-js"></script>' . "\n", $type, $src, $attr, $handle);
            return $tag;
        }, 10, 3);

        $this->vue_assets();
    }


    public function vue_assets()
    {

        $assets = include __DIR__ . '/plugins_assets.php';

        if (!$assets || !is_array($assets)) {
            return;
        }

        $wp_styles = wp_styles();
        if (isset($assets['css']) && is_array($assets['css'])) foreach ($assets['css'] as $r) {
            $wp_styles->add($r['handle'], WPTURBO_URI . $r['src'], $r['dep'], null, $r['args']);
            $wp_styles->enqueue($r['handle']); //.'?v=1'
        }
        if (isset($assets['js']) && is_array($assets['js'])) foreach ($assets['js'] as $r) {
            if (!$r['src'] && $r['in_line']) {
                wp_register_script($r['handle'], false, $r['dep'], false, true);
                wp_enqueue_script($r['handle']);
                wp_add_inline_script($r['handle'], $r['in_line'], 'after');
            } else if ($r['src']) {
                wp_enqueue_script($r['handle'], WPTURBO_URI . $r['src'], $r['dep'], null, true);
            }
        }
    }

    public function admin_notices()
    {
        global $current_screen;
        if (! current_user_can('update_plugins')) {
            return;
        }
        if (!preg_match('#wpturbo#', $current_screen->parent_base)) {
            return;
        }
        $current         = get_site_transient('update_plugins');
        if (!$current) {
            return;
        }
        $plugin_file = plugin_basename(WPTURBO_BASE);
        if (!isset($current->response[$plugin_file])) {
            return;
        }
        $all_plugins     = get_plugins();
        if (!$all_plugins || !isset($all_plugins[$plugin_file])) {
            return;
        }
        $plugin_data = $all_plugins[$plugin_file];
        $update = $current->response[$plugin_file];

        //print_r($update);

        echo '<div class="update-message notice inline notice-warning notice-alt"><p>' . esc_html($plugin_data['Name']) . '有新版本可用。';
        echo '<a href="' . esc_url($update->url) . '" target="_blank" aria-label="查看' . esc_attr($plugin_data['Name']) . '版本' . esc_attr($update->new_version) . '详情">查看版本' . esc_html($update->new_version) . '详情</a>';
        echo '或<a href="' . esc_url(admin_url('update.php?action=upgrade-plugin&plugin=' . $plugin_file)) . '" class="update-link" aria-label="现在更新 ' . esc_attr($plugin_data['Name']) . '">现在更新</a>。</p></div>';
    }


    public static function actionLinks($links, $file)
    {

        //print_r([$file]);
        if (!preg_match('#wpturbo/#', $file)) {
            return $links;
        }
        if (!get_option('wb_wpturbo_ver', 0)) {
            $a_link = '<a href="https://www.wbolt.com/plugins/wpturbo" target="_blank"><span style="color: #FCB214;">升至Pro版</span></a>';
            array_unshift($links, $a_link);
        }
        $a_link = '<a href="' . menu_page_url('wpturbo', false) . '#/">设置</a>';
        array_unshift($links, $a_link);

        return $links;
    }
}