]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/RandomPage.php
rcs_id no longer makes sense with Subversion global version number
[SourceForge/phpwiki.git] / lib / plugin / RandomPage.php
1 <?php // -*-php-*-
2 // rcs_id('$Id$');
3 /**
4  * Copyright 1999,2000,2001,2002,2005 $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
19  * along with PhpWiki; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 require_once('lib/PageList.php');
24
25 /**
26  * With 1.3.11 the "pages" argument was renamed to "numpages".
27  * action=upgrade should deal with pages containing RandomPage modified earlier than 2005-01-24
28  */
29 class WikiPlugin_RandomPage
30 extends WikiPlugin
31 {
32     function getName () {
33         return _("RandomPage");
34     }
35
36     function getDescription () {
37         return _("Displays a list of randomly chosen pages or redirects to a random page.");
38     }
39
40     function getDefaultArguments() {
41         return array_merge
42             (
43              PageList::supportedArgs(),
44              array('numpages'     => 20,     // was pages
45                    'pages'        => false, // deprecated
46                    'redirect'     => false,
47                    'hidename'     => false, // only for numpages=1
48                    'exclude'      => $this->default_exclude(),
49                    'info'         => ''));
50     }
51
52     function run($dbi, $argstr, &$request, $basepage) {
53         $args = $this->getArgs($argstr, $request);
54         extract($args);
55
56         // fix deprecated arg
57         if (is_integer($pages)) {
58             $numpages = $pages;
59             $pages = false;
60         // fix new pages handling in arg preprozessor.
61         } elseif (is_array($pages)) {
62             $numpages = (int)$pages[0];
63             if ($numpages > 0 and !$dbi->isWikiPage($numpages)) $pages = false;
64             else $numpages = 1;
65         }
66
67         $allpages = $dbi->getAllPages(false, $sortby, $limit, $exclude);
68         $pagearray = $allpages->asArray();
69         better_srand(); // Start with a good seed.
70
71         if (($numpages == 1) && $pagearray) {
72             $page = $pagearray[array_rand($pagearray)];
73             $pagename = $page->getName();
74             if ($redirect)
75                 $request->redirect(WikiURL($pagename, false, 'absurl')); // noreturn
76             if ($hidename)
77                 return WikiLink($pagename, false, _("RandomPage"));
78             else
79                 return WikiLink($pagename);
80         }
81
82         $numpages = min( max(1, (int) $numpages), 20, count($pagearray));
83         $pagelist = new PageList($info, $exclude, $args);
84         $shuffle = array_rand($pagearray, $numpages);
85         if (is_array($shuffle)) {
86             foreach ($shuffle as $i)
87                 if (isset($pagearray[$i])) $pagelist->addPage($pagearray[$i]);
88         } else { // if $numpages = 1
89              if (isset($pagearray[$shuffle]))
90                  $pagelist->addPage($pagearray[$shuffle]);
91         }
92         return $pagelist;
93     }
94
95     function default_exclude() {
96         // Some useful default pages to exclude.
97         $default_exclude = 'RandomPage,HomePage,AllPages,RecentChanges,RecentEdits,FullRecentChanges';
98         foreach (explode(",", $default_exclude) as $e) {
99             $exclude[] = gettext($e);
100         }
101         return implode(",", $exclude);
102     }
103 };
104
105 // Local Variables:
106 // mode: php
107 // tab-width: 8
108 // c-basic-offset: 4
109 // c-hanging-comment-ender-p: nil
110 // indent-tabs-mode: nil
111 // End:
112 ?>