Commit | Line | Data |
---|---|---|
abd0915a PHM |
1 | <?php |
2 | /******************************************************************************** | |
3 | * install.d/config.inc.php : configuration file | |
4 | * -------------------------- | |
5 | * | |
6 | * This file is part of the banana distribution | |
7 | * Copyright: See COPYING files that comes with this distribution | |
8 | ********************************************************************************/ | |
9 | ||
10 | class Banana | |
11 | { | |
9e223b38 | 12 | var $maxspool = 3000; |
abd0915a | 13 | |
9e223b38 | 14 | var $hdecode = array('from','name','organization','subject'); |
47117a0e | 15 | var $parse_hdr = array('content-disposition', 'content-transfer-encoding', |
16 | 'content-type', 'content-id', 'date', 'followup-to', | |
17 | 'from', 'message-id', 'newsgroups', 'organization', | |
18 | 'references', 'subject', 'x-face'); | |
19 | var $show_hdr = array('from', 'newsgroups', 'followup', 'date', | |
20 | 'organization', 'references', 'x-face'); | |
abd0915a | 21 | |
c6a522df | 22 | /** Favorites MIMEtypes to use, by order for reading multipart messages |
23 | */ | |
24 | var $body_mime = array('text/plain', 'text/html', 'text/richtext'); | |
2509bf96 | 25 | /** Indicate wether posting attachment is allowed |
26 | */ | |
27 | var $can_attach = true; | |
28 | /** Maximum allowed file size for attachment | |
29 | */ | |
218e9ec8 | 30 | var $maxfilesize = 100000; |
31 | /** Indicate wether x-face should be skinned as specials data or not | |
32 | */ | |
33 | var $formatxface = true; | |
abd0915a | 34 | |
b035d759 | 35 | /** Regexp for selecting newsgroups to show (if empty, match all newsgroups) |
36 | * ex : '^xorg\..*' for xorg.* | |
37 | */ | |
38 | var $grp_pattern; | |
39 | ||
9e223b38 | 40 | var $tbefore = 5; |
41 | var $tafter = 5; | |
42 | var $tmax = 50; | |
abd0915a | 43 | |
9e223b38 | 44 | var $wrap = 74; |
e04e6059 | 45 | /** Match an url |
46 | * Should be included in a regexp delimited using ! (eg: "!$url_regexp!i") | |
47 | * If it matches, return 3 main parts : | |
48 | * \\1 and \\3 are delimiters | |
49 | * \\2 is the url | |
50 | * | |
51 | * eg : preg_match("!$url_regexp!i", "[http://www.polytechnique.org]", $matches); | |
52 | * $matches[1] = "[" | |
53 | * $matches[2] = "http://www.polytechnique.org" | |
54 | * $matches[3] = "]" | |
55 | */ | |
b03e1ae2 | 56 | var $url_regexp = '(["\[])?((?:https?|ftp|news)://(?:&|,*[a-z@0-9.~%$£µ&i#\-+=_/\?])*)(["\]])?'; |
abd0915a | 57 | |
e04e6059 | 58 | |
2509bf96 | 59 | /** Boundary for multipart messages |
60 | */ | |
73ab762c | 61 | var $boundary = 'bananaBoundary42'; |
62 | /** Global headers to use for messages | |
2509bf96 | 63 | */ |
73ab762c | 64 | var $custom = "Mime-Version: 1.0\nUser-Agent: Banana @VERSION@\n"; |
2509bf96 | 65 | /** Global headers to use from multipart messages |
66 | */ | |
73ab762c | 67 | var $custom_mp = "Content-Type: multipart/mixed; boundary=\"bananaBoundary42\"\nContent-Transfer-Encoding: 7bit\n"; |
68 | /** Body type when using plain text | |
2509bf96 | 69 | */ |
73ab762c | 70 | var $custom_plain= "Content-Type: text/plain; charset=utf-8\nContent-Transfert-Encoding: 8bit\n"; |
abd0915a | 71 | |
2509bf96 | 72 | /** News serveur to use |
73 | */ | |
9e223b38 | 74 | var $host = 'news://localhost:119/'; |
abd0915a | 75 | |
2509bf96 | 76 | /** User profile |
77 | */ | |
9e223b38 | 78 | var $profile = Array( 'name' => 'Anonymous <anonymouse@example.com>', 'sig' => '', 'org' => '', |
abd0915a PHM |
79 | 'customhdr' =>'', 'display' => 0, 'lastnews' => 0, 'locale' => 'fr_FR', 'subscribe' => array()); |
80 | ||
d83e052b | 81 | var $state = Array('group' => null, 'artid' => null, 'action' => null); |
abd0915a PHM |
82 | var $nntp; |
83 | var $groups; | |
84 | var $newgroups; | |
85 | var $post; | |
86 | var $spool; | |
87 | ||
d5588318 | 88 | var $get; |
5d58099e | 89 | |
abd0915a PHM |
90 | function Banana() |
91 | { | |
92 | $this->_require('NetNNTP'); | |
93 | setlocale(LC_ALL, $this->profile['locale']); | |
94 | $this->nntp = new nntp($this->host); | |
7c111d8d | 95 | if (!$this->nntp || !$this->nntp->valid) { |
96 | $this->nntp = null; | |
97 | } | |
abd0915a PHM |
98 | } |
99 | ||
d5588318 | 100 | /** Run Banana |
101 | * @param STRING class Name of the class to use | |
102 | * @param ARRAY myget If defined is used instead of get | |
103 | */ | |
5d58099e | 104 | function run($class = 'Banana', $myget = null) |
abd0915a PHM |
105 | { |
106 | global $banana; | |
5d133234 | 107 | |
abd0915a PHM |
108 | Banana::_require('misc'); |
109 | $banana = new $class(); | |
110 | ||
5d58099e | 111 | if (is_null($myget)) { |
112 | $banana->get = $_GET; | |
113 | } else { | |
114 | $banana->get = $myget; | |
115 | } | |
116 | ||
abd0915a | 117 | if (!$banana->nntp) { |
12ed25e1 | 118 | $banana->state['page'] = 'error'; |
119 | return makeTable('<p class="error">'._b_('Impossible de contacter le serveur').'</p>'); | |
abd0915a PHM |
120 | } |
121 | ||
36737fd3 | 122 | $group = empty($banana->get['group']) ? null : $banana->get['group']; |
197c4707 | 123 | if (!is_null($group) |
124 | && isset($banana->grp_pattern) && !preg_match('/' . $banana->grp_pattern . '/', $group)) { | |
12ed25e1 | 125 | $banana->state['page'] = 'error'; |
126 | return makeTable('<p class="error">' | |
02198ace | 127 | . $group . _b_(' : ce newsgroup n\'existe pas ou vous n\'avez pas l\'autorisation d\'y accéder') |
12ed25e1 | 128 | . '</p>'); |
02198ace | 129 | } |
5d58099e | 130 | $artid = empty($banana->get['artid']) ? null : strtolower($banana->get['artid']); |
131 | $partid = !isset($banana->get['part']) ? -1 : $banana->get['part']; | |
d83e052b | 132 | $action = !isset($banana->get['action']) ? null : $banana->get['action']; |
133 | $banana->state = Array ('group' => $group, 'artid' => $artid, 'action' => $action); | |
abd0915a PHM |
134 | |
135 | if (is_null($group)) { | |
5d58099e | 136 | if (isset($banana->get['subscribe'])) { |
12ed25e1 | 137 | $banana->state['page'] = 'subscribe'; |
8003ba55 | 138 | return makeTable($banana->action_listSubs()); |
a80c6fda | 139 | } elseif (isset($_POST['validsubs'])) { |
abd0915a PHM |
140 | $banana->action_saveSubs(); |
141 | } | |
12ed25e1 | 142 | $banana->state['page'] = 'forums'; |
8003ba55 | 143 | return makeTable($banana->action_listGroups()); |
abd0915a PHM |
144 | |
145 | } elseif (is_null($artid)) { | |
abd0915a | 146 | if (isset($_POST['action']) && $_POST['action'] == 'new') { |
8003ba55 | 147 | return makeTable($banana->action_doFup($group, isset($_POST['artid']) ? intval($_POST['artid']) : -1)); |
d83e052b | 148 | } elseif ($action == 'new') { |
12ed25e1 | 149 | $banana->state['page'] = 'action'; |
8003ba55 | 150 | return makeTable($banana->action_newFup($group)); |
abd0915a | 151 | } else { |
12ed25e1 | 152 | $banana->state['page'] = 'group'; |
8003ba55 | 153 | return makeTable($banana->action_showThread($group, isset($banana->get['first']) ? intval($banana->get['first']) : 1)); |
abd0915a PHM |
154 | } |
155 | ||
156 | } else { | |
abd0915a PHM |
157 | if (isset($_POST['action']) && $_POST['action']=='cancel') { |
158 | $res = $banana->action_cancelArticle($group, $artid); | |
159 | } else { | |
160 | $res = ''; | |
161 | } | |
162 | ||
d83e052b | 163 | if (!is_null($action)) { |
12ed25e1 | 164 | $banana->state['page'] = 'action'; |
d83e052b | 165 | switch ($action) { |
abd0915a | 166 | case 'cancel': |
8f6f50fb | 167 | $res .= $banana->action_showArticle($group, $artid, $partid); |
abd0915a PHM |
168 | if ($banana->post->checkcancel()) { |
169 | $form = '<p class="error">'._b_('Voulez-vous vraiment annuler ce message ?').'</p>' | |
33adc9f6 | 170 | . '<form action="' |
d5588318 | 171 | . htmlentities(makeLink(Array('group' => $group, |
172 | 'artid' => $artid))) | |
173 | . '" method="post"><p>' | |
abd0915a PHM |
174 | . '<input type="hidden" name="action" value="cancel" />' |
175 | . '<input type="submit" value="Annuler !" />' | |
176 | . '</p></form>'; | |
8003ba55 | 177 | return makeTable($form . $res); |
abd0915a | 178 | } |
8003ba55 | 179 | return makeTable("" . $res); |
abd0915a PHM |
180 | |
181 | case 'new': | |
8003ba55 | 182 | return makeTable($banana->action_newFup($group, $artid)); |
abd0915a PHM |
183 | } |
184 | } | |
d43ebde4 | 185 | |
5d58099e | 186 | if (isset($banana->get['pj'])) { |
d83e052b | 187 | $view = false; |
188 | if ($action == 'view') { | |
189 | $view = true; | |
d43ebde4 | 190 | } |
d83e052b | 191 | $att = $banana->action_getAttachment($group, $artid, $banana->get['pj'], $view); |
8003ba55 | 192 | return makeTable($res . $att); |
d43ebde4 | 193 | } |
194 | ||
12ed25e1 | 195 | $banana->state['page'] = 'message'; |
8003ba55 | 196 | return makeTable($banana->action_showArticle($group, $artid, $partid)); |
abd0915a PHM |
197 | } |
198 | } | |
199 | ||
200 | /**************************************************************************/ | |
201 | /* actions */ | |
202 | /**************************************************************************/ | |
203 | ||
204 | function action_saveSubs() | |
205 | { | |
206 | return; | |
207 | } | |
208 | ||
209 | function action_listGroups() | |
210 | { | |
211 | $this->_newGroup(); | |
212 | ||
8003ba55 | 213 | $res = $this->groups->to_html(); |
abd0915a PHM |
214 | if (count($this->newgroups->overview)) { |
215 | $res .= '<p>'._b_('Les forums suivants ont été créés depuis ton dernier passage :').'</p>'; | |
216 | $res .= $this->newgroups->to_html(); | |
217 | } | |
218 | ||
219 | $this->nntp->quit(); | |
8003ba55 | 220 | return $res; |
abd0915a PHM |
221 | } |
222 | ||
223 | function action_listSubs() | |
224 | { | |
225 | $this->_require('groups'); | |
226 | $this->groups = new BananaGroups(BANANA_GROUP_ALL); | |
227 | ||
8003ba55 | 228 | $res = $this->groups->to_html(true); |
abd0915a PHM |
229 | |
230 | $this->nntp->quit(); | |
231 | return $res; | |
232 | } | |
233 | ||
234 | function action_showThread($group, $first) | |
235 | { | |
7c111d8d | 236 | if (!$this->_newSpool($group, $this->profile['display'], $this->profile['lastnews'])) { |
36737fd3 | 237 | return '<p class="error">'._b_('Impossible charger la liste des messages de ') . $group . '</p>'; |
7c111d8d | 238 | } |
abd0915a PHM |
239 | |
240 | if ($first > count($this->spool->overview)) { | |
241 | $first = count($this->spool->overview); | |
242 | } | |
243 | ||
244 | $first = $first - ($first % $this->tmax) + 1; | |
abd0915a | 245 | |
8003ba55 | 246 | $pages = displayPages($first); |
247 | $res = $pages . $this->spool->to_html($first, $first+$this->tmax) . $pages; | |
abd0915a PHM |
248 | |
249 | $this->nntp->quit(); | |
250 | ||
8003ba55 | 251 | return $res; |
abd0915a PHM |
252 | } |
253 | ||
8f6f50fb | 254 | function action_showArticle($group, $id, $part) |
abd0915a | 255 | { |
7c111d8d | 256 | if (!$this->_newSpool($group, $this->profile['display'], $this->profile['lastnews'])) { |
36737fd3 | 257 | return '<p class="error">'._b_('Impossible charger la liste des messages de ') . $group . '</p>'; |
7c111d8d | 258 | } |
259 | ||
260 | if (!$this->_newPost($id)) { | |
abd0915a PHM |
261 | if ($this->nntp->lasterrorcode == "423") { |
262 | $this->spool->delid($id); | |
263 | } | |
264 | $this->nntp->quit(); | |
8003ba55 | 265 | return '<p class="error">'._b_('Impossible d\'accéder au message. Le message a peut-être été annulé').'</p>'; |
abd0915a PHM |
266 | } |
267 | ||
8003ba55 | 268 | $res = $this->post->to_html($part); |
abd0915a PHM |
269 | |
270 | $this->nntp->quit(); | |
271 | ||
8003ba55 | 272 | return $res; |
abd0915a PHM |
273 | } |
274 | ||
d43ebde4 | 275 | function action_getAttachment($group, $id, $pjid, $action) |
276 | { | |
7c111d8d | 277 | if (!$this->_newSpool($group, $this->profile['display'], $this->profile['lastnews'])) { |
278 | return '<p class="error">'._b_('Impossible charger la liste des messages').'</p>'; | |
279 | } | |
280 | ||
281 | if (!$this->_newPost($id)) { | |
d43ebde4 | 282 | if ($this->nntp->lasterrorcode == "423") { |
283 | $this->spool->delid($id); | |
284 | } | |
285 | $this->nntp->quit(); | |
8003ba55 | 286 | return '<p class="error">'._b_('Impossible d\'accéder au message. Le message a peut-être été annulé').'</p>'; |
d43ebde4 | 287 | } |
288 | ||
289 | $this->nntp->quit(); | |
290 | if ($this->post->get_attachment($pjid, $action)) { | |
291 | return ""; | |
292 | } else { | |
8003ba55 | 293 | return '<p calss="error">'._b_('Impossible d\'accéder à la pièce jointe.').'</p>'; |
d43ebde4 | 294 | } |
295 | } | |
296 | ||
abd0915a PHM |
297 | function action_cancelArticle($group, $id) |
298 | { | |
7c111d8d | 299 | if (!$this->_newSpool($group, $this->profile['display'], $this->profile['lastnews'])) { |
300 | return '<p class="error">'._b_('Impossible charger la liste des messages').'</p>'; | |
301 | } | |
302 | ||
303 | if (!$this->_newPost($id)) { | |
304 | return '<p class="error">'._b_('Impossible de trouver le message à annuler').'</p>'; | |
305 | } | |
abd0915a PHM |
306 | $mid = array_search($id, $this->spool->ids); |
307 | ||
308 | if (!$this->post->checkcancel()) { | |
309 | return '<p class="error">'._b_('Vous n\'avez pas les permissions pour annuler ce message').'</p>'; | |
310 | } | |
311 | $msg = 'From: '.$this->profile['name']."\n" | |
312 | . "Newsgroups: $group\n" | |
313 | . "Subject: cmsg $mid\n" | |
314 | . $this->custom | |
315 | . "Control: cancel $mid\n" | |
316 | . "\n" | |
317 | . "Message canceled with Banana"; | |
318 | if ($this->nntp->post($msg)) { | |
55336123 | 319 | $ndx = $this->spool->getndx($artid) - 1; |
320 | if ($ndx > 50) { | |
321 | $ndx = 0; | |
322 | } | |
abd0915a PHM |
323 | $this->spool->delid($id); |
324 | $this->nntp->quit(); | |
e8de34ae | 325 | redirectInBanana(Array('group' => $group, |
55336123 | 326 | 'first' => $ndx)); |
abd0915a PHM |
327 | } else { |
328 | return '<p class="error">'._b_('Impossible d\'annuler le message').'</p>'; | |
329 | } | |
330 | } | |
331 | ||
332 | function action_newFup($group, $id = -1) | |
333 | { | |
334 | $subject = $body = ''; | |
335 | $target = $group; | |
336 | ||
ab663ccb | 337 | if (@$_POST['action'] == 'new') { |
338 | $subject = $_POST['subject']; | |
339 | $body = $_POST['body']; | |
340 | $target = $_POST['newsgroups']; | |
341 | $followup = $_POST['followup']; | |
eb31725e | 342 | $this->state['page'] = 'action'; |
343 | $this->state['group'] = $group; | |
344 | $this->state['action'] = 'new'; | |
345 | if ($id != -1) { | |
346 | $this->state['artid'] = $id; | |
347 | } | |
ab663ccb | 348 | } elseif ($id > 0) { |
abd0915a | 349 | $this->nntp->group($group); |
7c111d8d | 350 | if ($this->_newPost($id)) { |
eb31725e | 351 | $subject = 'Re: ' . preg_replace("/^re\s*:\s*/i", '', $this->post->headers['subject']); |
9c492300 | 352 | $body = to_entities(utf8_encode($this->post->name." "._b_("a écrit"))." :\n" |
ab663ccb | 353 | . wrap($this->post->get_body(), "> ") |
9c492300 | 354 | . ($this->profile['sig'] ? "\n\n-- \n". $this->profile['sig'] : '')); |
ab663ccb | 355 | $target = isset($this->post->headers['followup-to']) ? |
356 | $this->post->headers['followup-to'] : $this->post->headers['newsgroups']; | |
357 | $followup = null; | |
abd0915a | 358 | } |
665a7848 | 359 | } else { |
9c492300 | 360 | $targe = $group; |
361 | $subject = $followup = null; | |
362 | $body = $this->profile['sig'] ? "\n\n-- \n". $this->profile['sig'] : ''; | |
abd0915a PHM |
363 | } |
364 | ||
365 | $this->nntp->quit(); | |
366 | ||
8003ba55 | 367 | $html = '<form enctype="multipart/form-data" action="' |
d5588318 | 368 | . htmlentities(makeLink(Array('group' => $group))) |
ab663ccb | 369 | . '" method="post" accept-charset="utf-8">' |
370 | . '<table class="bicol" cellpadding="0" cellspacing="0">' | |
371 | . '<tr><th colspan="2">' . _b_('En-têtes') . '</th></tr>' | |
372 | . '<tr><td>' . _b_('Nom') . '</td>' | |
373 | . '<td>' . htmlentities($this->profile['name']) . '</td></tr>' | |
374 | . '<tr><td>' . _b_('Sujet') . '</td>' | |
375 | . '<td><input type="text" name="subject" value="' . htmlentities($subject) . '" size="60" /></td></tr>' | |
376 | . '<tr><td>' . _b_('Forums') . '</td>' | |
377 | . '<td><input type="text" name="newsgroups" value="' . htmlentities($target) . '" size="60" /></td></tr>' | |
378 | . '<tr><td>' . _b_('Suivi à') . '</td>' | |
379 | . '<td><input type="text" name="followup" value="' . htmlentities($followup). '" size="60" /></td></tr>' | |
380 | . '<tr><td>' . _b_('Organisation') . '</td>' | |
381 | . '<td>' . $this->profile['org'] . '</td></tr>' | |
382 | . '<tr><th colspan="2">' . _b_('Corps') . '</th></tr>' | |
383 | . '<tr><td colspan="2"><textarea name="body" cols="74" rows="16">' | |
665a7848 | 384 | . $body . '</textarea></td></tr>'; |
c460d1f9 | 385 | if ($this->can_attach) { |
ab663ccb | 386 | $html .= '<tr><th colspan="2">' . _b_('Pièce jointe') . '</th></tr>' |
387 | . '<tr><td colspan="2">' | |
388 | . '<input type="hidden" name="MAX_FILE_SIZE" value="' . $this->maxfilesize . '" />' | |
389 | . '<input type="file" name="newpj" size="40"/></td></tr>'; | |
c460d1f9 | 390 | } |
d5588318 | 391 | $html .= '<tr><th colspan="2">'; |
eb31725e | 392 | if ($id != -1) { |
393 | $html .= '<input type="hidden" name="artid" value="' . $id . '" />'; | |
abd0915a | 394 | } |
ab663ccb | 395 | $html .= '<input type="hidden" name="action" value="new" />' |
396 | . '<input type="submit" value="' . _b_('Envoyer le message') . '" /></th></tr>' | |
397 | . '</table></form>'; | |
abd0915a | 398 | |
8003ba55 | 399 | return $html; |
abd0915a PHM |
400 | } |
401 | ||
402 | function action_doFup($group, $artid = -1) | |
403 | { | |
ab663ccb | 404 | if ( ! (is_utf8($_POST['subject']) && is_utf8($_POST['body']))) { |
405 | foreach(Array('subject', 'body') as $key) { | |
c42efe2f PHM |
406 | $_POST[$key] = utf8_encode($_POST[$key]); |
407 | } | |
408 | } | |
103b13cf | 409 | |
d5588318 | 410 | $forums = preg_split('/\s*(,|;)\s*/', $_POST['newsgroups']); |
411 | $fup = $_POST['followup']; | |
412 | if (sizeof($forums) > 1) { | |
413 | if (empty($fup)) { | |
414 | $fup = $forums[0]; | |
415 | } | |
416 | } | |
417 | $to = implode(',', $forums); | |
418 | ||
7c111d8d | 419 | if (!$this->_newSpool($group, $this->profile['display'], $this->profile['lastnews'])) { |
420 | return '<p class="error">'._b_('Impossible charger la liste des messages').'</p>'; | |
421 | } | |
d5588318 | 422 | |
abd0915a | 423 | $body = preg_replace("/\n\.[ \t\r]*\n/m", "\n..\n", $_POST['body']); |
6551668a | 424 | $msg = 'From: ' . $this->profile['name'] . "\n" |
103b13cf | 425 | . "Newsgroups: ". $to . "\n" |
6551668a | 426 | . "Subject: " . headerEncode($_POST['subject'], 128) . "\n" |
abd0915a | 427 | . (empty($this->profile['org']) ? '' : "Organization: {$this->profile['org']}\n") |
6551668a | 428 | . (empty($fup) ? '' : 'Followup-To: ' . $fup . "\n"); |
abd0915a PHM |
429 | |
430 | if ($artid != -1) { | |
431 | $this->_require('post'); | |
432 | $post = new BananaPost($artid); | |
7c111d8d | 433 | if (!$post || !$post->valid) { |
434 | return '<p class="error">'._b_('Impossible charger le message d\'origine').'</p>'; | |
435 | } | |
abd0915a PHM |
436 | $refs = ( isset($post->headers['references']) ? $post->headers['references']." " : "" ); |
437 | $msg .= "References: $refs{$post->headers['message-id']}\n"; | |
438 | } | |
439 | ||
73ab762c | 440 | $body_headers = $this->custom_plain; |
4afc2314 | 441 | $body = wrap($body, ""); |
25c3735d | 442 | |
443 | // include attachment in the body | |
9e223b38 | 444 | $uploaded = $this->_upload('newpj'); |
ff52ce7b | 445 | switch ($uploaded['error']) { |
446 | case UPLOAD_ERR_OK: | |
73ab762c | 447 | $this->custom = $this->custom_mp.$this->custom; |
448 | $body = $this->_make_part($body_headers, $body); | |
449 | $file_head = 'Content-Type: '.$uploaded['type'].'; name="'.$uploaded['name']."\"\n" | |
450 | . 'Content-Transfer-Encoding: '.$uploaded['encoding']."\n" | |
451 | . 'Content-Disposition: attachment; filename="'.$uploaded['name']."\"\n"; | |
452 | $body .= $this->_make_part($file_head, $uploaded['data']); | |
453 | $body .= "\n--".$this->boundary.'--'; | |
ff52ce7b | 454 | break; |
455 | ||
456 | case UPLOAD_ERR_INI_SIZE: case UPLOAD_ERR_FORM_SIZE: | |
457 | return '<p class="error">'._b_('Fichier trop gros pour être envoyé : ') | |
458 | .$uploaded['name'].'</p>'.$this->action_showThread($group, $artid); | |
459 | ||
460 | case UPLOAD_ERR_PARTIAL: | |
461 | return '<p class="error">'._b_('Erreur lors de l\'upload de ') | |
462 | .$uploaded['name'].'</p>'.$this->action_showThread($group, $artid); | |
463 | ||
464 | case UPLOAD_ERR_NO_FILE: | |
465 | return '<p class="error">'._b_('Le fichier spécifié n\'existe pas : ') | |
466 | .$uploaded['name'].'</p>'.$this->action_showThread($group, $artid); | |
467 | ||
468 | case UPLOAD_ERR_NO_TMP_DIR: | |
469 | return '<p class="error">'._b_('Une erreur est survenue sur le serveur lors de l\'upload de ') | |
470 | .$uploaded['name'].'</p>'.$this->action_showThread($group, $artid); | |
73ab762c | 471 | |
472 | default: | |
473 | $this->custom = $body_headers.$this->custom; | |
9e223b38 | 474 | } |
25c3735d | 475 | |
476 | // finalise and post the message | |
477 | $msg .= $this->custom.$this->profile['customhdr']."\n".$body; | |
abd0915a PHM |
478 | |
479 | if ($this->nntp->post($msg)) { | |
d5588318 | 480 | $dir = Array('group' => $group); |
481 | if ($artid != -1) { | |
55336123 | 482 | $ndx = $this->spool->getndx($artid); |
483 | if ($ndx > 50) { | |
484 | $dir['first'] = $ndx; | |
485 | } | |
d5588318 | 486 | } |
e8de34ae | 487 | redirectInBanana($dir); |
abd0915a | 488 | } else { |
665a7848 | 489 | return '<p class="error">' . _b_('Impossible de poster le message. Le serveur a retourné l\'erreur :') . '</p>' |
490 | . '<pre class="error">' . utf8_encode($this->nntp->lasterrortext) .'</pre>' | |
ab663ccb | 491 | . $this->action_newFup($group, $artid); |
abd0915a PHM |
492 | } |
493 | } | |
494 | ||
495 | /**************************************************************************/ | |
496 | /* Private functions */ | |
497 | /**************************************************************************/ | |
498 | ||
499 | function _newSpool($group, $disp=0, $since='') { | |
500 | $this->_require('spool'); | |
501 | if (!$this->spool || $this->spool->group != $group) { | |
502 | $this->spool = new BananaSpool($group, $disp, $since); | |
7c111d8d | 503 | if (!$this->spool || !$this->spool->valid) { |
504 | $this->spool = null; | |
505 | return false; | |
506 | } | |
abd0915a | 507 | } |
4f75645f | 508 | if (count($this->profile['subscribe']) > 0) { |
509 | $this->_newGroup(false); | |
510 | } | |
7c111d8d | 511 | return true; |
abd0915a PHM |
512 | } |
513 | ||
514 | function _newPost($id) | |
515 | { | |
516 | $this->_require('post'); | |
517 | $this->post = new BananaPost($id); | |
7c111d8d | 518 | if (!$this->post || !$this->post->valid) { |
519 | $this->post = null; | |
520 | return false; | |
521 | } | |
522 | return true; | |
abd0915a PHM |
523 | } |
524 | ||
4f75645f | 525 | function _newGroup($showNew = true) |
abd0915a PHM |
526 | { |
527 | $this->_require('groups'); | |
528 | $this->groups = new BananaGroups(BANANA_GROUP_SUB); | |
4f75645f | 529 | if ($showNew && $this->groups->type == BANANA_GROUP_SUB) { |
abd0915a PHM |
530 | $this->newgroups = new BananaGroups(BANANA_GROUP_NEW); |
531 | } | |
532 | } | |
533 | ||
534 | function _require($file) | |
535 | { | |
536 | require_once (dirname(__FILE__).'/'.$file.'.inc.php'); | |
537 | } | |
9e223b38 | 538 | |
539 | function _upload($file) | |
540 | { | |
541 | if ($_FILES[$file]['name'] == "") { | |
542 | return Array( 'error' => -1 ); | |
543 | } | |
544 | ||
545 | // upload | |
546 | $_FILES[$file]['tmp_name']; | |
547 | ||
548 | // test if upload is ok | |
549 | $file = $_FILES[$file]; | |
550 | if ($file['size'] == 0 || $file['error'] != 0) { | |
551 | if ($file['error'] == 0) { | |
552 | $file['error'] = -1; | |
553 | } | |
554 | return $file; | |
555 | } | |
556 | ||
557 | // adding custum data | |
558 | $mime = rtrim(shell_exec('file -bi '.$file['tmp_name'])); //Because mime_content_type don't work :( | |
559 | $encod = 'base64'; | |
560 | if (preg_match("@([^ ]+/[^ ]+); (.*)@", $mime, $format)) { | |
561 | $mime = $format[1]; | |
562 | $encod = $format[2]; | |
563 | } | |
564 | $data = fread(fopen($file['tmp_name'], 'r'), $file['size']); | |
565 | if ($encod == 'base64') { | |
566 | $data = chunk_split(base64_encode($data)); | |
567 | } | |
568 | $file['name'] = basename($file['name']); | |
569 | $file['type'] = $mime; | |
570 | $file['encoding'] = $encod; | |
571 | $file['data'] = $data; | |
572 | ||
573 | return $file; | |
574 | } | |
73ab762c | 575 | |
576 | function _make_part($headers, $body) | |
577 | { | |
578 | return "\n--".$this->boundary."\n".$headers."\n".$body; | |
579 | } | |
abd0915a PHM |
580 | } |
581 | ||
d5588318 | 582 | // vim:set et sw=4 sts=4 ts=4 |
abd0915a | 583 | ?> |