bugfix (spool)
[banana.git] / include / 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
10/** Class spoolhead
11 * class used in thread overviews
12 */
13class spoolhead {
14 /** date (timestamp) */
15 var $date;
16 /** subject */
17 var $subject;
18 /** author */
19 var $from;
20 /** reference of parent */
21 var $parent;
22 /** array of children */
23 var $children;
24 /** true if post is read */
25 var $isread;
26 /** number of posts deeper in this branch of tree */
27 var $desc;
28 /** same as desc, but counts only unread posts */
29 var $descunread;
30
31 /** constructor
32 * @param $_date INTEGER timestamp of post
33 * @param $_subject STRING subject of post
34 * @param $_from STRING author of post
35 * @param $_desc INTEGER desc value (1 for a new post)
36 * @param $_read BOOLEAN true if read
37 * @param $_descunread INTEGER descunread value (0 for a new post)
38 */
39
40 function spoolhead($_date,$_subject,$_from,$_desc=1,$_read=true,$_descunread=0) {
41 $this->date=$_date;
42 $this->subject=$_subject;
43 $this->from=$_from;
44 $this->children=array();
45 $this->desc=$_desc;
46 $this->isread=$_read;
47 $this->descunread=$_descunread;
48 }
49}
50
51/** Class spool
52 * builds and updates spool
53 */
54
55class spool {
56# var $date;
57 /** spool */
58 var $overview;
59 /** group name */
60 var $group;
61 /** array msgid => msgnum */
62 var $ids;
63
64 /** constructor
65 * @param $_nntp RESOURCE NNTP socket filehandle
66 * @param $_group STRING group name
67 * @param $_display INTEGER 1 => all posts, 2 => only threads with new posts
68 * @param $_since INTEGER time stamp (used for read/unread)
69 */
70
71 function spool(&$_nntp,$_group,$_display=0,$_since=""){
94b58dda 72 global $news;
810ac1df 73 $groupinfo = $_nntp->group($_group);
74 if (!$groupinfo) {
75 $this = false;
76 return false;
77 }
94b58dda 78 $spoolfile=realpath("./spool/spool-$_group.dat");
94b58dda 79 if (file_exists($spoolfile)) {
80 $f = fopen($spoolfile,"r");
81 $this = unserialize(fread($f,filesize($spoolfile)));
810ac1df 82 fclose($f);
83 $keys = array_values($this->ids);
84 rsort($keys);
94b58dda 85 $first = max($groupinfo[2]-$news['maxspool'],$groupinfo[1]);
810ac1df 86 $last = $groupinfo[2];
94b58dda 87 // remove expired messages
88 $msgids=array_flip($this->ids);
89 for ($id=min(array_keys($this->overview)); $id<$first; $id++) {
82c17a91 90 $this->delid($id);
94b58dda 91 }
92 $this->ids=array_flip($msgids);
93 $first=max(array_keys($this->overview))+1;
810ac1df 94 } else {
94b58dda 95 $first = max($groupinfo[2]-$news['maxspool'],$groupinfo[1]);
810ac1df 96 $last = $groupinfo[2];
97 $this->group = $_group;
98 }
94b58dda 99
810ac1df 100 if (($first<=$groupinfo[2]) && ($groupinfo[0]!=0)) {
101 $dates = array_map("strtotime",
102 $_nntp->xhdr("Date","$first-$last"));
103 $msgids=$_nntp->xhdr("Message-ID","$first-$last");
104 $subjects = array_map("headerdecode",$_nntp->xhdr("Subject",
105 "$first-$last"));
106 $froms = array_map("headerdecode",$_nntp->xhdr("From",
107 "$first-$last"));
108 $refs = $_nntp->xhdr("References","$first-$last");
109# $this->date=$nntp->date;
5c33c608 110 if (isset($this->ids)) {
810ac1df 111 $this->ids=array_merge($this->ids,array_flip($msgids));
112 } else {
113 $this->ids=array_flip($msgids);
114 }
115
116 foreach ($msgids as $id=>$msgid) {
82c17a91 117 if (isset($this->overview[$id])) {
118 $msg = $this->overview[$id];
119 $msg->desc++;
120 } else {
121 $msg = new spoolhead($dates[$id],$subjects[$id],$froms[$id],1);
122 }
810ac1df 123 $refs[$id]=str_replace("><","> <",$refs[$id]);
124 $msgrefs=preg_split("/( |\t)/",strtr($refs[$id],$this->ids));
125 $parents=preg_grep("/^\d+$/",$msgrefs);
126 $msg->parent=array_pop($parents);
127 $p = $msg->parent;
128 while ($p) {
3316e34e 129 if (isset($this->overview[$p])) {
130 $this->overview[$p]->desc++;
131 if (isset($this->overview[$p]->parent)) {
132 $p = $this->overview[$p]->parent;
133 } else {
134 $p = false;
135 }
5c33c608 136 } else {
3316e34e 137 $this->overview[$p] = new spoolhead($dates[$p],$subjects[$p],$froms[$p],1);
138 $p = false;
5c33c608 139 }
810ac1df 140 }
141 if ($msg->parent!="")
142 $this->overview[$msg->parent]->children[]=$id;
143 $this->overview[$id] = $msg;
144 }
145 uasort($this->overview,"spoolcompare");
146 $f = fopen("spool/spool-$_group.dat","w");
147 fputs($f,serialize($this));
148 fclose($f);
149 }
150
151 if ($_since != "") {
152 $newpostsids = $_nntp->newnews($_since,$_group);
153 if (sizeof($newpostsids)) {
154 $newpostsids = array_intersect($newpostsids,
155 array_keys($this->ids));
156 if ($newpostsids && !is_null($newpostsids)) {
157 foreach ($newpostsids as $mid) {
158 $this->overview[$this->ids[$mid]]->isread=false;
159 $this->overview[$this->ids[$mid]]->descunread=1;
160 $parentmid = $this->overview[$this->ids[$mid]]->parent;
161 while (!is_null($parentmid)) {
162 $this->overview[$parentmid]->descunread++;
163 $parentmid = $this->overview[$parentmid]->parent;
164 }
165 }
166 }
167 }
168 if (sizeof($newpostsids)>0) {
169 $flipids = array_flip($this->ids);
170 switch ($_display) {
171 case 1:
172 foreach ($this->overview as $i=>$p) {
3316e34e 173 if (isset($this->overview[$i]) &&
174 !isset($this->overview[$i]->parent) &&
810ac1df 175 ($this->overview[$i]->descunread==0)) {
176 $this->killdesc($i);
177 }
178 }
179 break;
180 case 2:
181 foreach ($this->overview as $i=>$p) {
182 if ($p->isread) {
183 unset($this->overview[$i]);
184 unset($flipids[$i]);
185 }
186 }
187 $this->ids=array_flip($flipids);
188 break;
189 }
190 }
191 }
192 return true;
193 }
194
195 /** kill post and childrens
196 * @param $_id MSGNUM of post
197 */
198
199 function killdesc($_id) {
200 if (sizeof($this->overview[$_id]->children)) {
201 foreach ($this->overview[$_id]->children as $c) {
202 $this->killdesc($c);
203 }
204 }
205 unset($this->overview[$_id]);
206# $flipid=array_flip($this->ids);
207# unset($flipid[$id]);
208# $this->ids=array_flip($flipid);
209 }
210
211 /** delete a post from overview
212 * @param $_id MSGNUM of post
213 */
214
215 function delid($_id) {
216 if (isset($this->overview[$_id])) {
217 if (sizeof($this->overview[$_id]->parent)) {
218 $this->overview[$this->overview[$_id]->parent]->children =
219 array_diff($this->overview[$this->overview[$_id]->parent]->children,
220 array($_id));
221 if (sizeof($this->overview[$_id]->children)) {
222 $this->overview[$this->overview[$_id]->parent]->children =
223 array_merge($this->overview[$this->overview[$_id]->parent]->children,
224 $this->overview[$_id]->children);
225 foreach ($this->overview[$_id]->children as $c) {
226 $this->overview[$c]->parent = $this->overview[$_id]->parent;
227 }
228 }
229 $p = $this->overview[$_id]->parent;
230 while ($p) {
231 $this->overview[$p]->desc--;
232 $p = $this->overview[$p]->parent;
233 }
234 } elseif (sizeof($this->overview[$_id]->children)) {
235 foreach ($this->overview[$_id]->children as $c) {
236 $this->overview[$c]->parent = null;
237 }
238 }
239 unset($this->overview[$_id]);
240 $ids = array_flip($this->ids);
241 unset($ids[$_id]);
242 $this->ids = array_flip($ids);
243 $f = fopen("spool/spool-{$this->group}.dat","w");
244 fputs($f,serialize($this));
245 fclose($f);
246 }
247 }
248
249 /** displays children tree of a post
250 * @param $_id INTEGER MSGNUM of post
251 * @param $_index INTEGER linear number of post in the tree
252 * @param $_first INTEGER linear number of first post displayed
253 * @param $_last INTEGER linear number of last post displayed
254 * @param $_ref STRING MSGNUM of current post
255 * @param $_pfx_node STRING prefix used for current node
256 * @param $_pfx_end STRING prefix used for children of current node
257 * @param $_head BOOLEAN true if first post in thread
258 */
259
260 function disp_desc($_id,$_index="",$_first=0,$_last=0,$_ref="",
261 $_pfx_node="", $_pfx_end="",$_head=true) {
7ce9f53d 262 global $css;
810ac1df 263 $debug = false;
264 $spfx_f = '<img src="img/k1.gif" height="21" width="9" alt="o" />';
265 $spfx_n = '<img src="img/k2.gif" height="21" width="9" alt="*" />';
266 $spfx_T = '<img src="img/T.gif" height="21" width="12" alt="+" />';
267 $spfx_L = '<img src="img/L.gif" height="21" width="12" alt="`" />';
268 $spfx_s = '<img src="img/s.gif" height="21" width="5" alt="-" />';
269 $spfx_e = '<img src="img/e.gif" height="21" width="12" alt="&nbsp;" />';
270 $spfx_I = '<img src="img/I.gif" height="21" width="12"alt="|" />';
271
272 if ($_index == "") $_index = $this->getndx($_id);
273
274 if (!sizeof($this->overview[$_id]->children) && ($_index<=$_last)
275 && ($_index>=$_first)) {
7ce9f53d 276 echo '<tr class="'.($_index%2?$css["pair"]:$css["impair"])."\">\n";
277 echo "<td class=\"{$css['date']}\">"
810ac1df 278 .formatSpoolHeader("date",$this->overview[$_id]->date,$_id,
279 $this->group,($_index==$_ref),$this->overview[$_id]->isread)
280 ." </td>\n";
7ce9f53d 281 echo "<td class=\"{$css['subject']}\"><div class=\"{$css['tree']}\">"
810ac1df 282 .$_pfx_node.($_head?$spfx_f:$spfx_s)."</div>"
283 .formatSpoolHeader("subject",$this->overview[$_id]->subject,$_id,
284 $this->group,($_index==$_ref),$this->overview[$_id]->isread)
285 .($debug?" $_id $_index ".
286 $this->overview[$_id]->desc." ".$this->overview[$_id]->descunread." ":"")." </td>\n";
7ce9f53d 287 echo "<td class=\"{$css['author']}\">"
810ac1df 288 .formatSpoolHeader("from",$this->overview[$_id]->from,$_id,
289 $this->group,($_index==$_ref),$this->overview[$_id]->isread)
290 ." </td>\n</tr>";
291 return true;
292 }
293 $children = $this->overview[$_id]->children;
294 if (($_index<=$_last) && ($_index>=$_first)) {
7ce9f53d 295 echo '<tr class="'.($_index%2?$css["pair"]:$css["impair"])."\">\n";
296 echo "<td class=\"{$css['date']}\">"
810ac1df 297 .formatSpoolHeader("date",$this->overview[$_id]->date,$_id,
298 $this->group,($_index==$_ref),$this->overview[$_id]->isread)
299 ." </td>\n";
7ce9f53d 300 echo "<td class=\"{$css['subject']}\"><div class=\"{$css['tree']}\">"
810ac1df 301 .$_pfx_node.$spfx_n."</div>"
302 .formatSpoolHeader("subject",$this->overview[$_id]->subject,$_id,
303 $this->group,($_index==$_ref),$this->overview[$_id]->isread)
304 .($debug?" $_id $_index ".
305 $this->overview[$_id]->desc." ".$this->overview[$_id]->descunread." ":"")." </td>\n";
7ce9f53d 306 echo "<td class=\"{$css['author']}\">"
810ac1df 307 .formatSpoolHeader("from",$this->overview[$_id]->from,$_id,
308 $this->group,($_index==$_ref),$this->overview[$_id]->isread)
309 ." </td>\n</tr>";
310 }
311 $index=$_index+1;
312 while ($child = array_shift($children)) {
313 if (($index+$this->overview[$child]->desc-1>=$_first)
314 ||($index<$_last)){
315 if (sizeof($children)) {
316 $this->disp_desc($child,$index,$_first,$_last,$_ref,
317 $_pfx_end.$spfx_T,$_pfx_end.$spfx_I,false);
318 } else {
319 $this->disp_desc($child,$index,$_first,$_last,$_ref,
320 $_pfx_end.$spfx_L,$_pfx_end.$spfx_e,false);
321 }
322 }
323 $index += $this->overview[$child]->desc;
324 }
325 }
326
327 /** Displays overview
328 * @param $_first INTEGER MSGNUM of first post
329 * @param $_last INTEGER MSGNUM of last post
330 * @param $_ref STRING MSGNUM of current/selectionned post
331 */
332
333 function disp($_first=0,$_last=0,$_ref="") {
7ce9f53d 334 global $css;
810ac1df 335 $index=1;
336 if (sizeof($this->overview)) {
337 foreach ($this->overview as $id=>$msg) {
338 if (!sizeof($msg->parent)) {
339 $this->disp_desc($id,$index,$_first,$_last,$_ref);
340 $index += $msg->desc;
341 }
342 }
343 } else {
7ce9f53d 344 echo "<tr class=\"{$css['pair']}\">\n";
810ac1df 345 echo "\t<td colspan=\"3\">\n";
346 echo "\t\tNo post in this newsgroup\n";
347 echo "\t</td>\n";
348 echo "</tr>\n";
349 }
350 }
351
352 /** computes linear post index
353 * @param $_id INTEGER MSGNUM of post
354 * @return INTEGER linear index of post
355 */
356
357 function getndx($_id) {
358 $ndx = 1;
359 // on remonte l'arbre
360 $id_parent = $this->overview[$_id]->parent;
361 $id_curr = $_id;
362 while (!is_null($id_parent)) {
363 for ($i=0; $i<array_search($id_curr,
364 $this->overview[$id_parent]->children) ; $i++) {
365 $ndx += $this->overview[$this->overview[$id_parent]->children[$i]]->desc;
366 }
367 $ndx++; //noeud père
368 $id_curr = $id_parent;
369 $id_parent = $this->overview[$id_curr]->parent;
370 }
371 // on compte les threads précédents
372 foreach ($this->overview as $i=>$p) {
373 if ($i==$id_curr) {
374 break;
375 }
376 if (is_null($p->parent)) {
377 $ndx += $this->overview[$i]->desc;
378 }
379 }
380 return $ndx;
381 }
382}
383
384?>