fix wrt IE.. sucky browser
[banana.git] / banana / spool.inc.php
CommitLineData
810ac1df 1<?php
2/********************************************************************************
3* include/spool.inc.php : spool subroutines
4* -----------------------
5*
6* This file is part of the banana distribution
7* Copyright: See COPYING files that comes with this distribution
8********************************************************************************/
9
3ca86dfe 10if(!function_exists('_file_put_contents')) {
75ff2f64 11 function file_put_contents($filename, $data)
12 {
3ca86dfe 13 $fp = fopen($filename, 'w');
14 if(!$fp) {
15 trigger_error('file_put_contents cannot write in file '.$filename, E_USER_ERROR);
16 return;
17 }
18 fputs($fp, $data);
19 fclose($fp);
3ca86dfe 20 }
21}
22
d4c19591 23function spoolCompare($a,$b) { return ($b->date>=$a->date); }
01681efd 24
810ac1df 25/** Class spoolhead
26 * class used in thread overviews
27 */
d4c19591 28class BananaSpoolHead
e785d91c 29{
30 /** date (timestamp) */
31 var $date;
32 /** subject */
33 var $subject;
34 /** author */
35 var $from;
36 /** reference of parent */
37 var $parent;
38 /** paren is direct */
3ca86dfe 39 var $parent_direct;
e785d91c 40 /** array of children */
41 var $children = Array();
42 /** true if post is read */
43 var $isread;
44 /** number of posts deeper in this branch of tree */
45 var $desc;
46 /** same as desc, but counts only unread posts */
47 var $descunread;
810ac1df 48
e785d91c 49 /** constructor
50 * @param $_date INTEGER timestamp of post
51 * @param $_subject STRING subject of post
52 * @param $_from STRING author of post
53 * @param $_desc INTEGER desc value (1 for a new post)
54 * @param $_read BOOLEAN true if read
55 * @param $_descunread INTEGER descunread value (0 for a new post)
56 */
810ac1df 57
d4c19591 58 function BananaSpoolHead($_date, $_subject, $_from, $_desc=1, $_read=true, $_descunread=0)
e785d91c 59 {
60 $this->date = $_date;
61 $this->subject = $_subject;
62 $this->from = $_from;
63 $this->desc = $_desc;
64 $this->isread = $_read;
65 $this->descunread = $_descunread;
66 }
810ac1df 67}
68
69/** Class spool
70 * builds and updates spool
71 */
72
3ca86dfe 73define("BANANA_SPOOL_VERSION", '0.2');
74
d4c19591 75class BananaSpool
e785d91c 76{
3ca86dfe 77 var $version;
e785d91c 78 /** spool */
79 var $overview;
80 /** group name */
81 var $group;
82 /** array msgid => msgnum */
83 var $ids;
cced14b6 84 /** thread starts */
85 var $roots;
810ac1df 86
e785d91c 87 /** constructor
e785d91c 88 * @param $_group STRING group name
89 * @param $_display INTEGER 1 => all posts, 2 => only threads with new posts
90 * @param $_since INTEGER time stamp (used for read/unread)
91 */
2dbc0167 92 function BananaSpool($_group, $_display=0, $_since="")
e785d91c 93 {
2dbc0167 94 global $banana;
dd7d1c59 95 $this->group = $_group;
2dbc0167 96 $groupinfo = $banana->nntp->group($_group);
dd7d1c59 97 if (!$groupinfo) { return ($this = null); }
3ca86dfe 98
dd7d1c59 99 $this->_readFromFile();
3ca86dfe 100
dd7d1c59 101 $do_save = false;
2dbc0167 102 $first = $banana->maxspool ? max($groupinfo[2]-$banana->maxspool, $groupinfo[1]) : $groupinfo[1];
dd7d1c59 103 $last = $groupinfo[2];
fb3138fb 104 if ($this->version == BANANA_SPOOL_VERSION && is_array($this->overview)) {
cced14b6 105 for ($id = min(array_keys($this->overview)); $id<$first; $id++) {
3ca86dfe 106 $this->delid($id, false);
cced14b6 107 $do_save = true;
e785d91c 108 }
c42efe2f
PHM
109 if (!empty($this->overview)) {
110 $first = max(array_keys($this->overview))+1;
111 } else {
112 return;
113 }
82c17a91 114 } else {
3ca86dfe 115 unset($this->overview, $this->ids);
3ca86dfe 116 $this->version = BANANA_SPOOL_VERSION;
82c17a91 117 }
e785d91c 118
526f9bd0 119 if ($first<=$last && $groupinfo[0]) {
dd7d1c59 120 $do_save = true;
2dbc0167 121 $this->_updateSpool("$first-$last");
dd7d1c59 122 }
45651257 123
dd7d1c59 124 if ($do_save) { $this->_saveToFile(); }
3ca86dfe 125
2dbc0167 126 $this->_updateUnread($_since, $_display);
dd7d1c59 127 }
128
129 function _readFromFile()
130 {
9090c673 131 $file = $this->_spoolfile();
dd7d1c59 132 if (file_exists($file)) {
133 $this = unserialize(file_get_contents($file));
134 }
135 }
136
137 function _saveToFile()
138 {
9090c673 139 $file = $this->_spoolfile();
dd7d1c59 140 uasort($this->overview, "spoolcompare");
141
142 $this->roots = Array();
143 foreach($this->overview as $id=>$msg) {
144 if (is_null($msg->parent)) {
145 $this->roots[] = $id;
146 }
147 }
148
149 file_put_contents($file, serialize($this));
150 }
151
9090c673
PHM
152 function _spoolfile()
153 {
154 global $banana;
155 $url = parse_url($banana->host);
156 $file = $url['host'].'_'.$url['port'].'_'.$this->group;
157 return dirname(dirname(__FILE__)).'/spool/'.$file;
158 }
159
2dbc0167 160 function _updateSpool($arg)
dd7d1c59 161 {
2dbc0167 162 global $banana;
bcdfcf99
PHM
163 $dates = array_map('strtotime', $banana->nntp->xhdr('Date', $arg));
164 $subjects = array_map('headerdecode', $banana->nntp->xhdr('Subject', $arg));
165 $froms = array_map('headerdecode', $banana->nntp->xhdr('From', $arg));
166 $msgids = $banana->nntp->xhdr('Message-ID', $arg);
167 $refs = $banana->nntp->xhdr('References', $arg);
dd7d1c59 168
169 if (is_array($this->ids)) {
170 $this->ids = array_merge($this->ids, array_flip($msgids));
171 } else {
172 $this->ids = array_flip($msgids);
173 }
174
175 foreach ($msgids as $id=>$msgid) {
d4c19591 176 $msg = new BananaSpoolHead($dates[$id], $subjects[$id], $froms[$id]);
dd7d1c59 177 $refs[$id] = str_replace('><', '> <', $refs[$id]);
178 $msgrefs = preg_split("/[ \t]/", strtr($refs[$id], $this->ids));
179 $parents = preg_grep('/^\d+$/', $msgrefs);
180 $msg->parent = array_pop($parents);
181 $msg->parent_direct = preg_match('/^\d+$/', array_pop($msgrefs));
182
183 if (isset($this->overview[$id])) {
184 $msg->desc = $this->overview[$id]->desc;
185 $msg->children = $this->overview[$id]->children;
3316e34e 186 }
dd7d1c59 187 $this->overview[$id] = $msg;
e785d91c 188
dd7d1c59 189 if ($p = $msg->parent) {
190 if (empty($this->overview[$p])) {
d4c19591 191 $this->overview[$p] = new BananaSpoolHead($dates[$p], $subjects[$p], $froms[$p], 1);
4ced5065 192 }
dd7d1c59 193 $this->overview[$p]->children[] = $id;
4ced5065 194
dd7d1c59 195 while ($p) {
196 $this->overview[$p]->desc += $msg->desc;
197 $p = $this->overview[$p]->parent;
e785d91c 198 }
810ac1df 199 }
810ac1df 200 }
dd7d1c59 201 }
e785d91c 202
2dbc0167 203 function _updateUnread($since, $mode)
75ff2f64 204 {
2dbc0167 205 global $banana;
dd7d1c59 206 if (empty($since)) { return; }
207
2dbc0167 208 if (is_array($newpostsids = $banana->nntp->newnews($since, $this->group))) {
382606fb 209 if (!is_array($this->ids)) { $this->ids = array(); }
dd7d1c59 210 $newpostsids = array_intersect($newpostsids, array_keys($this->ids));
211 foreach ($newpostsids as $mid) {
212 $this->overview[$this->ids[$mid]]->isread = false;
213 $this->overview[$this->ids[$mid]]->descunread = 1;
214 $parentmid = $this->ids[$mid];
215 while (isset($parentmid)) {
216 $this->overview[$parentmid]->descunread ++;
217 $parentmid = $this->overview[$parentmid]->parent;
e785d91c 218 }
810ac1df 219 }
dd7d1c59 220
221 if (count($newpostsids)) {
222 switch ($mode) {
e785d91c 223 case 1:
45f3ac9b 224 foreach ($this->roots as $k=>$i) {
cced14b6 225 if ($this->overview[$i]->descunread==0) {
e785d91c 226 $this->killdesc($i);
45f3ac9b 227 unset($this->roots[$k]);
e785d91c 228 }
229 }
230 break;
e785d91c 231 }
810ac1df 232 }
810ac1df 233 }
cced14b6 234 }
235
e785d91c 236 /** kill post and childrens
237 * @param $_id MSGNUM of post
238 */
810ac1df 239
e785d91c 240 function killdesc($_id)
241 {
242 if (sizeof($this->overview[$_id]->children)) {
243 foreach ($this->overview[$_id]->children as $c) {
244 $this->killdesc($c);
245 }
246 }
247 unset($this->overview[$_id]);
dd7d1c59 248 if (($msgid = array_search($_id, $this->ids)) !== false) {
e785d91c 249 unset($this->ids[$msgid]);
250 }
810ac1df 251 }
e785d91c 252
253 /** delete a post from overview
254 * @param $_id MSGNUM of post
255 */
256
3ca86dfe 257 function delid($_id, $write=true)
e785d91c 258 {
259 if (isset($this->overview[$_id])) {
260 if (sizeof($this->overview[$_id]->parent)) {
261 $this->overview[$this->overview[$_id]->parent]->children =
262 array_diff($this->overview[$this->overview[$_id]->parent]->children, array($_id));
263 if (sizeof($this->overview[$_id]->children)) {
264 $this->overview[$this->overview[$_id]->parent]->children =
265 array_merge($this->overview[$this->overview[$_id]->parent]->children, $this->overview[$_id]->children);
266 foreach ($this->overview[$_id]->children as $c) {
267 $this->overview[$c]->parent = $this->overview[$_id]->parent;
268 $this->overview[$c]->parent_direct = false;
269 }
270 }
271 $p = $this->overview[$_id]->parent;
272 while ($p) {
273 $this->overview[$p]->desc--;
274 $p = $this->overview[$p]->parent;
275 }
276 } elseif (sizeof($this->overview[$_id]->children)) {
277 foreach ($this->overview[$_id]->children as $c) {
278 $this->overview[$c]->parent = null;
279 }
280 }
281 unset($this->overview[$_id]);
3ca86dfe 282 $msgid = array_search($_id, $this->ids);
e785d91c 283 if ($msgid) {
284 unset($this->ids[$msgid]);
285 }
286
dd7d1c59 287 if ($write) { $this->_saveToFile(); }
e785d91c 288 }
35ca8036 289 }
810ac1df 290
e785d91c 291 /** displays children tree of a post
292 * @param $_id INTEGER MSGNUM of post
293 * @param $_index INTEGER linear number of post in the tree
294 * @param $_first INTEGER linear number of first post displayed
295 * @param $_last INTEGER linear number of last post displayed
296 * @param $_ref STRING MSGNUM of current post
297 * @param $_pfx_node STRING prefix used for current node
298 * @param $_pfx_end STRING prefix used for children of current node
299 * @param $_head BOOLEAN true if first post in thread
300 */
810ac1df 301
65d96b1f 302 function _to_html($_id, $_index, $_first=0, $_last=0, $_ref="", $_pfx_node="", $_pfx_end="", $_head=true)
75ff2f64 303 {
e785d91c 304 $spfx_f = '<img src="img/k1.gif" height="21" width="9" alt="o" />';
305 $spfx_n = '<img src="img/k2.gif" height="21" width="9" alt="*" />';
306 $spfx_Tnd = '<img src="img/T-direct.gif" height="21" width="12" alt="+" />';
307 $spfx_Lnd = '<img src="img/L-direct.gif" height="21" width="12" alt="`" />';
308 $spfx_snd = '<img src="img/s-direct.gif" height="21" width="5" alt="-" />';
309 $spfx_T = '<img src="img/T.gif" height="21" width="12" alt="+" />';
310 $spfx_L = '<img src="img/L.gif" height="21" width="12" alt="`" />';
311 $spfx_s = '<img src="img/s.gif" height="21" width="5" alt="-" />';
312 $spfx_e = '<img src="img/e.gif" height="21" width="12" alt="&nbsp;" />';
313 $spfx_I = '<img src="img/I.gif" height="21" width="12"alt="|" />';
314
cced14b6 315 if ($_index + $this->overview[$_id]->desc < $_first || $_index > $_last) {
316 return;
810ac1df 317 }
e785d91c 318
65d96b1f 319 $res = '';
320
cced14b6 321 if ($_index>=$_first) {
cced14b6 322 $hc = empty($this->overview[$_id]->children);
323
65d96b1f 324 $res .= '<tr class="'.($_index%2?'pair':'impair').($this->overview[$_id]->isread?'':' new')."\">\n";
325 $res .= "<td class='date'>".fancyDate($this->overview[$_id]->date)." </td>\n";
326 $res .= "<td class='subj'>"
327 ."<div class='tree'>$_pfx_node".($hc?($_head?$spfx_f:($this->overview[$_id]->parent_direct?$spfx_s:$spfx_snd)):$spfx_n)
dd7d1c59 328 ."</div>";
329 if ($_index == $_ref) {
65d96b1f 330 $res .= '<span class="cur">'.htmlentities($this->overview[$_id]->subject).'</span>';
dd7d1c59 331 } else {
8d99c683 332 $res .= "<a href='?group={$this->group}&amp;artid=$_id'>".htmlentities($this->overview[$_id]->subject).'</a>';
cced14b6 333 }
65d96b1f 334 $res .= "</td>\n<td class='from'>".formatFrom($this->overview[$_id]->from)."</td>\n</tr>";
dd7d1c59 335
65d96b1f 336 if ($hc) { return $res; }
cced14b6 337 }
338
dd7d1c59 339 $_index ++;
cced14b6 340
341 $children = $this->overview[$_id]->children;
e785d91c 342 while ($child = array_shift($children)) {
65d96b1f 343 if ($_index > $_last) { return $res; }
dd7d1c59 344 if ($_index+$this->overview[$child]->desc >= $_first) {
e785d91c 345 if (sizeof($children)) {
65d96b1f 346 $res .= $this->_to_html($child, $_index, $_first, $_last, $_ref,
dd7d1c59 347 $_pfx_end.($this->overview[$child]->parent_direct?$spfx_T:$spfx_Tnd),
3ca86dfe 348 $_pfx_end.$spfx_I, false);
e785d91c 349 } else {
65d96b1f 350 $res .= $this->_to_html($child, $_index, $_first, $_last, $_ref,
dd7d1c59 351 $_pfx_end.($this->overview[$child]->parent_direct?$spfx_L:$spfx_Lnd),
3ca86dfe 352 $_pfx_end.$spfx_e, false);
e785d91c 353 }
354 }
dd7d1c59 355 $_index += $this->overview[$child]->desc;
810ac1df 356 }
65d96b1f 357
358 return $res;
810ac1df 359 }
810ac1df 360
e785d91c 361 /** Displays overview
362 * @param $_first INTEGER MSGNUM of first post
363 * @param $_last INTEGER MSGNUM of last post
364 * @param $_ref STRING MSGNUM of current/selectionned post
365 */
810ac1df 366
65d96b1f 367 function to_html($_first=0, $_last=0, $_ref = null)
75ff2f64 368 {
65d96b1f 369 $res = '<table class="bicol banana_thread" cellpadding="0" cellspacing="0">';
370
371 if (is_null($_ref)) {
372 $res .= '<tr><th>'._b_('Date').'</th>';
373 $res .= '<th>'._b_('Sujet').'</th>';
374 $res .= '<th>'._b_('Auteur').'</th></tr>';
375 }
376
e785d91c 377 $index = 1;
378 if (sizeof($this->overview)) {
cced14b6 379 foreach ($this->roots as $id) {
65d96b1f 380 $res .= $this->_to_html($id, $index, $_first, $_last, $_ref);
cced14b6 381 $index += $this->overview[$id]->desc ;
dd7d1c59 382 if ($index > $_last) { break; }
e785d91c 383 }
810ac1df 384 } else {
65d96b1f 385 $res .= '<tr><td colspan="3">'._b_('Aucun message dans ce forum').'</td></tr>';
810ac1df 386 }
65d96b1f 387
388 return $res .= '</table>';
810ac1df 389 }
810ac1df 390
e785d91c 391 /** computes linear post index
392 * @param $_id INTEGER MSGNUM of post
393 * @return INTEGER linear index of post
394 */
810ac1df 395
75ff2f64 396 function getndx($_id)
397 {
cced14b6 398 $ndx = 1;
399 $id_cur = $_id;
4ced5065 400 while (true) {
cced14b6 401 $id_parent = $this->overview[$id_cur]->parent;
4ced5065 402 if (is_null($id_parent)) break;
cced14b6 403 $pos = array_search($id_cur, $this->overview[$id_parent]->children);
4ced5065 404
cced14b6 405 for ($i = 0; $i < $pos ; $i++) {
e785d91c 406 $ndx += $this->overview[$this->overview[$id_parent]->children[$i]]->desc;
407 }
408 $ndx++; //noeud père
cced14b6 409
410 $id_cur = $id_parent;
810ac1df 411 }
cced14b6 412
413 foreach ($this->roots as $i) {
414 if ($i==$id_cur) {
e785d91c 415 break;
416 }
cced14b6 417 $ndx += $this->overview[$i]->desc;
e785d91c 418 }
419 return $ndx;
810ac1df 420 }
810ac1df 421}
422
423?>