]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/RecentComments.php
getName should not translate
[SourceForge/phpwiki.git] / lib / plugin / RecentComments.php
1 <?php
2
3 /*
4  * Copyright (C) 2004 $ThePhpWikiProgrammingTeam
5  *
6  * This file is part of PhpWiki.
7  *
8  * PhpWiki is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * PhpWiki is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License along
19  * with PhpWiki; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21  */
22
23 /**
24  * List of basepages with recently added comments.
25  * Idea from http://www.wakkawiki.com/RecentlyCommented
26  * @author: Reini Urban
27  */
28
29 require_once 'lib/plugin/RecentChanges.php';
30 require_once 'lib/plugin/WikiBlog.php';
31
32 class WikiPlugin_RecentComments
33     extends WikiPlugin_RecentChanges
34 {
35     function getDescription()
36     {
37         return _("List basepages with recently added comments.");
38     }
39
40     function getDefaultArguments()
41     {
42         $args = parent::getDefaultArguments();
43         $args['show_minor'] = false;
44         $args['show_all'] = true;
45         $args['caption'] = _("Recent Comments");
46         return $args;
47     }
48
49     function format($changes, $args)
50     {
51         $fmt = new _RecentChanges_CommentFormatter($args);
52         $fmt->action = _("RecentComments");
53         return $fmt->format($changes);
54     }
55
56     function run($dbi, $argstr, &$request, $basepage)
57     {
58         $args = $this->getArgs($argstr, $request);
59         // HACKish: fix for SF bug #622784  (1000 years of RecentChanges ought
60         // to be enough for anyone.)
61         $args['days'] = min($args['days'], 365000);
62         return $this->format($this->getChanges($request->_dbi, $args), $args);
63     }
64
65     function getChanges($dbi, $args)
66     {
67         $changes = $dbi->mostRecent($this->getMostRecentParams($args));
68         $show_deleted = $args['show_deleted'];
69         if ($show_deleted == 'sometimes')
70             $show_deleted = $args['show_minor'];
71         if (!$show_deleted)
72             $changes = new NonDeletedRevisionIterator($changes, !$args['show_all']);
73         // sort out pages with no comments
74         $changes = new RecentCommentsRevisionIterator($changes, $dbi);
75         return $changes;
76     }
77 }
78
79 class _RecentChanges_CommentFormatter
80     extends _RecentChanges_HtmlFormatter
81 {
82
83     function empty_message()
84     {
85         return _("No comments found");
86     }
87
88     function title()
89     {
90         return;
91     }
92
93     function format_revision($rev)
94     {
95         static $doublettes = array();
96         if (isset($doublettes[$rev->getPageName()])) {
97             return HTML::raw('');
98         }
99         $doublettes[$rev->getPageName()] = 1;
100         $args = &$this->_args;
101         $class = 'rc-' . $this->importance($rev);
102         $time = $this->time($rev);
103         if (!$rev->get('is_minor_edit'))
104             $time = HTML::strong(array('class' => 'pageinfo-majoredit'), $time);
105         $line = HTML::li(array('class' => $class));
106         if ($args['difflinks'])
107             $line->pushContent($this->diffLink($rev), ' ');
108
109         if ($args['historylinks'])
110             $line->pushContent($this->historyLink($rev), ' ');
111
112         $line->pushContent($this->pageLink($rev), ' ',
113             $time, ' ',
114             ' . . . . ',
115             _("latest comment by "),
116             $this->authorLink($rev));
117         return $line;
118     }
119 }
120
121 /**
122  * List of pages which have comments
123  * i.e. sort out all non-commented pages.
124  */
125 class RecentCommentsRevisionIterator extends WikiDB_PageRevisionIterator
126 {
127     function RecentCommentsRevisionIterator($revisions, &$dbi)
128     {
129         $this->_revisions = $revisions;
130         $this->_wikidb = $dbi;
131         $this->_current = 0;
132         $this->_blog = new WikiPlugin_WikiBlog();
133     }
134
135     function next()
136     {
137         if (!empty($this->comments) and $this->_current) {
138             if (isset($this->comments[$this->_current])) {
139                 return $this->comments[$this->_current++];
140             } else {
141                 $this->_current = 0;
142             }
143         }
144         while (($rev = $this->_revisions->next())) {
145             $this->comments = $this->_blog->findBlogs($this->_wikidb, $rev->getPageName(), 'comment');
146             if ($this->comments) {
147                 if (count($this->comments) > 2)
148                     usort($this->comments, array("WikiPlugin_WikiBlog",
149                         "cmp"));
150                 if (isset($this->comments[$this->_current])) {
151                     //$this->_current++;
152                     return $this->comments[$this->_current++];
153                 }
154             } else {
155                 $this->_current = 0;
156             }
157         }
158         $this->free();
159         return false;
160     }
161
162 }
163
164 // Local Variables:
165 // mode: php
166 // tab-width: 8
167 // c-basic-offset: 4
168 // c-hanging-comment-ender-p: nil
169 // indent-tabs-mode: nil
170 // End: