aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2016-05-10 23:48:51 +0200
committerArthurHoaro <arthur@hoa.ro>2016-05-13 08:48:18 +0200
commit03eb19ac60d54442332077fa35a9b0d4e33df365 (patch)
tree53e43d7995f714b7419497eb928c2ec1317db512
parentd95533778d86bb6c6de3b14a9da35e6d6e6428bd (diff)
downloadShaarli-03eb19ac60d54442332077fa35a9b0d4e33df365.tar.gz
Shaarli-03eb19ac60d54442332077fa35a9b0d4e33df365.tar.zst
Shaarli-03eb19ac60d54442332077fa35a9b0d4e33df365.zip
Extract PageBuilder class from index.php
-rw-r--r--application/PageBuilder.php145
-rw-r--r--index.php125
2 files changed, 147 insertions, 123 deletions
diff --git a/application/PageBuilder.php b/application/PageBuilder.php
new file mode 100644
index 00000000..82580787
--- /dev/null
+++ b/application/PageBuilder.php
@@ -0,0 +1,145 @@
1<?php
2
3/**
4 * This class is in charge of building the final page.
5 * (This is basically a wrapper around RainTPL which pre-fills some fields.)
6 * $p = new PageBuilder();
7 * $p->assign('myfield','myvalue');
8 * $p->renderPage('mytemplate');
9 */
10class PageBuilder
11{
12 /**
13 * @var RainTPL RainTPL instance.
14 */
15 private $tpl;
16
17 /**
18 * PageBuilder constructor.
19 * $tpl is initialized at false for lazy loading.
20 */
21 function __construct()
22 {
23 $this->tpl = false;
24 }
25
26 /**
27 * Initialize all default tpl tags.
28 */
29 private function initialize()
30 {
31 $this->tpl = new RainTPL();
32
33 try {
34 $version = ApplicationUtils::checkUpdate(
35 shaarli_version,
36 $GLOBALS['config']['UPDATECHECK_FILENAME'],
37 $GLOBALS['config']['UPDATECHECK_INTERVAL'],
38 $GLOBALS['config']['ENABLE_UPDATECHECK'],
39 isLoggedIn(),
40 $GLOBALS['config']['UPDATECHECK_BRANCH']
41 );
42 $this->tpl->assign('newVersion', escape($version));
43 $this->tpl->assign('versionError', '');
44
45 } catch (Exception $exc) {
46 logm($GLOBALS['config']['LOG_FILE'], $_SERVER['REMOTE_ADDR'], $exc->getMessage());
47 $this->tpl->assign('newVersion', '');
48 $this->tpl->assign('versionError', escape($exc->getMessage()));
49 }
50
51 $this->tpl->assign('feedurl', escape(index_url($_SERVER)));
52 $searchcrits = ''; // Search criteria
53 if (!empty($_GET['searchtags'])) {
54 $searchcrits .= '&searchtags=' . urlencode($_GET['searchtags']);
55 }
56 if (!empty($_GET['searchterm'])) {
57 $searchcrits .= '&searchterm=' . urlencode($_GET['searchterm']);
58 }
59 $this->tpl->assign('searchcrits', $searchcrits);
60 $this->tpl->assign('source', index_url($_SERVER));
61 $this->tpl->assign('version', shaarli_version);
62 $this->tpl->assign('scripturl', index_url($_SERVER));
63 $this->tpl->assign('pagetitle', 'Shaarli');
64 $this->tpl->assign('privateonly', !empty($_SESSION['privateonly'])); // Show only private links?
65 if (!empty($GLOBALS['title'])) {
66 $this->tpl->assign('pagetitle', $GLOBALS['title']);
67 }
68 if (!empty($GLOBALS['titleLink'])) {
69 $this->tpl->assign('titleLink', $GLOBALS['titleLink']);
70 }
71 if (!empty($GLOBALS['pagetitle'])) {
72 $this->tpl->assign('pagetitle', $GLOBALS['pagetitle']);
73 }
74 $this->tpl->assign('shaarlititle', empty($GLOBALS['title']) ? 'Shaarli': $GLOBALS['title']);
75 if (!empty($GLOBALS['plugin_errors'])) {
76 $this->tpl->assign('plugin_errors', $GLOBALS['plugin_errors']);
77 }
78 }
79
80 /**
81 * The following assign() method is basically the same as RainTPL (except lazy loading)
82 *
83 * @param string $placeholder Template placeholder.
84 * @param mixed $value Value to assign.
85 */
86 public function assign($placeholder, $value)
87 {
88 // Lazy initialization
89 if ($this->tpl === false) {
90 $this->initialize();
91 }
92 $this->tpl->assign($placeholder, $value);
93 }
94
95 /**
96 * Assign an array of data to the template builder.
97 *
98 * @param array $data Data to assign.
99 *
100 * @return false if invalid data.
101 */
102 public function assignAll($data)
103 {
104 // Lazy initialization
105 if ($this->tpl === false) {
106 $this->initialize();
107 }
108
109 if (empty($data) || !is_array($data)){
110 return false;
111 }
112
113 foreach ($data as $key => $value) {
114 $this->assign($key, $value);
115 }
116 }
117
118 /**
119 * Render a specific page (using a template file).
120 * e.g. $pb->renderPage('picwall');
121 *
122 * @param string $page Template filename (without extension).
123 */
124 public function renderPage($page)
125 {
126 // Lazy initialization
127 if ($this->tpl===false) {
128 $this->initialize();
129 }
130 $this->tpl->draw($page);
131 }
132
133 /**
134 * Render a 404 page (uses the template : tpl/404.tpl)
135 * usage : $PAGE->render404('The link was deleted')
136 *
137 * @param string $message A messate to display what is not found
138 */
139 public function render404($message = 'The page you are trying to reach does not exist or has been deleted.')
140 {
141 header($_SERVER['SERVER_PROTOCOL'] . ' 404 Not Found');
142 $this->tpl->assign('error_message', $message);
143 $this->renderPage('404');
144 }
145}
diff --git a/index.php b/index.php
index 408aeae9..01c23195 100644
--- a/index.php
+++ b/index.php
@@ -162,6 +162,7 @@ require_once 'application/LinkDB.php';
162require_once 'application/LinkFilter.php'; 162require_once 'application/LinkFilter.php';
163require_once 'application/LinkUtils.php'; 163require_once 'application/LinkUtils.php';
164require_once 'application/NetscapeBookmarkUtils.php'; 164require_once 'application/NetscapeBookmarkUtils.php';
165require_once 'application/PageBuilder.php';
165require_once 'application/TimeZone.php'; 166require_once 'application/TimeZone.php';
166require_once 'application/Url.php'; 167require_once 'application/Url.php';
167require_once 'application/Utils.php'; 168require_once 'application/Utils.php';
@@ -563,128 +564,6 @@ function tokenOk($token)
563} 564}
564 565
565// ------------------------------------------------------------------------------------------ 566// ------------------------------------------------------------------------------------------
566/* This class is in charge of building the final page.
567 (This is basically a wrapper around RainTPL which pre-fills some fields.)
568 p = new pageBuilder;
569 p.assign('myfield','myvalue');
570 p.renderPage('mytemplate');
571
572*/
573class pageBuilder
574{
575 private $tpl; // RainTPL template
576
577 function __construct()
578 {
579 $this->tpl = false;
580 }
581
582 /**
583 * Initialize all default tpl tags.
584 */
585 private function initialize()
586 {
587 $this->tpl = new RainTPL;
588
589 try {
590 $version = ApplicationUtils::checkUpdate(
591 shaarli_version,
592 $GLOBALS['config']['UPDATECHECK_FILENAME'],
593 $GLOBALS['config']['UPDATECHECK_INTERVAL'],
594 $GLOBALS['config']['ENABLE_UPDATECHECK'],
595 isLoggedIn(),
596 $GLOBALS['config']['UPDATECHECK_BRANCH']
597 );
598 $this->tpl->assign('newVersion', escape($version));
599 $this->tpl->assign('versionError', '');
600
601 } catch (Exception $exc) {
602 logm($GLOBALS['config']['LOG_FILE'], $_SERVER['REMOTE_ADDR'], $exc->getMessage());
603 $this->tpl->assign('newVersion', '');
604 $this->tpl->assign('versionError', escape($exc->getMessage()));
605 }
606
607 $this->tpl->assign('feedurl', escape(index_url($_SERVER)));
608 $searchcrits = ''; // Search criteria
609 if (!empty($_GET['searchtags'])) {
610 $searchcrits .= '&searchtags=' . urlencode($_GET['searchtags']);
611 }
612 if (!empty($_GET['searchterm'])) {
613 $searchcrits .= '&searchterm=' . urlencode($_GET['searchterm']);
614 }
615 $this->tpl->assign('searchcrits', $searchcrits);
616 $this->tpl->assign('source', index_url($_SERVER));
617 $this->tpl->assign('version', shaarli_version);
618 $this->tpl->assign('scripturl', index_url($_SERVER));
619 $this->tpl->assign('pagetitle', 'Shaarli');
620 $this->tpl->assign('privateonly', !empty($_SESSION['privateonly'])); // Show only private links?
621 if (!empty($GLOBALS['title'])) {
622 $this->tpl->assign('pagetitle', $GLOBALS['title']);
623 }
624 if (!empty($GLOBALS['titleLink'])) {
625 $this->tpl->assign('titleLink', $GLOBALS['titleLink']);
626 }
627 if (!empty($GLOBALS['pagetitle'])) {
628 $this->tpl->assign('pagetitle', $GLOBALS['pagetitle']);
629 }
630 $this->tpl->assign('shaarlititle', empty($GLOBALS['title']) ? 'Shaarli': $GLOBALS['title']);
631 if (!empty($GLOBALS['plugin_errors'])) {
632 $this->tpl->assign('plugin_errors', $GLOBALS['plugin_errors']);
633 }
634 }
635
636 // The following assign() method is basically the same as RainTPL (except that it's lazy)
637 public function assign($what,$where)
638 {
639 if ($this->tpl===false) $this->initialize(); // Lazy initialization
640 $this->tpl->assign($what,$where);
641 }
642
643 /**
644 * Assign an array of data to the template builder.
645 *
646 * @param array $data Data to assign.
647 *
648 * @return false if invalid data.
649 */
650 public function assignAll($data)
651 {
652 // Lazy initialization
653 if ($this->tpl === false) {
654 $this->initialize();
655 }
656
657 if (empty($data) || !is_array($data)){
658 return false;
659 }
660
661 foreach ($data as $key => $value) {
662 $this->assign($key, $value);
663 }
664 }
665
666 // Render a specific page (using a template).
667 // e.g. pb.renderPage('picwall')
668 public function renderPage($page)
669 {
670 if ($this->tpl===false) $this->initialize(); // Lazy initialization
671 $this->tpl->draw($page);
672 }
673
674 /**
675 * Render a 404 page (uses the template : tpl/404.tpl)
676 *
677 * usage : $PAGE->render404('The link was deleted')
678 * @param string $message A messate to display what is not found
679 */
680 public function render404($message='The page you are trying to reach does not exist or has been deleted.') {
681 header($_SERVER['SERVER_PROTOCOL'] . ' 404 Not Found');
682 $this->tpl->assign('error_message', $message);
683 $this->renderPage('404');
684 }
685}
686
687// ------------------------------------------------------------------------------------------
688// Daily RSS feed: 1 RSS entry per day giving all the links on that day. 567// Daily RSS feed: 1 RSS entry per day giving all the links on that day.
689// Gives the last 7 days (which have links). 568// Gives the last 7 days (which have links).
690// This RSS feed cannot be filtered. 569// This RSS feed cannot be filtered.
@@ -912,7 +791,7 @@ function renderPage()
912 die($e->getMessage()); 791 die($e->getMessage());
913 } 792 }
914 793
915 $PAGE = new pageBuilder; 794 $PAGE = new PageBuilder();
916 795
917 // Determine which page will be rendered. 796 // Determine which page will be rendered.
918 $query = (isset($_SERVER['QUERY_STRING'])) ? $_SERVER['QUERY_STRING'] : ''; 797 $query = (isset($_SERVER['QUERY_STRING'])) ? $_SERVER['QUERY_STRING'] : '';