| Server IP : 170.10.161.225 / Your IP : 216.73.217.54 Web Server : Apache System : Linux vps103298.mylogin.co 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : calvet ( 273824) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : ON Directory : /home/www/calvetrealty.com/wp-content/plugins/readabler/src/Merkulove/Unity/ |
Upload File : |
<?php /** @noinspection PhpUnused */
/**
* Readabler
* Web accessibility for Your WordPress site.
* Exclusively on https://1.envato.market/readabler
*
* @encoding UTF-8
* @version 1.7.4
* @copyright (C) 2018 - 2024 Merkulove ( https://merkulov.design/ ). All rights reserved.
* @license Envato License https://1.envato.market/KYbje
* @contributors Dmytro Merkulov (dmitry@merkulov.design)
* @support help@merkulov.design
**/
namespace Merkulove\Readabler\Unity;
use DateTime;
/** Exit if accessed directly. */
if ( ! defined( 'ABSPATH' ) ) {
header( 'Status: 403 Forbidden' );
header( 'HTTP/1.1 403 Forbidden' );
exit;
}
final class ReporterServer {
/**
* The one true ReporterServer.
*
* @since 1.0.0
* @var ReporterServer
*/
private static $instance;
/**
* Get server environment reporter title.
*
* @access public
* @return string - Report title.
*/
public function get_title(): string {
return esc_html__( 'Server Environment', 'readabler' );
}
/**
* Retrieve the required fields for the server environment report.
*
* @access public
* @return array - Required report fields with field ID and field label.
*/
public function get_fields(): array {
$tabs = Plugin::get_tabs();
$status_tab = $tabs['status'];
$server_checks = $status_tab['reports']['server'];
$checks = [];
$checks = $this->add_check( $checks, $server_checks, 'os', esc_html__( 'Operating System', 'readabler' ) );
$checks = $this->add_check( $checks, $server_checks, 'software', esc_html__( 'Software', 'readabler' ) );
$checks = $this->add_check( $checks, $server_checks, 'mysql_version', esc_attr( 'MySQL' ) . ' ' . esc_html__( 'Installed', 'readabler' ) );
$checks = $this->add_check( $checks, $server_checks, 'php_version', esc_attr( 'PHP' ) . ' ' . esc_html__( 'Installed', 'readabler' ) );
$checks = $this->add_check( $checks, $server_checks, 'write_permissions', esc_html__( 'Write Permissions', 'readabler' ) );
$checks = $this->add_check( $checks, $server_checks, 'zip_installed', esc_attr( 'ZIP' ) . ' ' . esc_html__( 'Installed', 'readabler' ) );
$checks = $this->add_check( $checks, $server_checks, 'curl_installed', esc_attr( 'cURL' ) . ' ' . esc_html__( 'Installed', 'readabler' ) );
$checks = $this->add_check( $checks, $server_checks, 'elementor_installed', esc_attr( 'Elementor' ) . ' ' . esc_html__( 'Installed', 'readabler' ) );
$checks = $this->add_check( $checks, $server_checks, 'wpbakery_installed', esc_attr( 'WPBakery' ) . ' ' . esc_html__( 'Installed', 'readabler' ) );
$checks = $this->add_check( $checks, $server_checks, 'allow_url_fopen', esc_attr( 'allow_url_fopen' ) );
$checks = $this->add_check( $checks, $server_checks, 'dom_installed', esc_attr( 'DOM' ) . ' ' . esc_html__( 'Installed', 'readabler' ) );
$checks = $this->add_check( $checks, $server_checks, 'xml_installed', esc_attr( 'XML' ) . ' ' . esc_html__( 'Installed', 'readabler' ) );
$checks = $this->add_check( $checks, $server_checks, 'bcmath_installed', esc_attr( 'BCMath' ) . ' ' . esc_html__( 'Installed', 'readabler' ) );
$checks = $this->add_check( $checks, $server_checks, 'mbstring_installed', esc_attr( 'mbstring' ) . ' ' . esc_html__( 'Installed', 'readabler' ) );
$checks = $this->add_check( $checks, $server_checks, 'server_time', esc_html__( 'Server Time Sync' ) );
return apply_filters( 'mdp_readabler_status_reports', $checks );
}
/**
* Add server check if it's enabled.
*
* @param array $checks - List of enabled server checks.
* @param array $server_checks - List of server checks from settings.
* @param string $key - name of check.
* @param string $label - Label for result.
*
* @access public
* @return array - Required report fields with field ID and field label.
*/
private function add_check( array $checks, array $server_checks, string $key, string $label ): array {
if ( isset( $server_checks[ $key ] ) && $server_checks[ $key ] ) {
$checks[ $key ] = $label;
}
return $checks;
}
/**
* Get allow_url_fopen enabled.
*
* @access public
* @return array {
* Report data.
*
* @type string $value YES if the allow_url_fopen is enabled, NO otherwise.
* @type bool $warning Whether to display a warning. True if the allow_url_fopen is enabled, False otherwise.
* }
*/
public function get_allow_url_fopen(): array {
$allow_url_fopen = ini_get( 'allow_url_fopen' );
return [
'value' => $allow_url_fopen ? '<i class="material-icons mdc-system-yes">check_circle</i>' . esc_html__( 'YES', 'readabler' ) : '<i class="material-icons mdc-system-no">error</i>' . esc_html__( 'NO', 'readabler' ),
'warning' => ! $allow_url_fopen,
'recommendation' => esc_html__( 'You must enable allow_url_fopen option in PHP. Contact the support service of your hosting provider. They know what to do.', 'readabler' )
];
}
/**
* Get server operating system.
* Retrieve the server operating system.
*
* @access public
* @return array {
* Report data.
*
* @type string $value Server operating system.
* }
*/
public function get_os(): array {
return [
'value' => PHP_OS,
];
}
/**
* Get server software.
* Retrieve the server software.
*
* @access public
* @return array {
* Report data.
*
* @type string $value Server software.
* }
*/
public function get_software(): array {
return [
'value' => $_SERVER['SERVER_SOFTWARE'],
];
}
/**
* Get PHP version.
* Retrieve the PHP version.
*
* @access public
* @return array {
* Report data.
*
* @type string $value PHP version.
* @type string $recommendation Minimum PHP version recommendation.
* @type bool $warning Whether to display a warning.
* }
*/
public function get_php_version(): array {
$result = [
'value' => PHP_VERSION,
];
$version = apply_filters( 'readabler_required_php_version', '7.1.0' );
if ( version_compare( $result['value'], $version, '<' ) ) {
$result['recommendation'] = wp_sprintf(
/* translators: %1$s: PHP version, %2$s: Required PHP version. */
esc_html__( 'We recommend to use PHP %1$s or higher. Your version is %2$s', 'readabler' ),
$version,
$result['value']
);
$result['warning'] = true;
}
return $result;
}
/**
* Get ZIP installed.
* Whether the ZIP extension is installed.
*
* @access public
* @return array {
* Report data.
*
* @type string $value Yes if the ZIP extension is installed, NO otherwise.
* @type bool $warning Whether to display a warning. True if the ZIP extension is installed, False otherwise.
* }
*/
public function get_zip_installed(): array {
$zip_installed = extension_loaded( 'zip' );
return [
'value' => $zip_installed ? '<i class="material-icons mdc-system-yes">check_circle</i>' . esc_html__( 'YES', 'readabler') : '<i class="material-icons mdc-system-no">error</i>' . esc_html__( 'NO', 'readabler' ),
'warning' => ! $zip_installed,
];
}
/**
* Get cURL installed.
* Whether the cURL extension is installed.
*
* @access public
* @return array {
* Report data.
*
* @type string $value YES if the cURL extension is installed, NO otherwise.
* @type bool $warning Whether to display a warning. True if the cURL extension is installed, False otherwise.
* }
*/
public function get_curl_installed(): array {
$curl_installed = extension_loaded( 'curl' );
return [
'value' => $curl_installed ? '<i class="material-icons mdc-system-yes">check_circle</i>' . esc_html__( 'YES', 'readabler' ) : '<i class="material-icons mdc-system-no">error</i>' . esc_html__( 'NO', 'readabler' ),
'warning' => ! $curl_installed,
'recommendation' => esc_html__( 'You must enable CURL (Client URL Library) in PHP. Contact the support service of your hosting provider. They know what to do.', 'readabler' )
];
}
/**
* Get Elementor installed.
* Whether the Elementor builder is installed.
*
* @access public
* @return array Report data.
* @type string $value YES if the Elementor builder is installed, NO otherwise.
* @type bool $warning Whether to display a warning.
*/
public function get_elementor_installed(): array {
/** Check if Elementor installed and activated. */
$elementor_installed = did_action( 'elementor/loaded' );
return [
'value' => $elementor_installed ? '<i class="material-icons mdc-system-yes">check_circle</i>' . esc_html__( 'YES', 'readabler') : '<i class="material-icons mdc-system-no">error</i>' . esc_html__( 'NO', 'readabler' ),
'warning' => ! $elementor_installed,
'recommendation' => esc_html__( 'You need install and activate Elementor builder. Go to Elementor site (elementor.com) for details.', 'readabler' )
];
}
/**
* Get WPBakery installed.
* Whether the Wpbakery builder is installed.
*
* @access public
* @return array Report data.
* @type string $value YES if the WPBakery builder is installed, NO otherwise.
* @type bool $warning Whether to display a warning.
*/
public function get_wpbakery_installed(): array {
/** Check if WPBakery installed and activated. */
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
$wpbakery_installed = is_plugin_active( 'js_composer/js_composer.php' );
return [
'value' => $wpbakery_installed ? '<i class="material-icons mdc-system-yes">check_circle</i>' . esc_html__('YES', 'readabler') : '<i class="material-icons mdc-system-no">error</i>' . esc_html__('NO', 'readabler' ),
'warning' => ! $wpbakery_installed,
'recommendation' => esc_html__('You need install and activate WPBakery builder. Go to WPBakery site (wpbakery.com) for details.', 'readabler' )
];
}
/**
* Get DOM installed.
* Whether the DOM extension is installed.
*
* @access public
* @return array {
* Report data.
*
* @type string $value YES if the DOM extension is installed, NO otherwise.
* @type bool $warning Whether to display a warning. True if the DOM extension is installed, False otherwise.
* }
*/
public function get_dom_installed(): array {
$dom_installed = extension_loaded( 'dom' );
return [
'value' => $dom_installed ? '<i class="material-icons mdc-system-yes">check_circle</i>' . esc_html__( 'YES', 'readabler') : '<i class="material-icons mdc-system-no">error</i>' . esc_html__( 'NO', 'readabler' ),
'warning' => ! $dom_installed,
'recommendation' => esc_html__(' You must enable DOM extension (Document Object Model) in PHP. It\'s used for HTML processing. Contact the support service of your hosting provider. They know what to do.', 'readabler' )
];
}
/**
* Get XML installed.
* Whether the XML extension is installed.
*
* @access public
* @return array {
* Report data.
*
* @type string $value YES if the XML extension is installed, NO otherwise.
* @type bool $warning Whether to display a warning. True if the XML extension is installed, False otherwise.
* }
*/
public function get_xml_installed(): array {
$xml_installed = extension_loaded( 'xml' );
return [
'value' => $xml_installed ? '<i class="material-icons mdc-system-yes">check_circle</i>' . esc_html__( 'YES', 'readabler' ) : '<i class="material-icons mdc-system-no">error</i>' . esc_html__( 'NO', 'readabler' ),
'warning' => ! $xml_installed,
'recommendation' => esc_html__( 'You must enable XML extension in PHP. It\'s used for XML processing. Contact the support service of your hosting provider. They know what to do.', 'readabler' )
];
}
/**
* Get BCMath installed.
* Whether the BCMath extension is installed.
*
* @access public
* @return array {
* Report data.
*
* @type string $value YES if the BCMath extension is installed, NO otherwise.
* @type bool $warning Whether to display a warning. True if the BCMath extension is installed, False otherwise.
* }
*/
public function get_bcmath_installed(): array {
$bcmath_installed = extension_loaded( 'bcmath' );
return [
'value' => $bcmath_installed ? '<i class="material-icons mdc-system-yes">check_circle</i>' . esc_html__( 'YES', 'readabler' ) : '<i class="material-icons mdc-system-no">error</i>' . esc_html__( 'NO', 'readabler' ),
'warning' => ! $bcmath_installed,
'recommendation' => esc_html__( 'You must enable BCMath extension (Arbitrary Precision Mathematics) in PHP. Contact the support service of your hosting provider. They know what to do.', 'readabler' )
];
}
/**
* Get mbstring installed.
* Whether the mbstring extension is installed.
*
* @access public
* @return array {
* Report data.
*
* @type string $value YES if the mbstring extension is installed, NO otherwise.
* @type bool $warning Whether to display a warning. True if the mbstring extension is installed, False otherwise.
* }
*/
public function get_mbstring_installed(): array {
$mbstring_installed = extension_loaded( 'mbstring' );
return [
'value' => $mbstring_installed ? '<i class="material-icons mdc-system-yes">check_circle</i>' . esc_html__('YES', 'readabler' ) : '<i class="material-icons mdc-system-no">error</i>' . esc_html__('NO', 'readabler' ),
'warning' => ! $mbstring_installed,
'recommendation' => esc_html__('You must enable mbstring extension (Multibyte String) in PHP. Contact the support service of your hosting provider. They know what to do.', 'readabler' )
];
}
/**
* Get server time and compare it with NTP.
*
* @since 1.0.0
* @access public
*
* @return array
*/
public function get_server_time(): array {
/** Get current time from Google. */
$url = 'https://www.google.com/';
$curl = curl_init();
curl_setopt( $curl, CURLOPT_URL, $url );
curl_setopt( $curl, CURLOPT_NOBODY, true );
curl_setopt( $curl, CURLOPT_RETURNTRANSFER, true );
curl_setopt( $curl, CURLOPT_HEADER, true );
if ( defined( CURLOPT_SSL_VERIFYPEER ) ) {
curl_setopt( $curl, CURLOPT_SSL_VERIFYPEER, false );
}
/** @noinspection CurlSslServerSpoofingInspection */
curl_setopt( $curl, CURLOPT_SSL_VERIFYHOST, 0 );
$header = curl_exec( $curl );
$curl_errno = curl_errno( $curl );
curl_close( $curl );
/** On cURL Error. */
if ( $curl_errno ) {
return [
'value' => '<i class="material-icons mdc-system-no">error</i>' . esc_html__('NO', 'readabler' ),
'warning' => true,
'recommendation' => esc_html__('Failed to check time synchronization on your server. Your server\'s clock must be in sync with network time protocol - NTP.', 'readabler' )
];
}
/** Convert header to array. */
$headers = $this->get_headers_from_curl_response( $header );
$date = '';
if ( isset( $headers['date'] ) ) {
$date = $headers['date'];
}
$date = DateTime::createFromFormat( 'D, d M Y H:i:s e', $date );
if ( ! $date ) {
return [
'value' => '<i class="material-icons mdc-system-no">error</i>' . esc_html__('NO', 'readabler' ),
'warning' => true,
'recommendation' => esc_html__('Failed to check time synchronization on your server. Your server\'s clock must be in sync with network time protocol - NTP.', 'readabler' )
];
}
/** Time from Google. */
$google_time = $date->format( 'Y-m-d H:i:s e' );
/** Your Server time in 'GMT' */
$timezone = date_default_timezone_get();
date_default_timezone_set( 'GMT' );
$server_time = date('Y-m-d H:i:s e');
date_default_timezone_set( $timezone );
$to_time = strtotime( $google_time );
$from_time = strtotime( $server_time );
$diff = abs($to_time - $from_time);
$diff = (int)$diff;
/** If time difference more than 120 sec, show warning. */
if ( $diff > 120 ) {
$time_ok = false;
} else {
$time_ok = true;
}
return [
'value' => $time_ok ? '<i class="material-icons mdc-system-yes">check_circle</i>' . esc_html__('YES', 'readabler') : '<i class="material-icons mdc-system-no">error</i>' . esc_html__('NO', 'readabler' ) . '<br>Google Time: ' . $google_time . '<br> Local Time: ' . $server_time,
'warning' => ! $time_ok,
'recommendation' => esc_html__( ' Your server\'s clock is not in sync with network time protocol - NTP. Contact the support service of your hosting provider. They know what to do.', 'readabler' )
];
}
/**
* Convert header string to array of header values.
* @see https://stackoverflow.com/a/10590242
*
* @param $header_text string - Header from cURL request.
*
* @access private
* @return array
*/
private function get_headers_from_curl_response( string $header_text ): array {
/** Everybody out of the dusk. */
$header_text = json_encode( $header_text );
$headers = [];
foreach ( explode( '\\r\\n', $header_text ) as $i => $line ) {
/** Skip garbage. */
if ( strlen( $line ) < 3 ) { continue; }
if ( $i === 0 ) {
$headers['http_code'] = $line;
} else {
list ( $key, $value ) = explode( ': ', $line );
$headers[strtolower( $key )] = $value;
}
}
return $headers;
}
/**
* Get MySQL version.
* Retrieve the MySQL version.
*
* @access public
* @return array {
* Report data.
*
* @type string $value MySQL version.
* }
*/
public function get_mysql_version(): array {
global $wpdb;
$db_server_version = $wpdb->get_results( "SHOW VARIABLES WHERE `Variable_name` IN ( 'version_comment', 'innodb_version' )", OBJECT_K );
return [
'value' => $db_server_version['version_comment']->Value . ' v' . $db_server_version['innodb_version']->Value,
];
}
/**
* Get write permissions.
* Check whether the required folders have writing permissions.
*
* @access public
* @return array {
* Report data.
*
* @type string $value Writing permissions status.
* @type bool $warning Whether to display a warning. True if some required
* folders don't have writing permissions, False otherwise.
* }
*/
public function get_write_permissions(): array {
$paths_to_check = [
ABSPATH => esc_html__( 'WordPress root directory', 'readabler' )
];
$write_problems = [];
$wp_upload_dir = wp_upload_dir();
if ( $wp_upload_dir[ 'error' ] ) {
$write_problems[] = esc_html__( 'WordPress root uploads directory', 'readabler' );
}
$htaccess_file = ABSPATH . '/.htaccess';
if ( file_exists( $htaccess_file ) ) {
$paths_to_check[ $htaccess_file ] = esc_html__( '.htaccess file', 'readabler' );
}
foreach ( $paths_to_check as $dir => $description ) {
if ( ! is_writable( $dir ) ) {
$write_problems[] = $description;
}
}
if ( $write_problems ) {
$value = '<i class="material-icons mdc-system-no">error</i>' . esc_html__( 'There are some writing permissions issues with the following directories/files:', 'readabler' ) . "<br> – ";
$value .= implode( "<br> – ", $write_problems );
} else {
$value = '<i class="material-icons mdc-system-yes">check_circle</i>' . esc_html__( 'All right', 'readabler' );
}
return [
'value' => $value,
'warning' => (bool) $write_problems,
];
}
/**
* Get report.
* Retrieve the report with all it's containing fields.
*
* @access public
* @return array {
* Report fields.
*
* @type string $name Field name.
* @type string $label Field label.
* }
*/
public function get_report(): array {
$result = [];
foreach ( $this->get_fields() as $field_name => $field_label ) {
$method = 'get_' . $field_name;
$reporter_field = [
"name" => $field_name,
'label' => $field_label,
];
/** @noinspection SlowArrayOperationsInLoopInspection */
$reporter_field = array_merge( $reporter_field, $this->$method() );
$result[ $field_name ] = $reporter_field;
}
return $result;
}
/**
* Main ReporterServer Instance.
*
* Insures that only one instance of ReporterServer exists in memory at any one time.
*
* @static
* @return ReporterServer
*/
public static function get_instance(): ReporterServer {
if ( ! isset( self::$instance ) && ! ( self::$instance instanceof self ) ) {
self::$instance = new self;
}
return self::$instance;
}
}