]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - application/PageBuilder.php
291860adeb61912af4f8671c8544849224804713
[github/shaarli/Shaarli.git] / application / PageBuilder.php
1 <?php
2
3 use Shaarli\Config\ConfigManager;
4
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 */
12 class PageBuilder
13 {
14 /**
15 * @var RainTPL RainTPL instance.
16 */
17 private $tpl;
18
19 /**
20 * @var ConfigManager $conf Configuration Manager instance.
21 */
22 protected $conf;
23
24 /**
25 * @var LinkDB $linkDB instance.
26 */
27 protected $linkDB;
28
29 /**
30 * PageBuilder constructor.
31 * $tpl is initialized at false for lazy loading.
32 *
33 * @param ConfigManager $conf Configuration Manager instance (reference).
34 * @param LinkDB $linkDB instance.
35 */
36 public function __construct(&$conf, $linkDB = null)
37 {
38 $this->tpl = false;
39 $this->conf = $conf;
40 $this->linkDB = $linkDB;
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,
53 $this->conf->get('resource.update_check'),
54 $this->conf->get('updates.check_updates_interval'),
55 $this->conf->get('updates.check_updates'),
56 isLoggedIn(),
57 $this->conf->get('updates.check_updates_branch')
58 );
59 $this->tpl->assign('newVersion', escape($version));
60 $this->tpl->assign('versionError', '');
61
62 } catch (Exception $exc) {
63 logm($this->conf->get('resource.log'), $_SERVER['REMOTE_ADDR'], $exc->getMessage());
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(
80 'version_hash',
81 ApplicationUtils::getVersionHash(SHAARLI_VERSION, $this->conf->get('credentials.salt'))
82 );
83 $this->tpl->assign('scripturl', index_url($_SERVER));
84 $this->tpl->assign('privateonly', !empty($_SESSION['privateonly'])); // Show only private links?
85 $this->tpl->assign('untaggedonly', !empty($_SESSION['untaggedonly']));
86 $this->tpl->assign('pagetitle', $this->conf->get('general.title', 'Shaarli'));
87 if ($this->conf->exists('general.header_link')) {
88 $this->tpl->assign('titleLink', $this->conf->get('general.header_link'));
89 }
90 $this->tpl->assign('shaarlititle', $this->conf->get('general.title', 'Shaarli'));
91 $this->tpl->assign('openshaarli', $this->conf->get('security.open_shaarli', false));
92 $this->tpl->assign('showatom', $this->conf->get('feed.show_atom', true));
93 $this->tpl->assign('feed_type', $this->conf->get('feed.show_atom', true) !== false ? 'atom' : 'rss');
94 $this->tpl->assign('hide_timestamps', $this->conf->get('privacy.hide_timestamps', false));
95 $this->tpl->assign('token', getToken($this->conf));
96
97 if ($this->linkDB !== null) {
98 $this->tpl->assign('tags', $this->linkDB->linksCountPerTag());
99 }
100 // To be removed with a proper theme configuration.
101 $this->tpl->assign('conf', $this->conf);
102 }
103
104 /**
105 * The following assign() method is basically the same as RainTPL (except lazy loading)
106 *
107 * @param string $placeholder Template placeholder.
108 * @param mixed $value Value to assign.
109 */
110 public function assign($placeholder, $value)
111 {
112 if ($this->tpl === false) {
113 $this->initialize();
114 }
115 $this->tpl->assign($placeholder, $value);
116 }
117
118 /**
119 * Assign an array of data to the template builder.
120 *
121 * @param array $data Data to assign.
122 *
123 * @return false if invalid data.
124 */
125 public function assignAll($data)
126 {
127 if ($this->tpl === false) {
128 $this->initialize();
129 }
130
131 if (empty($data) || !is_array($data)){
132 return false;
133 }
134
135 foreach ($data as $key => $value) {
136 $this->assign($key, $value);
137 }
138 return true;
139 }
140
141 /**
142 * Render a specific page (using a template file).
143 * e.g. $pb->renderPage('picwall');
144 *
145 * @param string $page Template filename (without extension).
146 */
147 public function renderPage($page)
148 {
149 if ($this->tpl === false) {
150 $this->initialize();
151 }
152
153 $this->tpl->draw($page);
154 }
155
156 /**
157 * Render a 404 page (uses the template : tpl/404.tpl)
158 * usage : $PAGE->render404('The link was deleted')
159 *
160 * @param string $message A messate to display what is not found
161 */
162 public function render404($message = 'The page you are trying to reach does not exist or has been deleted.')
163 {
164 header($_SERVER['SERVER_PROTOCOL'] . ' 404 Not Found');
165 $this->tpl->assign('error_message', $message);
166 $this->renderPage('404');
167 }
168 }