2011-03-02 01:20:16 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2011-03-13 19:25:34 +03:00
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Frank Karlitschek
|
|
|
|
* @author Jakob Sack
|
2012-05-26 21:14:24 +04:00
|
|
|
* @copyright 2012 Frank Karlitschek frank@owncloud.org
|
2011-03-13 19:25:34 +03:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library 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 along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2011-03-02 01:20:16 +03:00
|
|
|
|
2013-03-18 20:36:52 +04:00
|
|
|
require_once __DIR__.'/template/functions.php';
|
2011-03-02 01:20:16 +03:00
|
|
|
|
2011-03-03 00:28:32 +03:00
|
|
|
/**
|
2013-07-18 01:27:25 +04:00
|
|
|
* This class provides the templates for ownCloud.
|
2011-03-03 00:28:32 +03:00
|
|
|
*/
|
2013-03-19 01:32:32 +04:00
|
|
|
class OC_Template extends \OC\Template\Base {
|
2011-03-02 01:20:16 +03:00
|
|
|
private $renderas; // Create a full page?
|
2013-03-19 01:32:32 +04:00
|
|
|
private $path; // The path to the template
|
2014-08-29 12:52:52 +04:00
|
|
|
private $headers = array(); //custom headers
|
2013-12-09 16:18:13 +04:00
|
|
|
protected $app; // app id
|
2011-03-02 01:20:16 +03:00
|
|
|
|
2011-03-13 19:25:34 +03:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Constructor
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $app app providing the template
|
2013-07-18 01:27:25 +04:00
|
|
|
* @param string $name of the template file (without suffix)
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $renderas = ""; produce a full page
|
2014-08-29 12:52:52 +04:00
|
|
|
* @param bool $registerCall = true
|
2012-09-23 04:39:11 +04:00
|
|
|
* @return OC_Template object
|
2011-03-13 19:25:34 +03:00
|
|
|
*
|
2011-07-29 23:36:03 +04:00
|
|
|
* This function creates an OC_Template object.
|
2011-03-13 19:25:34 +03:00
|
|
|
*
|
2011-07-29 23:36:03 +04:00
|
|
|
* If $renderas is set, OC_Template will try to produce a full page in the
|
2011-03-13 19:25:34 +03:00
|
|
|
* according layout. For now, renderas can be set to "guest", "user" or
|
|
|
|
* "admin".
|
|
|
|
*/
|
2014-08-29 12:52:52 +04:00
|
|
|
public function __construct( $app, $name, $renderas = "", $registerCall = true ) {
|
2013-03-19 01:32:32 +04:00
|
|
|
// Read the selected theme from the config file
|
|
|
|
$theme = OC_Util::getTheme();
|
|
|
|
|
2014-08-29 12:52:52 +04:00
|
|
|
$requesttoken = (OC::$server->getSession() and $registerCall) ? OC_Util::callRegister() : '';
|
2013-03-19 01:32:32 +04:00
|
|
|
|
|
|
|
$parts = explode('/', $app); // fix translation when app is something like core/lostpassword
|
2014-08-31 12:05:59 +04:00
|
|
|
$l10n = \OC::$server->getL10N($parts[0]);
|
2013-07-24 13:51:21 +04:00
|
|
|
$themeDefaults = new OC_Defaults();
|
2013-03-19 01:32:32 +04:00
|
|
|
|
2014-11-12 14:37:50 +03:00
|
|
|
list($path, $template) = $this->findTemplate($theme, $app, $name);
|
2013-03-19 01:32:32 +04:00
|
|
|
|
2012-03-20 00:55:27 +04:00
|
|
|
// Set the private data
|
|
|
|
$this->renderas = $renderas;
|
2013-03-19 01:32:32 +04:00
|
|
|
$this->path = $path;
|
2013-12-09 16:18:13 +04:00
|
|
|
$this->app = $app;
|
2013-03-19 01:32:32 +04:00
|
|
|
|
2013-07-24 13:51:21 +04:00
|
|
|
parent::__construct($template, $requesttoken, $l10n, $themeDefaults);
|
2014-04-13 13:52:31 +04:00
|
|
|
}
|
|
|
|
|
2012-03-20 00:55:27 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* find the template with the given name
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $name of the template file (without suffix)
|
2012-03-20 00:55:27 +04:00
|
|
|
*
|
2014-11-12 14:37:50 +03:00
|
|
|
* Will select the template file for the selected theme.
|
2012-03-20 00:55:27 +04:00
|
|
|
* Checking all the possible locations.
|
2014-02-06 19:30:58 +04:00
|
|
|
* @param string $theme
|
|
|
|
* @param string $app
|
2014-04-21 17:44:54 +04:00
|
|
|
* @return array
|
2012-03-20 00:55:27 +04:00
|
|
|
*/
|
2014-11-12 14:37:50 +03:00
|
|
|
protected function findTemplate($theme, $app, $name) {
|
2012-02-12 02:25:35 +04:00
|
|
|
// Check if it is a app template or not.
|
2013-07-19 19:40:07 +04:00
|
|
|
if( $app !== '' ) {
|
2013-03-19 01:32:32 +04:00
|
|
|
$dirs = $this->getAppTemplateDirs($theme, $app, OC::$SERVERROOT, OC_App::getAppPath($app));
|
|
|
|
} else {
|
|
|
|
$dirs = $this->getCoreTemplateDirs($theme, OC::$SERVERROOT);
|
2011-03-02 13:56:48 +03:00
|
|
|
}
|
2014-11-12 14:37:50 +03:00
|
|
|
$locator = new \OC\Template\TemplateFileLocator( $dirs );
|
2013-03-19 01:32:32 +04:00
|
|
|
$template = $locator->find($name);
|
|
|
|
$path = $locator->getPath();
|
|
|
|
return array($path, $template);
|
2011-03-02 01:20:16 +03:00
|
|
|
}
|
2012-03-20 00:55:27 +04:00
|
|
|
|
2011-06-24 20:02:19 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Add a custom element to the header
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $tag tag name of the element
|
2013-07-18 01:27:25 +04:00
|
|
|
* @param array $attributes array of attributes for the element
|
2014-10-28 13:15:58 +03:00
|
|
|
* @param string $text the text content for the element. If $text is null then the
|
|
|
|
* element will be written as empty element. So use "" to get a closing tag.
|
2011-06-24 20:02:19 +04:00
|
|
|
*/
|
2014-10-28 13:15:58 +03:00
|
|
|
public function addHeader($tag, $attributes, $text=null) {
|
|
|
|
$this->headers[]= array(
|
|
|
|
'tag' => $tag,
|
|
|
|
'attributes' => $attributes,
|
|
|
|
'text' => $text
|
|
|
|
);
|
2011-06-24 20:02:19 +04:00
|
|
|
}
|
2011-03-02 01:20:16 +03:00
|
|
|
|
2011-03-13 19:25:34 +03:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Process the template
|
2014-02-06 19:30:58 +04:00
|
|
|
* @return boolean|string
|
2011-03-13 19:25:34 +03:00
|
|
|
*
|
2013-03-19 01:32:32 +04:00
|
|
|
* This function process the template. If $this->renderas is set, it
|
2011-03-13 19:25:34 +03:00
|
|
|
* will produce a full page.
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function fetchPage() {
|
2013-03-19 01:32:32 +04:00
|
|
|
$data = parent::fetchPage();
|
2011-03-02 01:20:16 +03:00
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
if( $this->renderas ) {
|
2013-12-09 16:18:13 +04:00
|
|
|
$page = new OC_TemplateLayout($this->renderas, $this->app);
|
2012-03-20 00:55:27 +04:00
|
|
|
|
2011-06-25 00:06:40 +04:00
|
|
|
// Add custom headers
|
2014-10-28 13:15:58 +03:00
|
|
|
$headers = '';
|
2012-09-07 17:22:01 +04:00
|
|
|
foreach(OC_Util::$headers as $header) {
|
2014-10-28 13:15:58 +03:00
|
|
|
$headers .= '<'.OC_Util::sanitizeHTML($header['tag']);
|
|
|
|
foreach($header['attributes'] as $name=>$value) {
|
2014-12-18 18:40:08 +03:00
|
|
|
$headers .= ' '.OC_Util::sanitizeHTML($name).'="'.OC_Util::sanitizeHTML($value).'"';
|
2014-10-28 13:15:58 +03:00
|
|
|
}
|
|
|
|
if ($header['text'] !== null) {
|
|
|
|
$headers .= '>'.OC_Util::sanitizeHTML($header['text']).'</'.OC_Util::sanitizeHTML($header['tag']).'>';
|
|
|
|
} else {
|
|
|
|
$headers .= '/>';
|
|
|
|
}
|
2011-06-25 00:06:40 +04:00
|
|
|
}
|
2012-03-20 00:55:27 +04:00
|
|
|
|
2014-10-28 13:15:58 +03:00
|
|
|
$page->assign('headers', $headers, false);
|
|
|
|
|
|
|
|
$page->assign('content', $data, false );
|
2011-03-02 01:20:16 +03:00
|
|
|
return $page->fetchPage();
|
|
|
|
}
|
2011-08-09 01:14:47 +04:00
|
|
|
else{
|
2011-03-02 01:20:16 +03:00
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-06 13:36:56 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Include template
|
2012-09-23 04:39:11 +04:00
|
|
|
* @return string returns content of included template
|
2011-08-06 13:36:56 +04:00
|
|
|
*
|
|
|
|
* Includes another template. use <?php echo $this->inc('template'); ?> to
|
|
|
|
* do this.
|
|
|
|
*/
|
2014-10-06 14:38:59 +04:00
|
|
|
public function inc( $file, $additionalParams = null ) {
|
|
|
|
return $this->load($this->path.$file.'.php', $additionalParams);
|
2011-08-06 13:36:56 +04:00
|
|
|
}
|
|
|
|
|
2011-03-02 01:20:16 +03:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Shortcut to print a simple page for users
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $application The application we render the template for
|
|
|
|
* @param string $name Name of the template
|
|
|
|
* @param array $parameters Parameters for the template
|
2014-02-06 19:30:58 +04:00
|
|
|
* @return boolean|null
|
2011-03-02 01:20:16 +03:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function printUserPage( $application, $name, $parameters = array() ) {
|
2011-07-29 23:36:03 +04:00
|
|
|
$content = new OC_Template( $application, $name, "user" );
|
2012-09-07 17:22:01 +04:00
|
|
|
foreach( $parameters as $key => $value ) {
|
2013-02-28 01:55:39 +04:00
|
|
|
$content->assign( $key, $value );
|
2011-03-02 20:21:08 +03:00
|
|
|
}
|
2011-03-13 19:25:34 +03:00
|
|
|
print $content->printPage();
|
2011-03-02 01:20:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Shortcut to print a simple page for admins
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $application The application we render the template for
|
|
|
|
* @param string $name Name of the template
|
|
|
|
* @param array $parameters Parameters for the template
|
|
|
|
* @return bool
|
2011-03-02 01:20:16 +03:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function printAdminPage( $application, $name, $parameters = array() ) {
|
2011-07-29 23:36:03 +04:00
|
|
|
$content = new OC_Template( $application, $name, "admin" );
|
2012-09-07 17:22:01 +04:00
|
|
|
foreach( $parameters as $key => $value ) {
|
2013-02-28 01:55:39 +04:00
|
|
|
$content->assign( $key, $value );
|
2011-03-02 20:21:08 +03:00
|
|
|
}
|
2011-03-02 01:20:16 +03:00
|
|
|
return $content->printPage();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Shortcut to print a simple page for guests
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $application The application we render the template for
|
|
|
|
* @param string $name Name of the template
|
2014-04-21 17:44:54 +04:00
|
|
|
* @param array|string $parameters Parameters for the template
|
2012-09-23 04:39:11 +04:00
|
|
|
* @return bool
|
2011-03-02 01:20:16 +03:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function printGuestPage( $application, $name, $parameters = array() ) {
|
2011-07-29 23:36:03 +04:00
|
|
|
$content = new OC_Template( $application, $name, "guest" );
|
2012-09-07 17:22:01 +04:00
|
|
|
foreach( $parameters as $key => $value ) {
|
2013-02-28 01:55:39 +04:00
|
|
|
$content->assign( $key, $value );
|
2011-03-02 20:21:08 +03:00
|
|
|
}
|
2011-03-02 01:20:16 +03:00
|
|
|
return $content->printPage();
|
|
|
|
}
|
2012-11-24 21:07:26 +04:00
|
|
|
|
2012-12-04 02:53:06 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Print a fatal error page and terminates the script
|
2013-07-18 01:27:25 +04:00
|
|
|
* @param string $error_msg The error message to show
|
2014-09-11 16:14:02 +04:00
|
|
|
* @param string $hint An optional hint message - needs to be properly escaped
|
2012-12-04 02:53:06 +04:00
|
|
|
*/
|
|
|
|
public static function printErrorPage( $error_msg, $hint = '' ) {
|
2014-08-29 12:52:52 +04:00
|
|
|
$content = new \OC_Template( '', 'error', 'error', false );
|
2012-12-04 02:53:06 +04:00
|
|
|
$errors = array(array('error' => $error_msg, 'hint' => $hint));
|
2013-03-06 16:05:22 +04:00
|
|
|
$content->assign( 'errors', $errors );
|
2013-02-23 00:39:44 +04:00
|
|
|
$content->printPage();
|
2012-12-04 02:53:06 +04:00
|
|
|
die();
|
|
|
|
}
|
2014-05-19 19:50:53 +04:00
|
|
|
|
2013-06-10 14:56:45 +04:00
|
|
|
/**
|
|
|
|
* print error page using Exception details
|
|
|
|
* @param Exception $exception
|
|
|
|
*/
|
|
|
|
public static function printExceptionErrorPage(Exception $exception) {
|
2014-09-11 16:14:02 +04:00
|
|
|
$content = new \OC_Template('', 'exception', 'error', false);
|
|
|
|
$content->assign('errorMsg', $exception->getMessage());
|
|
|
|
$content->assign('errorCode', $exception->getCode());
|
|
|
|
$content->assign('file', $exception->getFile());
|
|
|
|
$content->assign('line', $exception->getLine());
|
|
|
|
$content->assign('trace', $exception->getTraceAsString());
|
|
|
|
$content->assign('debugMode', defined('DEBUG') && DEBUG === true);
|
|
|
|
$content->assign('remoteAddr', OC_Request::getRemoteAddress());
|
|
|
|
$content->assign('requestID', OC_Request::getRequestID());
|
|
|
|
$content->printPage();
|
|
|
|
die();
|
2013-06-10 14:56:45 +04:00
|
|
|
}
|
2014-10-06 14:38:59 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public static function isAssetPipelineEnabled() {
|
|
|
|
// asset management enabled?
|
|
|
|
$useAssetPipeline = \OC::$server->getConfig()->getSystemValue('asset-pipeline.enabled', false);
|
|
|
|
if (!$useAssetPipeline) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// assets folder exists?
|
|
|
|
$assetDir = \OC::$SERVERROOT . '/assets';
|
|
|
|
if (!is_dir($assetDir)) {
|
|
|
|
if (!mkdir($assetDir)) {
|
|
|
|
\OCP\Util::writeLog('assets',
|
|
|
|
"Folder <$assetDir> does not exist and/or could not be generated.", \OCP\Util::ERROR);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// assets folder can be accessed?
|
|
|
|
if (!touch($assetDir."/.oc")) {
|
|
|
|
\OCP\Util::writeLog('assets',
|
|
|
|
"Folder <$assetDir> could not be accessed.", \OCP\Util::ERROR);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return $useAssetPipeline;
|
|
|
|
}
|
|
|
|
|
2011-03-02 01:20:16 +03:00
|
|
|
}
|