Newer
Older
<?php
/**
* Piwik - Open source web analytics
*
* @link http://piwik.org
*
* @category Piwik
* @package Piwik
*/
namespace Piwik;
use Exception;
use JSMin;
use lessc;
/**
* @see libs/jsmin/jsmin.php
*/
require_once PIWIK_INCLUDE_PATH . '/libs/jsmin/jsmin.php';
/**
* AssetManager is the class used to manage the inclusion of UI assets:
* - Identifies required assets
* - Includes assets in the rendered HTML page
* - Manages asset merging and minifying
* - Manages server-side cache
*
* Whether assets are included individually or as merged files is defined by
* the global option 'disable_merged_assets'. When set to 1, files will be
* included individually.
* When set to 0, files will be included within a pair of files: 1 JavaScript
* and 1 css file.
*
* @package Piwik
*/
class AssetManager
{
const MERGED_CSS_FILE = "asset_manager_global_css.css";
const MERGED_JS_FILE = "asset_manager_global_js.js";
Benaka Moorthi
a validé
const TRANSLATIONS_JS_FILE = "asset_manager_translations_js.js";
const CSS_IMPORT_EVENT = "AssetManager.getStylesheetFiles";
const JS_IMPORT_EVENT = "AssetManager.getJsFiles";
const MERGED_FILE_DIR = "tmp/assets/";
const CSS_IMPORT_DIRECTIVE = "<link rel=\"stylesheet\" type=\"text/css\" href=\"%s\" />\n";
const JS_IMPORT_DIRECTIVE = "<script type=\"text/javascript\" src=\"%s\"></script>\n";
const GET_CSS_MODULE_ACTION = "index.php?module=Proxy&action=getCss";
const GET_JS_MODULE_ACTION = "index.php?module=Proxy&action=getJs";
const MINIFIED_JS_RATIO = 100;
/**
* Returns CSS file inclusion directive(s) using the markup <link>
*
* @return string
*/
public static function getCssAssets()
{
return sprintf(self::CSS_IMPORT_DIRECTIVE, self::GET_CSS_MODULE_ACTION);
}
/**
* Returns JS file inclusion directive(s) using the markup <script>
*
* @return string
*/
public static function getJsAssets()
{
if (self::isMergedAssetsDisabled()) {
// Individual includes mode
self::removeMergedAsset(self::MERGED_JS_FILE);
return self::getIndividualJsIncludes();
}
return sprintf(self::JS_IMPORT_DIRECTIVE, self::GET_JS_MODULE_ACTION);
}
/**
* Assets are cached in the browser and Piwik server returns 304 after initial download.
* when the Cache buster string changes, the assets will be re-generated
*
* @return string
*/
public static function generateAssetsCacheBuster()
{
$pluginList = md5(implode(",", PluginsManager::getInstance()->getLoadedPluginsName()));
$cacheBuster = md5(Common::getSalt() . $pluginList . PHP_VERSION . Version::VERSION);
/**
* Generate the merged css file.
*
* @throws Exception if a file can not be opened in write mode
*/
private static function prepareMergedCssFile()
$mergedCssAlreadyGenerated = self::isGenerated(self::MERGED_CSS_FILE);
$isDevelopingPiwik = self::isMergedAssetsDisabled();
if ($mergedCssAlreadyGenerated && !$isDevelopingPiwik) {
$less = self::makeLess();
// Loop through each css file
$files = self::getStylesheetFiles();
$mergedContent = "";
foreach ($files as $file) {
self::validateCssFile($file);
$fileLocation = self::getAbsoluteLocation($file);
$less->addImportDir(dirname($fileLocation));
$content = file_get_contents($fileLocation);
$content = self::rewriteCssPathsDirectives($file, $content);
$mergedContent = $mergedContent . $content;
}
$fileHash = md5($mergedContent);
$firstLineCompileHash = "/* compile_me_once=$fileHash */";
// Disable Merged Assets ==> Check on each request if file needs re-compiling
if ($mergedCssAlreadyGenerated
) {
$pathMerged = self::getAbsoluteMergedFileLocation(self::MERGED_CSS_FILE);
$f = fopen($pathMerged, 'r');
$firstLine = fgets($f);
fclose($f);
if (!empty($firstLine)
&& trim($firstLine) == trim($firstLineCompileHash)
) {
return;
}
// Some CSS file in the merge, has changed since last merged asset was generated
// Note: we do not detect changes in @import'ed LESS files
}
Thomas ZILLIOX
a validé
$mergedContent = $less->compile($mergedContent);
Piwik_PostEvent('AssetManager.filterMergedCss', array(&$mergedContent));
$mergedContent =
$firstLineCompileHash . "\n"
. "/* Piwik CSS file is compiled with Less. You may be interested in writing a custom Theme for Piwik! */\n"
. $mergedContent;
self::writeAssetToFile($mergedContent, self::MERGED_CSS_FILE);
}
protected static function makeLess()
{
if (!class_exists("lessc")) {
throw new Exception("Less was added to composer during 2.0. ==> Execute this command to update composer packages: \$ php composer.phar update");
}
$less = new lessc;
return $less;
}
/*
* Rewrite css url directives
* - rewrites relative paths
* - rewrite windows directory separator \\ to /
*/
protected static function rewriteCssPathsDirectives($relativePath, $content)
{
static $rootDirectoryLength = null;
if (is_null($rootDirectoryLength)) {
$rootDirectoryLength = self::countDirectoriesInPathToRoot();
}
$baseDirectory = dirname($relativePath);
$content = preg_replace_callback(
"/(url\(['\"]?)([^'\")]*)/",
function ($matches) use ($rootDirectoryLength, $baseDirectory) {
$absolutePath = substr(realpath(PIWIK_DOCUMENT_ROOT . "/$baseDirectory/" . $matches[2]), $rootDirectoryLength);
$rewritten = str_replace('\\', '/', $absolutePath);
if (is_file($rewritten)) { // only rewrite the URL if transforming it points to a valid file
return $matches[1] . $rewritten;
} else {
return $matches[1] . $matches[2];
}
},
$content
);
return $content;
}
protected static function countDirectoriesInPathToRoot()
{
$rootDirectory = realpath(PIWIK_DOCUMENT_ROOT);
if ($rootDirectory != '/' && substr_compare($rootDirectory, '/', -1)) {
$rootDirectory .= '/';
}
$rootDirectoryLen = strlen($rootDirectory);
return $rootDirectoryLen;
}
private static function writeAssetToFile($mergedContent, $name)
{
// Remove the previous file
self::removeMergedAsset($name);
// Tries to open the new file
$newFilePath = self::getAbsoluteMergedFileLocation($name);
$newFile = @fopen($newFilePath, "w");
if (!$newFile) {
throw new Exception ("The file : " . $newFile . " can not be opened in write mode.");
}
// Write the content in the new file
fwrite($newFile, $mergedContent);
fclose($newFile);
}
/**
* Returns individual CSS file inclusion directive(s) using the markup <link>
*
* @return string
*/
private static function getIndividualCssIncludes()
{
$cssIncludeString = '';
$stylesheets = self::getStylesheetFiles();
foreach ($stylesheets as $cssFile) {
self::validateCssFile($cssFile);
$cssIncludeString = $cssIncludeString . sprintf(self::CSS_IMPORT_DIRECTIVE, $cssFile);
}
return $cssIncludeString;
}
/**
* Returns required CSS files
*
* @return Array
*/
private static function getStylesheetFiles()
$stylesheets = array();
Piwik_PostEvent(self::CSS_IMPORT_EVENT, array(&$stylesheets));
$stylesheets = self::sortCssFiles($stylesheets);
// We also look for the currently enabled theme and add CSS from the json
$theme = PluginsManager::getInstance()->getThemeEnabled();
if($theme) {
$info = $theme->getInformation();
if(isset($info['stylesheet'])) {
$themeStylesheetFile = 'plugins/'. $theme->getPluginName() . '/' . $info['stylesheet'];
}
$stylesheets[] = $themeStylesheetFile;
}
}
/**
* Ensure CSS stylesheets are loaded in a particular order regardless of the order that plugins are loaded.
*
* @param array $stylesheets Array of CSS stylesheet files
* @return array
*/
private static function sortCssFiles($stylesheets)
{
$priorityCssOrdered = array(
'libs/',
'plugins/CoreHome/stylesheets/color_manager.css', // must be before other Piwik stylesheets
Thomas ZILLIOX
a validé
'plugins/Zeitgeist/stylesheets/base.less',
'plugins/Zeitgeist/stylesheets/',
'plugins/',
Benaka Moorthi
a validé
'plugins/Dashboard/stylesheets/dashboard.less',
Benaka Moorthi
a validé
'tests/',
);
return self::prioritySort($priorityCssOrdered, $stylesheets);
}
/**
* Check the validity of the css file
*
* @param string $cssFile CSS file name
* @return boolean
* @throws Exception if a file can not be opened in write mode
*/
private static function validateCssFile($cssFile)
{
if (!self::assetIsReadable($cssFile)) {
throw new Exception("The css asset with 'href' = " . $cssFile . " is not readable");
}
}
/**
* Generate the merged js file.
*
* @throws Exception if a file can not be opened in write mode
*/
private static function generateMergedJsFile()
{
Benaka Moorthi
a validé
// initialize the merged content to the translations JavaScript file
$translationsFile = self::getTranslationsJsFileLocation();
$mergedContent = PHP_EOL . JSMin::minify(file_get_contents($translationsFile));
// Loop through each js file
$files = self::getJsFiles();
foreach ($files as $file) {
self::validateJsFile($file);
$fileLocation = self::getAbsoluteLocation($file);
$content = file_get_contents($fileLocation);
if (!self::isMinifiedJs($content)) {
$content = JSMin::minify($content);
}
$mergedContent = $mergedContent . PHP_EOL . $content;
}
$mergedContent = str_replace("\n", "\r\n", $mergedContent);
Piwik_PostEvent('AssetManager.filterMergedJs', array(&$mergedContent));
self::writeAssetToFile($mergedContent, self::MERGED_JS_FILE);
}
/**
* Returns individual JS file inclusion directive(s) using the markup <script>
*
* @return string
*/
private static function getIndividualJsIncludes()
{
$jsIncludeString = '';
Benaka Moorthi
a validé
// add translations include
$jsIncludeString .= sprintf(self::JS_IMPORT_DIRECTIVE, "index.php?module=Proxy&action=getTranslationJs");
$jsFiles = self::getJsFiles();
foreach ($jsFiles as $jsFile) {
self::validateJsFile($jsFile);
$jsIncludeString = $jsIncludeString . sprintf(self::JS_IMPORT_DIRECTIVE, $jsFile);
}
return $jsIncludeString;
}
/**
* Returns required JS files
*
* @return Array
*/
private static function getJsFiles()
{
$jsFiles = array();
Piwik_PostEvent(self::JS_IMPORT_EVENT, array(&$jsFiles));
$jsFiles = self::sortJsFiles($jsFiles);
return $jsFiles;
}
/**
* Ensure core JS (jQuery etc.) are loaded in a particular order regardless of the order that plugins are loaded.
*
* @param array $jsFiles Arry of JavaScript files
* @return array
*/
private static function sortJsFiles($jsFiles)
{
$priorityJsOrdered = array(
'libs/jquery/jquery.js',
'libs/jquery/jquery-ui.js',
'libs/jquery/jquery.browser.js',
'libs/',
'plugins/Zeitgeist/javascripts/piwikHelper.js',
'plugins/Zeitgeist/javascripts/',
'plugins/CoreHome/javascripts/broadcast.js',
'plugins/',
Benaka Moorthi
a validé
'tests/',
);
return self::prioritySort($priorityJsOrdered, $jsFiles);
}
/**
* Check the validity of the js file
*
* @param string $jsFile JavaScript file name
* @return boolean
* @throws Exception if js file is not valid
*/
private static function validateJsFile($jsFile)
{
if (!self::assetIsReadable($jsFile)) {
throw new Exception("The js asset with 'src' = " . $jsFile . " is not readable");
}
}
/**
* Returns the global option disable_merged_assets
*
* @return string
*/
private static function isMergedAssetsDisabled()
return Config::getInstance()->Debug['disable_merged_assets'];
}
/**
* Returns the css merged file absolute location.
* If there is none, the generation process will be triggered.
*
* @return string The absolute location of the css merged file
*/
public static function getMergedCssFileLocation()
{
self::prepareMergedCssFile();
return self::getAbsoluteMergedFileLocation(self::MERGED_CSS_FILE);
}
/**
* Returns the js merged file absolute location.
* If there is none, the generation process will be triggered.
*
* @return string The absolute location of the js merged file
*/
public static function getMergedJsFileLocation()
{
$isGenerated = self::isGenerated(self::MERGED_JS_FILE);
if (!$isGenerated) {
self::generateMergedJsFile();
}
return self::getAbsoluteMergedFileLocation(self::MERGED_JS_FILE);
}
Benaka Moorthi
a validé
/**
* Returns the translations JS file's absolute location.
* If the file does not exist, it is generated.
*
* @return string
*/
public static function getTranslationsJsFileLocation()
{
$isGenerated = self::isGenerated(self::TRANSLATIONS_JS_FILE);
if (!$isGenerated) {
Benaka Moorthi
a validé
$translationJs = str_replace("\n", "\r\n", Translate::getInstance()->getJavascriptTranslations());
self::writeAssetToFile($translationJs, self::TRANSLATIONS_JS_FILE);
Benaka Moorthi
a validé
}
return self::getAbsoluteMergedFileLocation(self::TRANSLATIONS_JS_FILE);
}
Benaka Moorthi
a validé
/**
Benaka Moorthi
a validé
* Remove translations Js file.
*
* @return string
Benaka Moorthi
a validé
*/
Benaka Moorthi
a validé
public static function removeTranslationsJsFile()
Benaka Moorthi
a validé
{
Benaka Moorthi
a validé
self::removeMergedAsset(self::TRANSLATIONS_JS_FILE);
Benaka Moorthi
a validé
}
/**
* Check if the provided merged file is generated
*
* @param string $filename filename of the merged asset
* @return boolean true is file exists and is readable, false otherwise
*/
private static function isGenerated($filename)
{
return is_readable(self::getAbsoluteMergedFileLocation($filename));
}
/**
* Removes the previous merged file if it exists.
* Also tries to remove compressed version of the merged file.
*
* @param string $filename filename of the merged asset
* @see ProxyStaticFile::serveStaticFile(serveFile
* @throws Exception if the file couldn't be deleted
*/
private static function removeMergedAsset($filename)
{
$isGenerated = self::isGenerated($filename);
if ($isGenerated) {
if (!unlink(self::getAbsoluteMergedFileLocation($filename))) {
throw new Exception("Unable to delete merged file : " . $filename . ". Please delete the file and refresh");
}
// Tries to remove compressed version of the merged file.
// See Piwik::serverStaticFile() for more info on static file compression
$compressedFileLocation = PIWIK_USER_PATH . Piwik::COMPRESSED_FILE_LOCATION . $filename;
@unlink($compressedFileLocation . ".deflate");
@unlink($compressedFileLocation . ".gz");
}
}
/**
* Remove previous merged assets
*/
public static function removeMergedAssets()
{
self::removeMergedAsset(self::MERGED_CSS_FILE);
self::removeMergedAsset(self::MERGED_JS_FILE);
Benaka Moorthi
a validé
self::removeMergedAsset(self::TRANSLATIONS_JS_FILE);
}
/**
* Check if asset is readable
*
* @param string $relativePath Relative path to file
* @return boolean
*/
private static function assetIsReadable($relativePath)
{
return is_readable(self::getAbsoluteLocation($relativePath));
}
/**
* Check if the merged file directory exists and is writable.
*
* @return string The directory location
* @throws Exception if directory is not writable.
*/
private static function getMergedFileDirectory()
{
$mergedFileDirectory = PIWIK_USER_PATH . '/' . self::MERGED_FILE_DIR;
if (!is_dir($mergedFileDirectory)) {
Common::mkdir($mergedFileDirectory);
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
}
if (!is_writable($mergedFileDirectory)) {
throw new Exception("Directory " . $mergedFileDirectory . " has to be writable.");
}
return $mergedFileDirectory;
}
/**
* Builds the absolute location of the requested merged file
*
* @param string $mergedFile Name of the merge file
* @return string absolute location of the merged file
*/
private static function getAbsoluteMergedFileLocation($mergedFile)
{
return self::getMergedFileDirectory() . $mergedFile;
}
/**
* Returns the full path of an asset file
*
* @param string $relativePath Relative path to file
* @return string
*/
private static function getAbsoluteLocation($relativePath)
{
// served by web server directly, so must be a public path
return PIWIK_DOCUMENT_ROOT . "/" . $relativePath;
}
/**
* Indicates if the provided JavaScript content has already been minified or not.
* The heuristic is based on a custom ratio : (size of file) / (number of lines).
* The threshold (100) has been found empirically on existing files :
* - the ratio never exceeds 50 for non-minified content and
* - it never goes under 150 for minified content.
*
* @param string $content Contents of the JavaScript file
* @return boolean
*/
private static function isMinifiedJs($content)
{
$lineCount = substr_count($content, "\n");
if ($lineCount == 0) {
return true;
}
$contentSize = strlen($content);
$ratio = $contentSize / $lineCount;
return $ratio > self::MINIFIED_JS_RATIO;
}
/**
* Sort files according to priority order. Duplicates are also removed.
*
* @param array $priorityOrder Ordered array of paths (first to last) serving as buckets
* @param array $files Unsorted array of files
* @return array
*/
public static function prioritySort($priorityOrder, $files)
{
$newFiles = array();
foreach ($priorityOrder as $filePattern) {
$newFiles = array_merge($newFiles, preg_grep('~^' . $filePattern . '~', $files));
}
return array_keys(array_flip($newFiles));
}