HEX
Server: LiteSpeed
System: Linux venus 5.15.0-157-generic #167-Ubuntu SMP Wed Sep 17 21:35:53 UTC 2025 x86_64
User: axxoncom (1007)
PHP: 8.3.19
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/axxoncom/domains/adrap.click/public_html/wp-content/plugins/kubio/lib/global-data.php
<?php


use IlluminateAgnostic\Arr\Support\Arr;
use Kubio\Core\StyleManager\GlobalStyleRender;
use Kubio\Core\StyleManager\StyleManager;
use Kubio\Core\Utils;
use Kubio\Flags;
use Kubio\GoogleFontsLocalLoader;
use Kubio\Core\LodashBasic;

function kubio_global_data_post_type() {
	return 'kubio-globals';
}

/**
 * Registers a Custom Post Type to store the user's origin config.
 */
function kubio_register_global_data_post_type() {
	$args = array(
		'label'        => __( 'Kubio Globals', 'kubio' ),
		'public'       => false,
		'show_ui'      => false,
		'show_in_rest' => true,
		'rewrite'      => false,
		'rest_base'    => 'kubio/global-data',
		'capabilities' => array(
			'read'                   => 'edit_theme_options',
			'create_posts'           => 'edit_theme_options',
			'edit_posts'             => 'edit_theme_options',
			'edit_published_posts'   => 'edit_theme_options',
			'delete_published_posts' => 'edit_theme_options',
			'edit_others_posts'      => 'edit_theme_options',
			'delete_others_posts'    => 'edit_theme_options',
		),
		'map_meta_cap' => true,
		'supports'     => array(
			'title',
			'editor',
			'revisions',
		),
		'can_export'   => true,
	);
	register_post_type( kubio_global_data_post_type(), $args );
	register_post_meta(
		kubio_global_data_post_type(),
		'compiled_css',
		array(
			'show_in_rest'  => true,
			'single'        => true,
			'type'          => 'string',
			'auth_callback' => function () {
				return current_user_can( 'edit_theme_options' );
			},
		)
	);
}


add_action( 'init', 'kubio_register_global_data_post_type', 8 );

function kubio_add_global_data_edit_capability() {
	$role = get_role( 'editor' );
	if ( $role && ! $role->has_cap( 'edit_' . kubio_global_data_post_type() ) ) {
		$role->add_cap( 'read_' . kubio_global_data_post_type() );
	}
}

add_action( 'admin_init', 'kubio_add_global_data_edit_capability' );


function kubio_global_data_post_id( $create_new = true, $skip_cache = false, $theme = null ) {

	if ( ! $skip_cache && $cached = wp_cache_get( 'id', 'kubio/global_data' ) ) {
		return $cached;
	}

	$post_type  = kubio_global_data_post_type();
	$stylesheet = get_stylesheet();

	$query = new WP_Query(
		array(
			'post_type'     => $post_type,
			'post_status'   => array( 'draft', 'publish' ),
			'no_found_rows' => true,
			'post_per_page' => 1,
			// phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_tax_query
			'tax_query'     => array(
				array(
					'taxonomy' => 'wp_theme',
					'field'    => 'name',
					'terms'    => $theme ? array( $theme ) : array( $stylesheet ),
				),
			),
		)
	);

	// fallback for current instances - get the post without theme term and set it later
	$set_term = false;
	if ( ! $query->have_posts() && ! $theme ) {
		$set_term = true;
		$query    = new WP_Query(
			array(
				'post_type'     => $post_type,
				'post_status'   => array( 'draft', 'publish' ),
				'no_found_rows' => true,
				'post_per_page' => 1,
			)
		);
	}

	if ( $query->have_posts() ) {
		$post                      = $query->next_post();
		$kubio_global_post_content = json_decode( $post->post_content, true );
		wp_cache_set( 'data', $kubio_global_post_content, 'kubio/global_data' );
		$id = $post->ID;
		if ( $set_term ) {
			wp_set_post_terms( $id, $stylesheet, 'wp_theme' );
		}
	} else {

		if ( $create_new ) {
			$content = file_get_contents( __DIR__ . '/../defaults/global-data.json' );
			$id      = wp_insert_post(
				array(
					'post_content' => json_encode( json_decode( $content, true ) ), // remove the pretty prints
					'post_status'  => 'publish',
					'post_type'    => $post_type,
					'post_name'    => $post_type,
					'post_title'   => __( 'Kubio Globals', 'kubio' ),
					'tax_input'    => array(
						'wp_theme' => array( $stylesheet ),
					),
				),
				true
			);
		} else {
			return null;
		}
	}

	if ( kubio_is_page_preview() ) {
		$autosaved_posts = kubio_get_current_changeset_data( 'autosaves', array() );

		foreach ( $autosaved_posts as $autosaved_post ) {
			$autosaved_parent = intval( Arr::get( $autosaved_post, 'parent', 0 ) );
			if ( $autosaved_parent === intval( $id ) ) {
				return $autosaved_post['id'];
			}
		}
	}

	if ( ! $skip_cache ) {
		wp_cache_set( 'id', $id, 'kubio/global_data' );
	}
	return $id;
}

