]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/RecentChanges.php
restore diffargs to original (from before 1.38)
[SourceForge/phpwiki.git] / lib / plugin / RecentChanges.php
1 <?php // -*-php-*-
2 rcs_id('$Id: RecentChanges.php,v 1.46 2002-01-30 18:34:22 carstenklapp Exp $');
3 /**
4  */
5
6         
7 class _RecentChanges_Formatter
8 {
9     var $_absurls = false;
10     
11     function _RecentChanges_Formatter ($rc_args) {
12         $this->_args = $rc_args;
13         $this->_diffargs = array('action' => 'diff');
14
15         if ($rc_args['show_major'] && !$rc_args['show_minor'])
16             $this->_diffargs['previous'] = 'major';
17     }
18
19     function include_versions_in_URLs() {
20         return (bool) $this->_args['show_all'];
21     }
22     
23     function date ($rev) {
24         global $Theme;
25         return $Theme->formatDate($rev->get('mtime'));
26     }
27
28     function time ($rev) {
29         global $Theme;
30         return $Theme->formatTime($rev->get('mtime'));
31     }
32
33     function diffURL ($rev) {
34         $args = $this->_diffargs;
35         if ($this->include_versions_in_URLs())
36             $args['version'] = $rev->getVersion();
37         $page = $rev->getPage();
38         return WikiURL($page->getName(), $args, $this->_absurls);
39     }
40
41     function historyURL ($rev) {
42         $page = $rev->getPage();
43         return WikiURL(_("PageHistory"),
44                        array('page' => $page->getName()),
45                        $this->_absurls);
46     }
47
48     function pageURL ($rev) {
49         $params = array();
50         if ($this->include_versions_in_URLs())
51             $params['version'] = $rev->getVersion();
52         $page = $rev->getPage();
53         return WikiURL($page->getName(), $params, $this->_absurls);
54     }
55     
56     function authorHasPage ($author) {
57         global $WikiNameRegexp, $request;
58         $dbi = $request->getDbh();
59         return preg_match("/^$WikiNameRegexp\$/", $author) && $dbi->isWikiPage($author);
60     }
61
62     function authorURL ($author) {
63         return $this->authorHasPage() ? WikiURL($author) : false;
64     }
65
66
67     function status ($rev) {
68         if ($rev->hasDefaultContents())
69             return 'deleted';
70         $page = $rev->getPage();
71         $prev = $page->getRevisionBefore($rev->getVersion());
72         if ($prev->hasDefaultContents())
73             return 'new';
74         return 'updated';
75     }
76
77     function importance ($rev) {
78         return $rev->get('is_minor_edit') ? 'minor' : 'major';
79     }
80     
81     function summary($rev) {
82         if ( ($summary = $rev->get('summary')) )
83             return $summary;
84
85         switch ($this->status($rev)) {
86         case 'deleted':
87             return _("Deleted.");
88         case 'new':
89             return _("New page.");
90         default:
91             return '';
92         }
93     }
94 }
95
96 class _RecentChanges_HtmlFormatter
97 extends _RecentChanges_Formatter
98 {
99     function diffLink ($rev) {
100         global $Theme;
101         return $Theme->makeButton(_("(diff)"), $this->diffURL($rev), 'wiki-rc-action');
102     }
103
104     function pageLink ($rev) {
105         $page = $rev->getPage();
106         global $Theme;
107         if ($this->include_versions_in_URLs()) {
108             $version = $rev->getVersion();
109             $exists = !$rev->hasDefaultContents();
110         }
111         else {
112             $version = false;
113             $cur = $page->getCurrentRevision();
114             $exists = !$cur->hasDefaultContents();
115         }
116         if ($exists)
117             return $Theme->linkExistingWikiWord($page->getName(), false, $version);
118         else
119             return $Theme->linkUnknownWikiWord($page->getName(), false, $version);
120     }
121     
122     function authorLink ($rev) {
123         $author = $rev->get('author');
124         if ( $this->authorHasPage($author) ) {
125             global $Theme;
126             return $Theme->LinkExistingWikiWord($author);
127         } else
128             return $author;
129     }
130
131     function summaryAsHTML ($rev) {
132         if ( !($summary = $this->summary($rev)) )
133             return '';
134         return  HTML::strong( array('class' => 'wiki-summary'),
135                               "[",
136                               do_transform($summary, 'LinkTransform'),
137                               "]");
138     }
139         
140     function rss_icon () {
141         global $request, $Theme;
142
143         $rss_url = $request->getURLtoSelf(array('format' => 'rss'));
144         return $Theme->makeButton("RSS", $rss_url, 'rssicion');
145     }
146     
147     function description () {
148         extract($this->_args);
149
150         // FIXME: say something about show_all.
151
152         if ($show_major && $show_minor)
153             $edits = _("edits");
154         elseif ($show_major)
155             $edits = _("major edits");
156         else
157             $edits = _("minor edits");
158             
159         if ($limit > 0) {
160             if ($days > 0)
161                 $desc = fmt("The %d most recent %s during the past %.1f days are listed below.",
162                             $limit, $edits, $days);
163             else
164                 $desc = fmt("The %d most recent %s are listed below.",
165                             $limit, $edits);
166         }
167         else {
168             if ($days > 0)
169                 $desc = fmt("The most recent %s during the past %.1f days are listed below.",
170                             $edits, $days);
171             else
172                 $desc = fmt("All %s are listed below.", $edits);
173         }
174         return $desc;
175     }
176
177         
178     function title () {
179         extract($this->_args);
180         return array($show_minor ? _("RecentEdits") : _("RecentChanges"),
181                      ' ',
182                      $this->rss_icon());
183     }
184
185     function format ($changes) {
186         $html = HTML(HTML::h2(false, $this->title()));
187         if (($desc = $this->description()))
188             $html->pushContent(HTML::p(false, $desc));
189         
190         $last_date = '';
191         $lines = false;
192         
193         while ($rev = $changes->next()) {
194             if (($date = $this->date($rev)) != $last_date) {
195                 if ($lines)
196                     $html->pushContent($lines);
197                 $html->pushContent(HTML::h3($date));
198                 $lines = HTML::ul();
199                 $last_date = $date;
200             }
201             $lines->pushContent($this->format_revision($rev));
202         }
203         if ($lines)
204             $html->pushContent($lines);
205         return $html;
206     }
207
208     function format_revision ($rev) {
209         $class = 'rc-' . $this->importance($rev);
210         
211         return HTML::li(array('class' => $class),
212                         $this->diffLink($rev), ' ',
213                         $this->pageLink($rev), ' ',
214                         $rev->get('is_minor_edit') ? $this->time($rev) : HTML::strong($this->time($rev)), ' ',
215                         $this->summaryAsHTML($rev),
216                         ' ... ',
217                         $this->authorLink($rev));
218     }
219 }
220
221
222 class _RecentChanges_RssFormatter
223 extends _RecentChanges_Formatter
224 {
225     var $_absurls = true;
226
227     function time ($rev) {
228         return Iso8601DateTime($rev->get('mtime'));
229     }
230
231     function pageURI ($rev) {
232         $page = $rev->getPage();
233         return WikiURL($page->getName(),
234                        array('version' => $rev->getVersion()),
235                        'absurl');
236     }
237     
238     function format ($changes) {
239         include_once('lib/RssWriter.php');
240         $rss = new RssWriter;
241
242         
243         $rss->channel($this->channel_properties());
244
245         if (($props = $this->image_properties()))
246             $rss->image($props);
247         if (($props = $this->textinput_properties()))
248             $rss->textinput($props);
249
250         while ($rev = $changes->next()) {
251             $rss->addItem($this->item_properties($rev),
252                           $this->pageURI($rev));
253         }
254
255         $rss->finish();
256         printf("\n<!-- Generated by PhpWiki:\n%s-->\n", $GLOBALS['RCS_IDS']);
257
258         global $request;        // FIXME
259         $request->finish();     // NORETURN!!!!
260     }
261     
262     function image_properties () {
263         global $Theme;
264
265         $img_url = $Theme->getImageURL('logo');
266         if (!$img_url)
267             return false;
268         
269         return array('title' => WIKI_NAME,
270                      'link' => WikiURL(HomePage, false, 'absurl'),
271                      'url' => $img_url);
272     }
273
274     function textinput_properties () {
275         return array('title' => _("Search"),
276                      'description' => _("Title Search"),
277                      'name' => 's',
278                      'link' => WikiURL(_("TitleSearch"), false, 'absurl'));
279     }
280     
281     function channel_properties () {
282         global $request;
283
284         $rc_url = WikiURL($request->getArg('pagename'), false, 'absurl');
285
286         return array('title' => WIKI_NAME,
287                      'dc:description' => _("RecentChanges"),
288                      'link' => $rc_url,
289                      'dc:date' => Iso8601DateTime(time()));
290
291         /* FIXME: other things one might like in <channel>:                   
292          * sy:updateFrequency
293          * sy:updatePeriod
294          * sy:updateBase
295          * dc:subject
296          * dc:publisher
297          * dc:language
298          * dc:rights
299          * rss091:language
300          * rss091:managingEditor
301          * rss091:webmaster
302          * rss091:lastBuildDate
303          * rss091:copyright
304          */
305     }
306     
307
308     
309         
310     function item_properties ($rev) {
311         $page = $rev->getPage();
312         $pagename = $page->getName();
313         
314         return array( 'title'           => split_pagename($pagename),
315                       'description'     => $this->summary($rev),
316                       'link'            => $this->pageURL($rev),
317                       'dc:date'         => $this->time($rev),
318                       'dc:contributor'  => $rev->get('author'),
319                       'wiki:version'    => $rev->getVersion(),
320                       'wiki:importance' => $this->importance($rev),
321                       'wiki:status'     => $this->status($rev),
322                       'wiki:diff'       => $this->diffURL($rev),
323                       'wiki:history'    => $this->historyURL($rev)
324                       );
325     }
326 }
327
328 class NonDeletedRevisionIterator extends WikiDB_PageRevisionIterator
329 {
330     /** Constructor
331      *
332      * @param $revisions object a WikiDB_PageRevisionIterator.
333      */
334     function NonDeletedRevisionIterator ($revisions, $check_current_revision = true) {
335         $this->_revisions = $revisions;
336         $this->_check_current_revision = $check_current_revision;
337     }
338
339     function next () {
340         while (($rev = $this->_revisions->next())) {
341             if ($this->_check_current_revision) {
342                 $page = $rev->getPage();
343                 $check_rev = $page->getCurrentRevision();
344             }
345             else {
346                 $check_rev = $rev;
347             }
348             if (! $check_rev->hasDefaultContents())
349                 return $rev;
350         }
351         $this->free();
352         return false;
353     }
354
355     function free () {
356         $this->_revisions->free();
357     }
358 }
359
360 class WikiPlugin_RecentChanges
361 extends WikiPlugin
362 {
363     function getName () {
364         return _("RecentChanges");
365     }
366
367     function getDefaultArguments() {
368         return array('days'             => 2,
369                      'show_minor'       => false,
370                      'show_major'       => true,
371                      'show_all'         => false,
372                      'show_deleted'     => 'sometimes',
373                      'limit'            => false,
374                      'format'           => false,
375                      'daylist'          => false,
376                      'caption'          => ''
377                      );
378     }
379
380     function getArgs ($argstr, $request, $defaults = false) {
381         $args = WikiPlugin::getArgs($argstr, $request, $defaults);
382
383         $action = $request->getArg('action');
384         if ($action != 'browse' && ! $request->isActionPage($action))
385             $args['format'] = false; // default -> HTML
386         
387         if ($args['format'] == 'rss' && empty($args['limit']))
388             $args['limit'] = 15; // Fix default value for RSS.
389
390         return $args;
391     }
392         
393     function getMostRecentParams ($args) {
394         extract($args);
395
396         $params = array('include_minor_revisions' => $show_minor,
397                         'exclude_major_revisions' => !$show_major,
398                         'include_all_revisions' => !empty($show_all));
399
400         if ($limit > 0)
401             $params['limit'] = $limit;
402
403         if ($days > 0.0)
404             $params['since'] = time() - 24 * 3600 * $days;
405
406         return $params;
407     }
408     
409     function getChanges ($dbi, $args) {
410         $changes = $dbi->mostRecent($this->getMostRecentParams($args));
411
412         $show_deleted = $args['show_deleted'];
413         if ($show_deleted == 'sometimes')
414             $show_deleted = $args['show_minor'];
415
416         if (!$show_deleted)
417             $changes = new NonDeletedRevisionIterator($changes, !$args['show_all']);
418
419         return $changes;
420     }
421
422     function format ($changes, $args) {
423         global $Theme;
424         $format = $args['format'];
425         
426         $fmt_class = $Theme->getFormatter('RecentChanges', $format);
427         if (!$fmt_class) {
428             if ($format == 'rss')
429                 $fmt_class = '_RecentChanges_RssFormatter';
430             elseif ($format == 'rss091') {
431                 include_once "lib/RSSWriter091.php";
432                 $fmt_class = '_RecentChanges_RssFormatter091';
433             }
434             else
435                 $fmt_class = '_RecentChanges_HtmlFormatter';
436         }
437         
438         $fmt = new $fmt_class($args);
439         return $fmt->format($changes);
440     }
441
442     function run ($dbi, $argstr, $request) {
443         $args = $this->getArgs($argstr, $request);
444         
445         if (! $args['daylist']) {
446             // Display RecentChanges
447             //
448             // Hack alert: format() is a NORETURN for rss formatters.
449             return $this->format($this->getChanges($dbi, $args), $args);
450         } else {
451             // Display days selection buttons
452             extract($args);
453
454             $daysarray = explode(",", $daylist);
455
456             // Defaults
457             $url_show_minor = "";
458             $url_show_all = "";
459
460             // RecentEdits args
461             if (($show_minor == 1)||($show_minor == true))
462                 $url_show_minor = "&show_minor=1";
463             if (($show_all == 1)||($show_all == true))
464                 $url_show_all = "&show_all=1";
465             // Custom caption
466             if (! $caption) {
467                 if ($url_show_minor)
468                     $caption = _("Show changes for:");
469                 else {
470                     if ($url_show_all)
471                         $caption = _("Show all changes for:");
472                     else
473                         $caption = _("Show minor edits for:");
474                 }
475             }
476
477             $b = new buttonSet();
478             $b->caption = $caption;
479
480             foreach ($daysarray as $daynum) {
481
482                 if ($daynum == 1)
483                     $label = _("1 day");
484                 elseif ($daynum < 1)
485                     $label = "..."; //alldays
486                 else
487                     $label = sprintf(_("%s days"), $daynum);
488
489                 // Build the button's url
490                 $b->addButton($label, "RecentChanges?days=" .$daynum
491                                       .$url_show_minor .$url_show_all,
492                               'wiki-rc-action');
493             }
494             return HTML::div(array('class'=>'wiki-rc-action'), $b->getContent());
495         }
496     }
497 };
498
499
500 class buttonSet {
501     function buttonSet() {
502         $this->caption = "";
503         $this->content = "";
504         $this->_b = array();
505     }
506
507     function addButton($label, $url, $action) {
508         global $Theme;
509         $this->_b[] = $Theme->makeButton($label, $url, $action);
510     }
511
512     function getContent() {
513         if (empty($this->content))
514             $this->_generateContent();
515         return $this->content;
516     }
517
518     function _generateContent() {
519         $this->content = HTML::p($this->caption . " ");
520         // Avoid an extraneous ButtonSeparator
521         $this->content->pushContent(array_shift($this->_b));
522
523         global $Theme;
524         foreach ($this->_b as $button) {
525             $this->content->pushContent($Theme->getButtonSeparator());
526             $this->content->pushContent($button);
527         }
528     }
529
530 };
531
532
533 // (c-file-style: "gnu")
534 // Local Variables:
535 // mode: php
536 // tab-width: 8
537 // c-basic-offset: 4
538 // c-hanging-comment-ender-p: nil
539 // indent-tabs-mode: nil
540 // End:   
541 ?>