You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

template.php 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532
  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-Frame-Options: Sameorigin'); // Disallow iFraming from other domains
  177. header('X-XSS-Protection: 1; mode=block'); // Enforce browser based XSS filters
  178. header('X-Content-Type-Options: nosniff'); // Disable sniffing the content type for IE
  179. // Content Security Policy
  180. // If you change the standard policy, please also change it in config.sample.php
  181. $policy = OC_Config::getValue('custom_csp_policy',
  182. 'default-src \'self\'; '
  183. .'script-src \'self\' \'unsafe-eval\'; '
  184. .'style-src \'self\' \'unsafe-inline\'; '
  185. .'frame-src *; '
  186. .'img-src *; '
  187. .'font-src \'self\' data:');
  188. header('Content-Security-Policy:'.$policy); // Standard
  189. $this->findTemplate($name);
  190. }
  191. /**
  192. * autodetect the formfactor of the used device
  193. * default -> the normal desktop browser interface
  194. * mobile -> interface for smartphones
  195. * tablet -> interface for tablets
  196. * standalone -> the default interface but without header, footer and
  197. * sidebar, just the application. Useful to use just a specific
  198. * app on the desktop in a standalone window.
  199. */
  200. public static function detectFormfactor() {
  201. // please add more useragent strings for other devices
  202. if(isset($_SERVER['HTTP_USER_AGENT'])) {
  203. if(stripos($_SERVER['HTTP_USER_AGENT'], 'ipad')>0) {
  204. $mode='tablet';
  205. }elseif(stripos($_SERVER['HTTP_USER_AGENT'], 'iphone')>0) {
  206. $mode='mobile';
  207. }elseif((stripos($_SERVER['HTTP_USER_AGENT'], 'N9')>0)
  208. and (stripos($_SERVER['HTTP_USER_AGENT'], 'nokia')>0)) {
  209. $mode='mobile';
  210. }else{
  211. $mode='default';
  212. }
  213. }else{
  214. $mode='default';
  215. }
  216. return($mode);
  217. }
  218. /**
  219. * @brief Returns the formfactor extension for current formfactor
  220. */
  221. static public function getFormFactorExtension()
  222. {
  223. // if the formfactor is not yet autodetected do the
  224. // autodetection now. For possible formfactors check the
  225. // detectFormfactor documentation
  226. if(!isset($_SESSION['formfactor'])) {
  227. $_SESSION['formfactor'] = self::detectFormfactor();
  228. }
  229. // allow manual override via GET parameter
  230. if(isset($_GET['formfactor'])) {
  231. $_SESSION['formfactor']=$_GET['formfactor'];
  232. }
  233. $formfactor=$_SESSION['formfactor'];
  234. if($formfactor=='default') {
  235. $fext='';
  236. }elseif($formfactor=='mobile') {
  237. $fext='.mobile';
  238. }elseif($formfactor=='tablet') {
  239. $fext='.tablet';
  240. }elseif($formfactor=='standalone') {
  241. $fext='.standalone';
  242. }else{
  243. $fext='';
  244. }
  245. return $fext;
  246. }
  247. /**
  248. * @brief find the template with the given name
  249. * @param string $name of the template file (without suffix)
  250. *
  251. * Will select the template file for the selected theme and formfactor.
  252. * Checking all the possible locations.
  253. */
  254. protected function findTemplate($name)
  255. {
  256. // Read the selected theme from the config file
  257. $theme=OC_Config::getValue( "theme" );
  258. // Read the detected formfactor and use the right file name.
  259. $fext = self::getFormFactorExtension();
  260. $app = $this->application;
  261. // Check if it is a app template or not.
  262. if( $app != "" ) {
  263. // Check if the app is in the app folder or in the root
  264. if( file_exists(OC_App::getAppPath($app)."/templates/" )) {
  265. // Check if the template is overwritten by the selected theme
  266. if ($this->checkPathForTemplate(OC::$SERVERROOT."/themes/$theme/apps/$app/templates/", $name, $fext)) {
  267. }elseif ($this->checkPathForTemplate(OC_App::getAppPath($app)."/templates/", $name, $fext)) {
  268. }
  269. }else{
  270. // Check if the template is overwritten by the selected theme
  271. if ($this->checkPathForTemplate(OC::$SERVERROOT."/themes/$theme/$app/templates/", $name, $fext)) {
  272. }elseif ($this->checkPathForTemplate(OC::$SERVERROOT."/$app/templates/", $name, $fext)) {
  273. }else{
  274. echo('template not found: template:'.$name.' formfactor:'.$fext
  275. .' webroot:'.OC::$WEBROOT.' serverroot:'.OC::$SERVERROOT);
  276. die();
  277. }
  278. }
  279. }else{
  280. // Check if the template is overwritten by the selected theme
  281. if ($this->checkPathForTemplate(OC::$SERVERROOT."/themes/$theme/core/templates/", $name, $fext)) {
  282. } elseif ($this->checkPathForTemplate(OC::$SERVERROOT."/core/templates/", $name, $fext)) {
  283. }else{
  284. echo('template not found: template:'.$name.' formfactor:'.$fext
  285. .' webroot:'.OC::$WEBROOT.' serverroot:'.OC::$SERVERROOT);
  286. die();
  287. }
  288. }
  289. }
  290. /**
  291. * @brief check Path For Template with and without $fext
  292. * @param string $path to check
  293. * @param string $name of the template file (without suffix)
  294. * @param string $fext formfactor extension
  295. * @return bool true when found
  296. *
  297. * Will set $this->template and $this->path if there is a template at
  298. * the specific $path
  299. */
  300. protected function checkPathForTemplate($path, $name, $fext)
  301. {
  302. if ($name =='') return false;
  303. $template = null;
  304. if( is_file( $path.$name.$fext.'.php' )) {
  305. $template = $path.$name.$fext.'.php';
  306. }elseif( is_file( $path.$name.'.php' )) {
  307. $template = $path.$name.'.php';
  308. }
  309. if ($template) {
  310. $this->template = $template;
  311. $this->path = $path;
  312. return true;
  313. }
  314. return false;
  315. }
  316. /**
  317. * @brief Assign variables
  318. * @param string $key key
  319. * @param string $value value
  320. * @return bool
  321. *
  322. * This function assigns a variable. It can be accessed via $_[$key] in
  323. * the template.
  324. *
  325. * If the key existed before, it will be overwritten
  326. */
  327. public function assign( $key, $value) {
  328. $this->vars[$key] = $value;
  329. return true;
  330. }
  331. /**
  332. * @brief Appends a variable
  333. * @param string $key key
  334. * @param string $value value
  335. * @return bool
  336. *
  337. * This function assigns a variable in an array context. If the key already
  338. * exists, the value will be appended. It can be accessed via
  339. * $_[$key][$position] in the template.
  340. */
  341. public function append( $key, $value ) {
  342. if( array_key_exists( $key, $this->vars )) {
  343. $this->vars[$key][] = $value;
  344. }
  345. else{
  346. $this->vars[$key] = array( $value );
  347. }
  348. }
  349. /**
  350. * @brief Add a custom element to the header
  351. * @param string $tag tag name of the element
  352. * @param array $attributes array of attrobutes for the element
  353. * @param string $text the text content for the element
  354. */
  355. public function addHeader( $tag, $attributes, $text='') {
  356. $this->headers[]=array('tag'=>$tag,'attributes'=>$attributes, 'text'=>$text);
  357. }
  358. /**
  359. * @brief Prints the proceeded template
  360. * @return bool
  361. *
  362. * This function proceeds the template and prints its output.
  363. */
  364. public function printPage() {
  365. $data = $this->fetchPage();
  366. if( $data === false ) {
  367. return false;
  368. }
  369. else{
  370. print $data;
  371. return true;
  372. }
  373. }
  374. /**
  375. * @brief Proceeds the template
  376. * @return bool
  377. *
  378. * This function proceeds the template. If $this->renderas is set, it
  379. * will produce a full page.
  380. */
  381. public function fetchPage() {
  382. $data = $this->_fetch();
  383. if( $this->renderas ) {
  384. $page = new OC_TemplateLayout($this->renderas);
  385. // Add custom headers
  386. $page->assign('headers', $this->headers, false);
  387. foreach(OC_Util::$headers as $header) {
  388. $page->append('headers', $header);
  389. }
  390. $page->assign( "content", $data, false );
  391. return $page->fetchPage();
  392. }
  393. else{
  394. return $data;
  395. }
  396. }
  397. /**
  398. * @brief doing the actual work
  399. * @return string content
  400. *
  401. * Includes the template file, fetches its output
  402. */
  403. private function _fetch() {
  404. // Register the variables
  405. $_ = $this->vars;
  406. $l = $this->l10n;
  407. // Execute the template
  408. ob_start();
  409. include $this->template; // <-- we have to use include because we pass $_!
  410. $data = ob_get_contents();
  411. @ob_end_clean();
  412. // return the data
  413. return $data;
  414. }
  415. /**
  416. * @brief Include template
  417. * @return string returns content of included template
  418. *
  419. * Includes another template. use <?php echo $this->inc('template'); ?> to
  420. * do this.
  421. */
  422. public function inc( $file, $additionalparams = null ) {
  423. $_ = $this->vars;
  424. $l = $this->l10n;
  425. if( !is_null($additionalparams)) {
  426. $_ = array_merge( $additionalparams, $this->vars );
  427. }
  428. // Include
  429. ob_start();
  430. include $this->path.$file.'.php';
  431. $data = ob_get_contents();
  432. @ob_end_clean();
  433. // Return data
  434. return $data;
  435. }
  436. /**
  437. * @brief Shortcut to print a simple page for users
  438. * @param string $application The application we render the template for
  439. * @param string $name Name of the template
  440. * @param array $parameters Parameters for the template
  441. * @return bool
  442. */
  443. public static function printUserPage( $application, $name, $parameters = array() ) {
  444. $content = new OC_Template( $application, $name, "user" );
  445. foreach( $parameters as $key => $value ) {
  446. $content->assign( $key, $value );
  447. }
  448. print $content->printPage();
  449. }
  450. /**
  451. * @brief Shortcut to print a simple page for admins
  452. * @param string $application The application we render the template for
  453. * @param string $name Name of the template
  454. * @param array $parameters Parameters for the template
  455. * @return bool
  456. */
  457. public static function printAdminPage( $application, $name, $parameters = array() ) {
  458. $content = new OC_Template( $application, $name, "admin" );
  459. foreach( $parameters as $key => $value ) {
  460. $content->assign( $key, $value );
  461. }
  462. return $content->printPage();
  463. }
  464. /**
  465. * @brief Shortcut to print a simple page for guests
  466. * @param string $application The application we render the template for
  467. * @param string $name Name of the template
  468. * @param string $parameters Parameters for the template
  469. * @return bool
  470. */
  471. public static function printGuestPage( $application, $name, $parameters = array() ) {
  472. $content = new OC_Template( $application, $name, "guest" );
  473. foreach( $parameters as $key => $value ) {
  474. $content->assign( $key, $value );
  475. }
  476. return $content->printPage();
  477. }
  478. /**
  479. * @brief Print a fatal error page and terminates the script
  480. * @param string $error The error message to show
  481. * @param string $hint An optional hint message
  482. * Warning: All data passed to $hint needs to get sanitized using OC_Util::sanitizeHTML
  483. */
  484. public static function printErrorPage( $error_msg, $hint = '' ) {
  485. $content = new OC_Template( '', 'error', 'error' );
  486. $errors = array(array('error' => $error_msg, 'hint' => $hint));
  487. $content->assign( 'errors', $errors );
  488. $content->printPage();
  489. die();
  490. }
  491. }