b0y-101 Mini Shell


Current Path : E:/www/km/37/templates/simple02/warp/src/Warp/Asset/Filter/
File Upload :
Current File : E:/www/km/37/templates/simple02/warp/src/Warp/Asset/Filter/CssImportResolverFilter.php

<?php
/**
* @package   Warp Theme Framework
* @author    YOOtheme http://www.yootheme.com
* @copyright Copyright (C) YOOtheme GmbH
* @license   http://www.gnu.org/licenses/gpl.html GNU/GPL
*/

namespace Warp\Asset\Filter;

/**
 * Stylesheet import resolver, replaces @imports with it's content.
 */
class CssImportResolverFilter implements FilterInterface
{
    /**
     * On load filter callback.
     *
     * @param object $asset
     */
    public function filterLoad($asset)
    {
        // is file asset?
        if (!is_a($asset, 'Warp\Asset\FileAsset')) {
            return;
        }

        // resolve @import rules
        $content = $this->load($asset->getPath(), $asset->getContent());

        $asset->setContent($content);
    }

    /**
     * On content filter callback.
     *
     * @param object $asset
     */
    public function filterContent($asset)
    {
        $comments = array();

        $content = $asset->getContent();
        $content = $this->_replaceComments($content, $comments);

        // move unresolved @import rules to the top
        $regexp = '/@import[^;]+;/i';
        if (preg_match_all($regexp, $content, $matches)) {
            $content = preg_replace($regexp, '', $content);
            $content = implode("\n", $matches[0])."\n".$content;
        }

        $content = $this->_restoreComments($content, $comments);

        $asset->setContent($content);
    }

    /**
     * Load file and get it's content.
     *
     * @param string $file
     * @param string $content
     *
     * @return string
     */
    protected function load($file, $content = '')
    {
        static $path;

        $oldpath = $path;

        if ($path && !strpos($file, '://')) {
            $file = realpath($path.'/'.$file);
        }

        $path = dirname($file);

        // get content from file, if not already set
        if (!$content && file_exists($file)) {
            $content = @file_get_contents($file);
        }

        $comments = array();

        // remove multiple charset declarations and resolve @imports to its actual content
        if ($content) {
            $content = $this->_replaceComments($content, $comments);
            $content = preg_replace('/^@charset\s+[\'"](\S*)\b[\'"];/i', '', $content);
            $content = preg_replace_callback('/@import\s*(?:url\(\s*)?[\'"]?(?![a-z]+:)([^\'"\()]+)[\'"]?\s*\)?\s*;/', array($this, '_load'), $content);
            $content = $this->_restoreComments($content, $comments);
        }

        $path = $oldpath;

        return $content;
    }

    /**
     * Load file recursively and fix url paths.
     *
     * @param array $matches
     *
     * @return string
     */
    protected function _load($matches)
    {
        // resolve @import rules recursively
        $file = $this->load($matches[1]);

        // get file's directory remove '.' if its the current directory
        $directory = dirname($matches[1]);
        $directory = $directory == '.' ? '' : $directory . '/';

        // add directory file's to urls paths
        return preg_replace('/(url\s*\([\'"]?)(?![a-z]+:|\/+)((?:[^\'"\()]+)[\'"]?\s*\))/i', '\1' . $directory . '\2', $file);
    }

    /**
     * Replace all comments with a placeholder.
     *
     * @param string $content
     *
     * @return array
     */
    protected function _replaceComments($content, &$comments)
    {
        $callback = function ($matches) use (&$comments) {

            $key = sprintf('[%s]', md5($matches[0]));
            $comments[$key] = $matches[0];

            return $key;
        };

        return preg_replace_callback('/\/\*(?s:.)*?\*\/|((?!:).)?\/\/.*/', $callback, $content);
    }

    /**
     * Restore all comments and replace the placeholders with the actual comment.
     *
     * @param string $content
     * @param array  $comments
     *
     * @return string
     */
    protected function _restoreComments($content, array $comments)
    {
        foreach ($comments as $key => $comment) {
            $content = str_replace($key, $comment, $content);
        }

        return $content;
    }
}

Copyright © 2019 by b0y-101