]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/WikiAdminUtils.php
fixed pear/File_Passwd for Windows
[SourceForge/phpwiki.git] / lib / plugin / WikiAdminUtils.php
1 <?php // -*-php-*-
2 rcs_id('$Id: WikiAdminUtils.php,v 1.10 2004-04-07 23:13:19 rurban Exp $');
3 /**
4  Copyright 2003 $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 /**
24  */
25 class WikiPlugin_WikiAdminUtils
26 extends WikiPlugin
27 {
28     function getName () {
29         return _("WikiAdminUtils");
30     }
31
32     function getDescription () {
33         return _("Miscellaneous utility functions of use to the administrator.");
34     }
35
36     function getVersion() {
37         return preg_replace("/[Revision: $]/", '',
38                             "\$Revision: 1.10 $");
39     }
40
41     function getDefaultArguments() {
42         return array('action'           => '',
43                      'label'            => '',
44                      );
45     }
46
47     function run($dbi, $argstr, &$request, $basepage) {
48         $args = $this->getArgs($argstr, $request);
49         $args['action'] = strtolower($args['action']);
50         extract($args);
51         
52         if (!$action)
53             $this->error("No action specified");
54         if (!($default_label = $this->_getLabel($action)))
55             $this->error("Bad action");
56         if ($request->getArg('action') != 'browse')
57             return $this->disabled("(action != 'browse')");
58         
59         $posted = $request->getArg('wikiadminutils');
60         $request->setArg('wikiadminutils', false);
61
62         if ($request->isPost()) {
63             $user = $request->getUser();
64             if (!$user->isAdmin()) {
65                 $request->_notAuthorized(WIKIAUTH_ADMIN);
66                 return $this->error(_("You must be an administrator to use this plugin."));
67             }
68             return $this->do_action($request, $posted);
69         }
70
71         if (empty($label))
72             $label = $default_label;
73         
74         return $this->_makeButton($request, $args, $label);
75     }
76
77     function _makeButton(&$request, $args, $label) {
78         $args['return_url'] = $request->getURLtoSelf();
79         return HTML::form(array('action' => $request->getPostURL(),
80                                 'method' => 'post'),
81                           HTML::p(Button('submit:', $label, 'wikiadmin')),
82                           HiddenInputs($args, 'wikiadminutils'),
83                           HiddenInputs(array('require_authority_for_post' =>
84                                              WIKIAUTH_ADMIN)),
85                           HiddenInputs($request->getArgs()));
86     }
87     
88     function do_action(&$request, $args) {
89         $method = strtolower('_do_' . str_replace('-', '_', $args['action']));
90         if (!method_exists($this, $method))
91             return $this->error("Bad action");
92
93         $message = call_user_func(array(&$this, $method), $request, $args);
94
95         // display as seperate page or as alert?
96         $alert = new Alert(_("WikiAdminUtils says:"),
97                            $message,
98                            array(_("Okay") => $args['return_url']));
99         $alert->show();         // noreturn
100     }
101
102     function _getLabel($action) {
103         $labels = array('purge-cache' => _("Purge Markup Cache"),
104                         'purge-bad-pagenames' => _("Delete Pages With Invalid Names"));
105         return @$labels[$action];
106     }
107
108     function _do_purge_cache(&$request, $args) {
109         $dbi = $request->getDbh();
110         $pages = $dbi->getAllPages('include_empty'); // Do we really want the empty ones too?
111         while (($page = $pages->next())) {
112             $page->set('_cached_html', false);
113         }
114         return _("Markup cache purged!");
115     }
116
117     function _do_purge_bad_pagenames(&$request, $args) {
118         // FIXME: this should be moved into WikiDB::normalize() or something...
119         $dbi = $request->getDbh();
120         $pages = $dbi->getAllPages('include_empty'); // Do we really want the empty ones too?
121         $badpages = array();
122         while (($page = $pages->next())) {
123             $pagename = $page->getName();
124             $wpn = new WikiPageName($pagename);
125             if (! $wpn->isValid())
126                 $badpages[] = $pagename;
127         }
128
129         if (!$badpages)
130             return _("No pages with bad names were found.");
131         
132         $list = HTML::ul();
133         foreach ($badpages as $pagename) {
134             $dbi->deletePage($pagename);
135             $list->pushContent(HTML::li($pagename));
136         }
137         
138         return HTML(fmt("Deleted %s pages with invalid names:",
139                         count($badpages)),
140                     $list);
141     }
142
143     //TODO
144     function _do_access_restrictions(&$request, &$args) {
145         return _("Sorry. Access Restrictions not yet implemented");
146     }
147     
148     // pagelist with enable/disable button
149     function _do_email_verification(&$request, &$args) {
150         $dbi = $request->getDbh();
151         $pagelist = new PageList('pagename',0,$args);
152         //$args['return_url'] = 'action=email-verification-verified';
153         $email = new _PageList_Column_email('email',_("E-Mail"),'left');
154         $emailVerified = new _PageList_Column_emailVerified('emailVerified',_("Verification Status"),'center');
155         $pagelist->_columns[] = $email;
156         $pagelist->_columns[] = $emailVerified;
157         //This is the best method to find all users (Db and PersonalPage)
158         $current_user = $request->_user;
159         if (empty($args['verify'])) {
160             $group = WikiGroup::getGroup($request);
161             $allusers = $group->_allUsers();
162         } else {
163             $allusers = array_keys($args['user']);
164         }
165         foreach ($allusers as $username) {
166             if (ENABLE_USER_NEW)
167                 $user = WikiUser($username);
168             else 
169                 $user = new WikiUser(&$request,$username);
170             $prefs = $user->getPreferences();
171             if ($prefs->get('email')) {
172                 if (!$prefs->get('userid'))
173                     $prefs->set('userid',$username);
174                 $group = (int)(count($pagelist->_rows) / $pagelist->_group_rows);
175                 $class = ($group % 2) ? 'oddrow' : 'evenrow';
176                 $row = HTML::tr(array('class' => $class));
177                 $page_handle = $dbi->getPage($username);
178                 $row->pushContent($pagelist->_columns[0]->format($pagelist, $page_handle, $page_handle));
179                 $row->pushContent($email->format($pagelist, &$prefs, $page_handle));
180                 if (!empty($args['verify'])) {
181                     $prefs->_prefs['email']->set('emailVerified',empty($args['verified'][$username]) ? 0 : 2);
182                     $user->setPreferences($prefs);
183                 }
184                 $row->pushContent($emailVerified->format($pagelist, &$prefs, $args['verify']));
185                 $pagelist->_rows[] = $row;
186             }
187         }
188         $request->_user = $current_user;
189         if (!empty($args['verify'])) {
190             return HTML($pagelist->_generateTable(false));
191         } else {
192             $args['verify'] = 1;
193             $args['return_url'] = $request->getURLtoSelf();
194             return HTML::form(array('action' => $request->getPostURL(),
195                                     'method' => 'post'),
196                           HiddenInputs($args, 'wikiadminutils'),
197                           HiddenInputs(array('require_authority_for_post' =>
198                                              WIKIAUTH_ADMIN)),
199                           HiddenInputs($request->getArgs()),
200                           $pagelist->_generateTable(false),                   
201                           HTML::p(Button('submit:', _("Change Verification Status"), 'wikiadmin'),
202                                   HTML::Raw('&nbsp;'),
203                                   Button('cancel', _("Cancel")))
204                                  );
205         }
206     }
207 };
208
209 require_once("lib/PageList.php");
210
211 class _PageList_Column_email 
212 extends _PageList_Column {
213     function _getValue ($prefs, $dummy) {
214         return $prefs->get('email');
215     }
216 }
217
218 class _PageList_Column_emailVerified
219 extends _PageList_Column {
220     function _getValue ($prefs, $status) {
221         $name = $prefs->get('userid');
222         $input = HTML::input(array('type' => 'checkbox',
223                                    'name' => 'wikiadminutils[verified]['.$name.']',
224                                    'value' => 1));
225         if ($prefs->get('emailVerified'))
226             $input->setAttr('checked','1');
227         if ($status)
228             $input->setAttr('disabled','1');
229         return HTML($input,HTML::input(array('type' => 'hidden',
230                                              'name' => 'wikiadminutils[user]['.$name.']',
231                                              'value' => $name)));
232     }
233 }
234
235
236 // For emacs users
237 // Local Variables:
238 // mode: php
239 // tab-width: 8
240 // c-basic-offset: 4
241 // c-hanging-comment-ender-p: nil
242 // indent-tabs-mode: nil
243 // End:
244 ?>