/
home
/
faureele
/
vip-test
/
wp-content
/
plugins
/
webp-converter-for-media
/
includes
/
Upload File
HOME
<?php /** * Loads images in WebP format or original images if browser does not support WebP. * * @category WordPress Plugin * @package WebP Converter for Media * @author Mateusz Gbiorczyk * @link https://wordpress.org/plugins/webp-converter-for-media/ */ /** * Loads lighter weight image files in output format instead of original formats. */ class PassthruLoader { const PATH_UPLOADS = ''; const PATH_UPLOADS_WEBP = ''; const MIME_TYPES = ''; /** * PassthruLoader constructor. */ public function __construct() { if ( ! ( $image_url = $_GET['src'] ?? null ) ) { // phpcs:ignore return; } elseif ( ! filter_var( $image_url, FILTER_VALIDATE_URL ) ) { $this->load_image_default( $image_url ); } $this->load_converted_image( $image_url ); } /** * Initializes loading of image in supported output format. * * @param string $image_url URL of source image. * * @return void */ private function load_converted_image( string $image_url ) { $mime_types = json_decode( self::MIME_TYPES, true ); $headers = array_change_key_case( array_merge( ( function_exists( 'getallheaders' ) ) ? getallheaders() : [], $_SERVER ), CASE_UPPER ); $accept_header = $headers['ACCEPT'] ?? ( $headers['HTTP_ACCEPT'] ?? '' ); foreach ( $mime_types as $extension => $mime_type ) { if ( ( strpos( $accept_header, $mime_type ) !== false ) && ( $source = $this->load_image_source( $image_url, $extension ) ) ) { header( 'Content-Type: ' . $mime_type ); echo $source; // phpcs:ignore exit; } } $this->load_image_default( $image_url ); } /** * Loads image output format. * * @param string $image_url URL of source image. * @param string $extension Extension of output format. * * @return string|null Content of image in output format. */ private function load_image_source( string $image_url, string $extension ) { $url = $this->generate_source_url( $image_url, $extension ); $ch = curl_init( $url ); if ( $ch === false ) { return null; } curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, 0 ); curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1 ); $response = curl_exec( $ch ); $code = curl_getinfo( $ch, CURLINFO_HTTP_CODE ); curl_close( $ch ); if ( ( $code !== 200 ) || ! $response ) { return null; } else { return ( is_string( $response ) ) ? $response : null; } } /** * Returns URL of output image by replacing URL of source image. * * @param string $image_url URL of source image. * @param string $extension Extension of output format. * * @return string URL of image in output format. */ private function generate_source_url( string $image_url, string $extension ): string { return sprintf( '%1$s.%2$s', str_replace( self::PATH_UPLOADS, self::PATH_UPLOADS_WEBP, $image_url ), $extension ); } /** * Redirects to source image. * * @param string $image_url URL of source image. * * @return void */ private function load_image_default( string $image_url ) { header( 'Location: ' . $image_url ); } } new PassthruLoader();