PageRenderTime 53ms CodeModel.GetById 22ms RepoModel.GetById 1ms app.codeStats 0ms

/lib/template.php

https://github.com/sezuan/core
PHP | 559 lines | 303 code | 44 blank | 212 comment | 60 complexity | 953b310d03c3b53faa3bf0964c78e6cf MD5 | raw file
Possible License(s): AGPL-3.0, AGPL-1.0, MPL-2.0-no-copyleft-exception
  1. <?php
  2. /**
  3. * ownCloud
  4. *
  5. * @author Frank Karlitschek
  6. * @author Jakob Sack
  7. * @copyright 2012 Frank Karlitschek frank@owncloud.org
  8. *
  9. * This library is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
  11. * License as published by the Free Software Foundation; either
  12. * version 3 of the License, or any later version.
  13. *
  14. * This library is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public
  20. * License along with this library. If not, see <http://www.gnu.org/licenses/>.
  21. *
  22. */
  23. /**
  24. * Prints an XSS escaped string
  25. * @param string $string the string which will be escaped and printed
  26. */
  27. function p($string) {
  28. print(OC_Util::sanitizeHTML($string));
  29. }
  30. /**
  31. * Prints an unescaped string
  32. * @param string $string the string which will be printed as it is
  33. */
  34. function print_unescaped($string) {
  35. print($string);
  36. }
  37. /**
  38. * @brief make OC_Helper::linkTo available as a simple function
  39. * @param string $app app
  40. * @param string $file file
  41. * @param array $args array with param=>value, will be appended to the returned url
  42. * @return string link to the file
  43. *
  44. * For further information have a look at OC_Helper::linkTo
  45. */
  46. function link_to( $app, $file, $args = array() ) {
  47. return OC_Helper::linkTo( $app, $file, $args );
  48. }
  49. /**
  50. * @brief make OC_Helper::imagePath available as a simple function
  51. * @param string $app app
  52. * @param string $image image
  53. * @return string link to the image
  54. *
  55. * For further information have a look at OC_Helper::imagePath
  56. */
  57. function image_path( $app, $image ) {
  58. return OC_Helper::imagePath( $app, $image );
  59. }
  60. /**
  61. * @brief make OC_Helper::mimetypeIcon available as a simple function
  62. * @param string $mimetype mimetype
  63. * @return string link to the image
  64. *
  65. * For further information have a look at OC_Helper::mimetypeIcon
  66. */
  67. function mimetype_icon( $mimetype ) {
  68. return OC_Helper::mimetypeIcon( $mimetype );
  69. }
  70. /**
  71. * @brief make OC_Helper::humanFileSize available as a simple function
  72. * @param int $bytes size in bytes
  73. * @return string size as string
  74. *
  75. * For further information have a look at OC_Helper::humanFileSize
  76. */
  77. function human_file_size( $bytes ) {
  78. return OC_Helper::humanFileSize( $bytes );
  79. }
  80. function simple_file_size($bytes) {
  81. if ($bytes < 0) {
  82. return '?';
  83. }
  84. $mbytes = round($bytes / (1024 * 1024), 1);
  85. if ($bytes == 0) {
  86. return '0';
  87. }
  88. if ($mbytes < 0.1) {
  89. return '&lt; 0.1';
  90. }
  91. if ($mbytes > 1000) {
  92. return '&gt; 1000';
  93. } else {
  94. return number_format($mbytes, 1);
  95. }
  96. }
  97. function relative_modified_date($timestamp) {
  98. $l=OC_L10N::get('lib');
  99. $timediff = time() - $timestamp;
  100. $diffminutes = round($timediff/60);
  101. $diffhours = round($diffminutes/60);
  102. $diffdays = round($diffhours/24);
  103. $diffmonths = round($diffdays/31);
  104. if($timediff < 60) { return $l->t('seconds ago'); }
  105. else if($timediff < 120) { return $l->t('1 minute ago'); }
  106. else if($timediff < 3600) { return $l->t('%d minutes ago', $diffminutes); }
  107. else if($timediff < 7200) { return $l->t('1 hour ago'); }
  108. else if($timediff < 86400) { return $l->t('%d hours ago', $diffhours); }
  109. else if((date('G')-$diffhours) > 0) { return $l->t('today'); }
  110. else if((date('G')-$diffhours) > -24) { return $l->t('yesterday'); }
  111. else if($timediff < 2678400) { return $l->t('%d days ago', $diffdays); }
  112. else if($timediff < 5184000) { return $l->t('last month'); }
  113. else if((date('n')-$diffmonths) > 0) { return $l->t('%d months ago', $diffmonths); }
  114. else if($timediff < 63113852) { return $l->t('last year'); }
  115. else { return $l->t('years ago'); }
  116. }
  117. function html_select_options($options, $selected, $params=array()) {
  118. if (!is_array($selected)) {
  119. $selected=array($selected);
  120. }
  121. if (isset($params['combine']) && $params['combine']) {
  122. $options = array_combine($options, $options);
  123. }
  124. $value_name = $label_name = false;
  125. if (isset($params['value'])) {
  126. $value_name = $params['value'];
  127. }
  128. if (isset($params['label'])) {
  129. $label_name = $params['label'];
  130. }
  131. $html = '';
  132. foreach($options as $value => $label) {
  133. if ($value_name && is_array($label)) {
  134. $value = $label[$value_name];
  135. }
  136. if ($label_name && is_array($label)) {
  137. $label = $label[$label_name];
  138. }
  139. $select = in_array($value, $selected) ? ' selected="selected"' : '';
  140. $html .= '<option value="' . OC_Util::sanitizeHTML($value) . '"' . $select . '>' . OC_Util::sanitizeHTML($label) . '</option>'."\n";
  141. }
  142. return $html;
  143. }
  144. /**
  145. * This class provides the templates for owncloud.
  146. */
  147. class OC_Template{
  148. private $renderas; // Create a full page?
  149. private $application; // template Application
  150. private $vars; // Vars
  151. private $template; // The path to the template
  152. private $l10n; // The l10n-Object
  153. private $headers=array(); //custom headers
  154. /**
  155. * @brief Constructor
  156. * @param string $app app providing the template
  157. * @param string $file name of the template file (without suffix)
  158. * @param string $renderas = ""; produce a full page
  159. * @return OC_Template object
  160. *
  161. * This function creates an OC_Template object.
  162. *
  163. * If $renderas is set, OC_Template will try to produce a full page in the
  164. * according layout. For now, renderas can be set to "guest", "user" or
  165. * "admin".
  166. */
  167. public function __construct( $app, $name, $renderas = "" ) {
  168. // Set the private data
  169. $this->renderas = $renderas;
  170. $this->application = $app;
  171. $this->vars = array();
  172. $this->vars['requesttoken'] = OC_Util::callRegister();
  173. $parts = explode('/', $app); // fix translation when app is something like core/lostpassword
  174. $this->l10n = OC_L10N::get($parts[0]);
  175. // Some headers to enhance security
  176. header('X-XSS-Protection: 1; mode=block'); // Enforce browser based XSS filters
  177. header('X-Content-Type-Options: nosniff'); // Disable sniffing the content type for IE
  178. // iFrame Restriction Policy
  179. $xFramePolicy = OC_Config::getValue('xframe_restriction', true);
  180. if($xFramePolicy) {
  181. header('X-Frame-Options: Sameorigin'); // Disallow iFraming from other domains
  182. }
  183. // Content Security Policy
  184. // If you change the standard policy, please also change it in config.sample.php
  185. $policy = OC_Config::getValue('custom_csp_policy',
  186. 'default-src \'self\'; '
  187. .'script-src \'self\' \'unsafe-eval\'; '
  188. .'style-src \'self\' \'unsafe-inline\'; '
  189. .'frame-src *; '
  190. .'img-src *; '
  191. .'font-src \'self\' data:; '
  192. .'media-src *');
  193. header('Content-Security-Policy:'.$policy); // Standard
  194. $this->findTemplate($name);
  195. }
  196. /**
  197. * autodetect the formfactor of the used device
  198. * default -> the normal desktop browser interface
  199. * mobile -> interface for smartphones
  200. * tablet -> interface for tablets
  201. * standalone -> the default interface but without header, footer and
  202. * sidebar, just the application. Useful to use just a specific
  203. * app on the desktop in a standalone window.
  204. */
  205. public static function detectFormfactor() {
  206. // please add more useragent strings for other devices
  207. if(isset($_SERVER['HTTP_USER_AGENT'])) {
  208. if(stripos($_SERVER['HTTP_USER_AGENT'], 'ipad')>0) {
  209. $mode='tablet';
  210. }elseif(stripos($_SERVER['HTTP_USER_AGENT'], 'iphone')>0) {
  211. $mode='mobile';
  212. }elseif((stripos($_SERVER['HTTP_USER_AGENT'], 'N9')>0)
  213. and (stripos($_SERVER['HTTP_USER_AGENT'], 'nokia')>0)) {
  214. $mode='mobile';
  215. }else{
  216. $mode='default';
  217. }
  218. }else{
  219. $mode='default';
  220. }
  221. return($mode);
  222. }
  223. /**
  224. * @brief Returns the formfactor extension for current formfactor
  225. */
  226. static public function getFormFactorExtension()
  227. {
  228. // if the formfactor is not yet autodetected do the
  229. // autodetection now. For possible formfactors check the
  230. // detectFormfactor documentation
  231. if (!\OC::$session->exists('formfactor')) {
  232. \OC::$session->set('formfactor', self::detectFormfactor());
  233. }
  234. // allow manual override via GET parameter
  235. if(isset($_GET['formfactor'])) {
  236. \OC::$session->set('formfactor', $_GET['formfactor']);
  237. }
  238. $formfactor = \OC::$session->get('formfactor');
  239. if($formfactor=='default') {
  240. $fext='';
  241. }elseif($formfactor=='mobile') {
  242. $fext='.mobile';
  243. }elseif($formfactor=='tablet') {
  244. $fext='.tablet';
  245. }elseif($formfactor=='standalone') {
  246. $fext='.standalone';
  247. }else{
  248. $fext='';
  249. }
  250. return $fext;
  251. }
  252. /**
  253. * @brief find the template with the given name
  254. * @param string $name of the template file (without suffix)
  255. *
  256. * Will select the template file for the selected theme and formfactor.
  257. * Checking all the possible locations.
  258. */
  259. protected function findTemplate($name)
  260. {
  261. // Read the selected theme from the config file
  262. $theme = OC_Util::getTheme();
  263. // Read the detected formfactor and use the right file name.
  264. $fext = self::getFormFactorExtension();
  265. $app = $this->application;
  266. // Check if it is a app template or not.
  267. if( $app != "" ) {
  268. // Check if the app is in the app folder or in the root
  269. if( file_exists(OC_App::getAppPath($app)."/templates/" )) {
  270. // Check if the template is overwritten by the selected theme
  271. if ($this->checkPathForTemplate(OC::$SERVERROOT."/themes/$theme/apps/$app/templates/", $name, $fext)) {
  272. }elseif ($this->checkPathForTemplate(OC_App::getAppPath($app)."/templates/", $name, $fext)) {
  273. }
  274. }else{
  275. // Check if the template is overwritten by the selected theme
  276. if ($this->checkPathForTemplate(OC::$SERVERROOT."/themes/$theme/$app/templates/", $name, $fext)) {
  277. }elseif ($this->checkPathForTemplate(OC::$SERVERROOT."/$app/templates/", $name, $fext)) {
  278. }else{
  279. echo('template not found: template:'.$name.' formfactor:'.$fext
  280. .' webroot:'.OC::$WEBROOT.' serverroot:'.OC::$SERVERROOT);
  281. die();
  282. }
  283. }
  284. }else{
  285. // Check if the template is overwritten by the selected theme
  286. if ($this->checkPathForTemplate(OC::$SERVERROOT."/themes/$theme/core/templates/", $name, $fext)) {
  287. } elseif ($this->checkPathForTemplate(OC::$SERVERROOT."/core/templates/", $name, $fext)) {
  288. }else{
  289. echo('template not found: template:'.$name.' formfactor:'.$fext
  290. .' webroot:'.OC::$WEBROOT.' serverroot:'.OC::$SERVERROOT);
  291. die();
  292. }
  293. }
  294. }
  295. /**
  296. * @brief check Path For Template with and without $fext
  297. * @param string $path to check
  298. * @param string $name of the template file (without suffix)
  299. * @param string $fext formfactor extension
  300. * @return bool true when found
  301. *
  302. * Will set $this->template and $this->path if there is a template at
  303. * the specific $path
  304. */
  305. protected function checkPathForTemplate($path, $name, $fext)
  306. {
  307. if ($name =='') return false;
  308. $template = null;
  309. if( is_file( $path.$name.$fext.'.php' )) {
  310. $template = $path.$name.$fext.'.php';
  311. }elseif( is_file( $path.$name.'.php' )) {
  312. $template = $path.$name.'.php';
  313. }
  314. if ($template) {
  315. $this->template = $template;
  316. $this->path = $path;
  317. return true;
  318. }
  319. return false;
  320. }
  321. /**
  322. * @brief Assign variables
  323. * @param string $key key
  324. * @param string $value value
  325. * @return bool
  326. *
  327. * This function assigns a variable. It can be accessed via $_[$key] in
  328. * the template.
  329. *
  330. * If the key existed before, it will be overwritten
  331. */
  332. public function assign( $key, $value) {
  333. $this->vars[$key] = $value;
  334. return true;
  335. }
  336. /**
  337. * @brief Appends a variable
  338. * @param string $key key
  339. * @param string $value value
  340. * @return bool
  341. *
  342. * This function assigns a variable in an array context. If the key already
  343. * exists, the value will be appended. It can be accessed via
  344. * $_[$key][$position] in the template.
  345. */
  346. public function append( $key, $value ) {
  347. if( array_key_exists( $key, $this->vars )) {
  348. $this->vars[$key][] = $value;
  349. }
  350. else{
  351. $this->vars[$key] = array( $value );
  352. }
  353. }
  354. /**
  355. * @brief Add a custom element to the header
  356. * @param string $tag tag name of the element
  357. * @param array $attributes array of attrobutes for the element
  358. * @param string $text the text content for the element
  359. */
  360. public function addHeader( $tag, $attributes, $text='') {
  361. $this->headers[]=array('tag'=>$tag,'attributes'=>$attributes, 'text'=>$text);
  362. }
  363. /**
  364. * @brief Prints the proceeded template
  365. * @return bool
  366. *
  367. * This function proceeds the template and prints its output.
  368. */
  369. public function printPage() {
  370. $data = $this->fetchPage();
  371. if( $data === false ) {
  372. return false;
  373. }
  374. else{
  375. print $data;
  376. return true;
  377. }
  378. }
  379. /**
  380. * @brief Proceeds the template
  381. * @return bool
  382. *
  383. * This function proceeds the template. If $this->renderas is set, it
  384. * will produce a full page.
  385. */
  386. public function fetchPage() {
  387. $data = $this->_fetch();
  388. if( $this->renderas ) {
  389. $page = new OC_TemplateLayout($this->renderas);
  390. // Add custom headers
  391. $page->assign('headers', $this->headers, false);
  392. foreach(OC_Util::$headers as $header) {
  393. $page->append('headers', $header);
  394. }
  395. $page->assign( "content", $data, false );
  396. return $page->fetchPage();
  397. }
  398. else{
  399. return $data;
  400. }
  401. }
  402. /**
  403. * @brief doing the actual work
  404. * @return string content
  405. *
  406. * Includes the template file, fetches its output
  407. */
  408. private function _fetch() {
  409. // Register the variables
  410. $_ = $this->vars;
  411. $l = $this->l10n;
  412. // Execute the template
  413. ob_start();
  414. include $this->template; // <-- we have to use include because we pass $_!
  415. $data = ob_get_contents();
  416. @ob_end_clean();
  417. // return the data
  418. return $data;
  419. }
  420. /**
  421. * @brief Include template
  422. * @return string returns content of included template
  423. *
  424. * Includes another template. use <?php echo $this->inc('template'); ?> to
  425. * do this.
  426. */
  427. public function inc( $file, $additionalparams = null ) {
  428. $_ = $this->vars;
  429. $l = $this->l10n;
  430. if( !is_null($additionalparams)) {
  431. $_ = array_merge( $additionalparams, $this->vars );
  432. }
  433. // Include
  434. ob_start();
  435. include $this->path.$file.'.php';
  436. $data = ob_get_contents();
  437. @ob_end_clean();
  438. // Return data
  439. return $data;
  440. }
  441. /**
  442. * @brief Shortcut to print a simple page for users
  443. * @param string $application The application we render the template for
  444. * @param string $name Name of the template
  445. * @param array $parameters Parameters for the template
  446. * @return bool
  447. */
  448. public static function printUserPage( $application, $name, $parameters = array() ) {
  449. $content = new OC_Template( $application, $name, "user" );
  450. foreach( $parameters as $key => $value ) {
  451. $content->assign( $key, $value );
  452. }
  453. print $content->printPage();
  454. }
  455. /**
  456. * @brief Shortcut to print a simple page for admins
  457. * @param string $application The application we render the template for
  458. * @param string $name Name of the template
  459. * @param array $parameters Parameters for the template
  460. * @return bool
  461. */
  462. public static function printAdminPage( $application, $name, $parameters = array() ) {
  463. $content = new OC_Template( $application, $name, "admin" );
  464. foreach( $parameters as $key => $value ) {
  465. $content->assign( $key, $value );
  466. }
  467. return $content->printPage();
  468. }
  469. /**
  470. * @brief Shortcut to print a simple page for guests
  471. * @param string $application The application we render the template for
  472. * @param string $name Name of the template
  473. * @param string $parameters Parameters for the template
  474. * @return bool
  475. */
  476. public static function printGuestPage( $application, $name, $parameters = array() ) {
  477. $content = new OC_Template( $application, $name, "guest" );
  478. foreach( $parameters as $key => $value ) {
  479. $content->assign( $key, $value );
  480. }
  481. return $content->printPage();
  482. }
  483. /**
  484. * @brief Print a fatal error page and terminates the script
  485. * @param string $error The error message to show
  486. * @param string $hint An optional hint message
  487. * Warning: All data passed to $hint needs to get sanitized using OC_Util::sanitizeHTML
  488. */
  489. public static function printErrorPage( $error_msg, $hint = '' ) {
  490. $content = new OC_Template( '', 'error', 'error' );
  491. $errors = array(array('error' => $error_msg, 'hint' => $hint));
  492. $content->assign( 'errors', $errors );
  493. $content->printPage();
  494. die();
  495. }
  496. /**
  497. * print error page using Exception details
  498. * @param Exception $exception
  499. */
  500. public static function printExceptionErrorPage(Exception $exception) {
  501. $error_msg = $exception->getMessage();
  502. if ($exception->getCode()) {
  503. $error_msg = '['.$exception->getCode().'] '.$error_msg;
  504. }
  505. $hint = $exception->getTraceAsString();
  506. while (method_exists($exception,'previous') && $exception = $exception->previous()) {
  507. $error_msg .= '<br/>Caused by: ';
  508. if ($exception->getCode()) {
  509. $error_msg .= '['.$exception->getCode().'] ';
  510. }
  511. $error_msg .= $exception->getMessage();
  512. };
  513. self::printErrorPage($error_msg, $hint);
  514. }
  515. }