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

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