function kubio_get_global_data_content( $redo_cache = false ) {

	$id = kubio_global_data_post_id();

	if ( ! $redo_cache && $cached = wp_cache_get( 'data', "kubio/global_data/{$id}" ) ) {
		return $cached;
	}

	$post                      = get_post( $id );
	$kubio_global_post_content = json_decode( $post->post_content, true );
	wp_cache_set( 'data', $kubio_global_post_content, "kubio/global_data/{$id}" );

	return $kubio_global_post_content;
}

function kubio_get_theme_global_data_content( $theme ) {
	$id   = kubio_global_data_post_id( false, true, $theme );
	$post = get_post( $id );

	if ( is_wp_error( $post ) ) {
		return null;
	}

	return json_decode( $post->post_content, true );
}

function kubio_has_global_data( $theme = null ) {
	$id = kubio_global_data_post_id( false, true, $theme );

	return ! ! $id;
}

function kubio_get_global_data( $path, $fallback = null ) {
	$data = kubio_get_global_data_content();

	return Arr::get( $data, $path, $fallback );
}

function kubio_replace_global_data_content( $data, $theme = null ) {

	if ( ! is_string( $data ) ) {
		$data = wp_slash( json_encode( $data ) );
	}

	$id = kubio_global_data_post_id( true, true, $theme );
	return wp_update_post(
		array(
			'ID'           => $id,
			'post_content' => $data,
		)
	);
}

function kubio_set_global_data( $path, $value ) {
	$data = kubio_get_global_data_content();
	Arr::set( $data, $path, $value );

	wp_cache_set( 'data', $data, 'kubio/global_data' );
	kubio_replace_global_data_content( $data );
}

function kubio_get_initial_global_data_content() {
	$content = file_get_contents( __DIR__ . '/../defaults/global-data.json' );
	return json_decode( $content, true );
}

function kubio_edit_global_styles_editor_settings( $settings ) {

	$settings['kubioGlobalStyleEntityType']      = kubio_global_data_post_type();
	$settings['kubioGlobalStyleEntityId']        = kubio_global_data_post_id();
	$settings['kubioGlobalStyleDefaults']        = kubio_get_global_data_content();
	$settings['kubioInitialGlobalStyleDefaults'] = kubio_get_initial_global_data_content();

	return $settings;
}

function kubio_on_global_data_post_update( $data ) {

	if ( $data['post_type'] !== kubio_global_data_post_type() ) {
		return $data;
	}

	if ( $data['post_status'] !== 'publish' ) {
		return $data;
	}

	$content           = json_decode( wp_unslash( $data['post_content'] ), true );
	$locations         = Arr::get( $content, 'menuLocations', array() );
	$current_locations = get_theme_mod( 'nav_menu_locations', array() );

	$should_update_locations = false;
	foreach ( $locations as $location ) {
			$location_name = Arr::get( $location, 'name' );
			$location_menu = Arr::get( $location, 'menu' );

		if ( $location_menu && intval( $current_locations[ $location_name ] ) !== intval( $location_menu ) ) {
			$should_update_locations             = true;
			$current_locations[ $location_name ] = $location_menu;
		}
	}

	if ( $should_update_locations ) {
		set_theme_mod( 'nav_menu_locations', $current_locations );
	}

	Arr::forget( $content, 'menuLocations' );
	$data['post_content'] = wp_slash( json_encode( $content ) );

	$settings = Arr::get( $content, '_settings', array() );

	Flags::setSettings(
		array_replace_recursive(
			Flags::getSettings( true ),
			$settings
		)
	);

	Arr::forget( $content, '_settings' );

	return $data;
}

