HEX
Server: Apache
System: Linux 4801f1b1.ptr.provps.com 6.17.8-1.el9.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Nov 13 18:02:25 EST 2025 x86_64
User: nassaugo (1004)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/nassaugo/public_html/wp-content/plugins/git-updater/src/Git_Updater/Shim.php
<?php
/**
 * Git Updater
 *
 * @author   Andy Fragen
 * @license  MIT
 * @link     https://github.com/afragen/git-updater
 * @package  git-updater
 */

/*
 * Exit if called directly.
 */
if ( ! defined( 'WPINC' ) ) {
	die;
}

if ( ! function_exists( 'move_dir' ) ) {
	global $wp_filesystem;

	if ( ! $wp_filesystem ) {
		require_once ABSPATH . '/wp-admin/includes/file.php';
		WP_Filesystem();
	}

	/**
	 * Moves a directory from one location to another via the rename() PHP function.
	 * If the renaming failed, falls back to copy_dir().
	 *
	 * Assumes that WP_Filesystem() has already been called and setup.
	 *
	 * @since 6.2.0
	 *
	 * @global WP_Filesystem_Base $wp_filesystem WordPress filesystem subclass.
	 *
	 * @param string $from      Source directory.
	 * @param string $to        Destination directory.
	 * @param bool   $overwrite Overwrite destination.
	 *                          Default is false.
	 * @return true|WP_Error True on success, WP_Error on failure.
	 */
	function move_dir( $from, $to, $overwrite = false ) {
		global $wp_filesystem;

		if ( trailingslashit( strtolower( $from ) ) === trailingslashit( strtolower( $to ) ) ) {
			return new WP_Error( 'source_destination_same_move_dir', __( 'The source and destination are the same.', 'git-updater' ) );
		}

		if ( $wp_filesystem->exists( $to ) ) {
			if ( ! $overwrite ) {
				return new WP_Error( 'destination_already_exists_move_dir', __( 'The destination folder already exists.', 'git-updater' ), $to );
			} elseif ( ! $wp_filesystem->delete( $to, true ) ) {
				// Can't overwrite if the destination couldn't be deleted.
				return new WP_Error( 'destination_not_deleted_move_dir', __( 'The destination directory already exists and could not be removed.', 'git-updater' ) );
			}
		}

		$result = false;

		if ( 'direct' === $wp_filesystem->method ) {
			if ( $wp_filesystem->delete( $to, true ) ) {
				// phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged,WordPress.WP.AlternativeFunctions.rename_rename
				$result = @rename( $from, $to );
			}
		} else {
			// Non-direct filesystems use some version of rename without a fallback.
			$result = $wp_filesystem->move( $from, $to, $overwrite );
		}

		if ( $result ) {
			/*
			 * When using an environment with shared folders,
			 * there is a delay in updating the filesystem's cache.
			 *
			 * This is a known issue in environments with a VirtualBox provider.
			 *
			 * A 200ms delay gives time for the filesystem to update its cache,
			 * prevents "Operation not permitted", and "No such file or directory" warnings.
			 *
			 * This delay is used in other projects, including Composer.
			 * @link https://github.com/composer/composer/blob/main/src/Composer/Util/Platform.php#L228-L233
			 */
			usleep( 200000 );
			wp_opcache_invalidate_directory( $to );
		}

		if ( ! $result ) {
			if ( ! $wp_filesystem->is_dir( $to ) ) {
				if ( ! $wp_filesystem->mkdir( $to, FS_CHMOD_DIR ) ) {
					return new WP_Error( 'mkdir_failed_move_dir', __( 'Could not create directory.', 'git-updater' ), $to );
				}
			}

			$result = copy_dir( $from, $to, [ basename( $to ) ] );

			// Clear the source directory.
			if ( ! is_wp_error( $result ) ) {
				$wp_filesystem->delete( $from, true );
			}
		}

		return $result;
	}
}

