Server IP : 162.0.217.223 / Your IP : 216.73.216.150 Web Server : LiteSpeed System : Linux premium269.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : mypckeys ( 1539) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mypckeys/yeslicense.org/wp-content/plugins/webp-express/lib/classes/ |
Upload File : |
<?php namespace WebPExpress; use \WebPExpress\Config; use \WebPExpress\Convert; use \WebPExpress\Mime; use \WebPExpress\SanityCheck; use \WebPExpress\SanityException; class HandleUploadHooks { private static $config; /** * Convert if: * - Option has been enabled * - We are not in "No conversion" mode * - The mime type is one of the ones the user has activated (in config) */ private static function convertIf($filename) { if (!isset(self::$config)) { self::$config = Config::loadConfigAndFix(); } $config = &self::$config; if (!$config['convert-on-upload']) { return; } if ($config['operation-mode'] == 'no-conversion') { return; } //$mimeType = getimagesize($filename)['mime']; $allowedMimeTypes = []; $imageTypes = $config['image-types']; if ($imageTypes & 1) { $allowedMimeTypes[] = 'image/jpeg'; $allowedMimeTypes[] = 'image/jpg'; /* don't think "image/jpg" is necessary, but just in case */ } if ($imageTypes & 2) { $allowedMimeTypes[] = 'image/png'; } if (!in_array(Mime::getMimeTypeOfMedia($filename), $allowedMimeTypes)) { return; } Convert::convertFile($filename, $config); } /** * hook: handle_upload * $filename is ie "/var/www/webp-express-tests/we0/wordpress/uploads-moved/image4-10-150x150.jpg" */ public static function handleUpload($filearray, $overrides = false, $ignore = false) { if (isset($filearray['file'])) { try { $filename = SanityCheck::absPathExistsAndIsFileInDocRoot($filearray['file']); self::convertIf($filename); } catch (SanityException $e) { // fail silently. (maybe we should write to debug log instead?) } } return $filearray; } /** * hook: image_make_intermediate_size * $filename is ie "/var/www/webp-express-tests/we0/wordpress/uploads-moved/image4-10-150x150.jpg" */ public static function handleMakeIntermediateSize($filename) { if (!is_null($filename)) { try { $filenameToConvert = SanityCheck::absPathExistsAndIsFileInDocRoot($filename); self::convertIf($filenameToConvert); } catch (SanityException $e) { // fail silently. (maybe we should write to debug log instead?) } } return $filename; } }