2 /********************************************************************************
3 * banana/banana.inc.php : banana main file
4 * --------------------------
6 * This file is part of the banana distribution
7 * Copyright: See COPYING files that comes with this distribution
8 ********************************************************************************/
12 static public $maxspool = 3000;
14 static public $parse_hdr = array('content-disposition', 'content-transfer-encoding',
15 'content-type', 'content-id', 'date', 'followup-to',
16 'from', 'message-id', 'newsgroups', 'organization',
17 'references', 'subject', 'x-face', 'in-reply-to',
18 'to', 'cc', 'reply-to');
19 static public $show_hdr = array('from', 'newsgroups', 'followup-to', 'to', 'cc', 'reply-to',
20 'organization', 'date', 'references', 'in-reply-to');
22 /** Favorites MIMEtypes to use, by order for reading multipart messages
24 static public $body_mime = array('text/html', 'text/plain', 'text/enriched', 'text', 'message');
26 /** Indicate wether posting attachment is allowed
28 static public $can_attach = true
;
29 /** Maximum allowed file size for attachment
31 static public $maxfilesize = 100000;
32 /** Indicate wether x-face should be skinned as specials data or not
34 static public $formatxface = true
;
36 /** Regexp for selecting newsgroups to show (if empty, match all newsgroups)
37 * ex : '^xorg\..*' for xorg.*
39 static public $grp_pattern = null
;
41 static public $tbefore = 5;
42 static public $tafter = 5;
43 static public $tmax = 50;
45 static public $wrap = 78;
48 * Should be included in a regexp delimited using /, !, , or @ (eg: "/$url_regexp/i")
49 * If it matches, return 3 main parts :
50 * \\1 and \\3 are delimiters
53 * eg : preg_match("!$url_regexp!i", "[http://www.polytechnique.org]", $matches);
55 * $matches[2] = "http://www.polytechnique.org"
58 static public $url_regexp = '(["\[])?((?:[a-z]+:\/\/|www\.)(?:[\.\,\;\!]*[a-z\@0-9~%$£µ&i#\-+=_\/\?]+)+)(["\]])?';
60 /** Global headers to use for messages
62 static public $custom_hdr = array('Mime-Version' => '1.0', 'User-Agent' => 'Banana @VERSION@');
64 /** News serveur to use
66 static public $host = 'news://localhost:119/';
70 static public $profile = Array( 'From' => 'Anonymous <anonymouse@example.com>', 'sig' => '',
71 'Organization' => '', 'custom_hdr' => array(), 'display' => 0,
72 'lastnews' => 0, 'locale' => 'fr_FR', 'subscribe' => array());
74 static public $protocole = null
;
75 static public $spool = null
;
76 static public $message = null
;
77 static public $page = null
;
79 static public $group = null
;
80 static public $artid = null
;
81 static public $action = null
;
82 static public $part = null
;
83 static public $first = null
;
85 static public $debug_nntp = false
;
86 static public $debug_smarty = false
;
90 const ACTION_BOX_NEEDED
= 1; // mask
91 const ACTION_BOX_LIST
= 2;
92 const ACTION_BOX_SUBS
= 4;
93 const ACTION_MSG_LIST
= 3;
94 const ACTION_MSG_READ
= 5;
95 const ACTION_MSG_NEW
= 9;
96 const ACTION_MSG_CANCEL
= 17;
105 const SPOOL_UNREAD
= 1;
107 /** Class parameters storage
111 /** Build the instance of Banana
112 * This constructor only call \ref loadParams, connect to the server, and build the Smarty page
113 * @param protocole Protocole to use
115 public function __construct($params = null
, $protocole = 'NNTP', $pageclass = 'BananaPage')
117 Banana
::load('text.func');
118 if (is_null($params)) {
119 $this->params
= $_GET;
121 $this->params
= $params;
125 // connect to protocole handler
126 Banana
::load($protocole);
127 $classname = 'Banana' . $protocole;
128 Banana
::$protocole = new $classname(Banana
::$group);
131 if ($pageclass == 'BananaPage') {
132 Banana
::load('page');
134 Banana
::$page = new $pageclass;
137 /** Fill state vars (Banana::$group, Banana::$artid, Banana::$action, Banana;:$part, Banana::$first)
139 protected function loadParams()
141 Banana
::$group = isset($this->params
['group']) ?
$this->params
['group'] : null
;
142 Banana
::$artid = isset($this->params
['artid']) ?
$this->params
['artid'] : null
;
143 Banana
::$first = isset($this->params
['first']) ?
$this->params
['first'] : null
;
144 Banana
::$part = isset($this->params
['part']) ?
$this->params
['part'] : 'text';
146 // Look for the action to execute
147 if (is_null(Banana
::$group)) {
148 if (isset($this->params
['action']) && $this->params
['action'] == 'subscribe') {
149 Banana
::$action = Banana
::ACTION_BOX_SUBS
;
151 Banana
::$action = Banana
::ACTION_BOX_LIST
;
155 $action = isset($this->params
['action']) ?
$this->params
['action'] : null
;
156 if (is_null(Banana
::$artid)) {
157 if ($action == 'new') {
158 Banana
::$action = Banana
::ACTION_MSG_NEW
;
160 Banana
::$action = Banana
::ACTION_MSG_LIST
;
166 Banana
::$action = Banana
::ACTION_MSG_NEW
;
169 Banana
::$action = Banana
::ACTION_MSG_CANCEL
;
172 Banana
::$action = Banana
::ACTION_MSG_READ
;
177 * This function need user profile to be initialised
179 public function run()
182 setlocale(LC_ALL
, Banana
::$profile['locale']);
184 // Check if the state is valid
185 if (Banana
::$protocole->lastErrNo()) {
186 return Banana
::$page->kill(_b_('Une erreur a été rencontrée lors de la connexion au serveur') . '<br />'
187 . Banana
::$protocole->lastError());
189 if (!Banana
::$protocole->isValid()) {
190 return Banana
::$page->kill(_b_('Connexion non-valide'));
192 if (Banana
::$action & Banana
::ACTION_BOX_NEEDED
) {
193 if(isset(Banana
::$grp_pattern) && !preg_match('/' . Banana
::$grp_pattern . '/', $group)) {
194 Banana
::$page->setPage('group');
195 return Banana
::$page->kill(_b_("Ce newsgroup n'existe pas ou vous n'avez pas l'autorisation d'y accéder"));
199 // Dispatch to the action handlers
200 switch (Banana
::$action) {
201 case Banana
::ACTION_BOX_SUBS
:
202 $error = $this->action_subscribe();
204 case Banana
::ACTION_BOX_LIST
:
205 $error = $this->action_listBoxes();
207 case Banana
::ACTION_MSG_LIST
:
208 $error = $this->action_showThread(Banana
::$group, Banana
::$first);
210 case Banana
::ACTION_MSG_READ
:
211 $error = $this->action_showMessage(Banana
::$group, Banana
::$artid, Banana
::$part);
213 case Banana
::ACTION_MSG_NEW
:
214 $error = $this->action_newMessage(Banana
::$group, Banana
::$artid);
216 case Banana
::ACTION_MSG_CANCEL
:
217 $error = $this->action_cancelMessage(Banana
::$group, Banana
::$artid);
220 $error = _b_("L'action demandée n'est pas supportée par Banana");
224 if (is_string($error)) {
225 return Banana
::$page->kill($error);
227 return Banana
::$page->run();
230 /**************************************************************************/
232 /**************************************************************************/
233 protected function action_saveSubs($groups)
235 Banana
::$profile['subscribe'] = $groups;
239 protected function action_subscribe()
241 Banana
::$page->setPage('subscribe');
242 if (isset($_POST['validsubs'])) {
243 $this->action_saveSubs(array_keys($_POST['subscribe']));
244 Banana
::$page->redirect();
246 $groups = Banana
::$protocole->getBoxList(Banana
::BOXES_ALL
);
247 Banana
::$page->assign('groups', $groups);
251 protected function action_listBoxes()
253 Banana
::$page->setPage('forums');
254 $groups = Banana
::$protocole->getBoxList(Banana
::BOXES_SUB
, Banana
::$profile['lastnews'], true
);
255 $newgroups = Banana
::$protocole->getBoxList(Banana
::BOXES_NEW
, Banana
::$profile['lastnews'], true
);
256 Banana
::$page->assign('groups', $groups);
257 Banana
::$page->assign('newgroups', $newgroups);
261 protected function action_showThread($group, $first)
263 Banana
::$page->setPage('thread');
264 if (!$this->loadSpool($group)) {
265 return _b_('Impossible charger la liste des messages de ') . $group;
267 $groups = Banana
::$protocole->getBoxList(Banana
::BOXES_SUB
, Banana
::$profile['lastnews'], true
);
268 Banana
::$page->assign('msgbypage', Banana
::$tmax);
269 Banana
::$page->assign('groups', $groups);
273 protected function action_showMessage($group, $artid, $partid = 'text')
275 Banana
::$page->setPage('message');
276 if ($partid == 'text') {
277 $this->loadSpool($group);
279 $msg =& $this->loadMessage($group, $artid);
281 $this->loadSpool($group);
282 $this->removeMessage($group, $artid);
283 return _b_('Le message demandé n\'existe pas. Il est possible qu\'il ait été annulé');
285 if ($partid == 'xface') {
288 } elseif ($partid != 'text') {
289 $part = $msg->getPartById($partid);
290 if (!is_null($part)) {
293 $part = $msg->getFile($partid);
294 if (!is_null($part)) {
299 $groups = Banana
::$protocole->getBoxList(Banana
::BOXES_SUB
, Banana
::$profile['lastnews'], true
);
300 Banana
::$page->assign('groups', $groups);
301 Banana
::$page->assign_by_ref('message', $msg);
302 Banana
::$page->assign('headers', Banana
::$show_hdr);
306 protected function action_newMessage($group, $artid)
308 Banana
::$page->setPage('new');
309 if (!Banana
::$protocole->canSend()) {
310 return _b_('Vous n\'avez pas le droit de poster');
312 $hdrs = Banana
::$protocole->requestedHeaders();
314 foreach ($hdrs as $header) {
315 $headers[$header] = array('name' => BananaMessage
::translateHeaderName($header));
316 if (isset(Banana
::$profile[$header])) {
317 $headers[$header]['fixed'] = Banana
::$profile[$header];
320 if (isset($_POST['sendmessage'])) {
321 $hdr_values = array();
322 foreach ($hdrs as $header) {
323 $hdr_values[$header] = isset($headers[$header]['fixed']) ?
$headers[$header]['fixed'] : @$_POST[$header];
326 $old =& $this->loadMessage($group, $artid);
327 $hdr_values['References'] = $old->getHeaderValue('references') . $old->getHeaderValue('message-id');
330 if (empty($hdr_values['Subject'])) {
331 Banana
::$page->trig(_b_('Le message doit avoir un sujet'));
332 } elseif (Banana
::$can_attach && isset($_FILES['attachment'])) {
333 $uploaded = $_FILES['attachment'];
334 if (!is_uploaded_file($uploaded['tmp_name'])) {
335 Banana
::$page->trig(_b_('Une erreur est survenue lors du téléchargement du fichier'));
337 $msg = BananaMessage
::newMessage($hdr_values, $_POST['body'], $uploaded);
340 $msg = BananaMessage
::newMessage($hdr_values, $_POST['body']);
342 if (!is_null($msg)) {
343 if (Banana
::$protocole->send($msg)) {
344 Banana
::$page->redirect(array('group' => $group, 'artid' => $artid));
346 Banana
::$page->trig(_b_('Une erreur est survenue lors de l\'envoi du message :') . '<br />'
347 . Banana
::$protocole->lastError());
350 if (!is_null($artid)) {
351 $msg =& $this->loadMessage($group, $artid);
352 $body = $msg->getSender() . _b_(' a écrit :') . "\n" . $msg->quote();
353 $subject = $msg->getHeaderValue('subject');
354 $headers['Subject']['user'] = 'Re: ' . preg_replace("/^re\s*:\s*/i", '', $subject);
355 $target = $msg->getHeaderValue($hdrs['reply']);
356 if (empty($target)) {
359 $headers[$hdrs['dest']]['user'] =& $target;
362 $headers[$hdrs['dest']]['user'] = $group;
364 if (Banana
::$profile['sig']) {
365 $body .= "\n\n-- \n" . Banana
::$profile['sig'];
367 Banana
::$page->assign('body', $body);
370 Banana
::$page->assign('maxfilesize', Banana
::$maxfilesize);
371 Banana
::$page->assign('can_attach', Banana
::$can_attach);
372 Banana
::$page->assign('headers', $headers);
376 protected function action_cancelMessage($group, $artid)
378 Banana
::$page->setPage('cancel');
379 $msg =& $this->loadMessage($group, $artid);
380 if (!$msg->canCancel()) {
381 return _b_('Vous n\'avez pas les droits suffisants pour supprimer ce message');
383 if (isset($_POST['cancel'])) {
384 $this->loadSpool($group);
385 $ndx = Banana
::$spool->getNdX($id) - 1;
386 if (!Banana
::$protocole->cancel($msg)) {
387 return _b_('Une erreur s\'est produite lors de l\'annulation du message :') . '<br />'
388 . Banana
::$protocole->lastError();
393 $this->removeMessage($group, $artid);
394 Banana
::$page->redirect(Array('group' => $group, 'first' => $ndx));
396 Banana
::$page->assign_by_ref('message', $msg);
400 /**************************************************************************/
401 /* Private functions */
402 /**************************************************************************/
404 protected function loadSpool($group)
406 Banana
::load('spool');
407 if (!Banana
::$spool || Banana
::$spool->group
!= $group) {
408 if ($group == @$_SESSION['banana_group'] && isset($_SESSION['banana_spool'])) {
409 Banana
::$spool = unserialize($_SESSION['banana_spool']);
411 BananaSpool
::getSpool($group, Banana
::$profile['lastnews']);
412 $_SESSION['banana_group'] = $group;
413 $_SESSION['banana_spool'] = serialize(Banana
::$spool);
414 Banana
::$spool->setMode(Banana
::$profile['display'] ? Banana
::SPOOL_UNREAD
: Banana
::SPOOL_ALL
);
419 protected function &loadMessage($group, $artid)
421 Banana
::load('message');
422 if ($group == @$_SESSION['banana_group'] && $artid == @$_SESSION['banana_artid']
423 && isset($_SESSION['banana_message'])) {
424 $message = unserialize($_SESSION['banana_message']);
425 Banana
::$show_hdr = $_SESSION['banana_showhdr'];
427 $message = Banana
::$protocole->getMessage($artid);
428 $_SESSION['banana_group'] = $group;
429 $_SESSION['banana_artid'] = $artid;
430 $_SESSION['banana_message'] = serialize($message);
431 $_SESSION['banana_showhdr'] = Banana
::$show_hdr;
433 Banana
::$message =& $message;
437 protected function removeMessage($group, $artid)
439 Banana
::$spool->delId($artid);
440 if ($group == $_SESSION['banana_group']) {
441 $_SESSION['banana_spool'] = serialize(Banana
::$spool);
442 if ($artid == $_SESSION['banana_artid']) {
443 unset($_SESSION['banana_message']);
444 unset($_SESSION['banana_showhdr']);
445 unset($_SESSION['banana_artid']);
451 static private function load($file)
453 $file = strtolower($file) . '.inc.php';
454 if (!@include_once
dirname(__FILE__
) . "/$file") {
460 // vim:set et sw=4 sts=4 ts=4