From 5bf66662a9bdd62c5bccab15e607cd95cfb8fcab Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 27 Jul 2020 10:05:23 +0200 Subject: Removed wordpress and phpmyadmin, my server doesn't handle it well and it brings shame on my familly --- .../wp-includes/class-wp-http-encoding.php | 232 --------------------- 1 file changed, 232 deletions(-) delete mode 100644 srcs/wordpress/wp-includes/class-wp-http-encoding.php (limited to 'srcs/wordpress/wp-includes/class-wp-http-encoding.php') diff --git a/srcs/wordpress/wp-includes/class-wp-http-encoding.php b/srcs/wordpress/wp-includes/class-wp-http-encoding.php deleted file mode 100644 index cac6734..0000000 --- a/srcs/wordpress/wp-includes/class-wp-http-encoding.php +++ /dev/null @@ -1,232 +0,0 @@ - 0 ) { - if ( $flg & 4 ) { - list($xlen) = unpack( 'v', substr( $gzData, $i, 2 ) ); - $i = $i + 2 + $xlen; - } - if ( $flg & 8 ) { - $i = strpos( $gzData, "\0", $i ) + 1; - } - if ( $flg & 16 ) { - $i = strpos( $gzData, "\0", $i ) + 1; - } - if ( $flg & 2 ) { - $i = $i + 2; - } - } - $decompressed = @gzinflate( substr( $gzData, $i, -8 ) ); - if ( false !== $decompressed ) { - return $decompressed; - } - } - - // Compressed data from java.util.zip.Deflater amongst others. - $decompressed = @gzinflate( substr( $gzData, 2 ) ); - if ( false !== $decompressed ) { - return $decompressed; - } - - return false; - } - - /** - * What encoding types to accept and their priority values. - * - * @since 2.8.0 - * - * @param string $url - * @param array $args - * @return string Types of encoding to accept. - */ - public static function accept_encoding( $url, $args ) { - $type = array(); - $compression_enabled = self::is_available(); - - if ( ! $args['decompress'] ) { // Decompression specifically disabled. - $compression_enabled = false; - } elseif ( $args['stream'] ) { // Disable when streaming to file. - $compression_enabled = false; - } elseif ( isset( $args['limit_response_size'] ) ) { // If only partial content is being requested, we won't be able to decompress it. - $compression_enabled = false; - } - - if ( $compression_enabled ) { - if ( function_exists( 'gzinflate' ) ) { - $type[] = 'deflate;q=1.0'; - } - - if ( function_exists( 'gzuncompress' ) ) { - $type[] = 'compress;q=0.5'; - } - - if ( function_exists( 'gzdecode' ) ) { - $type[] = 'gzip;q=0.5'; - } - } - - /** - * Filters the allowed encoding types. - * - * @since 3.6.0 - * - * @param array $type Encoding types allowed. Accepts 'gzinflate', - * 'gzuncompress', 'gzdecode'. - * @param string $url URL of the HTTP request. - * @param array $args HTTP request arguments. - */ - $type = apply_filters( 'wp_http_accept_encoding', $type, $url, $args ); - - return implode( ', ', $type ); - } - - /** - * What encoding the content used when it was compressed to send in the headers. - * - * @since 2.8.0 - * - * @return string Content-Encoding string to send in the header. - */ - public static function content_encoding() { - return 'deflate'; - } - - /** - * Whether the content be decoded based on the headers. - * - * @since 2.8.0 - * - * @param array|string $headers All of the available headers. - * @return bool - */ - public static function should_decode( $headers ) { - if ( is_array( $headers ) ) { - if ( array_key_exists( 'content-encoding', $headers ) && ! empty( $headers['content-encoding'] ) ) { - return true; - } - } elseif ( is_string( $headers ) ) { - return ( stripos( $headers, 'content-encoding:' ) !== false ); - } - - return false; - } - - /** - * Whether decompression and compression are supported by the PHP version. - * - * Each function is tested instead of checking for the zlib extension, to - * ensure that the functions all exist in the PHP version and aren't - * disabled. - * - * @since 2.8.0 - * - * @return bool - */ - public static function is_available() { - return ( function_exists( 'gzuncompress' ) || function_exists( 'gzdeflate' ) || function_exists( 'gzinflate' ) ); - } -} -- cgit