2012-06-18 17:04:35 +04:00
|
|
|
<?php
|
2015-03-26 13:44:34 +03:00
|
|
|
/**
|
|
|
|
* @author Adam Williamson <awilliam@redhat.com>
|
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com>
|
|
|
|
* @author Christopher Schäpers <kondou@ts.unde.re>
|
|
|
|
* @author Clark Tomlinson <fallen013@gmail.com>
|
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
* @author Lukas Reschke <lukas@owncloud.com>
|
|
|
|
* @author Michael Gapczynski <GapczynskiM@gmail.com>
|
|
|
|
* @author Remco Brenninkmeijer <requist1@starmail.nl>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
|
|
|
* @author Robin McCorkell <rmccorkell@karoshi.org.uk>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Victor Dubiniuk <dubiniuk@owncloud.com>
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
2014-02-20 16:28:27 +04:00
|
|
|
use Assetic\Asset\AssetCollection;
|
|
|
|
use Assetic\Asset\FileAsset;
|
|
|
|
use Assetic\AssetWriter;
|
2014-10-06 20:39:02 +04:00
|
|
|
use Assetic\Filter\CssImportFilter;
|
2014-10-06 14:38:59 +04:00
|
|
|
use Assetic\Filter\CssMinFilter;
|
|
|
|
use Assetic\Filter\CssRewriteFilter;
|
|
|
|
use Assetic\Filter\JSMinFilter;
|
2015-01-05 18:48:04 +03:00
|
|
|
use OC\Assetic\SeparatorFilter; // waiting on upstream
|
2014-02-20 16:28:27 +04:00
|
|
|
|
2012-06-18 17:04:35 +04:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2012 Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class OC_TemplateLayout extends OC_Template {
|
2014-02-06 19:30:58 +04:00
|
|
|
|
2014-10-15 13:23:42 +04:00
|
|
|
private static $versionHash = '';
|
|
|
|
|
2014-02-06 19:30:58 +04:00
|
|
|
/**
|
2014-10-06 14:38:59 +04:00
|
|
|
* @var \OCP\IConfig
|
|
|
|
*/
|
|
|
|
private $config;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $renderAs
|
|
|
|
* @param string $appId application id
|
2014-02-06 19:30:58 +04:00
|
|
|
*/
|
2014-10-06 14:38:59 +04:00
|
|
|
public function __construct( $renderAs, $appId = '' ) {
|
|
|
|
|
|
|
|
// yes - should be injected ....
|
|
|
|
$this->config = \OC::$server->getConfig();
|
|
|
|
|
2012-06-18 17:04:35 +04:00
|
|
|
// Decide which page we show
|
2015-02-10 15:02:48 +03:00
|
|
|
if($renderAs == 'user') {
|
2012-06-18 17:04:35 +04:00
|
|
|
parent::__construct( 'core', 'layout.user' );
|
2015-02-10 15:02:48 +03:00
|
|
|
if(in_array(OC_App::getCurrentApp(), ['settings','admin', 'help']) !== false) {
|
2013-02-28 01:55:39 +04:00
|
|
|
$this->assign('bodyid', 'body-settings');
|
2012-06-18 17:04:35 +04:00
|
|
|
}else{
|
2013-02-28 01:55:39 +04:00
|
|
|
$this->assign('bodyid', 'body-user');
|
2012-06-18 17:04:35 +04:00
|
|
|
}
|
|
|
|
|
2013-04-24 20:47:38 +04:00
|
|
|
// Update notification
|
2014-10-06 14:38:59 +04:00
|
|
|
if($this->config->getSystemValue('updatechecker', true) === true &&
|
|
|
|
OC_User::isAdminUser(OC_User::getUser())) {
|
2015-02-17 14:00:39 +03:00
|
|
|
$updater = new \OC\Updater(\OC::$server->getHTTPHelper(),
|
|
|
|
\OC::$server->getConfig());
|
2014-10-17 13:42:10 +04:00
|
|
|
$data = $updater->check();
|
2014-10-06 14:38:59 +04:00
|
|
|
|
|
|
|
if(isset($data['version']) && $data['version'] != '' and $data['version'] !== Array()) {
|
2013-04-24 20:47:38 +04:00
|
|
|
$this->assign('updateAvailable', true);
|
|
|
|
$this->assign('updateVersion', $data['versionstring']);
|
|
|
|
$this->assign('updateLink', $data['web']);
|
|
|
|
} else {
|
|
|
|
$this->assign('updateAvailable', false); // No update available or not an admin user
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$this->assign('updateAvailable', false); // Update check is disabled
|
|
|
|
}
|
|
|
|
|
2012-06-18 17:04:35 +04:00
|
|
|
// Add navigation entry
|
2013-02-07 21:07:27 +04:00
|
|
|
$this->assign( 'application', '', false );
|
2014-10-06 14:38:59 +04:00
|
|
|
$this->assign( 'appid', $appId );
|
2012-06-18 17:04:35 +04:00
|
|
|
$navigation = OC_App::getNavigation();
|
2013-02-28 01:55:39 +04:00
|
|
|
$this->assign( 'navigation', $navigation);
|
|
|
|
$this->assign( 'settingsnavigation', OC_App::getSettingsNavigation());
|
2012-06-18 17:04:35 +04:00
|
|
|
foreach($navigation as $entry) {
|
|
|
|
if ($entry['active']) {
|
2013-02-28 01:55:39 +04:00
|
|
|
$this->assign( 'application', $entry['name'] );
|
2012-06-18 17:04:35 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-10-06 14:38:59 +04:00
|
|
|
$userDisplayName = OC_User::getDisplayName();
|
2015-02-10 15:02:48 +03:00
|
|
|
$this->assign('user_displayname', $userDisplayName);
|
|
|
|
$this->assign('user_uid', OC_User::getUser());
|
2015-03-30 16:58:20 +03:00
|
|
|
$this->assign('appsmanagement_active', strpos(\OC::$server->getRequest()->getRequestUri(), \OC::$server->getURLGenerator()->linkToRoute('settings.AppSettings.viewApps')) === 0 );
|
2014-10-06 14:38:59 +04:00
|
|
|
$this->assign('enableAvatars', $this->config->getSystemValue('enable_avatars', true));
|
2014-03-15 18:27:48 +04:00
|
|
|
$this->assign('userAvatarSet', \OC_Helper::userAvatarSet(OC_User::getUser()));
|
2014-10-06 14:38:59 +04:00
|
|
|
} else if ($renderAs == 'error') {
|
2014-08-29 12:52:52 +04:00
|
|
|
parent::__construct('core', 'layout.guest', '', false);
|
2014-09-17 20:02:18 +04:00
|
|
|
$this->assign('bodyid', 'body-login');
|
2014-10-06 14:38:59 +04:00
|
|
|
} else if ($renderAs == 'guest') {
|
2012-08-29 19:54:31 +04:00
|
|
|
parent::__construct('core', 'layout.guest');
|
2014-09-11 13:39:50 +04:00
|
|
|
$this->assign('bodyid', 'body-login');
|
2012-08-29 19:54:31 +04:00
|
|
|
} else {
|
|
|
|
parent::__construct('core', 'layout.base');
|
2014-10-22 18:38:17 +04:00
|
|
|
|
2012-06-18 17:04:35 +04:00
|
|
|
}
|
2014-10-22 18:38:17 +04:00
|
|
|
// Send the language to our layouts
|
|
|
|
$this->assign('language', OC_L10N::findLanguage());
|
|
|
|
|
2014-02-20 16:28:27 +04:00
|
|
|
|
2014-10-15 13:23:42 +04:00
|
|
|
if(empty(self::$versionHash)) {
|
2015-02-02 14:52:33 +03:00
|
|
|
$v = OC_App::getAppVersions();
|
|
|
|
$v['core'] = implode('.', \OC_Util::getVersion());
|
|
|
|
self::$versionHash = md5(implode(',', $v));
|
2014-10-15 13:23:42 +04:00
|
|
|
}
|
2014-03-15 18:27:48 +04:00
|
|
|
|
2014-10-06 14:38:59 +04:00
|
|
|
$useAssetPipeline = self::isAssetPipelineEnabled();
|
2014-02-20 16:28:27 +04:00
|
|
|
if ($useAssetPipeline) {
|
2014-10-15 13:23:42 +04:00
|
|
|
$this->append( 'jsfiles', OC_Helper::linkToRoute('js_config', array('v' => self::$versionHash)));
|
2014-02-20 16:28:27 +04:00
|
|
|
$this->generateAssets();
|
|
|
|
} else {
|
|
|
|
// Add the js files
|
2014-10-06 14:38:59 +04:00
|
|
|
$jsFiles = self::findJavascriptFiles(OC_Util::$scripts);
|
2014-02-20 16:28:27 +04:00
|
|
|
$this->assign('jsfiles', array(), false);
|
2014-10-06 14:38:59 +04:00
|
|
|
if ($this->config->getSystemValue('installed', false) && $renderAs != 'error') {
|
2014-10-15 13:23:42 +04:00
|
|
|
$this->append( 'jsfiles', OC_Helper::linkToRoute('js_config', array('v' => self::$versionHash)));
|
2014-02-20 16:28:27 +04:00
|
|
|
}
|
2014-10-06 14:38:59 +04:00
|
|
|
foreach($jsFiles as $info) {
|
2014-02-20 16:28:27 +04:00
|
|
|
$web = $info[1];
|
|
|
|
$file = $info[2];
|
2014-10-15 13:23:42 +04:00
|
|
|
$this->append( 'jsfiles', $web.'/'.$file . '?v=' . self::$versionHash);
|
2014-02-20 16:28:27 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add the css files
|
2014-10-06 14:38:59 +04:00
|
|
|
$cssFiles = self::findStylesheetFiles(OC_Util::$styles);
|
2014-02-20 16:28:27 +04:00
|
|
|
$this->assign('cssfiles', array());
|
2014-10-06 14:38:59 +04:00
|
|
|
foreach($cssFiles as $info) {
|
2014-02-20 16:28:27 +04:00
|
|
|
$web = $info[1];
|
|
|
|
$file = $info[2];
|
|
|
|
|
2014-10-15 13:23:42 +04:00
|
|
|
$this->append( 'cssfiles', $web.'/'.$file . '?v=' . self::$versionHash);
|
2014-02-20 16:28:27 +04:00
|
|
|
}
|
2012-06-18 17:04:35 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-21 17:44:54 +04:00
|
|
|
/**
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param array $styles
|
2014-04-21 17:44:54 +04:00
|
|
|
* @return array
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
static public function findStylesheetFiles($styles) {
|
2012-06-18 17:04:35 +04:00
|
|
|
// Read the selected theme from the config file
|
2013-04-24 15:45:40 +04:00
|
|
|
$theme = OC_Util::getTheme();
|
2012-06-18 17:04:35 +04:00
|
|
|
|
2015-03-04 15:24:24 +03:00
|
|
|
$locator = new \OC\Template\CSSResourceLocator(
|
|
|
|
OC::$server->getLogger(),
|
|
|
|
$theme,
|
2013-03-17 02:02:51 +04:00
|
|
|
array( OC::$SERVERROOT => OC::$WEBROOT ),
|
|
|
|
array( OC::$THIRDPARTYROOT => OC::$THIRDPARTYWEBROOT ));
|
|
|
|
$locator->find($styles);
|
|
|
|
return $locator->getResources();
|
2012-06-18 17:04:35 +04:00
|
|
|
}
|
|
|
|
|
2014-04-21 17:44:54 +04:00
|
|
|
/**
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param array $scripts
|
2014-04-21 17:44:54 +04:00
|
|
|
* @return array
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
static public function findJavascriptFiles($scripts) {
|
2012-06-18 17:04:35 +04:00
|
|
|
// Read the selected theme from the config file
|
2013-04-24 15:45:40 +04:00
|
|
|
$theme = OC_Util::getTheme();
|
2012-06-18 17:04:35 +04:00
|
|
|
|
2015-03-04 15:24:24 +03:00
|
|
|
$locator = new \OC\Template\JSResourceLocator(
|
|
|
|
OC::$server->getLogger(),
|
|
|
|
$theme,
|
2013-03-17 02:02:51 +04:00
|
|
|
array( OC::$SERVERROOT => OC::$WEBROOT ),
|
|
|
|
array( OC::$THIRDPARTYROOT => OC::$THIRDPARTYWEBROOT ));
|
|
|
|
$locator->find($scripts);
|
|
|
|
return $locator->getResources();
|
2012-06-18 17:04:35 +04:00
|
|
|
}
|
2014-02-20 16:28:27 +04:00
|
|
|
|
2014-10-06 14:38:59 +04:00
|
|
|
public function generateAssets() {
|
2014-12-30 23:03:07 +03:00
|
|
|
$assetDir = \OC::$server->getConfig()->getSystemValue('assetdirectory', \OC::$SERVERROOT);
|
2014-02-20 16:28:27 +04:00
|
|
|
$jsFiles = self::findJavascriptFiles(OC_Util::$scripts);
|
2014-10-20 14:37:32 +04:00
|
|
|
$jsHash = self::hashFileNames($jsFiles);
|
2014-02-20 16:28:27 +04:00
|
|
|
|
2014-12-30 23:03:07 +03:00
|
|
|
if (!file_exists("$assetDir/assets/$jsHash.js")) {
|
2014-02-20 16:28:27 +04:00
|
|
|
$jsFiles = array_map(function ($item) {
|
|
|
|
$root = $item[0];
|
|
|
|
$file = $item[2];
|
2014-10-06 14:38:59 +04:00
|
|
|
// no need to minifiy minified files
|
|
|
|
if (substr($file, -strlen('.min.js')) === '.min.js') {
|
2015-01-05 18:48:04 +03:00
|
|
|
return new FileAsset($root . '/' . $file, array(
|
|
|
|
new SeparatorFilter(';')
|
|
|
|
), $root, $file);
|
2014-10-06 14:38:59 +04:00
|
|
|
}
|
|
|
|
return new FileAsset($root . '/' . $file, array(
|
2015-01-05 18:48:04 +03:00
|
|
|
new JSMinFilter(),
|
|
|
|
new SeparatorFilter(';')
|
2014-10-06 14:38:59 +04:00
|
|
|
), $root, $file);
|
2014-02-20 16:28:27 +04:00
|
|
|
}, $jsFiles);
|
|
|
|
$jsCollection = new AssetCollection($jsFiles);
|
|
|
|
$jsCollection->setTargetPath("assets/$jsHash.js");
|
|
|
|
|
2014-12-30 23:03:07 +03:00
|
|
|
$writer = new AssetWriter($assetDir);
|
2014-02-20 16:28:27 +04:00
|
|
|
$writer->writeAsset($jsCollection);
|
|
|
|
}
|
|
|
|
|
|
|
|
$cssFiles = self::findStylesheetFiles(OC_Util::$styles);
|
2014-10-20 14:37:32 +04:00
|
|
|
$cssHash = self::hashFileNames($cssFiles);
|
2014-02-20 16:28:27 +04:00
|
|
|
|
2014-12-30 23:03:07 +03:00
|
|
|
if (!file_exists("$assetDir/assets/$cssHash.css")) {
|
2014-02-20 16:28:27 +04:00
|
|
|
$cssFiles = array_map(function ($item) {
|
|
|
|
$root = $item[0];
|
|
|
|
$file = $item[2];
|
|
|
|
$assetPath = $root . '/' . $file;
|
|
|
|
$sourceRoot = \OC::$SERVERROOT;
|
|
|
|
$sourcePath = substr($assetPath, strlen(\OC::$SERVERROOT));
|
2014-10-06 20:39:02 +04:00
|
|
|
return new FileAsset(
|
2014-10-06 14:38:59 +04:00
|
|
|
$assetPath,
|
2014-10-06 20:39:02 +04:00
|
|
|
array(
|
2014-10-06 14:38:59 +04:00
|
|
|
new CssRewriteFilter(),
|
|
|
|
new CssMinFilter(),
|
2014-10-06 20:39:02 +04:00
|
|
|
new CssImportFilter()
|
|
|
|
),
|
2014-10-06 14:38:59 +04:00
|
|
|
$sourceRoot,
|
2014-10-06 20:39:02 +04:00
|
|
|
$sourcePath
|
|
|
|
);
|
2014-02-20 16:28:27 +04:00
|
|
|
}, $cssFiles);
|
|
|
|
$cssCollection = new AssetCollection($cssFiles);
|
|
|
|
$cssCollection->setTargetPath("assets/$cssHash.css");
|
|
|
|
|
2014-12-30 23:03:07 +03:00
|
|
|
$writer = new AssetWriter($assetDir);
|
2014-02-20 16:28:27 +04:00
|
|
|
$writer->writeAsset($cssCollection);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->append('jsfiles', OC_Helper::linkTo('assets', "$jsHash.js"));
|
|
|
|
$this->append('cssfiles', OC_Helper::linkTo('assets', "$cssHash.css"));
|
|
|
|
}
|
|
|
|
|
2014-10-20 14:37:32 +04:00
|
|
|
/**
|
2015-02-02 14:52:33 +03:00
|
|
|
* Converts the absolute file path to a relative path from \OC::$SERVERROOT
|
2014-10-20 14:37:32 +04:00
|
|
|
* @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];
|
|
|
|
}
|
|
|
|
|
2014-04-21 17:44:54 +04:00
|
|
|
/**
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param array $files
|
2014-04-21 17:44:54 +04:00
|
|
|
* @return string
|
|
|
|
*/
|
2014-10-06 14:38:59 +04:00
|
|
|
|
2014-10-20 14:37:32 +04:00
|
|
|
private static function hashFileNames($files) {
|
|
|
|
foreach($files as $i => $file) {
|
2015-03-17 05:06:06 +03:00
|
|
|
try {
|
|
|
|
$files[$i] = self::convertToRelativePath($file[0]).'/'.$file[2];
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
$files[$i] = $file[0].'/'.$file[2];
|
|
|
|
}
|
2014-10-20 14:37:32 +04:00
|
|
|
}
|
2014-02-20 16:28:27 +04:00
|
|
|
|
|
|
|
sort($files);
|
2014-10-16 15:29:51 +04:00
|
|
|
// include the apps' versions hash to invalidate the cached assets
|
2014-10-06 14:38:59 +04:00
|
|
|
$files[] = self::$versionHash;
|
2014-02-20 16:28:27 +04:00
|
|
|
return hash('md5', implode('', $files));
|
|
|
|
}
|
2012-06-18 17:04:35 +04:00
|
|
|
}
|