admin.php
2 months 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
2 months ago
rest.php
163 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 | public function rest_api_init() { |
| 18 | if ( !current_user_can( 'manage_options' ) ) { |
| 19 | return; |
| 20 | } |
| 21 | register_rest_route( $this->namespace, '/empty_request/', [ |
| 22 | 'methods' => 'POST', |
| 23 | 'permission_callback' => function () { |
| 24 | return current_user_can( 'manage_options' ); |
| 25 | }, |
| 26 | 'callback' => [ $this, 'empty_request' ] |
| 27 | ] ); |
| 28 | register_rest_route( $this->namespace, '/file_operation/', [ |
| 29 | 'methods' => 'POST', |
| 30 | 'permission_callback' => function () { |
| 31 | return current_user_can( 'manage_options' ); |
| 32 | }, |
| 33 | 'callback' => [ $this, 'file_operation' ] |
| 34 | ] ); |
| 35 | register_rest_route( $this->namespace, '/sql_request/', [ |
| 36 | 'methods' => 'POST', |
| 37 | 'permission_callback' => function () { |
| 38 | return current_user_can( 'manage_options' ); |
| 39 | }, |
| 40 | 'callback' => [ $this, 'sql_request' ] |
| 41 | ] ); |
| 42 | register_rest_route( $this->namespace, '/error_logs/', [ |
| 43 | 'methods' => 'POST', |
| 44 | 'permission_callback' => function () { |
| 45 | $ok = current_user_can( 'manage_options' ); |
| 46 | return $ok; |
| 47 | }, |
| 48 | 'callback' => [ $this, 'rest_error_logs' ] |
| 49 | ] ); |
| 50 | register_rest_route( $this->namespace, '/all_settings/', [ |
| 51 | 'methods' => 'POST', |
| 52 | 'permission_callback' => function () { |
| 53 | $ok = current_user_can( 'manage_options' ); |
| 54 | return $ok; |
| 55 | }, |
| 56 | 'callback' => [ $this, 'rest_all_settings' ] |
| 57 | ] ); |
| 58 | register_rest_route( $this->namespace, '/update_option/', [ |
| 59 | 'methods' => 'POST', |
| 60 | 'permission_callback' => function () { |
| 61 | $ok = current_user_can( 'manage_options' ); |
| 62 | return $ok; |
| 63 | }, |
| 64 | 'callback' => [ $this, 'rest_update_option' ] |
| 65 | ] ); |
| 66 | register_rest_route( $this->namespace, '/installed_plugins/', [ |
| 67 | 'methods' => 'POST', |
| 68 | 'permission_callback' => function () { |
| 69 | return current_user_can( 'manage_options' ); |
| 70 | }, |
| 71 | 'callback' => [ $this, 'rest_installed_plugins' ] |
| 72 | ] ); |
| 73 | } |
| 74 | |
| 75 | public function file_rand( $filesize ) { |
| 76 | $tmp_file = tmpfile(); |
| 77 | fseek( $tmp_file, $filesize - 1, SEEK_CUR ); |
| 78 | fwrite( $tmp_file, 'a' ); |
| 79 | fclose( $tmp_file ); |
| 80 | } |
| 81 | |
| 82 | public function empty_request() { |
| 83 | return new WP_REST_Response( [ 'success' => true ], 200 ); |
| 84 | } |
| 85 | |
| 86 | public function file_operation() { |
| 87 | $this->file_rand( 1024 * 10 ); |
| 88 | return new WP_REST_Response( [ 'success' => true ], 200 ); |
| 89 | } |
| 90 | |
| 91 | public function sql_request() { |
| 92 | global $wpdb; |
| 93 | $count = $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->posts}" ); |
| 94 | return new WP_REST_Response( [ 'success' => true, 'data' => $count ], 200 ); |
| 95 | } |
| 96 | |
| 97 | // List all the options with their default values. |
| 98 | public function list_options() { |
| 99 | return [ |
| 100 | 'meowapps_hide_meowapps' => false, |
| 101 | 'force_sslverify' => false |
| 102 | ]; |
| 103 | } |
| 104 | |
| 105 | public function get_all_options() { |
| 106 | $options = $this->list_options(); |
| 107 | $current_options = []; |
| 108 | foreach ( $options as $option => $default ) { |
| 109 | $current_options[$option] = get_option( $option, $default ); |
| 110 | } |
| 111 | return $current_options; |
| 112 | } |
| 113 | |
| 114 | public function rest_all_settings() { |
| 115 | return new WP_REST_Response( [ 'success' => true, 'data' => $this->get_all_options() ], 200 ); |
| 116 | } |
| 117 | |
| 118 | public function rest_installed_plugins() { |
| 119 | if ( !function_exists( 'get_plugins' ) ) { |
| 120 | require_once ABSPATH . 'wp-admin/includes/plugin.php'; |
| 121 | } |
| 122 | $all_plugins = get_plugins(); |
| 123 | $result = []; |
| 124 | foreach ( $all_plugins as $plugin_file => $plugin_data ) { |
| 125 | // Plugin file looks like "ai-engine/ai-engine.php" — the slug is the |
| 126 | // first path segment. Some plugins live at the root (single file), |
| 127 | // those we just skip; we only care about Meow Apps directories anyway. |
| 128 | $parts = explode( '/', $plugin_file ); |
| 129 | if ( count( $parts ) < 2 ) { |
| 130 | continue; |
| 131 | } |
| 132 | $slug = $parts[0]; |
| 133 | $result[ $slug ] = is_plugin_active( $plugin_file ) ? 'active' : 'inactive'; |
| 134 | } |
| 135 | return new WP_REST_Response( [ 'success' => true, 'data' => $result ], 200 ); |
| 136 | } |
| 137 | |
| 138 | public function rest_update_option( $request ) { |
| 139 | $params = $request->get_json_params(); |
| 140 | try { |
| 141 | $name = $params['name']; |
| 142 | $options = $this->list_options(); |
| 143 | if ( !array_key_exists( $name, $options ) ) { |
| 144 | return new WP_REST_Response( [ 'success' => false, 'message' => 'This option does not exist.' ], 200 ); |
| 145 | } |
| 146 | $value = is_bool( $params['value'] ) ? ( $params['value'] ? '1' : '' ) : $params['value']; |
| 147 | $success = update_option( $name, $value ); |
| 148 | if ( !$success ) { |
| 149 | return new WP_REST_Response( [ 'success' => false, 'message' => 'Could not update option.' ], 200 ); |
| 150 | } |
| 151 | return new WP_REST_Response( [ 'success' => true, 'data' => $value ], 200 ); |
| 152 | } |
| 153 | catch ( Exception $e ) { |
| 154 | return new WP_REST_Response( [ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 155 | } |
| 156 | } |
| 157 | |
| 158 | public function rest_error_logs( $request ) { |
| 159 | return new WP_REST_Response( [ 'success' => true, 'data' => MeowKit_MWAI_Helpers::php_error_logs() ], 200 ); |
| 160 | } |
| 161 | |
| 162 | } |
| 163 |