Convert sources to UTF-8
[banana.git] / banana / page.inc.php
1 <?php
2 /********************************************************************************
3 * banana/page.inc.php : class for group lists
4 * ------------------------
5 *
6 * This file is part of the banana distribution
7 * Copyright: See COPYING files that comes with this distribution
8 ********************************************************************************/
9
10 require_once 'smarty/libs/Smarty.class.php';
11
12 class BananaPage extends Smarty
13 {
14 private $error = array();
15 private $page = null;
16
17 private $pages = array();
18 private $killed = array();
19 private $actions = array();
20
21 public function __construct()
22 {
23 $this->Smarty();
24
25 $this->compile_check = Banana::$debug_smarty;
26 $this->template_dir = dirname(__FILE__) . '/templates/';
27 $this->compile_dir = dirname(dirname(__FILE__)) . '/spool/templates_c/';
28 $this->register_prefilter('banana_trimwhitespace');
29
30 }
31
32 /** Add an error message
33 * @param message STRING html code of the error to display
34 */
35 public function trig($message)
36 {
37 $this->error[] = $message;
38 }
39
40 /** Kill the current page (generate an error message and skip page generation)
41 * @param message STRING html code of the error message to display
42 @ @return XHTML code of the page
43 */
44 public function kill($message)
45 {
46 $this->trig($message);
47 $this->assign('killed', true);
48 return $this->run();
49 }
50
51 /** Set the current page
52 * @param page STRING page name
53 */
54 public function setPage($page)
55 {
56 $this->page = $page;
57 return true;
58 }
59
60 /** Register an action to show on banana page
61 * @param action_code HTML code of the action
62 * @param pages ARRAY pages where to show the action (null == every pages)
63 * @return true if success
64 */
65 public function registerAction($action_code, array $pages = null)
66 {
67 $this->actions[] = array('text' => $action_code, 'pages' => $pages);
68 return true;
69 }
70
71 /** Register a new page
72 * @param name Name of the page
73 * @param text Text for the tab of the page
74 * @param template Template path for the page if null, the page is not handled by banana
75 * @return true if success
76 */
77 public function registerPage($name, $text, $template = null)
78 {
79 $this->pages[$name] = array('text' => $text, 'template' => $template);
80 return true;
81 }
82
83 /** Remove a page
84 * @param page STRING page name to kill
85 */
86 public function killPage($page)
87 {
88 $this->killed[] = $page;
89 }
90
91 /** Preparte the page generation
92 * @return template to use
93 */
94 protected function prepare()
95 {
96 $this->registerPage('subscribe', _b_('Abonnements'), null);
97 $this->registerPage('forums', _b_('Les forums'), null);
98 if (!is_null(Banana::$group)) {
99 $this->registerPage('thread', Banana::$group, null);
100 if (!is_null(Banana::$artid)) {
101 $this->registerPage('message', _b_('Message'), null);
102 if ($this->page == 'cancel') {
103 $this->registerPage('cancel', _b_('Annulation'), null);
104 } elseif ($this->page == 'new') {
105 $this->registerPage('new', _b_('Répondre'), null);
106 }
107 } elseif ($this->page == 'new') {
108 $this->registerPage('new', _b_('Nouveau'), null);
109 }
110 }
111 foreach ($this->killed as $page) {
112 unset($this->pages[$page]);
113 }
114 foreach ($this->actions as $key=>&$action) {
115 if (!is_null($action['pages']) && !in_array($this->page, $action['pages'])) {
116 unset($this->actions[$key]);
117 }
118 }
119
120 return 'banana-base.tpl';
121 }
122
123 /** Generate XHTML code
124 */
125 public function run()
126 {
127 $tpl = $this->prepare();
128 if (!isset($this->pages[$this->page])) {
129 $this->trig(_b_('La page demandée n\'existe pas'));
130 $this->actions = array();
131 $this->page = null;
132 }
133
134 $this->assign('group', Banana::$group);
135 $this->assign('artid', Banana::$artid);
136 $this->assign('part', Banana::$part);
137 $this->assign('first', Banana::$first);
138 $this->assign('action', Banana::$action);
139 $this->assign('profile', Banana::$profile);
140 $this->assign('spool', Banana::$spool);
141 $this->assign('protocole', Banana::$protocole);
142
143 $this->register_function('url', array($this, 'makeUrl'));
144 $this->register_function('link', array($this, 'makeLink'));
145 $this->register_function('imglink', array($this, 'makeImgLink'));
146 $this->register_function('img', array($this, 'makeImg'));
147
148 $this->assign('errors', $this->error);
149 $this->assign('page', $this->page);
150 $this->assign('pages', $this->pages);
151 $this->assign('actions', $this->actions);
152
153 if (!Banana::$debug_smarty) {
154 $error_level = error_reporting(0);
155 }
156 $text = $this->fetch($tpl);
157 $text = banana_utf8entities($text);
158 if (!Banana::$debug_smarty) {
159 error_reporting($error_level);
160 }
161 return $text;
162 }
163
164 /** Build a URL in Banana
165 * @param params ARRAY location datas
166 * @param smarty OBJECT Smarty instance associated (null if none)
167 * @return URL of the page associated with the given parameters
168 *
169 * Usual parameters are :
170 * - group : the box name
171 * - artid : the current message id (index of message-id)
172 * - part : part id to show (may be a content-id, xface or a mime-type for text)
173 * - first : first linear-index to show in spool view
174 * - action: like subscribe, cancel, new
175 * - all others params are allowed, but not parsed by the base implementation of banana
176 *
177 * smarty funciton : {url param1=... param2=...}
178 */
179 public function makeUrl(array $params, &$smarty = null)
180 {
181 if (function_exists('hook_makeLink')
182 && $res = hook_makeLink($params)) {
183 return $res;
184 }
185 $proto = empty($_SERVER['HTTPS']) ? 'http://' : 'https://';
186 $host = $_SERVER['HTTP_HOST'];
187 $file = $_SERVER['PHP_SELF'];
188
189 if (count($params) != 0) {
190 $get = '?';
191 foreach ($params as $key=>$value) {
192 if (strlen($get) != 1) {
193 $get .= '&';
194 }
195 $get .= $key . '=' . $value;
196 }
197 } else {
198 $get = '';
199 }
200 return $proto . $host . $file . $get;
201 }
202
203 /** Build a link to a Banana page
204 * @param params ARRAY location datas
205 * @param smarty OBJECT Smarty instance associated (null if none)
206 * @return Link to the page associated with the given parameters
207 *
208 * Support all @ref makeURL parameters, but catch the following:
209 * - text : if set, defined the text of the link (if not set, the URL is used
210 * - popup : title of the link (showed as a tooltip on most browsers)
211 * - class : specific style class for the markup
212 * - accesskey: keyboard key to trigger the link
213 * None of this parameters is needed
214 *
215 * Smarty function : {link param1=... param2=...}
216 */
217 public function makeLink(array $params, &$smarty = null)
218 {
219 $catch = array('text', 'popup', 'class', 'accesskey');
220 foreach ($catch as $key) {
221 ${$key} = isset($params[$key]) ? $params[$key] : null;
222 unset($params[$key]);
223 }
224 $link = $this->makeUrl($params, &$smarty);
225 if (is_null($text)) {
226 $text = $link;
227 }
228 if (!is_null($accesskey)) {
229 $popup .= ' (raccourci : ' . $accesskey . ')';
230 }
231 if (!is_null($popup)) {
232 $popup = ' title="' . banana_htmlentities($popup) . '"';
233 }
234 if (!is_null($class)) {
235 $class = ' class="' . $class . '"';
236 }
237 if (!is_null($accesskey)) {
238 $accesskey = ' accesskey="' . $accesskey . '"';
239 }
240 return '<a href="' . banana_htmlentities($link) . '"'
241 . $popup . $class . $accesskey
242 . '>' . $text . '</a>';
243 }
244
245 /** Build a link to one of the banana built-in images
246 * @param params ARRAY image datas
247 * @param smarty OBJECT Smarty instance associated (null if none)
248 * @return Img tag
249 *
250 * Supported parameters are
251 * - img : name of the image (without its extension)
252 * - alt : alternative text
253 * - height and width : dimensions of the images
254 * img and alt are needed
255 *
256 * Smarty function: {img img=... alt=... [height=...] [width=...]}
257 */
258 public function makeImg(array $params, &$smarty = null)
259 {
260 $catch = array('img', 'alt', 'height', 'width');
261 foreach ($catch as $key) {
262 ${$key} = isset($params[$key]) ? $params[$key] : null;
263 }
264 $img .= ".gif";
265 if (function_exists('hook_makeImg')
266 && $res = hook_makeImg($img, $alt, $height, $width)) {
267 return $res;
268 }
269
270 if (!is_null($width)) {
271 $width = ' width="' . $width . '"';
272 }
273 if (!is_null($height)) {
274 $height = ' height="' . $height . '"';
275 }
276
277 $proto = empty($_SERVER['HTTPS']) ? 'http://' : 'https://';
278 $host = $_SERVER['HTTP_HOST'];
279 $file = dirname($_SERVER['PHP_SELF']) . '/img/' . $img;
280 $url = $proto . $host . $file;
281
282 return '<img src="' . $url . '"' . $height . $width . ' alt="' . _b_($alt) . '" />';
283 }
284
285 /** Build a link with an image as text
286 * @param params ARRAY image and location data
287 * @param smarty OBJECT Smarty instance associated (null if none)
288 * @return an image within an link
289 *
290 * All @ref makeImg and @ref makeLink parameters are supported
291 * if text is set, the text will be appended after the image in the link
292 *
293 * Smarty function : {imglink img=... alt=... [param1=...]}
294 */
295 public function makeImgLink(array $params, &$smarty = null)
296 {
297 $params['alt'] = _b_($params['alt']);
298 if (!isset($params['popup'])) {
299 $params['popup'] = $params['alt'];
300 }
301 $img = $this->makeImg($params, $smarty);
302 if (isset($params['text'])) {
303 $img .= ' ' . $params['text'];
304 }
305 $params['text'] = $img;
306 return $this->makeLink($params, $smarty);
307 }
308
309 /** Redirect to the page with the given parameter
310 * @ref makeURL
311 */
312 public function redirect(array $params = array())
313 {
314 header('Location: ' . $this->makeUrl($params));
315 }
316 }
317
318 // {{{ function banana_trimwhitespace
319
320 function banana_trimwhitespace($source, &$smarty)
321 {
322 $tags = array('script', 'pre', 'textarea');
323
324 foreach ($tags as $tag) {
325 preg_match_all("!<{$tag}[^>]+>.*?</{$tag}>!is", $source, ${$tag});
326 $source = preg_replace("!<{$tag}[^>]+>.*?</{$tag}>!is", "&&&{$tag}&&&", $source);
327 }
328
329 // remove all leading spaces, tabs and carriage returns NOT
330 // preceeded by a php close tag.
331 $source = preg_replace('/((?<!\?>)\n)[\s]+/m', '\1', $source);
332
333 foreach ($tags as $tag) {
334 $source = preg_replace("!&&&{$tag}&&&!e", 'array_shift(${$tag}[0])', $source);
335 }
336
337 return $source;
338 }
339
340 // }}}
341
342
343 // vim:set et sw=4 sts=4 ts=4 enc=utf-8:
344 ?>