diff options
author | yehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664> | 2019-11-25 08:22:35 +0000 |
---|---|---|
committer | yehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664> | 2019-11-25 08:22:35 +0000 |
commit | c61784411988d36d9bbd93cd3a97e773990af342 (patch) | |
tree | 924e6e9dea2ba7b1eedb14d0c4b03a38aefdf179 /Postman/Postman-Diagnostic-Test | |
parent | 907ce8c044159ca8da6ccce3ec5362ac61e7c142 (diff) | |
download | Post-SMTP-c61784411988d36d9bbd93cd3a97e773990af342.zip |
Adding a folder
Diffstat (limited to 'Postman/Postman-Diagnostic-Test')
-rw-r--r-- | Postman/Postman-Diagnostic-Test/PostmanDiagnosticTestController.php | 288 | ||||
-rw-r--r-- | Postman/Postman-Diagnostic-Test/postman_diagnostics.js | 19 |
2 files changed, 307 insertions, 0 deletions
diff --git a/Postman/Postman-Diagnostic-Test/PostmanDiagnosticTestController.php b/Postman/Postman-Diagnostic-Test/PostmanDiagnosticTestController.php new file mode 100644 index 0000000..18a3ec5 --- /dev/null +++ b/Postman/Postman-Diagnostic-Test/PostmanDiagnosticTestController.php @@ -0,0 +1,288 @@ +<?php +if ( ! defined( 'ABSPATH' ) ) { + exit; // Exit if accessed directly +} +class PostmanDiagnosticTestController { + const DIAGNOSTICS_SLUG = 'postman/diagnostics'; + + // logging + private $logger; + private $options; + + // Holds the values to be used in the fields callbacks + private $rootPluginFilenameAndPath; + + /** + * Constructor + * + * @param mixed $rootPluginFilenameAndPath + */ + public function __construct( $rootPluginFilenameAndPath ) { + assert( ! empty( $rootPluginFilenameAndPath ) ); + assert( PostmanUtils::isAdmin() ); + assert( is_admin() ); + + $this->logger = new PostmanLogger( get_class( $this ) ); + $this->rootPluginFilenameAndPath = $rootPluginFilenameAndPath; + $this->options = PostmanOptions::getInstance(); + + // register the admin menu + PostmanUtils::registerAdminMenu( $this, 'addDiagnosticsSubmenu' ); + + // hook on the init event + add_action( 'init', array( + $this, + 'on_init', + ) ); + + // initialize the scripts, stylesheets and form fields + add_action( 'admin_init', array( + $this, + 'on_admin_init', + ) ); + } + + /** + * Functions to execute on the init event + * + * "Typically used by plugins to initialize. The current user is already authenticated by this time." + * ref: http://codex.wordpress.org/Plugin_API/Action_Reference#Actions_Run_During_a_Typical_Request + */ + public function on_init() { + // register Ajax handlers + new PostmanGetDiagnosticsViaAjax(); + } + + /** + * Fires on the admin_init method + */ + public function on_admin_init() { + $this->registerStylesAndScripts(); + } + + /** + * Register and add settings + */ + private function registerStylesAndScripts() { + if ( $this->logger->isTrace() ) { + $this->logger->trace( 'registerStylesAndScripts()' ); + } + + // register the javascript resource + $pluginData = apply_filters( 'postman_get_plugin_metadata', null ); + wp_register_script( 'postman_diagnostics_script', plugins_url( 'Postman/Postman-Diagnostic-Test/postman_diagnostics.js', $this->rootPluginFilenameAndPath ), array( + PostmanViewController::JQUERY_SCRIPT, + PostmanViewController::POSTMAN_SCRIPT, + ), $pluginData ['version'] ); + } + + /** + * Register the Diagnostics screen + */ + public function addDiagnosticsSubmenu() { + $page = add_submenu_page( null, sprintf( __( '%s Setup', 'post-smtp' ), __( 'Postman SMTP', 'post-smtp' ) ), __( 'Postman SMTP', 'post-smtp' ), Postman::MANAGE_POSTMAN_CAPABILITY_NAME, PostmanDiagnosticTestController::DIAGNOSTICS_SLUG, array( + $this, + 'outputDiagnosticsContent', + ) ); + // When the plugin options page is loaded, also load the stylesheet + add_action( 'admin_print_styles-' . $page, array( + $this, + 'enqueueDiagnosticsScreenStylesheet', + ) ); + } + function enqueueDiagnosticsScreenStylesheet() { + wp_enqueue_style( PostmanViewController::POSTMAN_STYLE ); + wp_enqueue_script( 'postman_diagnostics_script' ); + } + + /** + */ + public function outputDiagnosticsContent() { + // test features + print '<div class="wrap">'; + + PostmanViewController::outputChildPageHeader( __( 'Diagnostic Test', 'post-smtp' ) ); + + ?> + <form> + <?php wp_nonce_field('post-smtp', 'security' ); ?> + </form> + <?php + + printf( '<h4>%s</h4>', __( 'Are you having issues with Postman?', 'post-smtp' ) ); + /* translators: where %1$s and %2$s are the URLs to the Troubleshooting and Support Forums on WordPress.org */ + printf( '<p style="margin:0 10px">%s</p>', sprintf( __( 'Please check the <a href="%1$s">troubleshooting and error messages</a> page and the <a href="%2$s">support forum</a>.', 'post-smtp' ), 'https://wordpress.org/plugins/post-smtp/other_notes/', 'https://wordpress.org/support/plugin/post-smtp' ) ); + printf( '<h4>%s</h4>', __( 'Diagnostic Test', 'post-smtp' ) ); + printf( '<p style="margin:0 10px">%s</p><br/>', sprintf( __( 'If you write for help, please include the following:', 'post-smtp' ), 'https://wordpress.org/plugins/post-smtp/other_notes/', 'https://wordpress.org/support/plugin/post-smtp' ) ); + printf( '<textarea readonly="readonly" id="diagnostic-text" cols="80" rows="15">%s</textarea>', _x( 'Checking..', 'The "please wait" message', 'post-smtp' ) ); + print '</div>'; + } +} + +/** + * + * @author jasonhendriks + */ +class PostmanGetDiagnosticsViaAjax { + private $diagnostics; + private $options; + private $authorizationToken; + /** + * Constructor + * + * @param PostmanOptions $options + */ + function __construct() { + $this->options = PostmanOptions::getInstance(); + $this->authorizationToken = PostmanOAuthToken::getInstance(); + $this->diagnostics = ''; + PostmanUtils::registerAjaxHandler( 'postman_diagnostics', $this, 'getDiagnostics' ); + } + private function addToDiagnostics( $header, $data ) { + if ( isset( $data ) ) { + $this->diagnostics .= sprintf( '%s: %s%s', $header, $data, PHP_EOL ); + } + } + private function getActivePlugins() { + // from http://stackoverflow.com/questions/20488264/how-do-i-get-activated-plugin-list-in-wordpress-plugin-development + $apl = get_option( 'active_plugins' ); + $plugins = get_plugins(); + $pluginText = array(); + foreach ( $apl as $p ) { + if ( isset( $plugins [ $p ] ) ) { + array_push( $pluginText, $plugins [ $p ] ['Name'] ); + } + } + return implode( ', ', $pluginText ); + } + private function getPhpDependencies() { + $apl = PostmanPreRequisitesCheck::getState(); + $pluginText = array(); + foreach ( $apl as $p ) { + array_push( $pluginText, $p ['name'] . '=' . ($p ['ready'] ? 'Yes' : 'No') ); + } + return implode( ', ', $pluginText ); + } + private function getTransports() { + $transports = ''; + foreach ( PostmanTransportRegistry::getInstance()->getTransports() as $transport ) { + $transports .= ' : ' . $transport->getName(); + } + return $transports; + } + + /** + * Diagnostic Data test to current SMTP server + * + * @return string + */ + private function testConnectivity( PostmanModuleTransport $transport ) { + $hostname = $transport->getHostname( $this->options ); + $port = $transport->getPort( $this->options ); + if ( ! empty( $hostname ) && ! empty( $port ) ) { + $portTest = new PostmanPortTest( $transport->getHostname( $this->options ), $transport->getPort( $this->options ) ); + $result = $portTest->genericConnectionTest( $this->options->getConnectionTimeout() ); + if ( $result ) { + return 'Yes'; + } else { + return 'No'; + } + } + return 'n/a'; + } + + /** + * Inspects the $wp_filter variable and returns the plugins attached to it + * From: http://stackoverflow.com/questions/5224209/wordpress-how-do-i-get-all-the-registered-functions-for-the-content-filter + */ + private function getFilters( $hook = '' ) { + global $wp_filter; + if ( empty( $hook ) || ! isset( $wp_filter [ $hook ] ) ) { + return null; } + $functionArray = array(); + foreach ( $wp_filter [ $hook ] as $functions ) { + foreach ( $functions as $function ) { + $thing = $function ['function']; + if ( is_array( $thing ) ) { + $name = get_class( $thing [0] ) . '->' . $thing [1]; + array_push( $functionArray, $name ); + } else { + array_push( $functionArray, $thing ); + } + } + } + return implode( ', ', $functionArray ); + } + + /** + */ + public function getDiagnostics() { + + check_admin_referer('post-smtp', 'security'); + + $curl = curl_version(); + $transportRegistry = PostmanTransportRegistry::getInstance(); + $this->addToDiagnostics( 'Mailer', PostmanOptions::getInstance()->getSmtpMailer() ); + $this->addToDiagnostics( 'HostName', PostmanUtils::getServerName() ); + $this->addToDiagnostics( 'cURL Version', $curl['version'] ); + $this->addToDiagnostics( 'OpenSSL Version', $curl['ssl_version'] ); + $this->addToDiagnostics( 'OS', php_uname() ); + $this->addToDiagnostics( 'PHP', PHP_OS . ' ' . PHP_VERSION . ' ' . setlocale( LC_CTYPE, 0 ) ); + $this->addToDiagnostics( 'PHP Dependencies', $this->getPhpDependencies() ); + $this->addToDiagnostics( 'WordPress', (is_multisite() ? 'Multisite ' : '') . get_bloginfo( 'version' ) . ' ' . get_locale() . ' ' . get_bloginfo( 'charset', 'display' ) ); + $this->addToDiagnostics( 'WordPress Theme', wp_get_theme() ); + $this->addToDiagnostics( 'WordPress Plugins', $this->getActivePlugins() ); + + $bindResult = apply_filters( 'postman_wp_mail_bind_status', null ); + $wp_mail_file_name = 'n/a'; + if ( class_exists( 'ReflectionFunction' ) ) { + $wp_mail = new ReflectionFunction( 'wp_mail' ); + $wp_mail_file_name = realpath( $wp_mail->getFileName() ); + } + + $this->addToDiagnostics( 'WordPress wp_mail Owner', $wp_mail_file_name ); + $this->addToDiagnostics( 'WordPress wp_mail Filter(s)', $this->getFilters( 'wp_mail' ) ); + $this->addToDiagnostics( 'WordPress wp_mail_from Filter(s)', $this->getFilters( 'wp_mail_from' ) ); + $this->addToDiagnostics( 'WordPress wp_mail_from_name Filter(s)', $this->getFilters( 'wp_mail_from_name' ) ); + $this->addToDiagnostics( 'WordPress wp_mail_content_type Filter(s)', $this->getFilters( 'wp_mail_content_type' ) ); + $this->addToDiagnostics( 'WordPress wp_mail_charset Filter(s)', $this->getFilters( 'wp_mail_charset' ) ); + $this->addToDiagnostics( 'WordPress phpmailer_init Action(s)', $this->getFilters( 'phpmailer_init' ) ); + $pluginData = apply_filters( 'postman_get_plugin_metadata', null ); + $this->addToDiagnostics( 'Postman', $pluginData ['version'] ); + { + $s1 = $this->options->getEnvelopeSender(); + $s2 = $this->options->getMessageSenderEmail(); + if ( ! empty( $s1 ) || ! empty( $s2 ) ) { + $this->addToDiagnostics( 'Postman Sender Domain (Envelope|Message)', ($hostname = substr( strrchr( $this->options->getEnvelopeSender(), '@' ), 1 )) . ' | ' . ($hostname = substr( strrchr( $this->options->getMessageSenderEmail(), '@' ), 1 )) ); + } + } + $this->addToDiagnostics( 'Postman Prevent Message Sender Override (Email|Name)', ($this->options->isSenderEmailOverridePrevented() ? 'Yes' : 'No') . ' | ' . ($this->options->isSenderNameOverridePrevented() ? 'Yes' : 'No') ); + { + // status of the active transport + $transport = $transportRegistry->getActiveTransport(); + $this->addToDiagnostics( 'Postman Active Transport', sprintf( '%s (%s)', $transport->getName(), $transportRegistry->getPublicTransportUri( $transport ) ) ); + $this->addToDiagnostics( 'Postman Active Transport Status (Ready|Connected)', ($transport->isConfiguredAndReady() ? 'Yes' : 'No') . ' | ' . ($this->testConnectivity( $transport )) ); + } + if ( $transportRegistry->getActiveTransport() != $transportRegistry->getSelectedTransport() && $transportRegistry->getSelectedTransport() != null ) { + // status of the selected transport + $transport = $transportRegistry->getSelectedTransport(); + $this->addToDiagnostics( 'Postman Selected Transport', sprintf( '%s (%s)', $transport->getName(), $transportRegistry->getPublicTransportUri( $transport ) ) ); + $this->addToDiagnostics( 'Postman Selected Transport Status (Ready|Connected)', ($transport->isConfiguredAndReady() ? 'Yes' : 'No') . ' | ' . ($this->testConnectivity( $transport )) ); + } + $this->addToDiagnostics( 'Postman Deliveries (Success|Fail)', (PostmanState::getInstance()->getSuccessfulDeliveries()) . ' | ' . (PostmanState::getInstance()->getFailedDeliveries()) ); + if ( $this->options->getConnectionTimeout() != PostmanOptions::DEFAULT_TCP_CONNECTION_TIMEOUT || $this->options->getReadTimeout() != PostmanOptions::DEFAULT_TCP_READ_TIMEOUT ) { + $this->addToDiagnostics( 'Postman TCP Timeout (Connection|Read)', $this->options->getConnectionTimeout() . ' | ' . $this->options->getReadTimeout() ); + } + if ( $this->options->isMailLoggingEnabled() != PostmanOptions::DEFAULT_MAIL_LOG_ENABLED || $this->options->getMailLoggingMaxEntries() != PostmanOptions::DEFAULT_MAIL_LOG_ENTRIES || $this->options->getTranscriptSize() != PostmanOptions::DEFAULT_TRANSCRIPT_SIZE ) { + $this->addToDiagnostics( 'Postman Email Log (Enabled|Limit|Transcript Size)', ($this->options->isMailLoggingEnabled() ? 'Yes' : 'No') . ' | ' . $this->options->getMailLoggingMaxEntries() . ' | ' . $this->options->getTranscriptSize() ); + } + $this->addToDiagnostics( 'Postman Run Mode', $this->options->getRunMode() == PostmanOptions::RUN_MODE_PRODUCTION ? null : $this->options->getRunMode() ); + $this->addToDiagnostics( 'Postman PHP LogLevel', $this->options->getLogLevel() == PostmanLogger::ERROR_INT ? null : $this->options->getLogLevel() ); + $this->addToDiagnostics( 'Postman Stealth Mode', $this->options->isStealthModeEnabled() ? 'Yes' : null ); + $this->addToDiagnostics( 'Postman File Locking (Enabled|Temp Dir)', PostmanState::getInstance()->isFileLockingEnabled() ? null : 'No' . ' | ' . $this->options->getTempDirectory() ); + $response = array( + 'message' => $this->diagnostics, + ); + wp_send_json_success( $response ); + } +} diff --git a/Postman/Postman-Diagnostic-Test/postman_diagnostics.js b/Postman/Postman-Diagnostic-Test/postman_diagnostics.js new file mode 100644 index 0000000..140668e --- /dev/null +++ b/Postman/Postman-Diagnostic-Test/postman_diagnostics.js @@ -0,0 +1,19 @@ +jQuery(document).ready(function() { + getDiagnosticData(); +}); + +/** + */ +function getDiagnosticData() { + var data = { + 'action' : 'postman_diagnostics', + 'security' : jQuery('#security').val() + }; + jQuery.post(ajaxurl, data, function(response) { + if (response.success) { + jQuery('#diagnostic-text').val(response.data.message); + } + }).fail(function(response) { + ajaxFailed(response); + }); +} |