More robust tab structure
[banana.git] / banana / post.inc.php
CommitLineData
78cd27b3 1<?php
2/********************************************************************************
3* include/posts.inc.php : class for posts
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 for posts
11 */
12
13class BananaPost
14{
15 var $id;
16 /** headers */
17 var $headers;
18 /** body */
19 var $body;
1f75b135 20 /** formating */
21 var $messages;
7a0e2710 22 /** attachment */
23 var $pj;
78cd27b3 24 /** poster name */
25 var $name;
856dc84a 26 /** test validity */
27 var $valid = true;
78cd27b3 28
29 /** constructor
30 * @param $_id STRING MSGNUM or MSGID (a group should be selected in this case)
31 */
32 function BananaPost($_id)
33 {
34 global $banana;
1f75b135 35 $this->id = $_id;
36 $this->pj = array();
37 $this->messages = array();
50cd076e 38 if (!$this->_header()) {
856dc84a 39 $this->valid = false;
50cd076e 40 return null;
41 }
42
78cd27b3 43
44 if ($body = $banana->nntp->body($_id)) {
45 $this->body = join("\n", $body);
46 } else {
856dc84a 47 $this->valid = false;
50cd076e 48 return null;
78cd27b3 49 }
50
51 if (isset($this->headers['content-transfer-encoding'])) {
52 if (preg_match("/base64/", $this->headers['content-transfer-encoding'])) {
53 $this->body = base64_decode($this->body);
54 } elseif (preg_match("/quoted-printable/", $this->headers['content-transfer-encoding'])) {
55 $this->body = quoted_printable_decode($this->body);
56 }
57 }
58
a7cb2f0d 59 if ($this->_split_multipart($this->headers, $this->body)) {
60 $this->set_body_to_part(0);
c24c62e7 61 } else {
62 if(isset($mpart_type)) {
63 $this->_split_multipart($mpart_type[1], $mpart_boundary[1]);
64 }
c3f19b42 65 $this->_find_uuencode();
05074d42 66 $this->_fix_charset();
78cd27b3 67 }
68 }
69
c3f19b42 70 /** find and add uuencoded attachments
71 */
72 function _find_uuencode()
73 {
74 if (preg_match_all('@\n(begin \d+ ([^\r\n]+)\r?(?:\n(?!end)[^\n]*)*\nend)@', $this->body, $matches, PREG_SET_ORDER)) {
75 foreach ($matches as $match) {
76 $mime = trim(exec('echo '.escapeshellarg($match[1]).' | uudecode -o /dev/stdout | file -bi -'));
77 if ($mime != 'application/x-empty') {
f12fdb59 78 $this->body = trim(str_replace($match[0], '', $this->body));
c3f19b42 79 $body = $match[1];
80 $header['content-type'] = $mime.'; name="'.$match[2].'"';
81 $header['content-transfer-encoding'] = 'x-uuencode';
82 $header['content-disposition'] = 'attachment; filename="'.$match[2].'"';
83 $this->_add_attachment(Array('headers' => $header, 'body' => $body));
84 }
85 }
86 }
87 }
88
7a0e2710 89 /** split multipart messages
90 * @param $type STRING multipart type description
91 * @param $boundary STRING multipart boundary identification string
92 */
a7cb2f0d 93 function _split_multipart($headers, $body)
7a0e2710 94 {
75c9bae4 95 if (!isset($headers['content-type'])
96 || !preg_match("@multipart/([^;]+);@", $headers['content-type'], $type)) {
a7cb2f0d 97 return false;
98 }
99
100 preg_match("/boundary=\"?([^ \"]+)\"?/", $headers['content-type'], $boundary);
101 $boundary = $boundary[1];
102 $type = $type[1];
103 $parts = preg_split("@\n--$boundary(--|\n)@", $body);
7a0e2710 104 foreach ($parts as $part) {
a7cb2f0d 105 $part = $this->_get_part($part);
7a0e2710 106 $local_header = $part['headers'];
a7cb2f0d 107 $local_body = $part['body'];
108 if (!$this->_split_multipart($local_header, $local_body)) {
28ab52c0 109 $is_text = isset($local_header['content-type'])
110 && preg_match("@text/([^;]+);@", $local_header['content-type'])
111 && (!isset($local_header['content-disposition'])
112 || !preg_match('@attachment@', $local_header['content-disposition']));
a7cb2f0d 113
114 // alternative ==> multiple formats for messages
115 if ($type == 'alternative' && $is_text) {
116 array_push($this->messages, $part);
117
118 // !alternative ==> une body, others are attachments
119 } else if ($is_text) {
120 if (count($this->messages) == 0) {
121 $this->body = $local_body;
122 foreach (array_keys($local_header) as $key) {
123 $this->header[$key] = $local_header[$key];
124 }
125 array_push($this->messages, $part);
126 } else {
127 $this->_add_attachment($part);
128 }
129 } else {
130 $this->_add_attachment($part);
131 }
cc43419f 132 }
a529ea7b 133 }
a7cb2f0d 134 return true;
7a0e2710 135 }
136
137 /** extract new headers from the part
138 * @param $part STRING part of a multipart message
139 */
a529ea7b 140 function _get_part($part)
1f75b135 141 {
7a0e2710 142 global $banana;
143
75c9bae4 144 $local_headers = Array();
7a0e2710 145 $lines = split("\n", $part);
146 while (count($lines)) {
147 $line = array_shift($lines);
148 if ($line != "") {
a7cb2f0d 149 if (preg_match('@^[\t\r ]+@', $line) && isset($hdr)) {
150 $local_headers[$hdr] .= ' '.trim($line);
151 } else {
152 list($hdr, $val) = split(":[ \t\r]*", $line, 2);
153 $hdr = strtolower($hdr);
154 if (in_array($hdr, $banana->parse_hdr)) {
155 $local_headers[$hdr] = $val;
156 }
7a0e2710 157 }
158 } else {
159 break;
160 }
161 }
16b17ba5 162 $local_body = join("\n", $lines);
75c9bae4 163 if (isset($local_headers['content-transfer-encoding'])
164 && preg_match("/quoted-printable/", $local_headers['content-transfer-encoding'])) {
16b17ba5 165 $local_body = quoted_printable_decode($local_body);
166 }
167 return Array('headers' => $local_headers, 'body' => $local_body);
7a0e2710 168 }
169
1f75b135 170 /** add an attachment
171 */
a529ea7b 172 function _add_attachment($part)
1f75b135 173 {
7a0e2710 174 $local_header = $part['headers'];
175 $local_body = $part['body'];
176
28ab52c0 177 if ((isset($local_header['content-disposition']) && preg_match('/filename="?([^"]+)"?/', $local_header['content-disposition'], $filename))
178 || (isset($local_header['content-type']) && preg_match('/name="?([^"]+)"?/', $local_header['content-type'], $filename))) {
a7cb2f0d 179 $filename = $filename[1];
180 }
7a0e2710 181 if (!isset($filename)) {
75c9bae4 182 $filename = "attachment" . count($this->pj);
7a0e2710 183 }
184
28ab52c0 185 if (isset($local_header['content-type'])
186 && preg_match('/^\s*([^ ;]+);/', $local_header['content-type'], $mimetype)) {
187 $mimetype = $mimetype[1];
188 } else {
1f75b135 189 return false;
7a0e2710 190 }
191
28ab52c0 192 if (isset($local_header['content-id'])
193 && preg_match('/^\s*<([^> ]+)>/', $local_header['content-id'], $cid)) {
194 $cid = $cid[1];
195 } else {
196 $cid = null;
197 }
198
7a0e2710 199 array_push($this->pj, Array('MIME' => $mimetype,
200 'filename' => $filename,
201 'encoding' => strtolower($local_header['content-transfer-encoding']),
28ab52c0 202 'data' => $local_body,
203 'cid' => $cid));
1f75b135 204 return true;
7a0e2710 205 }
206
05074d42 207 /** Fix body charset (convert body to utf8)
208 * @return false if failed
209 */
210 function _fix_charset()
211 {
bc599299 212 if (preg_match('!charset="?([^;"]*)"?\s*(;|$)?!', $this->headers['content-type'], $matches)) {
05074d42 213 $body = iconv($matches[1], 'utf-8', $this->body);
214 if (strlen($body) == 0) {
215 return false;
216 }
217 $this->body = $body;
218 } else {
219 $this->body = utf8_encode($this->body);
220 }
221 return true;
222 }
223
a529ea7b 224 /** return body in plain text (useful for messages without a text/plain part)
225 */
226 function get_body()
227 {
228 preg_match("@text/([^;]+);@", $this->headers['content-type'], $format);
229 if ($format[1] == 'plain') {
230 return $this->body;
231 }
aef14768 232 if ($format[1] == 'richtext') {
233 return htmlToPlainText(richtextToHtml($this->body));
234 } else {
235 return htmlToPlainText($this->body);
a529ea7b 236 }
a529ea7b 237 }
238
28ab52c0 239 /** return local url for the given cid
240 * @param cid STRING
241 */
242 function find_attachment($cid)
243 {
244 global $banana;
245 $i = 0;
246 foreach ($this->pj as $pj) {
247 if ($pj['cid'] == $cid) {
248 return htmlentities(makeLink(Array('group' => $banana->state['group'],
249 'artid' => $this->id,
250 'pj' => $i,
251 'action' => 'view')));
252 }
253 $i++;
254 }
255 return 'cid:' . $cid;;
256 }
257
7a0e2710 258 /** decode an attachment
259 * @param pjid INT id of the attachment to decode
260 * @param action BOOL action to execute : true=view, false=download
261 */
1f75b135 262 function get_attachment($pjid, $action = false)
263 {
7a0e2710 264 if ($pjid >= count($this->pj)) {
265 return false;
266 } else {
267 $file = $this->pj[$pjid];
a529ea7b 268 header('Content-Type: '.$file['MIME'].'; name="'.$file['filename'].'"');
7a0e2710 269 if (!$action) {
270 header('Content-Disposition: attachment; filename="'.$file['filename'].'"');
a529ea7b 271 } else {
272 header('Content-Disposition: inline; filename="'.$file['filename'].'"');
273 }
7a0e2710 274 if ($file['encoding'] == 'base64') {
275 echo base64_decode($file['data']);
c3f19b42 276 } else if ($file['encoding'] == 'x-uuencode') {
277 passthru('echo '.escapeshellarg($file['data']).' | uudecode -o /dev/stdout');
7a0e2710 278 } else {
279 header('Content-Transfer-Encoding: '.$file['encoding']);
280 echo $file['data'];
281 }
282 return true;
283 }
284 }
285
1f75b135 286 /** set body to represent the given part
287 * @param partid INT index of the part in messages
288 */
289 function set_body_to_part($partid)
290 {
291 global $banana;
292
293 if (count($this->messages) == 0) {
294 return false;
295 }
296
297 $local_header = $this->messages[$partid]['headers'];
298 $this->body = $this->messages[$partid]['body'];
299 foreach ($banana->parse_hdr as $hdr) {
300 if (isset($local_header[$hdr])) {
301 $this->headers[$hdr] = $local_header[$hdr];
302 }
303 }
cc43419f 304
05074d42 305 $this->_fix_charset();
1f75b135 306 return true;
307 }
308
78cd27b3 309 function _header()
310 {
311 global $banana;
312 $hdrs = $banana->nntp->head($this->id);
313 if (!$hdrs) {
78cd27b3 314 return false;
315 }
316
317 // parse headers
318 foreach ($hdrs as $line) {
319 if (preg_match("/^[\t\r ]+/", $line)) {
320 $line = ($hdr=="X-Face"?"":" ").ltrim($line);
321 if (in_array($hdr, $banana->parse_hdr)) {
322 $this->headers[$hdr] .= $line;
323 }
324 } else {
325 list($hdr, $val) = split(":[ \t\r]*", $line, 2);
326 $hdr = strtolower($hdr);
327 if (in_array($hdr, $banana->parse_hdr)) {
328 $this->headers[$hdr] = $val;
329 }
330 }
331 }
332 // decode headers
333 foreach ($banana->hdecode as $hdr) {
334 if (isset($this->headers[$hdr])) {
335 $this->headers[$hdr] = headerDecode($this->headers[$hdr]);
336 }
337 }
338
339 $this->name = $this->headers['from'];
340 $this->name = preg_replace('/<[^ ]*>/', '', $this->name);
341 $this->name = trim($this->name);
50cd076e 342 return true;
78cd27b3 343 }
344
345 function checkcancel()
346 {
347 if (function_exists('hook_checkcancel')) {
348 return hook_checkcancel($this->headers);
349 }
2ba32e89 350 if (!isset($_SESSION)) {
351 return false;
352 }
353 return ($this->headers['from'] == $_SESSION['name'] . ' <' . $_SESSION['mail']. '>');
354 }
355
356 /** Make some links to browse the current newsgroup
357 */
358 function _browser()
359 {
360 global $banana;
361 $ret = '<div class="banana_menu">';
edfc2d84 362 $actions = Array('prevThread' => Array('prev_thread', _b_('Discussion précédente')),
363 'prevPost' => Array('prev', _b_('Article précédent')),
364 'nextPost' => Array('next', _b_('Article suivant')),
365 'nextThread' => Array('next_thread', _b_('Discussion suivante')));
2ba32e89 366 foreach ($actions as $method=>$params) {
367 $id = $banana->spool->$method($this->id);
368 if (!is_null($id)) {
369 $ret .= makeImgLink(Array('group' => $banana->state['group'],
370 'artid' => $id),
371 $params[0] . '.gif',
372 $params[1]);
373 }
374 }
375 return $ret . '</div>';
78cd27b3 376 }
377
1f75b135 378 /** convert message to html
379 * @param partid INT id of the multipart message that must be displaid
380 */
cc43419f 381 function to_html($partid = -1)
78cd27b3 382 {
383 global $banana;
384
cc43419f 385 if (count($this->messages) > 1) {
386 if ($partid != -1) {
387 $this->set_body_to_part($partid);
388 } else {
389 // Select prefered text-format
390 foreach ($banana->body_mime as $mime) {
391 for ($id = 0 ; $id < count($this->messages) ; $id++) {
392 if (preg_match("@$mime@", $this->messages[$id]['headers']['content-type'])) {
393 $partid = $id;
394 $this->set_body_to_part($partid);
395 break;
396 }
397 }
398 if ($partid != -1) {
399 break;
400 }
401 }
402 if ($partid == -1) {
403 $partid = 0;
404 }
405 }
406 } else {
407 $partid = 0;
1f75b135 408 }
409
78cd27b3 410 $res = '<table class="bicol banana_msg" cellpadding="0" cellspacing="0">';
1c8d9e47 411 $res .= '<tr><th colspan="2" class="subject">'
2ba32e89 412 . $this->_browser()
413 . '<div class="banana_action">'
1254696c 414 . makeImgLink(Array('group' => $banana->state['group'],
2ba32e89 415 'action' => 'new'),
416 'post.gif',
edfc2d84 417 _b_('Nouveau message'))
2ba32e89 418 . makeImgLink(Array('group' => $banana->state['group'],
419 'artid' => $this->id,
420 'action' => 'new'),
421 'reply.gif',
edfc2d84 422 _b_('Répondre'));
2ba32e89 423 if ($this->checkCancel()) {
424 $res .= makeImgLink(Array('group' => $banana->state['group'],
425 'artid' => $this->id,
426 'action' => 'cancel'),
427 'cancel.gif',
edfc2d84 428 _b_('Annuler'));
2ba32e89 429 }
430 $res .= '</div>'
431 . formatDisplayHeader('subject', $this->headers['subject'])
432 . '</th></tr>'
433 . '<tr class="pair"><td class="headers"><table cellpadding="0" cellspacing="0">';
78cd27b3 434
75c9bae4 435 $xface = null;
78cd27b3 436 foreach ($banana->show_hdr as $hdr) {
437 if (isset($this->headers[$hdr])) {
438 $res2 = formatdisplayheader($hdr, $this->headers[$hdr]);
ca3b1040 439 if ($res2 && ($hdr != 'x-face' || !$banana->formatxface)) {
78cd27b3 440 $res .= '<tr><td class="hdr">'.header_translate($hdr)."</td><td class='val'>$res2</td></tr>\n";
ca3b1040 441 } else if ($res2) {
442 $xface = $res2;
78cd27b3 443 }
444 }
445 }
ca3b1040 446 $res .= '</table></td><td class="xface">';
447
448 if ($xface) {
449 $res .= $xface;
450 }
451 $res .= '</td></tr>';
78cd27b3 452
1f75b135 453 if (count($this->messages) > 1) {
1c8d9e47 454 $res .= '<tr><th colspan="2">';
1f75b135 455 for ($i = 0 ; $i < count($this->messages) ; $i++) {
1c8d9e47 456 if ($i != 0) {
1f75b135 457 $res .= ' . ';
458 }
459 preg_match("@text/([^;]+);@", $this->messages[$i]['headers']['content-type'], $format);
460 $format = textFormat_translate($format[1]);
461 if ($i != $partid) {
8e519bd8 462 $res .= makeHREF(Array('group' => $banana->state['group'],
f6df9eb2 463 'artid' => $this->id,
464 'part' => $i),
465 $format);
1f75b135 466 } else {
467 $res .= $format;
468 }
469 }
1c8d9e47 470 $res .= '</th></tr>';
1f75b135 471 }
1f75b135 472
473 preg_match("@text/([^;]+);@", $this->headers['content-type'], $format);
474 $format = $format[1];
8155c0a5 475 $res .= '<tr class="impair"><td colspan="2" class="body"';
1f75b135 476 if ($format == 'html') {
4cc80c9a 477 if (preg_match('@<body[^>]*bgcolor="?([#0-9a-f]+)"?[^>]*>@i', $this->body, $bgcolor)) {
478 $res .= ' bgcolor="'.$bgcolor[1].'"';
479 }
28ab52c0 480 $this->body = preg_replace('/cid:([^\'" ]+)/e', "find_attachment('\\1')", $this->body);
4cc80c9a 481 $res .= '>'.formatbody($this->body, $format);
1f75b135 482 } else {
4cc80c9a 483 $res .= '><pre>'.formatbody($this->body).'</pre>';
1f75b135 484 }
485 $res .= '</td></tr>';
7a0e2710 486
487 if (count($this->pj) > 0) {
488 $res .= '<tr><th colspan="2">'._b_('Pièces jointes').'</th></tr>';
489 $res .= '<tr><td colspan="2">';
490 $i = 0;
491 foreach ($this->pj as $file) {
da6dc0c8 492 $res .= makeImgLink(Array('group' => $banana->state['group'],
493 'artid' => $this->id,
494 'pj' => $i),
495 'save.gif',
496 _b_('Télécharger')) . ' ';
497 $res .= makeImgLink(Array('group' => $banana->state['group'],
498 'artid' => $this->id,
499 'pj' => $i,
500 'action'=> 'view'),
501 'preview.gif',
502 _b_('Aperçu'));
503 $res .= ' ' . $file['filename'].' ('.$file['MIME'].')';
7a0e2710 504 $res .= '<br/>';
505 $i++;
506 }
507 $res .= '</td></tr>';
508 }
78cd27b3 509
78cd27b3 510 $ndx = $banana->spool->getndx($this->id);
e230b41a 511 $res .= '<tr><td class="thrd" colspan="2">'
512 . $banana->spool->to_html($ndx-$banana->tbefore, $ndx+$banana->tafter, $ndx)
513 . '</td></tr>';
78cd27b3 514 return $res.'</table>';
515 }
516}
517
28ab52c0 518/** Wrapper for Post::find_attachment
519 */
520function find_attachment($cid)
521{
522 global $banana;
523 return $banana->post->find_attachment($cid);
524}
525
f6df9eb2 526// vim:set et sw=4 sts=4 ts=4
78cd27b3 527?>