2 /********************************************************************************
3 * include/spool.inc.php : spool subroutines
4 * -----------------------
6 * This file is part of the banana distribution
7 * Copyright: See COPYING files that comes with this distribution
8 ********************************************************************************/
10 require_once dirname(__FILE__
) . '/banana.inc.php';
12 define('BANANA_SPOOL_VERSION', '0.3');
15 * class used in thread overviews
19 /** date (timestamp) */
25 /** reference of parent */
26 public $parent = null
;
27 /** paren is direct */
28 public $parent_direct;
29 /** array of children */
30 public $children = Array();
31 /** true if post is read */
33 /** number of posts deeper in this branch of tree */
35 /** same as desc, but counts only unread posts */
39 public $storage = array();
42 * @param $_date INTEGER timestamp of post
43 * @param $_subject STRING subject of post
44 * @param $_from STRING author of post
45 * @param $_desc INTEGER desc value (1 for a new post)
46 * @param $_read BOOLEAN true if read
47 * @param $_descunread INTEGER descunread value (0 for a new post)
49 public function __construct(array &$message)
51 $this->date
= $message['date'];
52 $this->subject
= $message['subject'];
53 $this->from
= $message['from'];
56 $this->descunread
= 0;
70 /** array msgid => msgnum */
77 * @param $_group STRING group name
78 * @param $_display INTEGER 1 => all posts, 2 => only threads with new posts
79 * @param $_since INTEGER time stamp (used for read/unread)
81 protected function __construct($group)
83 $this->version
= BANANA_SPOOL_VERSION
;
84 $this->mode
= Banana
::SPOOL_ALL
;
85 $this->group
= $group;
88 public static function getSpool($group, $since = 0, $clean = false
)
90 if (!is_null(Banana
::$spool) && Banana
::$spool->group
== $group) {
91 $spool =& Banana
::$spool;
93 $spool = BananaSpool
::readFromFile($group);
95 if (is_null($spool)) {
96 $spool = new BananaSpool($group);
98 Banana
::$spool =& $spool;
101 $spool->markAllAsRead();
103 $spool->updateUnread($since);
107 private static function spoolFilename($group)
109 $file = dirname(dirname(__FILE__
));
110 $file .= '/spool/' . Banana
::$protocole->name() . '/';
111 if (!is_dir($file)) {
114 return $file . Banana
::$protocole->filename();
117 private static function readFromFile($group)
119 $file = BananaSpool
::spoolFilename($group);
120 if (!file_exists($file)) {
123 $spool = unserialize(file_get_contents($file));
124 if ($spool->version
!= BANANA_SPOOL_VERSION ||
$spool->mode
!= Banana
::SPOOL_ALL
) {
130 private function compare($a, $b)
132 return ($b->date
>= $a->date
);
135 private function saveToFile()
137 $file = BananaSpool
::spoolFilename($this->group
);
138 uasort($this->overview
, array($this, 'compare'));
140 $this->roots
= Array();
141 foreach($this->overview
as $id=>$msg) {
142 if (is_null($msg->parent
)) {
143 $this->roots
[] = $id;
147 if ($this->mode
== Banana
::SPOOL_ALL
) {
148 file_put_contents($file, serialize($this));
152 private function build()
156 // Compute the range of indexes
157 list($msgnum, $first, $last) = Banana
::$protocole->getIndexes();
158 if ($last < $first) {
159 $threshold = $firt +
$msgnum - $last;
160 $threshold = (int)(log($threshold)/log(2));
161 $threshold = (2 ^
($threshold +
1)) - 1;
163 if (Banana
::$spool_max && Banana
::$spool_max < $msgnum) {
164 $first = $last - Banana
::$spool_max;
166 $first +
= $threshold;
169 $clean = $this->clean($first, $last, $msgnum);
170 $update = $this->update($first, $last, $msgnum);
172 if ($clean ||
$update) {
177 private function clean(&$first, &$last, $msgnum)
180 if (is_array($this->overview
)) {
181 $mids = array_keys($this->overview
);
182 foreach ($mids as $id) {
183 if (($first <= $last && ($id < $first ||
$id > $last))
184 ||
($first > $last && $id < $first && $id > $last)) {
185 $this->delid($id, false
);
189 if (!empty($this->overview
)) {
190 $first = max(array_keys($this->overview
))+
1;
196 private function update(&$first, &$last, $msgnum)
198 if ($first > $last ||
!$msgnum) {
202 $messages =& Banana
::$protocole->getMessageHeaders($first, $last,
203 array('Date', 'Subject', 'From', 'Message-ID', 'References', 'In-Reply-To'));
205 if (!is_array($this->ids
)) {
206 $this->ids
= array();
208 foreach ($messages as $id=>&$message) {
209 $this->ids
[$message['message-id']] = $id;
212 foreach ($messages as $id=>&$message) {
213 if (!isset($this->overview
[$id])) {
214 $this->overview
[$id] = new BananaSpoolHead($message);
216 $msg =& $this->overview
[$id];
217 $msgrefs = BananaMessage
::formatReferences($message);
218 $parents = preg_grep('/^\d+$/', $msgrefs);
219 $msg->parent
= array_pop($parents);
220 $msg->parent_direct
= preg_match('/^\d+$/', array_pop($msgrefs));
222 if (!is_null($p = $msg->parent
)) {
223 if (empty($this->overview
[$p])) {
224 $this->overview
[$p] = new BananaSpoolHead($messages[$p]);
226 $this->overview
[$p]->children
[] = $id;
228 while (!is_null($p)) {
229 $this->overview
[$p]->desc +
= $msg->desc
;
230 if ($p != $this->overview
[$p]->parent
) {
231 $p = $this->overview
[$p]->parent
;
238 Banana
::$protocole->updateSpool($messages);
242 private function updateUnread($since)
248 $newpostsids = Banana
::$protocole->getNewIndexes($since);
250 if (empty($newpostsids)) {
254 if (!is_array($this->ids
)) {
255 $this->ids
= array();
257 $newpostsids = array_intersect($newpostsids, array_keys($this->ids
));
258 foreach ($newpostsids as $mid) {
259 $id = $this->ids
[$mid];
260 if ($this->overview
[$id]->isread
) {
261 $this->overview
[$id]->isread
= false
;
263 $this->overview
[$id]->descunread ++
;
264 $id = $this->overview
[$id]->parent
;
270 public function setMode($mode)
274 case Banana
::SPOOL_UNREAD
:
275 foreach ($this->roots
as $k=>$i) {
276 if ($this->overview
[$i]->descunread
== 0) {
278 unset($this->roots
[$k]);
285 /** Mark the given id as read
286 * @param id MSGNUM of post
288 public function markAsRead($id)
290 if (!$this->overview
[$id]->isread
) {
291 $this->overview
[$id]->isread
= true
;
293 $this->overview
[$id]->descunread
--;
294 $id = $this->overview
[$id]->parent
;
299 /** Mark all unread messages as read
301 public function markAllAsRead(array &$array = null
)
303 if (is_null($array)) {
304 $array =& $this->roots
;
306 foreach ($array as $id) {
307 if (!$this->overview
[$id]->isread
) {
308 $this->markAsRead($id);
310 if ($this->overview
[$id]->descunread
) {
311 $this->markAllAsRead($this->overview
[$id]->children
);
316 /** kill post and childrens
317 * @param $_id MSGNUM of post
319 private function killdesc($_id)
321 if (sizeof($this->overview
[$_id]->children
)) {
322 foreach ($this->overview
[$_id]->children
as $c) {
326 unset($this->overview
[$_id]);
327 if (($msgid = array_search($_id, $this->ids
)) !== false
) {
328 unset($this->ids
[$msgid]);
332 /** delete a post from overview
333 * @param $_id MSGNUM of post
335 public function delid($_id, $write = true
)
337 if (isset($this->overview
[$_id])) {
338 if (sizeof($this->overview
[$_id]->parent
)) {
339 $this->overview
[$this->overview
[$_id]->parent
]->children
=
340 array_diff($this->overview
[$this->overview
[$_id]->parent
]->children
, array($_id));
341 if (sizeof($this->overview
[$_id]->children
)) {
342 $this->overview
[$this->overview
[$_id]->parent
]->children
=
343 array_merge($this->overview
[$this->overview
[$_id]->parent
]->children
, $this->overview
[$_id]->children
);
344 foreach ($this->overview
[$_id]->children
as $c) {
345 $this->overview
[$c]->parent
= $this->overview
[$_id]->parent
;
346 $this->overview
[$c]->parent_direct
= false
;
349 $p = $this->overview
[$_id]->parent
;
351 $this->overview
[$p]->desc
--;
352 $p = $this->overview
[$p]->parent
;
354 } elseif (sizeof($this->overview
[$_id]->children
)) {
355 foreach ($this->overview
[$_id]->children
as $c) {
356 $this->overview
[$c]->parent
= null
;
359 unset($this->overview
[$_id]);
360 $msgid = array_search($_id, $this->ids
);
362 unset($this->ids
[$msgid]);
366 $this->markAllAsRead();
372 private function formatDate($stamp)
374 $today = intval(time() / (24*3600));
375 $dday = intval($stamp / (24*3600));
377 if ($today == $dday) {
379 } elseif ($today == 1 +
$dday) {
380 $format = _b_('hier')." %H:%M";
381 } elseif ($today < 7 +
$dday) {
382 $format = '%a %H:%M';
384 $format = '%a %e %b';
386 return utf8_encode(strftime($format, $stamp));
389 /** displays children tree of a post
390 * @param $_id INTEGER MSGNUM of post
391 * @param $_index INTEGER linear number of post in the tree
392 * @param $_first INTEGER linear number of first post displayed
393 * @param $_last INTEGER linear number of last post displayed
394 * @param $_ref STRING MSGNUM of current post
395 * @param $_pfx_node STRING prefix used for current node
396 * @param $_pfx_end STRING prefix used for children of current node
397 * @param $_head BOOLEAN true if first post in thread
399 * If you want to analyse subject, you can define the function hook_formatDisplayHeader
401 private function _to_html($_id, $_index, $_first=0, $_last=0, $_ref="", $_pfx_node="", $_pfx_end="", $_head=true
)
403 static $spfx_f, $spfx_n, $spfx_Tnd, $spfx_Lnd, $spfx_snd, $spfx_T, $spfx_L, $spfx_s, $spfx_e, $spfx_I;
404 if (!isset($spfx_f)) {
405 $spfx_f = Banana
::$page->makeImg(Array('img' => 'k1', 'alt' => 'o', 'height' => 21, 'width' => 9));
406 $spfx_n = Banana
::$page->makeImg(Array('img' => 'k2', 'alt' => '*', 'height' => 21, 'width' => 9));
407 $spfx_Tnd = Banana
::$page->makeImg(Array('img' => 'T-direct', 'alt' => '+', 'height' => 21, 'width' => 12));
408 $spfx_Lnd = Banana
::$page->makeImg(Array('img' => 'L-direct', 'alt' => '`', 'height' => 21, 'width' => 12));
409 $spfx_snd = Banana
::$page->makeImg(Array('img' => 's-direct', 'alt' => '-', 'height' => 21, 'width' => 5));
410 $spfx_T = Banana
::$page->makeImg(Array('img' => 'T', 'alt' => '+', 'height' => 21, 'width' => 12));
411 $spfx_L = Banana
::$page->makeImg(Array('img' => 'L', 'alt' => '`', 'height' => 21, 'width' => 12));
412 $spfx_s = Banana
::$page->makeImg(Array('img' => 's', 'alt' => '-', 'height' => 21, 'width' => 5));
413 $spfx_e = Banana
::$page->makeImg(Array('img' => 'e', 'alt' => ' ', 'height' => 21, 'width' => 12));
414 $spfx_I = Banana
::$page->makeImg(Array('img' => 'I', 'alt' => '|', 'height' => 21, 'width' => 12));
417 $overview =& $this->overview
[$_id];
418 if ($_index +
$overview->desc
< $_first ||
$_index > $_last) {
423 if ($_index >= $_first) {
424 $hc = empty($overview->children
);
426 $res .= '<tr class="' . ($_index%2 ?
'pair' : 'impair') . ($overview->isread ?
'' : ' new') . "\">\n";
427 $res .= '<td class="date">' . $this->formatDate($overview->date
) . " </td>\n";
428 $res .= '<td class="subj' . ($_index == $_ref ?
' cur' : '') . '">'
429 . $_pfx_node .($hc ?
($_head ?
$spfx_f : ($overview->parent_direct ?
$spfx_s : $spfx_snd)) : $spfx_n);
430 $subject = $overview->subject
;
431 if (function_exists('hook_formatDisplayHeader')) {
432 list($subject, $link) = hook_formatDisplayHeader('subject', $subject, true
);
434 $subject = banana_catchFormats(banana_htmlentities(stripslashes($subject)));
437 if (empty($subject)) {
438 $subject = _b_('(pas de sujet)');
440 if ($_index != $_ref) {
441 $subject = Banana
::$page->makeLink(Array('group' => $this->group
, 'artid' => $_id,
442 'text' => $subject, 'popup' => $subject));
444 $res .= ' ' . $subject . $link;
445 $res .= "</td>\n<td class='from'>" . BananaMessage
::formatFrom($overview->from
) . "</td>\n</tr>";
453 $children = $overview->children
;
454 while ($child = array_shift($children)) {
455 $overview =& $this->overview
[$child];
456 if ($_index > $_last) {
459 if ($_index +
$overview->desc
>= $_first) {
460 if (sizeof($children)) {
461 $res .= $this->_to_html($child, $_index, $_first, $_last, $_ref,
462 $_pfx_end . ($overview->parent_direct ?
$spfx_T : $spfx_Tnd),
463 $_pfx_end . $spfx_I, false
);
465 $res .= $this->_to_html($child, $_index, $_first, $_last, $_ref,
466 $_pfx_end . ($overview->parent_direct ?
$spfx_L : $spfx_Lnd),
467 $_pfx_end . $spfx_e, false
);
470 $_index +
= $overview->desc
;
476 /** Displays overview
477 * @param $_first INTEGER MSGNUM of first post
478 * @param $_last INTEGER MSGNUM of last post
479 * @param $_ref STRING MSGNUM of current/selectionned post
481 public function toHtml($first = 0, $overview = false
)
487 $_last = $first + Banana
::$spool_tmax - 1;
490 $_ref = $this->getNdx($first);
491 $_last = $_ref + Banana
::$spool_tafter;
492 $_first = $_ref - Banana
::$spool_tbefore;
498 foreach ($this->roots
as $id) {
499 $res .= $this->_to_html($id, $index, $_first, $_last, $_ref);
500 $index +
= $this->overview
[$id]->desc
;
501 if ($index > $_last) {
508 /** computes linear post index
509 * @param $_id INTEGER MSGNUM of post
510 * @return INTEGER linear index of post
512 public function getNdX($_id)
517 $id_parent = $this->overview
[$id_cur]->parent
;
518 if (is_null($id_parent)) break;
519 $pos = array_search($id_cur, $this->overview
[$id_parent]->children
);
521 for ($i = 0; $i < $pos ; $i++
) {
522 $ndx +
= $this->overview
[$this->overview
[$id_parent]->children
[$i]]->desc
;
526 $id_cur = $id_parent;
529 foreach ($this->roots
as $i) {
533 $ndx +
= $this->overview
[$i]->desc
;
538 /** Return root message of the given thread
539 * @param id INTEGER id of a message
541 public function root($id)
545 $id_parent = $this->overview
[$id_cur]->parent
;
546 if (is_null($id_parent)) break;
547 $id_cur = $id_parent;
552 /** Returns previous thread root index
553 * @param id INTEGER message number
555 public function prevThread($id)
557 $root = $this->root($id);
559 foreach ($this->roots
as $i) {
568 /** Returns next thread root index
569 * @param id INTEGER message number
571 public function nextThread($id)
573 $root = $this->root($id);
575 foreach ($this->roots
as $i) {
586 /** Return prev post in the thread
587 * @param id INTEGER message number
589 public function prevPost($id)
591 $parent = $this->overview
[$id]->parent
;
592 if (is_null($parent)) {
596 foreach ($this->overview
[$parent]->children
as $child) {
605 /** Return next post in the thread
606 * @param id INTEGER message number
608 public function nextPost($id)
610 if (count($this->overview
[$id]->children
) != 0) {
611 return $this->overview
[$id]->children
[0];
616 $parent = $this->overview
[$cur]->parent
;
617 if (is_null($parent)) {
621 foreach ($this->overview
[$parent]->children
as $child) {
625 if ($child == $cur) {
634 /** Look for an unread message in the thread rooted by the message
635 * @param id INTEGER message number
637 private function _nextUnread($id)
639 if (!$this->overview
[$id]->isread
) {
642 foreach ($this->overview
[$id]->children
as $child) {
643 $unread = $this->_nextUnread($child);
644 if (!is_null($unread)) {
651 /** Find next unread message
652 * @param id INTEGER message number
654 public function nextUnread($id = null
)
657 // Look in message children
658 foreach ($this->overview
[$id]->children
as $child) {
659 $next = $this->_nextUnread($child);
660 if (!is_null($next)) {
666 // Look in current thread
669 $parent = is_null($cur) ? null
: $this->overview
[$cur]->parent
;
670 $ok = is_null($cur) ? true
: false
;
671 if (!is_null($parent)) {
672 $array = &$this->overview
[$parent]->children
;
674 $array = &$this->roots
;
676 foreach ($array as $child) {
678 $next = $this->_nextUnread($child);
679 if (!is_null($next)) {
683 if ($child == $cur) {
688 } while(!is_null($cur));
693 // vim:set et sw=4 sts=4 ts=4 enc=utf-8: