2 /********************************************************************************
3 * banana/page.inc.php : class for group lists
4 * ------------------------
6 * This file is part of the banana distribution
7 * Copyright: See COPYING files that comes with this distribution
8 ********************************************************************************/
10 require_once 'smarty/libs/Smarty.class.php';
12 class BananaPage
extends Smarty
14 private $error = array();
17 private $pages = array();
18 private $killed = array();
19 private $actions = array();
21 public function __construct()
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');
32 /** Add an error message
33 * @param message STRING html code of the error to display
35 public function trig($message)
37 $this->error
[] = $message;
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
44 public function kill($message)
46 $this->trig($message);
47 $this->assign('killed', true
);
51 /** Set the current page
52 * @param page STRING page name
54 public function setPage($page)
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
65 public function registerAction($action_code, array $pages = null
)
67 $this->actions
[] = array('text' => $action_code, 'pages' => $pages);
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
77 public function registerPage($name, $text, $template = null
)
79 $this->pages
[$name] = array('text' => $text, 'template' => $template);
84 * @param page STRING page name to kill
86 public function killPage($page)
88 $this->killed
[] = $page;
91 /** Preparte the page generation
92 * @return template to use
94 protected function prepare()
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
);
107 } elseif ($this->page
== 'new') {
108 $this->registerPage('new', _b_('Nouveau'), null
);
111 foreach ($this->killed
as $page) {
112 unset($this->pages
[$page]);
114 foreach ($this->actions
as $key=>&$action) {
115 if (!is_null($action['pages']) && !in_array($this->page
, $action['pages'])) {
116 unset($this->actions
[$key]);
120 return 'banana-base.tpl';
123 /** Generate XHTML code
125 public function run()
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();
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 $this->assign('showboxlist', Banana
::$spool_boxlist);
144 $this->register_function('url', array($this, 'makeUrl'));
145 $this->register_function('link', array($this, 'makeLink'));
146 $this->register_function('imglink', array($this, 'makeImgLink'));
147 $this->register_function('img', array($this, 'makeImg'));
148 $this->register_modifier('b', '_b_');
150 $this->assign('errors', $this->error
);
151 $this->assign('page', $this->page
);
152 $this->assign('pages', $this->pages
);
153 $this->assign('actions', $this->actions
);
155 if (!Banana
::$debug_smarty) {
156 $error_level = error_reporting(0);
158 $text = $this->fetch($tpl);
159 $text = banana_utf8entities($text);
160 if (!Banana
::$debug_smarty) {
161 error_reporting($error_level);
166 /** Build a URL in Banana
167 * @param params ARRAY location datas
168 * @param smarty OBJECT Smarty instance associated (null if none)
169 * @return URL of the page associated with the given parameters
171 * Usual parameters are :
172 * - group : the box name
173 * - artid : the current message id (index of message-id)
174 * - part : part id to show (may be a content-id, xface or a mime-type for text)
175 * - first : first linear-index to show in spool view
176 * - action: like subscribe, cancel, new
177 * - all others params are allowed, but not parsed by the base implementation of banana
179 * smarty funciton : {url param1=... param2=...}
181 public function makeUrl(array $params, &$smarty = null
)
183 if (function_exists('hook_makeLink')
184 && $res = hook_makeLink($params)) {
187 $proto = empty($_SERVER['HTTPS']) ?
'http://' : 'https://';
188 $host = $_SERVER['HTTP_HOST'];
189 $file = $_SERVER['PHP_SELF'];
191 if (count($params) != 0) {
193 foreach ($params as $key=>$value) {
194 if (strlen($get) != 1) {
197 $get .= $key . '=' . $value;
202 return $proto . $host . $file . $get;
205 /** Build a link to a Banana page
206 * @param params ARRAY location datas
207 * @param smarty OBJECT Smarty instance associated (null if none)
208 * @return Link to the page associated with the given parameters
210 * Support all @ref makeURL parameters, but catch the following:
211 * - text : if set, defined the text of the link (if not set, the URL is used
212 * - popup : title of the link (showed as a tooltip on most browsers)
213 * - class : specific style class for the markup
214 * - accesskey: keyboard key to trigger the link
215 * None of this parameters is needed
217 * Smarty function : {link param1=... param2=...}
219 public function makeLink(array $params, &$smarty = null
)
221 $catch = array('text', 'popup', 'class', 'accesskey');
222 foreach ($catch as $key) {
223 $
{$key} = isset($params[$key]) ?
$params[$key] : null
;
224 unset($params[$key]);
226 $link = $this->makeUrl($params, &$smarty);
227 if (is_null($text)) {
230 if (!is_null($accesskey)) {
231 $popup .= ' (raccourci : ' . $accesskey . ')';
233 if (!is_null($popup)) {
234 $popup = ' title="' . banana_htmlentities($popup) . '"';
236 if (!is_null($class)) {
237 $class = ' class="' . $class . '"';
239 if (!is_null($accesskey)) {
240 $accesskey = ' accesskey="' . $accesskey . '"';
242 return '<a href="' . banana_htmlentities($link) . '"'
243 . $popup . $class . $accesskey
244 . '>' . $text . '</a>';
247 /** Build a link to one of the banana built-in images
248 * @param params ARRAY image datas
249 * @param smarty OBJECT Smarty instance associated (null if none)
252 * Supported parameters are
253 * - img : name of the image (without its extension)
254 * - alt : alternative text
255 * - height and width : dimensions of the images
256 * img and alt are needed
258 * Smarty function: {img img=... alt=... [height=...] [width=...]}
260 public function makeImg(array $params, &$smarty = null
)
262 $catch = array('img', 'alt', 'height', 'width');
263 foreach ($catch as $key) {
264 $
{$key} = isset($params[$key]) ?
$params[$key] : null
;
267 if (function_exists('hook_makeImg')
268 && $res = hook_makeImg($img, $alt, $height, $width)) {
272 if (!is_null($width)) {
273 $width = ' width="' . $width . '"';
275 if (!is_null($height)) {
276 $height = ' height="' . $height . '"';
279 $proto = empty($_SERVER['HTTPS']) ?
'http://' : 'https://';
280 $host = $_SERVER['HTTP_HOST'];
281 $file = dirname($_SERVER['PHP_SELF']) . '/img/' . $img;
282 $url = $proto . $host . $file;
284 return '<img src="' . $url . '"' . $height . $width . ' alt="' . _b_($alt) . '" />';
287 /** Build a link with an image as text
288 * @param params ARRAY image and location data
289 * @param smarty OBJECT Smarty instance associated (null if none)
290 * @return an image within an link
292 * All @ref makeImg and @ref makeLink parameters are supported
293 * if text is set, the text will be appended after the image in the link
295 * Smarty function : {imglink img=... alt=... [param1=...]}
297 public function makeImgLink(array $params, &$smarty = null
)
299 $params['alt'] = _b_($params['alt']);
300 if (!isset($params['popup'])) {
301 $params['popup'] = $params['alt'];
303 $img = $this->makeImg($params, $smarty);
304 if (isset($params['text'])) {
305 $img .= ' ' . $params['text'];
307 $params['text'] = $img;
308 return $this->makeLink($params, $smarty);
311 /** Redirect to the page with the given parameter
314 public function redirect(array $params = array())
316 header('Location: ' . $this->makeUrl($params));
320 // {{{ function banana_trimwhitespace
322 function banana_trimwhitespace($source, &$smarty)
324 $tags = array('script', 'pre', 'textarea');
326 foreach ($tags as $tag) {
327 preg_match_all("!<{$tag}[^>]+>.*?</{$tag}>!is", $source, $
{$tag});
328 $source = preg_replace("!<{$tag}[^>]+>.*?</{$tag}>!is", "&&&{$tag}&&&", $source);
331 // remove all leading spaces, tabs and carriage returns NOT
332 // preceeded by a php close tag.
333 $source = preg_replace('/((?<!\?>)\n)[\s]+/m', '\1', $source);
335 foreach ($tags as $tag) {
336 $source = preg_replace("!&&&{$tag}&&&!e", 'array_shift(${$tag}[0])', $source);
345 // vim:set et sw=4 sts=4 ts=4 enc=utf-8: