HEX
Server: LiteSpeed
System: Linux eko108.isimtescil.net 4.18.0-477.21.1.lve.1.el8.x86_64 #1 SMP Tue Sep 5 23:08:35 UTC 2023 x86_64
User: uyarreklamcomtr (11202)
PHP: 7.4.33
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/ScriptWithBuiltDependenciesAsset.php.tar
httpdocs/wp-content/plugins/google-listings-and-ads/src/Assets/ScriptWithBuiltDependenciesAsset.php000064400000004756151551063710036217 0ustar00var/www/vhosts/uyarreklam.com.tr<?php
declare( strict_types=1 );

namespace Automattic\WooCommerce\GoogleListingsAndAds\Assets;

use Automattic\WooCommerce\GoogleListingsAndAds\Value\BuiltScriptDependencyArray as DependencyArray;
use Throwable;

defined( 'ABSPATH' ) || exit;

/**
 * Construct a ScriptAsset loading the dependencies from a generated file.
 *
 * @package Automattic\WooCommerce\GoogleListingsAndAds\Assets
 */
class ScriptWithBuiltDependenciesAsset extends ScriptAsset {

	/**
	 * ScriptWithBuiltDependenciesAsset constructor.
	 *
	 * @param string          $handle                      The script handle.
	 * @param string          $uri                         The URI for the script.
	 * @param string          $build_dependency_path       Path to the generated dependency file.
	 * @param DependencyArray $fallback_dependency_data    Fallback dependencies (if the generated file is not readable).
	 * @param callable|null   $enqueue_condition_callback  (Optional) The asset is always enqueued if this callback
	 *                                                     returns true or isn't set.
	 * @param bool            $in_footer                   Whether to enqueue the script before </body> instead of in
	 *                                                     the <head> (default: true).
	 */
	public function __construct(
		string $handle,
		string $uri,
		string $build_dependency_path,
		DependencyArray $fallback_dependency_data,
		?callable $enqueue_condition_callback = null,
		bool $in_footer = true
	) {
		$dependency_data = $this->get_dependency_data( $build_dependency_path, $fallback_dependency_data );
		parent::__construct(
			$handle,
			$uri,
			$dependency_data->get_dependencies(),
			$dependency_data->get_version(),
			$enqueue_condition_callback,
			$in_footer
		);
	}

	/**
	 * Get usable dependency data from an asset path or from the fallback.
	 *
	 * @param string          $build_dependency_path
	 * @param DependencyArray $fallback
	 *
	 * @return DependencyArray
	 */
	protected function get_dependency_data( string $build_dependency_path, DependencyArray $fallback ): DependencyArray {
		try {
			if ( ! is_readable( $build_dependency_path ) ) {
				return $fallback;
			}
			// Reason of exclusion: These files are being loaded manually in the function call with no user input
			// nosemgrep: audit.php.lang.security.file.inclusion-arg
			return new DependencyArray( include $build_dependency_path );
		} catch ( Throwable $e ) {
			do_action( 'woocommerce_gla_exception', $e, __METHOD__ );
			return $fallback;
		}
	}
}