Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2014-10-20 14:37:32 +0400
committerLukas Reschke <lukas@owncloud.com>2014-10-20 21:15:23 +0400
commitff93c5859bd1c1fa77c432726e7536ec22a038ad (patch)
tree5ffd12280cc06592a633be4ceb8dce938522fc13 /lib/private/templatelayout.php
parent7ffe80cf259945ca85a3dde396b2fb7ef0df2af8 (diff)
Refer to relative path instead of absolute path
There is no need to refer to the absolute path here if we can use the relative one. Conflicts: lib/private/templatelayout.php Conflicts: lib/private/templatelayout.php
Diffstat (limited to 'lib/private/templatelayout.php')
-rw-r--r--lib/private/templatelayout.php30
1 files changed, 21 insertions, 9 deletions
diff --git a/lib/private/templatelayout.php b/lib/private/templatelayout.php
index 56ccbd197ed..1f2f3ebeba0 100644
--- a/lib/private/templatelayout.php
+++ b/lib/private/templatelayout.php
@@ -140,7 +140,7 @@ class OC_TemplateLayout extends OC_Template {
public function generateAssets()
{
$jsFiles = self::findJavascriptFiles(OC_Util::$scripts);
- $jsHash = self::hashScriptNames($jsFiles);
+ $jsHash = self::hashFileNames($jsFiles);
if (!file_exists("assets/$jsHash.js")) {
$jsFiles = array_map(function ($item) {
@@ -156,7 +156,7 @@ class OC_TemplateLayout extends OC_Template {
}
$cssFiles = self::findStylesheetFiles(OC_Util::$styles);
- $cssHash = self::hashScriptNames($cssFiles);
+ $cssHash = self::hashFileNames($cssFiles);
if (!file_exists("assets/$cssHash.css")) {
$cssFiles = array_map(function ($item) {
@@ -187,16 +187,28 @@ class OC_TemplateLayout extends OC_Template {
}
/**
+ * Converts the absolute filepath to a relative path from \OC::$SERVERROOT
+ * @param string $filePath Absolute path
+ * @return string Relative path
+ * @throws Exception If $filePath is not under \OC::$SERVERROOT
+ */
+ public static function convertToRelativePath($filePath) {
+ $relativePath = explode(\OC::$SERVERROOT, $filePath);
+ if(count($relativePath) !== 2) {
+ throw new \Exception('$filePath is not under the \OC::$SERVERROOT');
+ }
+
+ return $relativePath[1];
+ }
+
+ /**
* @param array $files
* @return string
*/
- private static function hashScriptNames($files)
- {
- $files = array_map(function ($item) {
- $root = $item[0];
- $file = $item[2];
- return $root . '/' . $file;
- }, $files);
+ private static function hashFileNames($files) {
+ foreach($files as $i => $file) {
+ $files[$i] = self::convertToRelativePath($file[0]).'/'.$file[2];
+ }
sort($files);
// include the apps' versions hash to invalidate the cached assets