X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=banana%2Fbanana.inc.php.in;h=b1ec2b22654263d1f13d0152617352a6001a5c47;hb=78f61fa35b0c88582e32b323288f8babf567ab04;hp=78589298180a34e978d16c745e704ddce3da8e70;hpb=e7241984874c3e08770db21a8abb8c04813c27f7;p=banana.git diff --git a/banana/banana.inc.php.in b/banana/banana.inc.php.in index 7858929..b1ec2b2 100644 --- a/banana/banana.inc.php.in +++ b/banana/banana.inc.php.in @@ -82,33 +82,49 @@ class Banana var $post; var $spool; + var $get; + function Banana() { $this->_require('NetNNTP'); setlocale(LC_ALL, $this->profile['locale']); $this->nntp = new nntp($this->host); + if (!$this->nntp || !$this->nntp->valid) { + $this->nntp = null; + } } - function run($class = 'Banana') + /** Run Banana + * @param STRING class Name of the class to use + * @param ARRAY myget If defined is used instead of get + */ + function run($class = 'Banana', $myget = null) { global $banana; Banana::_require('misc'); $banana = new $class(); + if (is_null($myget)) { + $banana->get = $_GET; + } else { + $banana->get = $myget; + } + + if (!$banana->nntp) { return '

'._b_('Impossible de contacter le serveur').'

'; } - $group = empty($_GET['group']) ? null : strtolower($_GET['group']); - $artid = empty($_GET['artid']) ? null : strtolower($_GET['artid']); - $partid = !isset($_GET['part']) ? -1 : $_GET['part']; + $group = empty($banana->get['group']) ? null : $banana->get['group']; + $artid = empty($banana->get['artid']) ? null : strtolower($banana->get['artid']); + $partid = !isset($banana->get['part']) ? -1 : $banana->get['part']; $banana->state = Array ('group' => $group, 'artid' => $artid); if (is_null($group)) { - if (isset($_GET['subscribe'])) { + if (isset($banana->get['subscribe'])) { return $banana->action_listSubs(); - } elseif (isset($_POST['subscribe'])) { + } elseif (isset($_POST['validsubs'])) { $banana->action_saveSubs(); } return $banana->action_listGroups(); @@ -116,10 +132,10 @@ class Banana } elseif (is_null($artid)) { if (isset($_POST['action']) && $_POST['action'] == 'new') { return $banana->action_doFup($group, isset($_POST['artid']) ? intval($_POST['artid']) : -1); - } elseif (isset($_GET['action']) && $_GET['action'] == 'new') { + } elseif (isset($banana->get['action']) && $banana->get['action'] == 'new') { return $banana->action_newFup($group); } else { - return $banana->action_showThread($group, isset($_GET['first']) ? intval($_GET['first']) : 1); + return $banana->action_showThread($group, isset($banana->get['first']) ? intval($banana->get['first']) : 1); } } else { @@ -129,13 +145,16 @@ class Banana $res = ''; } - if (isset($_GET['action'])) { - switch ($_GET['action']) { + if (isset($banana->get['action'])) { + switch ($banana->get['action']) { case 'cancel': $res .= $banana->action_showArticle($group, $artid, $partid); if ($banana->post->checkcancel()) { $form = '

'._b_('Voulez-vous vraiment annuler ce message ?').'

' - . "

" + . '

' . '' . '' . '

'; @@ -148,12 +167,12 @@ class Banana } } - if (isset($_GET['pj'])) { + if (isset($banana->get['pj'])) { $action = false; - if (isset($_GET['action']) && $_GET['action'] == 'view') { + if (isset($banana->get['action']) && $banana->get['action'] == 'view') { $action = true; } - $att = $banana->action_getAttachment($group, $artid, $_GET['pj'], $action); + $att = $banana->action_getAttachment($group, $artid, $banana->get['pj'], $action); if ($att != "") { return $res.$att; } @@ -202,7 +221,9 @@ class Banana function action_showThread($group, $first) { - $this->_newSpool($group, $this->profile['display'], $this->profile['lastnews']); + if (!$this->_newSpool($group, $this->profile['display'], $this->profile['lastnews'])) { + return '

'._b_('Impossible charger la liste des messages de ') . $group . '

'; + } if ($first > count($this->spool->overview)) { $first = count($this->spool->overview); @@ -222,9 +243,11 @@ class Banana function action_showArticle($group, $id, $part) { - $this->_newSpool($group, $this->profile['display'], $this->profile['lastnews']); - $this->_newPost($id); - if (!$this->post) { + if (!$this->_newSpool($group, $this->profile['display'], $this->profile['lastnews'])) { + return '

'._b_('Impossible charger la liste des messages de ') . $group . '

'; + } + + if (!$this->_newPost($id)) { if ($this->nntp->lasterrorcode == "423") { $this->spool->delid($id); } @@ -243,9 +266,11 @@ class Banana function action_getAttachment($group, $id, $pjid, $action) { - $this->_newSpool($group, $this->profile['display'], $this->profile['lastnews']); - $this->_newPost($id); - if (!$this->post) { + if (!$this->_newSpool($group, $this->profile['display'], $this->profile['lastnews'])) { + return '

'._b_('Impossible charger la liste des messages').'

'; + } + + if (!$this->_newPost($id)) { if ($this->nntp->lasterrorcode == "423") { $this->spool->delid($id); } @@ -263,8 +288,13 @@ class Banana function action_cancelArticle($group, $id) { - $this->_newSpool($group, $this->profile['display'], $this->profile['lastnews']); - $this->_newPost($id); + if (!$this->_newSpool($group, $this->profile['display'], $this->profile['lastnews'])) { + return '

'._b_('Impossible charger la liste des messages').'

'; + } + + if (!$this->_newPost($id)) { + return '

'._b_('Impossible de trouver le message à annuler').'

'; + } $mid = array_search($id, $this->spool->ids); if (!$this->post->checkcancel()) { @@ -280,7 +310,8 @@ class Banana if ($this->nntp->post($msg)) { $this->spool->delid($id); $this->nntp->quit(); - header("Location: ?group=$group&first=$id"); + redirectInBanana(Array('group' => $group, + 'first' => $id)); } else { return '

'._b_('Impossible d\'annuler le message').'

'; } @@ -293,8 +324,7 @@ class Banana if ($id > 0) { $this->nntp->group($group); - $this->_newPost($id); - if ($this->post) { + if ($this->_newPost($id)) { $subject = preg_replace("/^re\s*:\s*/i", '', 'Re: '.$this->post->headers['subject']); $body = utf8_encode($this->post->name." "._b_("a écrit"))." :\n".wrap($this->post->get_body(), "> "); $target = isset($this->post->headers['followup-to']) ? $this->post->headers['followup-to'] : $this->post->headers['newsgroups']; @@ -305,7 +335,9 @@ class Banana $cuts = displayshortcuts(); $html = '

'._b_('Nouveau message').'

'.$cuts; - $html .= '
'; + $html .= ''; $html .= ''; $html .= ''; $html .= ''; @@ -317,16 +349,16 @@ class Banana $html .= ''; if ($this->can_attach) { - $html .= ''; + $html .= ''; $html .= ''; } - $html .= ''; + $html .= ''; $html .= '
'._b_('En-têtes').'
'._b_('Nom').''.htmlentities($this->profile['name']).'
'._b_('Pièce jointe').'
'._b_('Pièce jointe').'
'; $html .= '
'; + $html .= '
'; if ($id > 0) { $html .= ''; } $html .= ''; - $html .= '
'; return $html.$cuts; @@ -341,18 +373,33 @@ class Banana $_POST[$key] = utf8_encode($_POST[$key]); } } + + $forums = preg_split('/\s*(,|;)\s*/', $_POST['newsgroups']); + $fup = $_POST['followup']; + if (sizeof($forums) > 1) { + if (empty($fup)) { + $fup = $forums[0]; + } + } + $to = implode(',', $forums); + + if (!$this->_newSpool($group, $this->profile['display'], $this->profile['lastnews'])) { + return '

'._b_('Impossible charger la liste des messages').'

'; + } - $this->_newSpool($group, $this->profile['display'], $this->profile['lastnews']); $body = preg_replace("/\n\.[ \t\r]*\n/m", "\n..\n", $_POST['body']); - $msg = 'From: '.$this->profile['name']."\n" - . "Newsgroups: ".$_POST['newsgroups']."\n" - . "Subject: ".headerEncode($_POST['subject'], 128)."\n" + $msg = 'From: ' . $this->profile['name'] . "\n" + . "Newsgroups: ". $to . "\n" + . "Subject: " . headerEncode($_POST['subject'], 128) . "\n" . (empty($this->profile['org']) ? '' : "Organization: {$this->profile['org']}\n") - . (empty($_POST['followup']) ? '' : 'Followup-To: '.$_POST['followup']."\n"); + . (empty($fup) ? '' : 'Followup-To: ' . $fup . "\n"); if ($artid != -1) { $this->_require('post'); $post = new BananaPost($artid); + if (!$post || !$post->valid) { + return '

'._b_('Impossible charger le message d\'origine').'

'; + } $refs = ( isset($post->headers['references']) ? $post->headers['references']." " : "" ); $msg .= "References: $refs{$post->headers['message-id']}\n"; } @@ -397,7 +444,11 @@ class Banana $msg .= $this->custom.$this->profile['customhdr']."\n".$body; if ($this->nntp->post($msg)) { - header("Location: ?group=$group".($artid==-1 ? '' : "&first=$artid")); + $dir = Array('group' => $group); + if ($artid != -1) { + $dir['first'] = $artid; + } + redirectInBanana($dir); } else { return "

"._b_('Impossible de poster le message')."

".$this->action_showThread($group, $artid); } @@ -411,13 +462,23 @@ class Banana $this->_require('spool'); if (!$this->spool || $this->spool->group != $group) { $this->spool = new BananaSpool($group, $disp, $since); + if (!$this->spool || !$this->spool->valid) { + $this->spool = null; + return false; + } } + return true; } function _newPost($id) { $this->_require('post'); $this->post = new BananaPost($id); + if (!$this->post || !$this->post->valid) { + $this->post = null; + return false; + } + return true; } function _newGroup() @@ -477,4 +538,5 @@ class Banana } } +// vim:set et sw=4 sts=4 ts=4 ?>