b0y-101 Mini Shell


Current Path : E:/www/buriram/libraries/nextend2/nextend/library/libraries/assets/js/
File Upload :
Current File : E:/www/buriram/libraries/nextend2/nextend/library/libraries/assets/js/assets.php

<?php

/**
 * Class N2AssetsJs
 *
 */
class N2AssetsJs extends N2AssetsAbstract {

    public function __construct() {
        $this->cache = new N2AssetsCacheJS();
    }

    public function getOutput() {

        $output = "";

        $needProtocol = !N2Settings::get('protocol-relative', '1');

        $globalInline = $this->getGlobalInlineScripts();
        if (!empty($globalInline)) {
            $output .= N2Html::script(self::minify_js($globalInline . "\n"));
        }

        $async            = !!N2Settings::get('async', '0') && !N2Platform::$isAdmin;
        $scriptAttributes = array();
        if ($async) {
            $scriptAttributes['defer'] = 1;
            $scriptAttributes['async'] = 1;
        }

        foreach ($this->urls AS $url) {
            $output .= N2Html::scriptFile($this->filterSrc($url), $scriptAttributes) . "\n";
        }

        if (!N2Platform::$isAdmin && N2Settings::get('combine-js', '0')) {
            $jsCombined = new N2CacheCombine('js', false);
            foreach ($this->getFiles() AS $file) {
                $jsCombined->add($file);
            }
            $combinedFile = $jsCombined->make();

            if (substr($combinedFile, 0, 2) == '//') {
                $output .= N2Html::scriptFile($this->filterSrc($combinedFile), $scriptAttributes) . "\n";
            } else {
                $output .= N2Html::scriptFile($this->filterSrc(N2Uri::pathToUri($combinedFile, $needProtocol)), $scriptAttributes) . "\n";
            }
        } else {
            foreach ($this->getFiles() AS $file) {
                if (substr($file, 0, 2) == '//') {
                    $output .= N2Html::scriptFile($this->filterSrc($file), $scriptAttributes) . "\n";
                } else {
                    $output .= N2Html::scriptFile($this->filterSrc(N2Uri::pathToUri($file, $needProtocol) . '?' . filemtime($file)), $scriptAttributes) . "\n";
                }
            }
        }


        $output .= N2Html::script(self::minify_js(N2Localization::toJS() . "\n" . $this->getInlineScripts() . "\n"));

        return $output;
    }

    private function filterSrc($src) {
        return N2Pluggable::applyFilters('n2_script_loader_src', $src);
    }

    public function get() {
        return array(
            'url'          => $this->urls,
            'files'        => $this->getFiles(),
            'inline'       => $this->getInlineScripts(),
            'globalInline' => $this->getGlobalInlineScripts()
        );
    }

    public function getAjaxOutput() {

        $output = $this->getInlineScripts();

        return $output;
    }

    private function getGlobalInlineScripts() {
        return implode('', $this->globalInline);
    }

    private function getInlineScripts() {
        $scripts = '';

        foreach ($this->firstCodes AS $script) {
            $scripts .= $script . "\n";
        }

        foreach ($this->inline AS $script) {
            $scripts .= $script . "\n";
        }

        return $this->serveJquery($scripts);
    }

    public static function serveJquery($script) {
        if (empty($script)) {
            return "";
        }
        $inline = "N2R('documentReady', function($){\n";
        $inline .= $script;
        $inline .= "});\n";

        return $inline;
    }

    public static function minify_js($input) {
        if (trim($input) === "") return $input;

        return preg_replace(array(
            // Remove comment(s)
            '#\s*("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')\s*|\s*\/\*(?!\!|@cc_on)(?>[\s\S]*?\*\/)\s*|\s*(?<![\:\=])\/\/.*(?=[\n\r]|$)|^\s*|\s*$#',
            // Remove white-space(s) outside the string and regex
            '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/)|\/(?!\/)[^\n\r]*?\/(?=[\s.,;]|[gimuy]|$))|\s*([!%&*\(\)\-=+\[\]\{\}|;:,.<>?\/])\s*#s',
            // Remove the last semicolon
            '#;+\}#',
            // Minify object attribute(s) except JSON attribute(s). From `{'foo':'bar'}` to `{foo:'bar'}`
            '#([\{,])([\'])(\d+|[a-z_][a-z0-9_]*)\2(?=\:)#i',
            // --ibid. From `foo['bar']` to `foo.bar`
            '#([a-z0-9_\)\]])\[([\'"])([a-z_][a-z0-9_]*)\2\]#i'
        ), array(
            '$1',
            '$1$2',
            '}',
            '$1$3',
            '$1.$3'
        ), $input);
    }
} 

Copyright © 2019 by b0y-101