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