add_filter(
	'wp_insert_post_data',
	'kubio_on_global_data_post_update',
	10,
	1
);

add_filter( 'block_editor_settings_all', 'kubio_edit_global_styles_editor_settings' );

function kubio_register_global_style() {
	$styles = kubio_get_global_data_content();
	$styles = Arr::get( $styles, 'globalStyle', array() );

	$styleRenderer = new GlobalStyleRender( $styles );
	$globalStyle   = $styleRenderer->export();

	StyleManager::getInstance()->registerBlockStyle( $globalStyle );
}

function kubio_render_global_colors() {
	$styles                 = kubio_get_global_data_content();
	list( $color_palette, ) = (array) get_theme_support( 'editor-color-palette' );
	$color_palette          = Arr::get( $styles, 'colors', $color_palette );

	$vars          = array();
	$color_palette = is_array( $color_palette ) ? $color_palette : array();
	foreach ( $color_palette as $index => $value ) {
		$vars[] = '--' . $value['slug'] . ':' . implode( ',', $value['color'] );
	}

	$color_palette_variants = Arr::get( $styles, 'colorVariants', $color_palette );
	foreach ( $color_palette_variants as $index => $value ) {
		$vars[] = '--' . $value['slug'] . ':' . implode( ',', $value['color'] );
	}

	$new_line = Utils::isDebug() ? "\n" : '';
	$css      = array( ':root {' );
	$css[]    = implode( ";{$new_line}", $vars );
	$css[]    = '}';

	$prefixes = array( '.has-', '[data-kubio] .has-' );
	$suffixes = array(
		'-color'            => 'color',
		'-background-color' => 'background-color',
	);

	foreach ( $color_palette as $value ) {
		foreach ( $prefixes as $prefix ) {
			foreach ( $suffixes as $suffix => $property ) {
				$css[] = "{$prefix}{$value['slug']}{$suffix}{{$property}:rgb(var(--{$value['slug']}))}";
			}
		}

		if ( Utils::isDebug() ) {
			$css[] = "\n";
		}
	}

	return implode( Utils::isDebug() ? $new_line : ' ', $css );
}


function kubio_enqueue_google_fonts() {

	$fonts_query = GoogleFontsLocalLoader::getInstance()->getFontsQuery();

	if ( ! $fonts_query ) {
		return;
	}

	$query_args = array(
		'family'  => urlencode( $fonts_query ),
		'display' => 'swap',
	);

	// in preview load remote google fonts to save disk space ( as the content is not yet saved )
	// also load remote fonts if the user chosed not to use local google fonts
	if ( kubio_is_page_preview() || ! Flags::getSetting( 'googleFonts.serveLocally', false ) ) {
		$fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' );
		// phpcs:ignore WordPress.WP.EnqueuedResourceParameters.MissingVersion
		wp_enqueue_style( 'kubio-google-fonts', $fonts_url, array(), null );
	} else {
		GoogleFontsLocalLoader::enqueuLocalGoogleFonts( $fonts_query );
	}
}

add_action( 'wp_enqueue_scripts', 'kubio_enqueue_google_fonts' );

function kubio_enqueue_typekit_fonts() {
	$globalData     = kubio_get_global_data_content();
	$typeKitProject = Arr::get( $globalData, 'fonts.typekit.project', '' );

	if ( ! empty( $typeKitProject ) ) {
		?>
		<script>
			(function (d) {
				var config = {
						kitId: '<?php echo esc_js( $typeKitProject ); ?>',
						scriptTimeout: 3000,
						async: true
					},
					h = d.documentElement,
					t = setTimeout(function () {
						h.className = h.className.replace(/\bwf-loading\b/g, "") + " wf-inactive";
					}, config.scriptTimeout),
					tk = d.createElement("script"),
					f = false,
					s = d.getElementsByTagName("script")[0],
					a;
				h.className += " wf-loading";
				tk.src = 'https://use.typekit.net/' + config.kitId + '.js';
				tk.async = true;
				tk.onload = tk.onreadystatechange = function () {
					a = this.readyState;
					if (f || a && a != "complete" && a != "loaded") return;
					f = true;
					clearTimeout(t);
					try {
						Typekit.load(config)
					} catch (e) {
					}
				};
				s.parentNode.insertBefore(tk, s)
			})(document);
		</script>
		<?php
	}
}

