admin.php
1 month ago
helpers.php
6 months ago
issues.php
7 months ago
news.php
7 months ago
ratings.php
7 months ago
releases.txt
2 years ago
rest.php
1 week ago
rest.php
177 lines
| 1 | <?php |
| 2 | |
| 3 | class MeowKit_MWAI_Rest { |
| 4 | private $namespace = 'meow-common/v1'; |
| 5 | public static $instance = null; |
| 6 | |
| 7 | public static function init_once() { |
| 8 | if ( !MeowKit_MWAI_Rest::$instance ) { |
| 9 | MeowKit_MWAI_Rest::$instance = new self(); |
| 10 | } |
| 11 | } |
| 12 | |
| 13 | private function __construct() { |
| 14 | add_action( 'rest_api_init', [ $this, 'rest_api_init' ] ); |
| 15 | } |
| 16 | |
| 17 | /** |
| 18 | * Capability gate for plugin admin endpoints. Defaults to manage_options but |
| 19 | * honours a per-plugin filter so a site can grant access to other roles |
| 20 | * without re-implementing every permission_callback. The filter name is |
| 21 | * derived from the class name (`MeowKit_<PREFIX>_Rest` => `<prefix>_allow_setup`), |
| 22 | * so each plugin gets its own filter automatically after Nekofy substitution. |
| 23 | */ |
| 24 | private function can_setup() { |
| 25 | static $filter = null; |
| 26 | if ( $filter === null ) { |
| 27 | $parts = explode( '_', __CLASS__ ); |
| 28 | $prefix = isset( $parts[1] ) ? strtolower( $parts[1] ) : ''; |
| 29 | $filter = $prefix !== '' ? $prefix . '_allow_setup' : ''; |
| 30 | } |
| 31 | $default = current_user_can( 'manage_options' ); |
| 32 | return $filter !== '' ? apply_filters( $filter, $default ) : $default; |
| 33 | } |
| 34 | |
| 35 | public function rest_api_init() { |
| 36 | if ( !$this->can_setup() ) { |
| 37 | return; |
| 38 | } |
| 39 | $permission = function () { |
| 40 | return $this->can_setup(); |
| 41 | }; |
| 42 | register_rest_route( $this->namespace, '/empty_request/', [ |
| 43 | 'methods' => 'POST', |
| 44 | 'permission_callback' => $permission, |
| 45 | 'callback' => [ $this, 'empty_request' ] |
| 46 | ] ); |
| 47 | register_rest_route( $this->namespace, '/file_operation/', [ |
| 48 | 'methods' => 'POST', |
| 49 | 'permission_callback' => $permission, |
| 50 | 'callback' => [ $this, 'file_operation' ] |
| 51 | ] ); |
| 52 | register_rest_route( $this->namespace, '/sql_request/', [ |
| 53 | 'methods' => 'POST', |
| 54 | 'permission_callback' => $permission, |
| 55 | 'callback' => [ $this, 'sql_request' ] |
| 56 | ] ); |
| 57 | register_rest_route( $this->namespace, '/error_logs/', [ |
| 58 | 'methods' => 'POST', |
| 59 | 'permission_callback' => $permission, |
| 60 | 'callback' => [ $this, 'rest_error_logs' ] |
| 61 | ] ); |
| 62 | register_rest_route( $this->namespace, '/all_settings/', [ |
| 63 | 'methods' => 'POST', |
| 64 | 'permission_callback' => $permission, |
| 65 | 'callback' => [ $this, 'rest_all_settings' ] |
| 66 | ] ); |
| 67 | register_rest_route( $this->namespace, '/update_option/', [ |
| 68 | 'methods' => 'POST', |
| 69 | 'permission_callback' => $permission, |
| 70 | 'callback' => [ $this, 'rest_update_option' ] |
| 71 | ] ); |
| 72 | register_rest_route( $this->namespace, '/installed_plugins/', [ |
| 73 | 'methods' => 'POST', |
| 74 | 'permission_callback' => $permission, |
| 75 | 'callback' => [ $this, 'rest_installed_plugins' ] |
| 76 | ] ); |
| 77 | } |
| 78 | |
| 79 | public function file_rand( $filesize ) { |
| 80 | // Write the benchmark file inside a dedicated subfolder of the uploads |
| 81 | // directory (created on demand), then remove it. wp.org forbids writing to |
| 82 | // the plugin folder or the uploads root — only a sanctioned subfolder. |
| 83 | $upload = wp_upload_dir(); |
| 84 | if ( !empty( $upload['error'] ) || empty( $upload['basedir'] ) ) { return; } |
| 85 | $dir = trailingslashit( $upload['basedir'] ) . 'meowapps'; |
| 86 | if ( !wp_mkdir_p( $dir ) ) { return; } |
| 87 | $path = trailingslashit( $dir ) . 'speedtest-' . wp_generate_password( 12, false ) . '.tmp'; |
| 88 | $fh = @fopen( $path, 'wb' ); |
| 89 | if ( $fh === false ) { return; } |
| 90 | fseek( $fh, $filesize - 1, SEEK_CUR ); |
| 91 | fwrite( $fh, 'a' ); |
| 92 | fclose( $fh ); |
| 93 | @unlink( $path ); |
| 94 | } |
| 95 | |
| 96 | public function empty_request() { |
| 97 | return new WP_REST_Response( [ 'success' => true ], 200 ); |
| 98 | } |
| 99 | |
| 100 | public function file_operation() { |
| 101 | $this->file_rand( 1024 * 10 ); |
| 102 | return new WP_REST_Response( [ 'success' => true ], 200 ); |
| 103 | } |
| 104 | |
| 105 | public function sql_request() { |
| 106 | global $wpdb; |
| 107 | $count = $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->posts}" ); |
| 108 | return new WP_REST_Response( [ 'success' => true, 'data' => $count ], 200 ); |
| 109 | } |
| 110 | |
| 111 | // List all the options with their default values. |
| 112 | public function list_options() { |
| 113 | return [ |
| 114 | 'meowapps_hide_meowapps' => false, |
| 115 | 'force_sslverify' => false |
| 116 | ]; |
| 117 | } |
| 118 | |
| 119 | public function get_all_options() { |
| 120 | $options = $this->list_options(); |
| 121 | $current_options = []; |
| 122 | foreach ( $options as $option => $default ) { |
| 123 | $current_options[$option] = get_option( $option, $default ); |
| 124 | } |
| 125 | return $current_options; |
| 126 | } |
| 127 | |
| 128 | public function rest_all_settings() { |
| 129 | return new WP_REST_Response( [ 'success' => true, 'data' => $this->get_all_options() ], 200 ); |
| 130 | } |
| 131 | |
| 132 | public function rest_installed_plugins() { |
| 133 | if ( !function_exists( 'get_plugins' ) ) { |
| 134 | require_once ABSPATH . 'wp-admin/includes/plugin.php'; |
| 135 | } |
| 136 | $all_plugins = get_plugins(); |
| 137 | $result = []; |
| 138 | foreach ( $all_plugins as $plugin_file => $plugin_data ) { |
| 139 | // Plugin file looks like "ai-engine/ai-engine.php" — the slug is the |
| 140 | // first path segment. Some plugins live at the root (single file), |
| 141 | // those we just skip; we only care about Meow Apps directories anyway. |
| 142 | $parts = explode( '/', $plugin_file ); |
| 143 | if ( count( $parts ) < 2 ) { |
| 144 | continue; |
| 145 | } |
| 146 | $slug = $parts[0]; |
| 147 | $result[ $slug ] = is_plugin_active( $plugin_file ) ? 'active' : 'inactive'; |
| 148 | } |
| 149 | return new WP_REST_Response( [ 'success' => true, 'data' => $result ], 200 ); |
| 150 | } |
| 151 | |
| 152 | public function rest_update_option( $request ) { |
| 153 | $params = $request->get_json_params(); |
| 154 | try { |
| 155 | $name = $params['name']; |
| 156 | $options = $this->list_options(); |
| 157 | if ( !array_key_exists( $name, $options ) ) { |
| 158 | return new WP_REST_Response( [ 'success' => false, 'message' => 'This option does not exist.' ], 200 ); |
| 159 | } |
| 160 | $value = is_bool( $params['value'] ) ? ( $params['value'] ? '1' : '' ) : $params['value']; |
| 161 | $success = update_option( $name, $value ); |
| 162 | if ( !$success ) { |
| 163 | return new WP_REST_Response( [ 'success' => false, 'message' => 'Could not update option.' ], 200 ); |
| 164 | } |
| 165 | return new WP_REST_Response( [ 'success' => true, 'data' => $value ], 200 ); |
| 166 | } |
| 167 | catch ( Exception $e ) { |
| 168 | return new WP_REST_Response( [ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | public function rest_error_logs( $request ) { |
| 173 | return new WP_REST_Response( [ 'success' => true, 'data' => MeowKit_MWAI_Helpers::php_error_logs() ], 200 ); |
| 174 | } |
| 175 | |
| 176 | } |
| 177 |