]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/WikiAdminSelect.php
protected
[SourceForge/phpwiki.git] / lib / plugin / WikiAdminSelect.php
1 <?php
2
3 /*
4  * Copyright 2002 $ThePhpWikiProgrammingTeam
5  * Copyright 2008-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  * Allows selection of multiple pages which get passed to other
26  * WikiAdmin plugins then. Then do Rename, Remove, Chown, ...
27  *
28  * Usage:   <<WikiAdminSelect>>
29  * Author:  Reini Urban <rurban@x-ray.at>
30  *
31  * This is the base class for most WikiAdmin* classes, using
32  * collectPages() and preSelectS().
33  * "list" PagePermissions supported implicitly by PageList.
34  */
35 require_once 'lib/PageList.php';
36
37 class WikiPlugin_WikiAdminSelect
38     extends WikiPlugin
39 {
40     function getDescription()
41     {
42         return _("Allows selection of multiple pages which get passed to other WikiAdmin plugins.");
43     }
44
45     function getDefaultArguments()
46     {
47         return array('s' => '', // preselect pages
48             /* select pages by meta-data: */
49             'author' => false,
50             'owner' => false,
51             'creator' => false,
52             'only' => '',
53             'exclude' => '',
54             'info' => 'most',
55             'sortby' => 'pagename',
56             'limit' => 0,
57             'paging' => 'none'
58         );
59     }
60
61     /**
62      * Default collector for all WikiAdmin* plugins.
63      * preSelectS() is similar, but fills $this->_list
64      */
65     protected function collectPages(&$list, &$dbi, $sortby, $limit = 0, $exclude = '')
66     {
67         $allPages = $dbi->getAllPages(0, $sortby, $limit, $exclude);
68         while ($pagehandle = $allPages->next()) {
69             $pagename = $pagehandle->getName();
70             if (empty($list[$pagename]))
71                 $list[$pagename] = 0;
72         }
73         return $list;
74     }
75
76     /**
77      * Preselect a list of pagenames by the supporting the following args:
78      * 's': comma-separated list of pagename wildcards
79      * 'author', 'owner', 'creator': from WikiDB_Page
80      * 'only: forgot what the difference to 's' was.
81      * Sets $this->_list, which is picked up by collectPages() and is a default for p[]
82      */
83     protected function preSelectS(&$args, &$request)
84     {
85         // override plugin argument by GET: probably not needed if s||="" is used
86         // anyway, we force it for unique interface.
87         if (!empty($request->getArg['s'])) {
88             $args['s'] = $request->getArg['s'];
89         }
90         if (!empty($args['owner'])) {
91             $sl = PageList::allPagesByOwner($args['owner'], false, $args['sortby'], $args['limit'], $args['exclude']);
92         } elseif (!empty($args['author'])) {
93             $sl = PageList::allPagesByAuthor($args['author'], false, $args['sortby'], $args['limit'], $args['exclude']);
94         } elseif (!empty($args['creator'])) {
95             $sl = PageList::allPagesByCreator($args['creator'], false, $args['sortby'], $args['limit'], $args['exclude']);
96         } elseif (!empty($args['s']) or !empty($args['only'])) {
97             // all pages by name
98             $sl = explodePageList(empty($args['only']) ? $args['s'] : $args['only']);
99         }
100         $this->_list = array();
101         if (!empty($sl)) {
102             $request->setArg('verify', 1);
103             foreach ($sl as $name) {
104                 if (!empty($args['exclude'])) {
105                     if (!in_array($name, $args['exclude']))
106                         $this->_list[$name] = 1;
107                 } else {
108                     $this->_list[$name] = 1;
109                 }
110             }
111         }
112         return $this->_list;
113     }
114
115     function run($dbi, $argstr, &$request, $basepage)
116     {
117         //if ($request->getArg('action') != 'browse')
118         //    return $this->disabled("(action != 'browse')");
119         $args = $this->getArgs($argstr, $request);
120         $this->_args = $args;
121         extract($args);
122         $this->preSelectS($args, $request);
123
124         $info = $args['info'];
125
126         $form = HTML::form(array('action' => $request->getPostURL(), 'method' => 'post'));
127         if ($request->getArg('WikiAdminSelect') == _("Go"))
128             $p = false;
129         else
130             $p = $request->getArg('p');
131         //$p = @$GLOBALS['HTTP_POST_VARS']['p'];
132         $form->pushContent(HTML::p(array('class' => 'wikitext'), _("Select: "),
133             HTML::input(array('type' => 'text',
134                 'name' => 's',
135                 'value' => $args['s'])),
136             HTML::input(array('type' => 'submit',
137                 'name' => 'WikiAdminSelect',
138                 'value' => _("Go")))));
139         if (!$request->getArg('verify')) {
140             $form->pushContent(HTML::input(array('type' => 'hidden',
141                 'name' => 'action',
142                 'value' => 'verify')));
143             $form->pushContent(Button('submit:verify', _("Select pages"),
144                     'wikiadmin'),
145                 Button('submit:cancel', _("Cancel"), 'button'));
146         } else {
147             global $WikiTheme;
148             $form->pushContent(HTML::input(array('type' => 'hidden',
149                     'name' => 'action',
150                     'value' => 'WikiAdminSelect'))
151             );
152             // Add the Buttons for all registered WikiAdmin plugins
153             $plugin_dir = 'lib/plugin';
154             if (defined('PHPWIKI_DIR'))
155                 $plugin_dir = PHPWIKI_DIR . "/$plugin_dir";
156             $fs = new fileSet($plugin_dir, 'WikiAdmin*.php');
157             $actions = $fs->getFiles();
158             sort($actions);
159             foreach ($actions as $f) {
160                 $f = preg_replace('/.php$/', '', $f);
161                 $s = preg_replace('/^WikiAdmin/', '', $f);
162                 if (!in_array($s, array("Select", "Utils"))) { // disable Select and Utils
163                     $form->pushContent(Button("submit:wikiadmin[$f]", _($s), "wikiadmin"));
164                     $form->pushContent($WikiTheme->getButtonSeparator());
165                 }
166             }
167             // $form->pushContent(Button('submit:cancel', _("Cancel"), 'button'));
168         }
169
170         if ($request->isPost()
171             && !$request->getArg('wikiadmin')
172             && !empty($p)
173         ) {
174             $this->_list = array();
175             // List all selected pages again.
176             foreach ($p as $page => $name) {
177                 $this->_list[$name] = 1;
178             }
179         } elseif ($request->isPost()
180             and $request->_user->isAdmin()
181                 and !empty($p)
182                     //and $request->getArg('verify')
183                     and ($request->getArg('action') == 'WikiAdminSelect')
184                         and $request->getArg('wikiadmin')
185         ) {
186             // handle external plugin
187             $loader = new WikiPluginLoader();
188             $a = array_keys($request->getArg('wikiadmin'));
189             $plugin_action = $a[0];
190             $single_arg_plugins = array("Remove");
191             if (in_array($plugin_action, $single_arg_plugins)) {
192                 $plugin = $loader->getPlugin($plugin_action);
193                 $ul = HTML::ul();
194                 foreach ($p as $page => $name) {
195                     $plugin_args = "run_page=$name";
196                     $request->setArg($plugin_action, 1);
197                     $request->setArg('p', array($page => $name));
198                     // if the plugin requires more args than the pagename,
199                     // then this plugin will not return. (Rename, SearchReplace, ...)
200                     $action_result = $plugin->run($dbi, $plugin_args, $request, $basepage);
201                     $ul->pushContent(HTML::li(fmt("Selected page ā€œ%sā€ passed to ā€œ%sā€.",
202                         $name, $select)));
203                     $ul->pushContent(HTML::ul(HTML::li($action_result)));
204                 }
205             } else {
206                 // redirect to the plugin page.
207                 // in which page is this plugin?
208                 $plugin_action = preg_replace("/^WikiAdmin/", "", $plugin_action);
209                 $args = array();
210                 foreach ($p as $page => $x) {
211                     $args["p[$page]"] = 1;
212                 }
213                 header("Location: " .
214                     WikiURL(__("PhpWikiAdministration")."/".__($plugin_action), $args, 1));
215                 exit();
216             }
217         } elseif (empty($args['s'])) {
218             // List all pages to select from.
219             $this->_list = $this->collectPages($this->_list, $dbi, $args['sortby'], $args['limit']);
220         }
221         $pagelist = new PageList_Selectable($info, $args['exclude'], $args);
222         $pagelist->addPageList($this->_list);
223         $form->pushContent($pagelist->getContent());
224         foreach ($args as $k => $v) {
225             if (!in_array($k, array('s', 'WikiAdminSelect', 'action', 'verify')))
226                 $form->pushContent(HiddenInputs(array($k => $v))); // plugin params
227         }
228         if (!$request->getArg('select')) {
229             return $form;
230         } else {
231             ; //return $action_result;
232         }
233         return '';
234     }
235
236     protected function tablePush(&$table, $first, $second)
237     {
238         $table->pushContent(
239             HTML::tr(
240                 HTML::td($first),
241                 HTML::td($second)));
242     }
243
244 }
245
246 // Local Variables:
247 // mode: php
248 // tab-width: 8
249 // c-basic-offset: 4
250 // c-hanging-comment-ender-p: nil
251 // indent-tabs-mode: nil
252 // End: