]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/WikiAdminPurge.php
getName should not translate
[SourceForge/phpwiki.git] / lib / plugin / WikiAdminPurge.php
1 <?php
2
3 /*
4  * Copyright 2002,2004 $ThePhpWikiProgrammingTeam
5  * Copyright 2009 Marc-Etienne Vargenau, Alcatel-Lucent
6  *
7  * This file is part of PhpWiki.
8  *
9  * PhpWiki is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * PhpWiki is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License along
20  * with PhpWiki; if not, write to the Free Software Foundation, Inc.,
21  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22  */
23
24 /**
25  * Usage:   <<WikiAdminPurge>>
26  */
27 require_once 'lib/PageList.php';
28 require_once 'lib/plugin/WikiAdminSelect.php';
29
30 class WikiPlugin_WikiAdminPurge
31     extends WikiPlugin_WikiAdminSelect
32 {
33     function getDescription()
34     {
35         return _("Permanently purge all selected pages.");
36     }
37
38     /* getDefaultArguments() is inherited from WikiAdminSelect class */
39
40     function collectPages(&$list, &$dbi, $sortby, $limit = 0)
41     {
42
43         $allPages = $dbi->getAllPages('include_empty', $sortby, $limit);
44         while ($pagehandle = $allPages->next()) {
45             $pagename = $pagehandle->getName();
46             $current = $pagehandle->getCurrentRevision();
47             if ($current->getVersion() < 1) {
48                 continue; // No versions in database
49             }
50             if (empty($list[$pagename])) {
51                 $list[$pagename] = false;
52             }
53         }
54         return $list;
55     }
56
57     function purgePages(&$request, $pages)
58     {
59         $result = HTML::div();
60         $ul = HTML::ul();
61         $dbi = $request->getDbh();
62         $count = 0;
63         foreach ($pages as $name) {
64             $name = str_replace(array('%5B', '%5D'), array('[', ']'), $name);
65             if (mayAccessPage('purge', $name)) {
66                 $dbi->purgePage($name);
67                 $ul->pushContent(HTML::li(fmt("Purged page ā€œ%sā€ successfully.", $name)));
68                 $count++;
69             } else {
70                 $ul->pushContent(HTML::li(fmt("Didn't purge page ā€œ%sā€. Access denied.", $name)));
71             }
72         }
73         if ($count) {
74             $dbi->touch();
75             $result->setAttr('class', 'feedback');
76             if ($count == 1) {
77                 $result->pushContent(HTML::p(_("One page has been permanently purged:")));
78             } else {
79                 $result->pushContent(HTML::p(fmt("%d pages have been permanently purged:", $count)));
80             }
81             $result->pushContent($ul);
82             return $result;
83         } else {
84             $result->setAttr('class', 'error');
85             $result->pushContent(HTML::p(_("No pages purged.")));
86             return $result;
87         }
88     }
89
90     function run($dbi, $argstr, &$request, $basepage)
91     {
92         if ($request->getArg('action') != 'browse') {
93             if ($request->getArg('action') != _("PhpWikiAdministration/Purge")) {
94                 return $this->disabled(_("Plugin not run: not in browse mode"));
95             }
96         }
97
98         $args = $this->getArgs($argstr, $request);
99         $this->_args =& $args;
100         $this->preSelectS($args, $request);
101
102         $p = $request->getArg('p');
103         if (!$p) $p = $this->_list;
104         $post_args = $request->getArg('admin_purge');
105
106         $next_action = 'select';
107         $pages = array();
108         if ($p && $request->isPost() &&
109             !empty($post_args['purge']) && empty($post_args['cancel'])
110         ) {
111
112             // check individual PagePermissions
113             if (!ENABLE_PAGEPERM and !$request->_user->isAdmin()) {
114                 $request->_notAuthorized(WIKIAUTH_ADMIN);
115                 $this->disabled("! user->isAdmin");
116             }
117             if ($post_args['action'] == 'verify') {
118                 // Real purge.
119                 return $this->purgePages($request, array_keys($p));
120             }
121
122             if ($post_args['action'] == 'select') {
123                 $next_action = 'verify';
124                 foreach ($p as $name => $c) {
125                     $name = str_replace(array('%5B', '%5D'), array('[', ']'), $name);
126                     $pages[$name] = $c;
127                 }
128             }
129         } elseif ($p && is_array($p) && !$request->isPost()) { // from WikiAdminSelect
130             $next_action = 'verify';
131             foreach ($p as $name => $c) {
132                 $name = str_replace(array('%5B', '%5D'), array('[', ']'), $name);
133                 $pages[$name] = $c;
134             }
135             $request->setArg('p', false);
136         }
137         if ($next_action == 'select') {
138             // List all pages to select from.
139             $pages = $this->collectPages($pages, $dbi, $args['sortby'], $args['limit'], $args['exclude']);
140         }
141         $pagelist = new PageList_Selectable($args['info'], $args['exclude'], array());
142         $pagelist->addPageList($pages);
143
144         $header = HTML::fieldset();
145         if ($next_action == 'verify') {
146             $button_label = _("Yes");
147             $header->pushContent(HTML::legend(_("Confirm purge")));
148             $header->pushContent(HTML::p(HTML::strong(
149                 _("Are you sure you want to permanently purge the following files?"))));
150         } else {
151             $button_label = _("Permanently purge selected pages");
152             $header->pushContent(HTML::legend(_("Select the files to purge")));
153         }
154
155         $buttons = HTML::p(Button('submit:admin_purge[purge]', $button_label, 'wikiadmin'),
156             Button('submit:admin_purge[cancel]', _("Cancel"), 'button'));
157         $header->pushContent($buttons);
158
159         // TODO: quick select by regex javascript?
160         return HTML::form(array('action' => $request->getPostURL(),
161                 'method' => 'post'),
162             $header,
163             $pagelist->getContent(),
164             HiddenInputs($request->getArgs(),
165                 false,
166                 array('admin_purge')),
167             HiddenInputs(array('admin_purge[action]' => $next_action,
168                 'require_authority_for_post' => WIKIAUTH_ADMIN)));
169     }
170 }
171
172 // Local Variables:
173 // mode: php
174 // tab-width: 8
175 // c-basic-offset: 4
176 // c-hanging-comment-ender-p: nil
177 // indent-tabs-mode: nil
178 // End: