HEX
Server: Apache
System: Linux web5.visualcom.es 4.18.0-477.21.1.lve.1.el8.x86_64 #1 SMP Tue Sep 5 23:08:35 UTC 2023 x86_64
User: ensaco.es (10019)
PHP: 8.3.32
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/ensaco.es/httpdocs/wp-content/plugins/wp-mail-smtp/assets/js/smtp-ai-mcp.js
'use strict';

var WPMailSMTP = window.WPMailSMTP || {};
WPMailSMTP.Admin = WPMailSMTP.Admin || {};

/**
 * WP Mail SMTP Admin area AI MCP module.
 *
 * @since 4.9.0
 */
WPMailSMTP.Admin.AiMcp = WPMailSMTP.Admin.AiMcp || ( function( document, window, $ ) {

	/**
	 * Public functions and properties.
	 *
	 * @since 4.9.0
	 *
	 * @type {object}
	 */
	var app = {

		/**
		 * Start the engine. DOM is not ready yet, use only to init something.
		 *
		 * @since 4.9.0
		 */
		init: function() {

			$( app.ready );
		},

		/**
		 * DOM is fully loaded.
		 *
		 * @since 4.9.0
		 */
		ready: function() {

			app.events();
		},

		/**
		 * Bind events.
		 *
		 * @since 4.9.0
		 */
		events: function() {

			$( document )
				.on( 'click', '.wp-mail-smtp-ai-mcp-wpvibe-button[data-action="install"]', app.onInstallClick )
				.on( 'click', '.wp-mail-smtp-ai-mcp-wpvibe-button[data-action="activate"]', app.onActivateClick );
		},

		/**
		 * POST to the WP Mail SMTP admin-ajax dispatcher with the nonce attached.
		 *
		 * @since 4.9.0
		 *
		 * @param {object} extra Task-specific fields merged into the request.
		 *
		 * @returns {object} The jQuery jqXHR promise.
		 */
		post: function( extra ) {

			var data = $.extend( {
				action: 'wp_mail_smtp_ajax',
				nonce: window.wp_mail_smtp.nonce,
			}, extra || {} );

			return $.post( window.wp_mail_smtp.ajax_url, data );
		},

		/**
		 * Install button: install & activate WPVibe, then reload.
		 *
		 * @since 4.9.0
		 *
		 * @param {object} event The click event.
		 */
		onInstallClick: function( event ) {

			event.preventDefault();

			app.runInstallerTask( $( event.currentTarget ), 'about_plugin_install' );
		},

		/**
		 * Activate button: activate WPVibe, then reload.
		 *
		 * @since 4.9.0
		 *
		 * @param {object} event The click event.
		 */
		onActivateClick: function( event ) {

			event.preventDefault();

			app.runInstallerTask( $( event.currentTarget ), 'about_plugin_activate' );
		},

		/**
		 * Run an install/activate task, then reload on success or surface an
		 * inline error on failure. A reload lets PHP re-render the next state's
		 * CTA. WP returns logical failures with HTTP 200 + success:false, so a
		 * failed task lands in .done and must be checked explicitly.
		 *
		 * @since 4.9.0
		 *
		 * @param {object} $button Button element that was clicked.
		 * @param {string} task    AJAX task — install or activate.
		 */
		runInstallerTask: function( $button, task ) {

			app.clearError( $button );
			app.setLoading( $button );

			app.post( { task: task, plugin: $button.data( 'plugin' ) } )
				.done( function( response ) {

					if ( response && response.success ) {
						window.location.reload();
						return;
					}

					// Install partially succeeded (installed but activation failed):
					// the plugin state changed, so reload to render the activate CTA.
					if ( task === 'about_plugin_install' && response && response.data && response.data.basename ) {
						window.location.reload();
						return;
					}

					app.showError( $button );
				} )
				.fail( function() {

					app.showError( $button );
				} );
		},

		/**
		 * Show the loading spinner on the button.
		 *
		 * @since 4.9.0
		 *
		 * @param {object} $button Button element.
		 */
		setLoading: function( $button ) {

			$button
				.addClass( 'wp-mail-smtp-btn-loading' )
				.prop( 'disabled', true );
		},

		/**
		 * Restore the button to its initial state and show the inline error.
		 *
		 * @since 4.9.0
		 *
		 * @param {object} $button Button element.
		 */
		showError: function( $button ) {

			$button
				.removeClass( 'wp-mail-smtp-btn-loading' )
				.prop( 'disabled', false );

			var $row = $button.closest( '.wp-mail-smtp-ai-mcp-cta-row' );
			var $error = $row.siblings( '.wp-mail-smtp-ai-mcp-install-error' );

			if ( ! $error.length ) {
				$error = $( '<p class="wp-mail-smtp-ai-mcp-install-error" role="alert"></p>' );
				$row.after( $error );
			}

			$error.text( window.wp_mail_smtp_ai_mcp.error_text );
		},

		/**
		 * Remove a previously shown inline error before a new attempt.
		 *
		 * @since 4.9.0
		 *
		 * @param {object} $button Button element.
		 */
		clearError: function( $button ) {

			$button
				.closest( '.wp-mail-smtp-ai-mcp-cta-row' )
				.siblings( '.wp-mail-smtp-ai-mcp-install-error' )
				.remove();
		},
	};

	return app;
}( document, window, jQuery ) );

WPMailSMTP.Admin.AiMcp.init();