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 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510
  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. $mbytes = round($bytes/(1024*1024), 1);
  82. if($bytes == 0) { return '0'; }
  83. else if($mbytes < 0.1) { return '&lt; 0.1'; }
  84. else if($mbytes > 1000) { return '&gt; 1000'; }
  85. else { return number_format($mbytes, 1); }
  86. }
  87. function relative_modified_date($timestamp) {
  88. $l=OC_L10N::get('lib');
  89. $timediff = time() - $timestamp;
  90. $diffminutes = round($timediff/60);
  91. $diffhours = round($diffminutes/60);
  92. $diffdays = round($diffhours/24);
  93. $diffmonths = round($diffdays/31);
  94. if($timediff < 60) { return $l->t('seconds ago'); }
  95. else if($timediff < 120) { return $l->t('1 minute ago'); }
  96. else if($timediff < 3600) { return $l->t('%d minutes ago', $diffminutes); }
  97. else if($timediff < 7200) { return $l->t('1 hour ago'); }
  98. else if($timediff < 86400) { return $l->t('%d hours ago', $diffhours); }
  99. else if((date('G')-$diffhours) > 0) { return $l->t('today'); }
  100. else if((date('G')-$diffhours) > -24) { return $l->t('yesterday'); }
  101. else if($timediff < 2678400) { return $l->t('%d days ago', $diffdays); }
  102. else if($timediff < 5184000) { return $l->t('last month'); }
  103. else if((date('n')-$diffmonths) > 0) { return $l->t('%d months ago', $diffmonths); }
  104. else if($timediff < 63113852) { return $l->t('last year'); }
  105. else { return $l->t('years ago'); }
  106. }
  107. function html_select_options($options, $selected, $params=array()) {
  108. if (!is_array($selected)) {
  109. $selected=array($selected);
  110. }
  111. if (isset($params['combine']) && $params['combine']) {
  112. $options = array_combine($options, $options);
  113. }
  114. $value_name = $label_name = false;
  115. if (isset($params['value'])) {
  116. $value_name = $params['value'];
  117. }
  118. if (isset($params['label'])) {
  119. $label_name = $params['label'];
  120. }
  121. $html = '';
  122. foreach($options as $value => $label) {
  123. if ($value_name && is_array($label)) {
  124. $value = $label[$value_name];
  125. }
  126. if ($label_name && is_array($label)) {
  127. $label = $label[$label_name];
  128. }
  129. $select = in_array($value, $selected) ? ' selected="selected"' : '';
  130. $html .= '<option value="' . $value . '"' . $select . '>' . $label . '</option>'."\n";
  131. }
  132. return $html;
  133. }
  134. /**
  135. * This class provides the templates for owncloud.
  136. */
  137. class OC_Template{
  138. private $renderas; // Create a full page?
  139. private $application; // template Application
  140. private $vars; // Vars
  141. private $template; // The path to the template
  142. private $l10n; // The l10n-Object
  143. private $headers=array(); //custom headers
  144. /**
  145. * @brief Constructor
  146. * @param string $app app providing the template
  147. * @param string $file name of the template file (without suffix)
  148. * @param string $renderas = ""; produce a full page
  149. * @return OC_Template object
  150. *
  151. * This function creates an OC_Template object.
  152. *
  153. * If $renderas is set, OC_Template will try to produce a full page in the
  154. * according layout. For now, renderas can be set to "guest", "user" or
  155. * "admin".
  156. */
  157. public function __construct( $app, $name, $renderas = "" ) {
  158. // Set the private data
  159. $this->renderas = $renderas;
  160. $this->application = $app;
  161. $this->vars = array();
  162. $this->vars['requesttoken'] = OC_Util::callRegister();
  163. $parts = explode('/', $app); // fix translation when app is something like core/lostpassword
  164. $this->l10n = OC_L10N::get($parts[0]);
  165. // Some headers to enhance security
  166. header('X-Frame-Options: Sameorigin');
  167. header('X-XSS-Protection: 1; mode=block');
  168. header('X-Content-Type-Options: nosniff');
  169. $this->findTemplate($name);
  170. }
  171. /**
  172. * autodetect the formfactor of the used device
  173. * default -> the normal desktop browser interface
  174. * mobile -> interface for smartphones
  175. * tablet -> interface for tablets
  176. * standalone -> the default interface but without header, footer and
  177. * sidebar, just the application. Useful to use just a specific
  178. * app on the desktop in a standalone window.
  179. */
  180. public static function detectFormfactor() {
  181. // please add more useragent strings for other devices
  182. if(isset($_SERVER['HTTP_USER_AGENT'])) {
  183. if(stripos($_SERVER['HTTP_USER_AGENT'], 'ipad')>0) {
  184. $mode='tablet';
  185. }elseif(stripos($_SERVER['HTTP_USER_AGENT'], 'iphone')>0) {
  186. $mode='mobile';
  187. }elseif((stripos($_SERVER['HTTP_USER_AGENT'], 'N9')>0) and (stripos($_SERVER['HTTP_USER_AGENT'], 'nokia')>0)) {
  188. $mode='mobile';
  189. }else{
  190. $mode='default';
  191. }
  192. }else{
  193. $mode='default';
  194. }
  195. return($mode);
  196. }
  197. /**
  198. * @brief Returns the formfactor extension for current formfactor
  199. */
  200. static public function getFormFactorExtension()
  201. {
  202. // if the formfactor is not yet autodetected do the
  203. // autodetection now. For possible formfactors check the
  204. // detectFormfactor documentation
  205. if(!isset($_SESSION['formfactor'])) {
  206. $_SESSION['formfactor'] = self::detectFormfactor();
  207. }
  208. // allow manual override via GET parameter
  209. if(isset($_GET['formfactor'])) {
  210. $_SESSION['formfactor']=$_GET['formfactor'];
  211. }
  212. $formfactor=$_SESSION['formfactor'];
  213. if($formfactor=='default') {
  214. $fext='';
  215. }elseif($formfactor=='mobile') {
  216. $fext='.mobile';
  217. }elseif($formfactor=='tablet') {
  218. $fext='.tablet';
  219. }elseif($formfactor=='standalone') {
  220. $fext='.standalone';
  221. }else{
  222. $fext='';
  223. }
  224. return $fext;
  225. }
  226. /**
  227. * @brief find the template with the given name
  228. * @param string $name of the template file (without suffix)
  229. *
  230. * Will select the template file for the selected theme and formfactor.
  231. * Checking all the possible locations.
  232. */
  233. protected function findTemplate($name)
  234. {
  235. // Read the selected theme from the config file
  236. $theme=OC_Config::getValue( "theme" );
  237. // Read the detected formfactor and use the right file name.
  238. $fext = self::getFormFactorExtension();
  239. $app = $this->application;
  240. // Check if it is a app template or not.
  241. if( $app != "" ) {
  242. // Check if the app is in the app folder or in the root
  243. if( file_exists(OC_App::getAppPath($app)."/templates/" )) {
  244. // Check if the template is overwritten by the selected theme
  245. if ($this->checkPathForTemplate(OC::$SERVERROOT."/themes/$theme/apps/$app/templates/", $name, $fext)) {
  246. }elseif ($this->checkPathForTemplate(OC_App::getAppPath($app)."/templates/", $name, $fext)) {
  247. }
  248. }else{
  249. // Check if the template is overwritten by the selected theme
  250. if ($this->checkPathForTemplate(OC::$SERVERROOT."/themes/$theme/$app/templates/", $name, $fext)) {
  251. }elseif ($this->checkPathForTemplate(OC::$SERVERROOT."/$app/templates/", $name, $fext)) {
  252. }else{
  253. echo('template not found: template:'.$name.' formfactor:'.$fext.' webroot:'.OC::$WEBROOT.' serverroot:'.OC::$SERVERROOT);
  254. die();
  255. }
  256. }
  257. }else{
  258. // Check if the template is overwritten by the selected theme
  259. if ($this->checkPathForTemplate(OC::$SERVERROOT."/themes/$theme/core/templates/", $name, $fext)) {
  260. } elseif ($this->checkPathForTemplate(OC::$SERVERROOT."/core/templates/", $name, $fext)) {
  261. }else{
  262. echo('template not found: template:'.$name.' formfactor:'.$fext.' webroot:'.OC::$WEBROOT.' serverroot:'.OC::$SERVERROOT);
  263. die();
  264. }
  265. }
  266. }
  267. /**
  268. * @brief check Path For Template with and without $fext
  269. * @param string $path to check
  270. * @param string $name of the template file (without suffix)
  271. * @param string $fext formfactor extension
  272. * @return bool true when found
  273. *
  274. * Will set $this->template and $this->path if there is a template at
  275. * the specific $path
  276. */
  277. protected function checkPathForTemplate($path, $name, $fext)
  278. {
  279. if ($name =='') return false;
  280. $template = null;
  281. if( is_file( $path.$name.$fext.'.php' )) {
  282. $template = $path.$name.$fext.'.php';
  283. }elseif( is_file( $path.$name.'.php' )) {
  284. $template = $path.$name.'.php';
  285. }
  286. if ($template) {
  287. $this->template = $template;
  288. $this->path = $path;
  289. return true;
  290. }
  291. return false;
  292. }
  293. /**
  294. * @brief Assign variables
  295. * @param string $key key
  296. * @param string $value value
  297. * @param bool $sanitizeHTML false, if data shouldn't get passed through htmlentities
  298. * @return bool
  299. *
  300. * This function assigns a variable. It can be accessed via $_[$key] in
  301. * the template.
  302. *
  303. * If the key existed before, it will be overwritten
  304. */
  305. public function assign( $key, $value, $sanitizeHTML=true ) {
  306. if($sanitizeHTML == true) $value=OC_Util::sanitizeHTML($value);
  307. $this->vars[$key] = $value;
  308. return true;
  309. }
  310. /**
  311. * @brief Appends a variable
  312. * @param string $key key
  313. * @param string $value value
  314. * @return bool
  315. *
  316. * This function assigns a variable in an array context. If the key already
  317. * exists, the value will be appended. It can be accessed via
  318. * $_[$key][$position] in the template.
  319. */
  320. public function append( $key, $value ) {
  321. if( array_key_exists( $key, $this->vars )) {
  322. $this->vars[$key][] = $value;
  323. }
  324. else{
  325. $this->vars[$key] = array( $value );
  326. }
  327. }
  328. /**
  329. * @brief Add a custom element to the header
  330. * @param string $tag tag name of the element
  331. * @param array $attributes array of attrobutes for the element
  332. * @param string $text the text content for the element
  333. */
  334. public function addHeader( $tag, $attributes, $text='') {
  335. $this->headers[]=array('tag'=>$tag,'attributes'=>$attributes, 'text'=>$text);
  336. }
  337. /**
  338. * @brief Prints the proceeded template
  339. * @return bool
  340. *
  341. * This function proceeds the template and prints its output.
  342. */
  343. public function printPage() {
  344. $data = $this->fetchPage();
  345. if( $data === false ) {
  346. return false;
  347. }
  348. else{
  349. print $data;
  350. return true;
  351. }
  352. }
  353. /**
  354. * @brief Proceeds the template
  355. * @return bool
  356. *
  357. * This function proceeds the template. If $this->renderas is set, it
  358. * will produce a full page.
  359. */
  360. public function fetchPage() {
  361. $data = $this->_fetch();
  362. if( $this->renderas ) {
  363. $page = new OC_TemplateLayout($this->renderas);
  364. if($this->renderas == 'user') {
  365. $page->assign('requesttoken', $this->vars['requesttoken']);
  366. }
  367. // Add custom headers
  368. $page->assign('headers', $this->headers, false);
  369. foreach(OC_Util::$headers as $header) {
  370. $page->append('headers', $header);
  371. }
  372. $page->assign( "content", $data, false );
  373. return $page->fetchPage();
  374. }
  375. else{
  376. return $data;
  377. }
  378. }
  379. /**
  380. * @brief doing the actual work
  381. * @return string content
  382. *
  383. * Includes the template file, fetches its output
  384. */
  385. private function _fetch() {
  386. // Register the variables
  387. $_ = $this->vars;
  388. $l = $this->l10n;
  389. // Execute the template
  390. ob_start();
  391. include $this->template; // <-- we have to use include because we pass $_!
  392. $data = ob_get_contents();
  393. @ob_end_clean();
  394. // return the data
  395. return $data;
  396. }
  397. /**
  398. * @brief Include template
  399. * @return string returns content of included template
  400. *
  401. * Includes another template. use <?php echo $this->inc('template'); ?> to
  402. * do this.
  403. */
  404. public function inc( $file, $additionalparams = null ) {
  405. $_ = $this->vars;
  406. $l = $this->l10n;
  407. if( !is_null($additionalparams)) {
  408. $_ = array_merge( $additionalparams, $this->vars );
  409. }
  410. // Include
  411. ob_start();
  412. include $this->path.$file.'.php';
  413. $data = ob_get_contents();
  414. @ob_end_clean();
  415. // Return data
  416. return $data;
  417. }
  418. /**
  419. * @brief Shortcut to print a simple page for users
  420. * @param string $application The application we render the template for
  421. * @param string $name Name of the template
  422. * @param array $parameters Parameters for the template
  423. * @return bool
  424. */
  425. public static function printUserPage( $application, $name, $parameters = array() ) {
  426. $content = new OC_Template( $application, $name, "user" );
  427. foreach( $parameters as $key => $value ) {
  428. $content->assign( $key, $value, false );
  429. }
  430. print $content->printPage();
  431. }
  432. /**
  433. * @brief Shortcut to print a simple page for admins
  434. * @param string $application The application we render the template for
  435. * @param string $name Name of the template
  436. * @param array $parameters Parameters for the template
  437. * @return bool
  438. */
  439. public static function printAdminPage( $application, $name, $parameters = array() ) {
  440. $content = new OC_Template( $application, $name, "admin" );
  441. foreach( $parameters as $key => $value ) {
  442. $content->assign( $key, $value, false );
  443. }
  444. return $content->printPage();
  445. }
  446. /**
  447. * @brief Shortcut to print a simple page for guests
  448. * @param string $application The application we render the template for
  449. * @param string $name Name of the template
  450. * @param string $parameters Parameters for the template
  451. * @return bool
  452. */
  453. public static function printGuestPage( $application, $name, $parameters = array() ) {
  454. $content = new OC_Template( $application, $name, "guest" );
  455. foreach( $parameters as $key => $value ) {
  456. $content->assign( $key, $value, false );
  457. }
  458. return $content->printPage();
  459. }
  460. /**
  461. * @brief Print a fatal error page and terminates the script
  462. * @param string $error The error message to show
  463. * @param string $hint An option hint message
  464. */
  465. public static function printErrorPage( $error_msg, $hint = '' ) {
  466. $errors = array(array('error' => $error_msg, 'hint' => $hint));
  467. OC_Template::printGuestPage("", "error", array("errors" => $errors));
  468. die();
  469. }
  470. }