MOON
Server: Apache
System: Linux server.royaltuning.hu 4.18.0-425.13.1.el8_7.x86_64 #1 SMP Tue Feb 21 04:20:52 EST 2023 x86_64
User: royaltuning (1001)
PHP: 8.2.32
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/royaltuning/public_html/public/wp-content/plugins/loco-translate/src/fs/Locations.php
<?php
/**
 * Handles various file locations
 */
class Loco_fs_Locations extends ArrayObject {

    /**
     * Singleton of WordPress root directory
     */    
    private static ?self $wproot = null;

    /**
     * Singleton of wp-content directory
     */    
    private static ?self $conts = null;

    /**
     * Singleton of global languages directories
     */    
    private static ?self $langs = null;

    /**
     * Singleton of registered theme paths
     */    
    private static ?self $theme = null;

    /**
     * Singleton of registered plugin locations
     */
    private static ?self $plugin = null;

    /**
     * Singleton of configured base directories from settings
     */
    private static ?self $jails = null;


    /**
     * Clear static caches
     */
    public static function clear(): void {
        self::$wproot = null;
        self::$conts = null;
        self::$langs = null;
        self::$theme = null;
        self::$plugin = null;
        self::$jails = null;
    }


    /**
     * Get a locations collection containing only the WordPress installation directory 
     */
    public static function getRoot():self {
        if( ! self::$wproot ){
            self::$wproot = new Loco_fs_Locations( [
                loco_constant('ABSPATH'),
            ] );
        }
        return self::$wproot;
    }


    /**
     * Get a locations collection containing the most likely WordPress content directory
     */
    public static function getContent():self{
        if( ! self::$conts ){
            self::$conts = new Loco_fs_Locations( [
                loco_constant('WP_CONTENT_DIR'),  // <- defined WP_CONTENT_DIR
                trailingslashit(ABSPATH).'wp-content', // <- default /wp-content
            ] );
        }
        return self::$conts;
    }


    /**
     * @deprecated Use getLang
     */
    public static function getGlobal():self {
        return self::getLangs();
    }


    /**
     * Get a Loco_fs_Locations collection containing the WordPress global languages directory
     */
    public static function getLangs():self{
        if( ! self::$langs ){
            self::$langs = new Loco_fs_Locations( [
                loco_constant('WP_LANG_DIR'),
            ] );
        }
        return self::$langs;
    }


    /**
     * Get a locations collection containing all directories that may contain themes 
     */
    public static function getThemes():self{
        if( ! self::$theme ){
            $roots = $GLOBALS['wp_theme_directories'] ?? [];
            if( ! $roots ){
                $roots[] = trailingslashit( loco_constant('WP_CONTENT_DIR') ).'themes';
            }
            self::$theme = new Loco_fs_Locations( $roots );
        }
        return self::$theme;
    }


    /**
     * Get a locations collection containing all directories that may contain plugins
     */
    public static function getPlugins():self{
        if( ! self::$plugin ){
            self::$plugin = new Loco_fs_Locations( [
                loco_constant('WPMU_PLUGIN_DIR'),
                loco_constant('WP_PLUGIN_DIR'),
            ] );
        }
        return self::$plugin;
    }


    /**
     * Get a locations collection from the fs_basedir plugin setting.s
     * Absolute paths are used as-is; relative paths are resolved against ABSPATH.
     */
    public static function getBaseDirs():self{
        if( ! self::$jails ){
            $abspath = loco_constant('ABSPATH');
            $paths = [];
            foreach( explode("\n", Loco_data_Settings::get()->fs_basedir) as $line ){
                $line = trim($line);
                if( '' !== $line ){
                    $paths[] = (new Loco_fs_File($line))->normalize($abspath);
                }
            }
            self::$jails = new Loco_fs_Locations( $paths );
        }
        return self::$jails;
    }


    /**
     * Create instance from list of locations
     */
    public function __construct( array $paths ){
        parent::__construct();
        foreach( $paths as $path ){
            $this->add( $path );
        }
    }


    /**
     * @param string $path normalized absolute path
     * @return Loco_fs_Locations
     */ 
    public function add( string $path ): self {
        foreach( $this->expand($path) as $path ){
            // path must have trailing slash, otherwise "/plugins/foobar" would match "/plugins/foo/"
            $this->offsetSet( $path, strlen($path) );
        }
        return $this;
    }


    /**
     * Check if a given path begins with any of the registered ones
     * @param string $path absolute path
     * @return bool whether path matched
     */    
    public function check( string $path ): bool {
        foreach( $this->expand($path) as $path ){
            foreach( $this as $prefix => $length ){
                if( $prefix === $path || substr($path,0,$length) === $prefix ){
                    return true;
                }
            }
        }
        return false;
    }
    
    
    /**
     * Match location and return the relative subpath.
     * Note that exact match is returned as "." indicating self
     * @param string $path
     * @return string|null
     */
    public function rel( string $path ): ?string {
        foreach( $this->expand($path) as $path ){
            foreach( $this as $prefix => $length ){
                if( $prefix === $path ){
                    return '.';
                }
                if( substr($path,0,$length) === $prefix ){
                    return untrailingslashit( substr($path,$length) );
                }
            }
        }
        return null;
    }


    /**
     * Like rel() but returns base directory also
     * @return string[]
     */
    public function split( string $path ): ?array {
        foreach( $this->expand($path) as $path ){
            foreach( $this as $prefix => $length ){
                if( $prefix === $path ){
                    return [$prefix,'.'];
                }
                if( substr($path,0,$length) === $prefix ){
                    return [ $prefix, untrailingslashit( substr($path,$length) ) ];
                }
            }
        }
        return null;
    }


    /**
     * @param string $rel Relative 
     * @return string[]
     */
    public function expand( string $rel ):array {
        if( '' === $rel ){
            //Loco_error_AdminNotices::debug('Expanding empty path to empty array');
            return [];
        }
        $path = Loco_fs_File::abs($rel);
        if( '' === $path ){
            //throw new InvalidArgumentException('Failed on abs('.var_export($rel,true).')');
            return [];
        }
        $paths = [ trailingslashit($path) ];
        // add the real path if differs. Note that under some PHP versions this may trigger E_WARNING
        $real = realpath($path);
        if( $real && $real !== $path ){
            $paths[] = trailingslashit($real);
        }
        return $paths;
    }


    /**
     * @return string[]
     */
    public function apply( string $suffix = '' ): array {
        $paths = [];
        foreach( $this->getArrayCopy() as $prefix => $length ){
            $paths[] = $prefix.$suffix;
        }
        return $paths;
    }

    
    public function __toString(): string {
        $paths = [];
        foreach( $this->getArrayCopy() as $prefix => $length ){
            $paths[] = rtrim($prefix,'/');
        }
        return implode(':',$paths);
    }
    

}