if ( ! function_exists( 'wp_opcache_invalidate_directory' ) ) {
	/**
	 * Attempts to clear the opcode cache for a directory of files.
	 *
	 * @since 6.2.0
	 *
	 * @see wp_opcache_invalidate()
	 * @link https://www.php.net/manual/en/function.opcache-invalidate.php
	 * @global WP_Filesystem_Base $wp_filesystem WordPress filesystem subclass.
	 *
	 * @param string $dir The path to the directory for which the opcode cache is to be cleared.
	 */
	function wp_opcache_invalidate_directory( $dir ) {
		global $wp_filesystem;

		if ( ! is_string( $dir ) || '' === trim( $dir ) ) {
			if ( WP_DEBUG ) {
				$error_message = sprintf(
				/* translators: %s: The function name. */
					__( '%s expects a non-empty string.', 'git-updater' ),
					'<code>wp_opcache_invalidate_directory()</code>'
				);
				// phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_trigger_error, WordPress.Security.EscapeOutput.OutputNotEscaped
				trigger_error( $error_message );
			}
			return;
		}

		$dirlist = $wp_filesystem->dirlist( $dir, false, true );

		if ( empty( $dirlist ) ) {
			return;
		}

		/*
		 * Recursively invalidate opcache of files in a directory.
		 *
		 * WP_Filesystem_*::dirlist() returns an array of file and directory information.
		 *
		 * This does not include a path to the file or directory.
		 * To invalidate files within sub-directories, recursion is needed
		 * to prepend an absolute path containing the sub-directory's name.
		 *
		 * @param array  $dirlist Array of file/directory information from WP_Filesystem_Base::dirlist(),
		 *                        with sub-directories represented as nested arrays.
		 * @param string $path    Absolute path to the directory.
		 */
		$invalidate_directory = static function ( $dirlist, $path ) use ( &$invalidate_directory ) {
			$path = trailingslashit( $path );

			foreach ( $dirlist as $name => $details ) {
				if ( 'f' === $details['type'] ) {
					wp_opcache_invalidate( $path . $name, true );
					continue;
				}

				if ( is_array( $details['files'] ) && ! empty( $details['files'] ) ) {
					$invalidate_directory( $details['files'], $path . $name );
				}
			}
		};

		$invalidate_directory( $dirlist, $dir );
	}
}

if ( ! function_exists( 'str_contains' ) ) {
	/**
	 * Polyfill for `str_contains()` function added in PHP 8.0.
	 *
	 * Performs a case-sensitive check indicating if needle is
	 * contained in haystack.
	 *
	 * @since 5.9.0
	 *
	 * @param string $haystack The string to search in.
	 * @param string $needle   The substring to search for in the haystack.
	 * @return bool True if `$needle` is in `$haystack`, otherwise false.
	 */
	function str_contains( $haystack, $needle ) {
		return ( '' === $needle || false !== strpos( $haystack, $needle ) );
	}
}

if ( ! function_exists( 'str_starts_with' ) ) {
	/**
	 * Polyfill for `str_starts_with()` function added in PHP 8.0.
	 *
	 * Performs a case-sensitive check indicating if
	 * the haystack begins with needle.
	 *
	 * @since 5.9.0
	 *
	 * @param string $haystack The string to search in.
	 * @param string $needle   The substring to search for in the `$haystack`.
	 * @return bool True if `$haystack` starts with `$needle`, otherwise false.
	 */
	function str_starts_with( $haystack, $needle ) {
		if ( '' === $needle ) {
			return true;
		}
		return 0 === strpos( $haystack, $needle );
	}
}

if ( ! function_exists( 'str_ends_with' ) ) {
	/**
	 * Polyfill for `str_ends_with()` function added in PHP 8.0.
	 *
	 * Performs a case-sensitive check indicating if
	 * the haystack ends with needle.
	 *
	 * @since 5.9.0
	 *
	 * @param string $haystack The string to search in.
	 * @param string $needle   The substring to search for in the `$haystack`.
	 * @return bool True if `$haystack` ends with `$needle`, otherwise false.
	 */
	function str_ends_with( $haystack, $needle ) {
		if ( '' === $haystack && '' !== $needle ) {
			return false;
		}
		$len = strlen( $needle );
		return 0 === substr_compare( $haystack, $needle, -$len, $len );
	}
}