]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - application/PageBuilder.php
Using only one form in linklist.html + adding untaggedonly filter - fix #885
[github/shaarli/Shaarli.git] / application / PageBuilder.php
CommitLineData
03eb19ac
A
1<?php
2
ae3aa968
A
3use Shaarli\Config\ConfigManager;
4
03eb19ac
A
5/**
6 * This class is in charge of building the final page.
7 * (This is basically a wrapper around RainTPL which pre-fills some fields.)
8 * $p = new PageBuilder();
9 * $p->assign('myfield','myvalue');
10 * $p->renderPage('mytemplate');
11 */
12class PageBuilder
13{
14 /**
15 * @var RainTPL RainTPL instance.
16 */
17 private $tpl;
18
278d9ee2
A
19 /**
20 * @var ConfigManager $conf Configuration Manager instance.
21 */
22 protected $conf;
23
73c89626
A
24 /**
25 * @var LinkDB $linkDB instance.
26 */
27 protected $linkDB;
28
03eb19ac
A
29 /**
30 * PageBuilder constructor.
31 * $tpl is initialized at false for lazy loading.
278d9ee2 32 *
73c89626
A
33 * @param ConfigManager $conf Configuration Manager instance (reference).
34 * @param LinkDB $linkDB instance.
03eb19ac 35 */
73c89626 36 public function __construct(&$conf, $linkDB = null)
03eb19ac
A
37 {
38 $this->tpl = false;
278d9ee2 39 $this->conf = $conf;
73c89626 40 $this->linkDB = $linkDB;
03eb19ac
A
41 }
42
43 /**
44 * Initialize all default tpl tags.
45 */
46 private function initialize()
47 {
48 $this->tpl = new RainTPL();
49
50 try {
51 $version = ApplicationUtils::checkUpdate(
52 shaarli_version,
894a3c4b
A
53 $this->conf->get('resource.update_check'),
54 $this->conf->get('updates.check_updates_interval'),
55 $this->conf->get('updates.check_updates'),
03eb19ac 56 isLoggedIn(),
894a3c4b 57 $this->conf->get('updates.check_updates_branch')
03eb19ac
A
58 );
59 $this->tpl->assign('newVersion', escape($version));
60 $this->tpl->assign('versionError', '');
61
62 } catch (Exception $exc) {
894a3c4b 63 logm($this->conf->get('resource.log'), $_SERVER['REMOTE_ADDR'], $exc->getMessage());
03eb19ac
A
64 $this->tpl->assign('newVersion', '');
65 $this->tpl->assign('versionError', escape($exc->getMessage()));
66 }
67
68 $this->tpl->assign('feedurl', escape(index_url($_SERVER)));
69 $searchcrits = ''; // Search criteria
70 if (!empty($_GET['searchtags'])) {
71 $searchcrits .= '&searchtags=' . urlencode($_GET['searchtags']);
72 }
73 if (!empty($_GET['searchterm'])) {
74 $searchcrits .= '&searchterm=' . urlencode($_GET['searchterm']);
75 }
76 $this->tpl->assign('searchcrits', $searchcrits);
77 $this->tpl->assign('source', index_url($_SERVER));
78 $this->tpl->assign('version', shaarli_version);
79 $this->tpl->assign('scripturl', index_url($_SERVER));
03eb19ac 80 $this->tpl->assign('privateonly', !empty($_SESSION['privateonly'])); // Show only private links?
f210d94f 81 $this->tpl->assign('untaggedonly', !empty($_SESSION['untaggedonly']));
97ef33bb 82 $this->tpl->assign('pagetitle', $this->conf->get('general.title', 'Shaarli'));
278d9ee2
A
83 if ($this->conf->exists('general.header_link')) {
84 $this->tpl->assign('titleLink', $this->conf->get('general.header_link'));
03eb19ac 85 }
97ef33bb 86 $this->tpl->assign('shaarlititle', $this->conf->get('general.title', 'Shaarli'));
894a3c4b 87 $this->tpl->assign('openshaarli', $this->conf->get('security.open_shaarli', false));
2ea89aba
A
88 $this->tpl->assign('showatom', $this->conf->get('feed.show_atom', true));
89 $this->tpl->assign('feed_type', $this->conf->get('feed.show_atom', true) !== false ? 'atom' : 'rss');
894a3c4b 90 $this->tpl->assign('hide_timestamps', $this->conf->get('privacy.hide_timestamps', false));
fd5ac47e 91 $this->tpl->assign('token', getToken($this->conf));
73c89626 92 if ($this->linkDB !== null) {
6ccd0b21 93 $this->tpl->assign('tags', $this->linkDB->linksCountPerTag());
73c89626 94 }
b302c77c
A
95 // To be removed with a proper theme configuration.
96 $this->tpl->assign('conf', $this->conf);
03eb19ac
A
97 }
98
99 /**
100 * The following assign() method is basically the same as RainTPL (except lazy loading)
101 *
102 * @param string $placeholder Template placeholder.
103 * @param mixed $value Value to assign.
104 */
105 public function assign($placeholder, $value)
106 {
03eb19ac
A
107 if ($this->tpl === false) {
108 $this->initialize();
109 }
110 $this->tpl->assign($placeholder, $value);
111 }
112
113 /**
114 * Assign an array of data to the template builder.
115 *
116 * @param array $data Data to assign.
117 *
118 * @return false if invalid data.
119 */
120 public function assignAll($data)
121 {
03eb19ac
A
122 if ($this->tpl === false) {
123 $this->initialize();
124 }
125
126 if (empty($data) || !is_array($data)){
127 return false;
128 }
129
130 foreach ($data as $key => $value) {
131 $this->assign($key, $value);
132 }
278d9ee2 133 return true;
03eb19ac
A
134 }
135
136 /**
137 * Render a specific page (using a template file).
138 * e.g. $pb->renderPage('picwall');
139 *
140 * @param string $page Template filename (without extension).
141 */
142 public function renderPage($page)
143 {
278d9ee2 144 if ($this->tpl === false) {
03eb19ac
A
145 $this->initialize();
146 }
278d9ee2 147
03eb19ac
A
148 $this->tpl->draw($page);
149 }
150
151 /**
152 * Render a 404 page (uses the template : tpl/404.tpl)
153 * usage : $PAGE->render404('The link was deleted')
154 *
155 * @param string $message A messate to display what is not found
156 */
157 public function render404($message = 'The page you are trying to reach does not exist or has been deleted.')
158 {
159 header($_SERVER['SERVER_PROTOCOL'] . ' 404 Not Found');
160 $this->tpl->assign('error_message', $message);
161 $this->renderPage('404');
162 }
163}