add_action( 'wp_head', 'kubio_enqueue_typekit_fonts' );


function kubio_get_editor_colors( $as_var = false ) {
	$styles        = kubio_get_global_data_content();
	$color_palette = Arr::get( $styles, 'colors', array() );

	$colors = array();

	foreach ( $color_palette as $index => $value ) {
		if ( ! is_array( $value['color'] ) ) {
			continue;
		}
		$colors[] = array(
			// translators: %s is the number of the color e.g. Kubio color 1
			'name'  => sprintf( __( 'Kubio color %s', 'kubio' ), $index + 1 ),
			'slug'  => $value['slug'],
			'color' => $as_var ? sprintf( 'rgba(var(--%s), 1)', $value['slug'] ) : 'rgb(' . implode( ',', $value['color'] ) . ')',
		);
	}

	return $colors;
}

add_action( 'wp_head', 'kubio_register_global_style', 0 );

add_filter(
	'wp_theme_json_data_default',
	function ( $wp_theme_json_data ) {
		$config = $wp_theme_json_data->get_data();

		$colors         = kubio_get_editor_colors();
		$current_colors = Arr::get( $config, 'settings.color.palette.default', array() );
		Arr::set( $config, 'settings.color.palette.default', array_merge( $current_colors, $colors ) );

		return new WP_Theme_JSON_Data( $config, 'default' );
	}
);

add_action(
	'after_setup_theme',
	function () {

		$current_supported_colors = get_theme_support( 'editor-color-palette' );
		$kubio_colors                   = kubio_get_editor_colors( true );

		if ( ! $current_supported_colors ) {
			add_theme_support( 'editor-color-palette', $kubio_colors );
		} else {
			$is_kubio_theme = false;
			$theme_colors = $current_supported_colors[0];
			$theme_colors_not_in_kubio = array_filter($theme_colors, function($theme_color) use($kubio_colors, & $is_kubio_theme ) {
				$in_array = false;
				foreach ($kubio_colors as $kubio_color) {
					if(LodashBasic::get($kubio_color, 'slug') === LodashBasic::get($theme_color, 'slug') ) {
						$in_array = true;
						$is_kubio_theme = true;
					}
				}
				return !$in_array;
			});
			if($is_kubio_theme) {
				$colors = array_merge( $kubio_colors, $theme_colors_not_in_kubio );
			} else {
				$colors = array_merge( $theme_colors_not_in_kubio, $kubio_colors );
			}

			add_theme_support( 'editor-color-palette', $colors );
		}
	},
	100
);

add_action(
	'enqueue_block_editor_assets',
	function () {
		$style = kubio_render_global_colors();

		wp_add_inline_style( 'wp-block-library', $style );
	}
);

add_filter(
	'rest_prepare_' . kubio_global_data_post_type(),
	function ( $response, $post ) {

		$parsed = json_decode( $post->post_content, true );

		$parsed['menuLocations'] = array();
		$current_locations       = get_nav_menu_locations();
		foreach ( get_registered_nav_menus() as $name => $description ) {
			$location              = new stdClass();
			$location->name        = $name;
			$location->description = $description;
			$location->menu        = ( isset( $current_locations[ $name ] ) ) ? $current_locations[ $name ] : 0;

			$parsed['menuLocations'][] = $location;
		}

		// remove global style visited attribute
		Arr::forget( $parsed, 'globalStyle.style.descendants.body.typography.holders.a.states.visited' );

		$response->set_data(
			array_merge(
				$response->get_data(),
				array(
					'content' => array(
						'raw' => json_encode( $parsed ),
					),
					'parsed'  => $parsed,
				)
			)
		);

		return $response;
	},
	10,
	2
);