| Server IP : 192.241.186.36 / Your IP : 216.73.216.199 Web Server : Apache/2.4.29 (Ubuntu) System : Linux webserver7 4.15.0-194-generic #205-Ubuntu SMP Fri Sep 16 19:49:27 UTC 2022 x86_64 User : root ( 0) PHP Version : 7.4.32 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/adsonicdigital/wp-content/plugins/wp-optimize/webp/ |
Upload File : |
<?php
if (!defined('WPO_VERSION')) die('No direct access allowed');
if (!class_exists('WPO_WebP_Self_Test')) :
class WPO_WebP_Self_Test {
/**
* Decided whether we can get a webp image or not
*
* @return bool
*/
public function get_webp_image() {
$args = array(
'headers' => array(
'accept' => 'image/webp'
)
);
$upload_dir = wp_upload_dir();
$url = $upload_dir['baseurl']. '/wpo/images/wpo_logo_small.png.webp';
$response = wp_remote_get($url, $args);
if (is_wp_error($response)) return false;
if (200 != $response['response']['code']) return false;
$headers = wp_remote_retrieve_headers($response);
if (method_exists($headers, 'getAll')) {
$headers = $headers->getAll();
if ($this->has_webp_mime($headers) && $this->has_vary($headers)) {
return true;
}
}
return false;
}
/**
* Determines whether content type header has webp mime or not
*
* @param array $headers An array of headers
*
* @return bool
*/
private function has_webp_mime($headers) {
return isset($headers['content-type']) && 0 === strcasecmp('image/webp', $headers['content-type']);
}
/**
* Determines whether headers has `vary` header or not
*
* @param array $headers An array of headers
*
* @return bool
*/
private function has_vary($headers) {
return isset($headers['vary']) && preg_match('/accept/i', $headers['vary']);
}
/**
* Decided whether webp version is served or not
*
* @return bool
*/
public function is_webp_served() {
$args = array(
'headers' => array(
'accept' => 'image/webp'
)
);
$upload_dir = wp_upload_dir();
$url = $upload_dir['baseurl']. '/wpo/images/wpo_logo_small.png';
$response = wp_remote_get($url, $args);
if (is_wp_error($response)) return false;
if (200 != $response['response']['code']) return false;
$headers = wp_remote_retrieve_headers($response);
if (method_exists($headers, 'getAll')) {
$headers = $headers->getAll();
if ($this->has_webp_mime($headers) && $this->has_vary($headers)) {
return true;
}
}
return false;
}
/**
* Returns singleton instance
*
* @return WPO_WebP_Self_Test
*/
public static function get_instance() {
static $_instance = null;
if (null === $_instance) {
$_instance = new self();
}
return $_instance;
}
}
endif;