]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/NewPagesPerUser.php
getName should not translate
[SourceForge/phpwiki.git] / lib / plugin / NewPagesPerUser.php
1 <?php
2
3 /*
4  * Copyright (C) 2007 AVL
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 all new pages per month per user.
25  * March 2007
26  *   BERTUZZI 20
27  *   URBANR   15
28  *   ...
29  */
30
31 class WikiPlugin_NewPagesPerUser
32     extends WikiPlugin
33 {
34     private function cmp_by_count($a, $b)
35     {
36         if ($a['count'] == $b['count']) return 0;
37         return $a['count'] < $b['count'] ? 1 : -1;
38     }
39
40     function getDescription()
41     {
42         return _("List all new pages per month per user.");
43     }
44
45     function getDefaultArguments()
46     {
47         return array('userid' => '',
48             'month' => 0,
49             'since' => 0,
50             'until' => 0,
51             'comments' => 0,
52             'links' => 1,
53             'debug' => 0,
54         );
55     }
56
57     function run($dbi, $argstr, &$request, $basepage)
58     {
59         global $WikiTheme;
60         $args = $this->getArgs($argstr, $request);
61         extract($args);
62         if ($since)
63             $since = strtotime($since);
64         if ($month) {
65             $since = strtotime($month);
66             $since = mktime(0, 0, 0, date("m", $since), 1, date("Y", $since));
67             $until = mktime(23, 59, 59, date("m", $since) + 1, 0, date("Y", $since));
68         } else
69             $until = 0;
70
71         $iter = $dbi->getAllPages(false, '-mtime');
72         $pages = array();
73
74         while ($page = $iter->next()) {
75             $pagename = $page->getName();
76             if (!$page->exists()) continue;
77             $rev = $page->getRevision(1, false);
78             $date = $rev->get('mtime');
79             //$author = $rev->get('author_id');
80             $author = $page->getOwner();
81             if (defined('DEBUG') && DEBUG && $debug) {
82                 echo "<i>$pagename, ", strftime("%Y-%m-%d %h:%m:%s", $date), ", $author</i><br />\n";
83             }
84             if ($userid and (!preg_match("/" . $userid . "/", $author))) continue;
85             if ($since and $date < $since) continue;
86             if ($until and $date > $until) continue;
87             if (!$comments and preg_match("/\/Comment/", $pagename)) continue;
88             $monthnum = strftime("%Y%m", $date);
89             if (!isset($pages[$monthnum]))
90                 $pages[$monthnum] = array('author' => array(),
91                     'month' => strftime("%B, %Y", $date));
92             if (!isset($pages[$monthnum]['author'][$author]))
93                 $pages[$monthnum]['author'][$author] = array('count' => 0,
94                     'pages' => array());
95             $pages[$monthnum]['author'][$author]['count']++;
96             $pages[$monthnum]['author'][$author]['pages'][] = $pagename;
97         }
98         $iter->free();
99         $html = HTML::table(HTML::col(array('span' => 2, 'align' => 'left')));
100         $nbsp = HTML::raw('&nbsp;');
101         krsort($pages);
102         foreach ($pages as $monthname => $parr) {
103             $html->pushContent(HTML::tr(HTML::td(array('colspan' => 2),
104                 HTML::strong($parr['month']))));
105             uasort($parr['author'], array($this, 'cmp_by_count'));
106             foreach ($parr['author'] as $user => $authorarr) {
107                 $count = $authorarr['count'];
108                 $id = preg_replace("/ /", "_", 'pages-' . $monthname . '-' . $user);
109                 $html->pushContent
110                 (HTML::tr(HTML::td($nbsp, $nbsp,
111                         HTML::img(array('id' => "$id-img",
112                             'src' => $WikiTheme->_findData("images/folderArrowClosed.png"),
113                             'onclick' => "showHideFolder('$id')",
114                             'alt' => _("Click to hide/show"),
115                             'title' => _("Click to hide/show"))),
116                         $nbsp,
117                         $user),
118                     HTML::td($count)
119                 ));
120                 if ($links) {
121                     $pagelist = HTML();
122                     foreach ($authorarr['pages'] as $p)
123                         $pagelist->pushContent(WikiLink($p), ', ');
124                 } else {
125                     $pagelist = join(', ', $authorarr['pages']);
126                 }
127                 $html->pushContent
128                 (HTML::tr(array('id' => $id . '-body',
129                         'style' => 'display:none; background-color: #eee;'),
130                     HTML::td(array('colspan' => 2,
131                             'style' => 'font-size:smaller'),
132                         $pagelist
133                     )));
134             }
135         }
136         return $html;
137     }
138 }
139
140 // Local Variables:
141 // mode: php
142 // tab-width: 8
143 // c-basic-offset: 4
144 // c-hanging-comment-ender-p: nil
145 // indent-tabs-mode: nil
146 // End: