img
3 years ago
admin.php
3 years ago
helpers.php
3 years ago
issues.php
3 years ago
news.php
3 years ago
ratings.php
3 years ago
releases.txt
3 years ago
rest.php
3 years ago
helpers.php
239 lines
| 1 | <?php |
| 2 | |
| 3 | if ( !class_exists( 'MeowCommon_Helpers' ) ) { |
| 4 | |
| 5 | class MeowCommon_Helpers { |
| 6 | |
| 7 | //public static $version = MeowCommon_Admin::version; |
| 8 | private static $startTimes = array(); |
| 9 | private static $startQueries = array(); |
| 10 | |
| 11 | static function is_divi_builder() { |
| 12 | return isset( $_GET['et_fb'] ) && $_GET['et_fb'] === '1'; |
| 13 | } |
| 14 | |
| 15 | static function is_cornerstone_builder() { |
| 16 | return isset( $_GET['cs-render'] ) && $_GET['cs-render'] === '1'; |
| 17 | } |
| 18 | |
| 19 | static function is_pagebuilder_request() { |
| 20 | return self::is_divi_builder() || self::is_cornerstone_builder(); |
| 21 | } |
| 22 | |
| 23 | static function is_asynchronous_request() { |
| 24 | return self::is_ajax_request() || self::is_woocommerce_ajax_request() || self::is_rest(); |
| 25 | } |
| 26 | |
| 27 | static function is_ajax_request() { |
| 28 | return wp_doing_ajax(); |
| 29 | } |
| 30 | |
| 31 | static function is_woocommerce_ajax_request() { |
| 32 | return !empty( $_GET['wc-ajax'] ); |
| 33 | } |
| 34 | |
| 35 | // This function makes sure that only the allowed HTML element names, |
| 36 | // attribute names, attribute values, and HTML entities will occur in the given text string. |
| 37 | static function wp_kses( $html ) { |
| 38 | return wp_kses( $html, array( |
| 39 | 'div' => array( |
| 40 | 'class' => array(), |
| 41 | 'data-rating-date' => array(), |
| 42 | 'style' => array(), |
| 43 | ), |
| 44 | 'p' => array( |
| 45 | 'style' => array(), |
| 46 | ), |
| 47 | 'h2' => array( |
| 48 | 'class' => array(), |
| 49 | ), |
| 50 | 'br' => array(), |
| 51 | 'label' => array(), |
| 52 | 'b' => array(), |
| 53 | 'small' => array(), |
| 54 | 'a' => array( |
| 55 | 'href' => array(), |
| 56 | 'target' => array(), |
| 57 | 'class' => array(), |
| 58 | 'style' => array(), |
| 59 | ), |
| 60 | 'form' => array( |
| 61 | 'method' => array(), |
| 62 | 'action' => array(), |
| 63 | 'class' => array(), |
| 64 | 'style' => array(), |
| 65 | ), |
| 66 | 'input' => array( |
| 67 | 'type' => array(), |
| 68 | 'checked' => array(), |
| 69 | 'name' => array(), |
| 70 | 'value' => array(), |
| 71 | 'id' => array(), |
| 72 | 'class' => array(), |
| 73 | ), |
| 74 | ) ); |
| 75 | } |
| 76 | |
| 77 | // Originally created by matzeeable, modified by jordymeow |
| 78 | static function is_rest() { |
| 79 | |
| 80 | // WP_REST_Request init. |
| 81 | $is_rest_request = defined('REST_REQUEST') && REST_REQUEST; |
| 82 | if ( $is_rest_request ) { |
| 83 | MeowCommon_Rest::init_once(); |
| 84 | return true; |
| 85 | } |
| 86 | |
| 87 | // Plain permalinks. |
| 88 | $prefix = rest_get_url_prefix(); |
| 89 | $request_contains_rest = isset( $_GET['rest_route'] ) && strpos( trim( $_GET['rest_route'], '\\/' ), $prefix , 0 ) === 0; |
| 90 | if ( $request_contains_rest) { |
| 91 | MeowCommon_Rest::init_once(); |
| 92 | return true; |
| 93 | } |
| 94 | |
| 95 | // It can happen that WP_Rewrite is not yet initialized, so better to do it. |
| 96 | global $wp_rewrite; |
| 97 | if ( $wp_rewrite === null ) { |
| 98 | $wp_rewrite = new WP_Rewrite(); |
| 99 | } |
| 100 | $rest_url = wp_parse_url( trailingslashit( rest_url() ) ); |
| 101 | $current_url = wp_parse_url( add_query_arg( array() ) ); |
| 102 | if ( !$rest_url || !$current_url ) |
| 103 | return false; |
| 104 | |
| 105 | // URL Path begins with wp-json. |
| 106 | if ( !empty( $current_url['path'] ) && !empty( $rest_url['path'] ) ) { |
| 107 | $request_contains_rest = strpos( $current_url['path'], $rest_url['path'], 0 ) === 0; |
| 108 | if ( $request_contains_rest) { |
| 109 | MeowCommon_Rest::init_once(); |
| 110 | return true; |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | return false; |
| 115 | } |
| 116 | |
| 117 | static function test_error( $error = 'timeout', $diceSides = 1 ) { |
| 118 | if ( rand( 1, $diceSides ) === 1 ) { |
| 119 | if ( $error === 'timeout' ) { |
| 120 | header("HTTP/1.0 408 Request Timeout"); |
| 121 | die(); |
| 122 | } |
| 123 | else { |
| 124 | trigger_error( "Error", E_USER_ERROR); |
| 125 | } |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | static function php_error_logs() { |
| 130 | $errorpath = ini_get( 'error_log' ); |
| 131 | $output_lines = array(); |
| 132 | if ( !empty( $errorpath ) && file_exists( $errorpath ) ) { |
| 133 | try { |
| 134 | $file = new SplFileObject( $errorpath, 'r' ); |
| 135 | $file->seek( PHP_INT_MAX ); |
| 136 | $last_line = $file->key(); |
| 137 | $iterator = new LimitIterator( $file, $last_line > 3500 ? $last_line - 3500 : 0, $last_line ); |
| 138 | $lines = iterator_to_array( $iterator ); |
| 139 | $previous_line = null; |
| 140 | foreach ( $lines as $line ) { |
| 141 | |
| 142 | // Parse the date |
| 143 | $date = ''; |
| 144 | try { |
| 145 | $dateArr = []; |
| 146 | preg_match( '~^\[(.*?)\]~', $line, $dateArr ); |
| 147 | if ( isset( $dateArr[0] ) ) { |
| 148 | $line = str_replace( $dateArr[0], '', $line ); |
| 149 | $line = trim( $line ); |
| 150 | $date = new DateTime( $dateArr[1] ); |
| 151 | $date = get_date_from_gmt( $date->format('Y-m-d H:i:s'), 'Y-m-d H:i:s' ); |
| 152 | } |
| 153 | else { |
| 154 | continue; |
| 155 | } |
| 156 | } |
| 157 | catch ( Exception $e ) { |
| 158 | continue; |
| 159 | } |
| 160 | |
| 161 | // Parse the error |
| 162 | $type = ''; |
| 163 | if ( preg_match( '/PHP Fatal error/', $line ) ) { |
| 164 | $line = trim( str_replace( 'PHP Fatal error:', '', $line ) ); |
| 165 | $type = 'fatal'; |
| 166 | } |
| 167 | else if ( preg_match( '/PHP Warning/', $line ) ) { |
| 168 | $line = trim( str_replace( 'PHP Warning:', '', $line ) ); |
| 169 | $type = 'warning'; |
| 170 | } |
| 171 | else if ( preg_match( '/PHP Notice/', $line ) ) { |
| 172 | $line = trim( str_replace( 'PHP Notice:', '', $line ) ); |
| 173 | $type = 'notice'; |
| 174 | } |
| 175 | else if ( preg_match( '/PHP Parse error/', $line ) ) { |
| 176 | $line = trim( str_replace( 'PHP Parse error:', '', $line ) ); |
| 177 | $type = 'parse'; |
| 178 | } |
| 179 | else if ( preg_match( '/PHP Exception/', $line ) ) { |
| 180 | $line = trim( str_replace( 'PHP Exception:', '', $line ) ); |
| 181 | $type = 'exception'; |
| 182 | } |
| 183 | else { |
| 184 | continue; |
| 185 | } |
| 186 | |
| 187 | // Skip the error if is the same as before. |
| 188 | if ( $line !== $previous_line ) { |
| 189 | array_push( $output_lines, array( 'date' => $date, 'type' => $type, 'content' => $line ) ); |
| 190 | $previous_line = $line; |
| 191 | } |
| 192 | } |
| 193 | } |
| 194 | catch ( OutOfBoundsException $e ) { |
| 195 | error_log( $e->getMessage() ); |
| 196 | return array(); |
| 197 | } |
| 198 | } |
| 199 | return $output_lines; |
| 200 | |
| 201 | // else { |
| 202 | // $output_lines = array_reverse( $output_lines ); |
| 203 | // $html = ''; |
| 204 | // $previous = ''; |
| 205 | // foreach ( $output_lines as $line ) { |
| 206 | // // Let's avoid similar errors, since it's not useful. We should also make this better |
| 207 | // // and not only theck this depending on tie. |
| 208 | // if ( preg_replace( '/\[.*\] PHP/', '', $previous ) !== preg_replace( '/\[.*\] PHP/', '', $line ) ) { |
| 209 | // $html .= $line; |
| 210 | // $previous = $line; |
| 211 | // } |
| 212 | // } |
| 213 | // return $html; |
| 214 | // } |
| 215 | } |
| 216 | |
| 217 | static function timer_start( $timerName = 'default' ) { |
| 218 | MeowCommon_Helpers::$startQueries[ $timerName ] = get_num_queries(); |
| 219 | MeowCommon_Helpers::$startTimes[ $timerName ] = microtime( true ); |
| 220 | } |
| 221 | |
| 222 | static function timer_elapsed( $timerName = 'default' ) { |
| 223 | return microtime( true ) - MeowCommon_Helpers::$startTimes[ $timerName ]; |
| 224 | } |
| 225 | |
| 226 | static function timer_log_elapsed( $timerName = 'default' ) { |
| 227 | $elapsed = MeowCommon_Helpers::timer_elapsed( $timerName ); |
| 228 | $queries = get_num_queries() - MeowCommon_Helpers::$startQueries[ $timerName ]; |
| 229 | error_log( $timerName . ": " . $elapsed . "ms (" . $queries . " queries)" ); |
| 230 | } |
| 231 | } |
| 232 | |
| 233 | // Asked by WP Security Team to remove this. |
| 234 | |
| 235 | // if ( MeowCommon_Helpers::is_rest() ) { |
| 236 | // ini_set( 'display_errors', 0 ); |
| 237 | // } |
| 238 | } |
| 239 |