]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/WikiPlugin.php
fixed p[] pagehash passing from WikiAdminSelect, fixed problem removing pages with...
[SourceForge/phpwiki.git] / lib / WikiPlugin.php
1 <?php //-*-php-*-
2 rcs_id('$Id: WikiPlugin.php,v 1.40 2004-03-17 20:23:44 rurban Exp $');
3
4 class WikiPlugin
5 {
6     function getDefaultArguments() {
7         return array('description' => $this->getDescription());
8     }
9
10     /** Does the plugin manage its own HTTP validators?
11      *
12      * This should be overwritten by (some) individual plugins.
13      *
14      * If the output of the plugin is static, depending only
15      * on the plugin arguments, query arguments and contents
16      * of the current page, this can (and should) return true.
17      *
18      * If the plugin can deduce a modification time, or equivalent
19      * sort of tag for it's content, then the plugin should
20      * call $request->appendValidators() with appropriate arguments,
21      * and should override this method to return true.
22      *
23      * When in doubt, the safe answer here is false.
24      * Unfortunately, returning false here will most likely make
25      * any page which invokes the plugin uncacheable (by HTTP proxies
26      * or browsers).
27      */
28     function managesValidators() {
29         return false;
30     }
31     
32     // FIXME: args?
33     function run ($dbi, $argstr, &$request, $basepage) {
34         trigger_error("WikiPlugin::run: pure virtual function",
35                       E_USER_ERROR);
36     }
37
38     /** Get wiki-pages linked to by plugin invocation.
39      *
40      * A plugin may override this method to add pages to the
41      * link database for the invoking page.
42      *
43      * For example, the IncludePage plugin should override this so
44      * that the including page shows up in the backlinks list for the
45      * included page.
46      *
47      * Not all plugins which generate links to wiki-pages need list
48      * those pages here.
49      *
50      * Note also that currently the links are calculated at page save
51      * time, so only static page links (e.g. those dependent on the PI
52      * args, not the rest of the wikidb state or any request query args)
53      * will work correctly here.
54      *
55      * @param string $argstr The plugin argument string.
56      * @param string $basepage The pagename the plugin is invoked from.
57      * @return array List of pagenames linked to (or false).
58      */
59     function getWikiPageLinks ($argstr, $basepage) {
60         return false;
61     }
62     
63     /**
64      * Get name of plugin.
65      *
66      * This is used (by default) by getDefaultLinkArguments and
67      * getDefaultFormArguments to compute the default link/form
68      * targets.
69      *
70      * If you want to gettextify the name (probably a good idea),
71      * override this method in your plugin class, like:
72      * <pre>
73      *   function getName() { return _("MyPlugin"); }
74      * </pre>
75      *
76      * @return string plugin name/target.
77      */
78     function getName() {
79         return preg_replace('/^.*_/', '',  get_class($this));
80     }
81
82     function getDescription() {
83         return $this->getName();
84     }
85     
86     // plugins should override this with the commented-out code
87     function getVersion() {
88         return _("n/a");
89         //return preg_replace("/[Revision: $]/", '',
90         //                    "\$Revision: 1.40 $");
91     }
92
93     function getArgs($argstr, $request=false, $defaults = false) {
94         if ($defaults === false)
95             $defaults = $this->getDefaultArguments();
96         //Fixme: on POST argstr is empty
97         list ($argstr_args, $argstr_defaults) = $this->parseArgStr($argstr);
98         $args = array();
99         if (!empty($defaults))
100           foreach ($defaults as $arg => $default_val) {
101             if (isset($argstr_args[$arg]))
102                 $args[$arg] = $argstr_args[$arg];
103             elseif ( $request and ($argval = $request->getArg($arg)) !== false )
104                 $args[$arg] = $argval;
105             elseif (isset($argstr_defaults[$arg]))
106                 $args[$arg] = (string) $argstr_defaults[$arg];
107             else
108                 $args[$arg] = $default_val;
109
110             if ($request)
111                 $args[$arg] = $this->expandArg($args[$arg], $request);
112
113             unset($argstr_args[$arg]);
114             unset($argstr_defaults[$arg]);
115         }
116
117         foreach (array_merge($argstr_args, $argstr_defaults) as $arg => $val) {
118             trigger_error(sprintf(_("argument '%s' not declared by plugin"),
119                                   $arg), E_USER_NOTICE);
120         }
121
122         return $args;
123     }
124
125     // Patch by Dan F:
126     // Expand [arg] to $request->getArg("arg") unless preceded by ~
127     function expandArg($argval, $request) {
128         // return preg_replace('/\[(\w[\w\d]*)\]/e', '$request->getArg("$1")',
129         // Replace the arg unless it is preceded by a ~
130         $ret = preg_replace('/([^~]|^)\[(\w[\w\d]*)\]/e',
131                             '"$1" . $request->getArg("$2")',
132                            $argval);
133         // Ditch the ~ so later versions can be expanded if desired
134         return preg_replace('/~(\[\w[\w\d]*\])/', '$1', $ret);
135     }
136
137     function parseArgStr($argstr) {
138         $arg_p = '\w+';
139         $op_p = '(?:\|\|)?=';
140         $word_p = '\S+';
141         $opt_ws = '\s*';
142         $qq_p = '" ( (?:[^"\\\\]|\\\\.)* ) "';
143         //"<--kludge for brain-dead syntax coloring
144         $q_p  = "' ( (?:[^'\\\\]|\\\\.)* ) '";
145         $gt_p = "_\\( $opt_ws $qq_p $opt_ws \\)";
146         $argspec_p = "($arg_p) $opt_ws ($op_p) $opt_ws (?: $qq_p|$q_p|$gt_p|($word_p))";
147
148         $args = array();
149         $defaults = array();
150
151         while (preg_match("/^$opt_ws $argspec_p $opt_ws/x", $argstr, $m)) {
152             @ list(,$arg,$op,$qq_val,$q_val,$gt_val,$word_val) = $m;
153             $argstr = substr($argstr, strlen($m[0]));
154
155             // Remove quotes from string values.
156             if ($qq_val)
157                 $val = stripslashes($qq_val);
158             elseif ($q_val)
159                 $val = stripslashes($q_val);
160             elseif ($gt_val)
161                 $val = _(stripslashes($gt_val));
162             else
163                 $val = $word_val;
164
165             if ($op == '=') {
166                 $args[$arg] = $val;
167             }
168             else {
169                 // NOTE: This does work for multiple args. Use the
170                 // separator character defined in your webserver
171                 // configuration, usually & or &amp; (See
172                 // http://www.htmlhelp.com/faq/cgifaq.4.html)
173                 // e.g. <plugin RecentChanges days||=1 show_all||=0 show_minor||=0>
174                 // url: RecentChanges?days=1&show_all=1&show_minor=0
175                 assert($op == '||=');
176                 $defaults[$arg] = $val;
177             }
178         }
179
180         if ($argstr) {
181            $this->handle_plugin_args_cruft($argstr, $args);
182         }
183
184         return array($args, $defaults);
185     }
186
187     /* A plugin can override this function to define how any remaining text is handled */
188     function handle_plugin_args_cruft($argstr, $args) {
189         trigger_error(sprintf(_("trailing cruft in plugin args: '%s'"),
190                               $argstr), E_USER_NOTICE);
191     }
192
193     function getDefaultLinkArguments() {
194         return array('targetpage' => $this->getName(),
195                      'linktext' => $this->getName(),
196                      'description' => $this->getDescription(),
197                      'class' => 'wikiaction');
198     }
199
200     function makeLink($argstr, $request) {
201         $defaults = $this->getDefaultArguments();
202         $link_defaults = $this->getDefaultLinkArguments();
203         $defaults = array_merge($defaults, $link_defaults);
204     
205         $args = $this->getArgs($argstr, $request, $defaults);
206         $plugin = $this->getName();
207     
208         $query_args = array();
209         foreach ($args as $arg => $val) {
210             if (isset($link_defaults[$arg]))
211                 continue;
212             if ($val != $defaults[$arg])
213                 $query_args[$arg] = $val;
214         }
215     
216         $link = Button($query_args, $args['linktext'], $args['targetpage']);
217         if (!empty($args['description']))
218             $link->addTooltip($args['description']);
219     
220         return $link;
221     }
222     
223     function getDefaultFormArguments() {
224         return array('targetpage' => $this->getName(),
225                      'buttontext' => $this->getName(),
226                      'class'      => 'wikiaction',
227                      'method'     => 'get',
228                      'textinput'  => 's',
229                      'description' => $this->getDescription(),
230                      'formsize'   => 30);
231     }
232     
233     function makeForm($argstr, $request) {
234         $form_defaults = $this->getDefaultFormArguments();
235         $defaults = array_merge($form_defaults, 
236                                 $this->getDefaultArguments());
237     
238         $args = $this->getArgs($argstr, $request, $defaults);
239         $plugin = $this->getName();
240         $textinput = $args['textinput'];
241         assert(!empty($textinput) && isset($args['textinput']));
242     
243         $form = HTML::form(array('action' => WikiURL($args['targetpage']),
244                                  'method' => $args['method'],
245                                  'class'  => $args['class'],
246                                  'accept-charset' => CHARSET));
247         if (! USE_PATH_INFO ) {
248             $pagename = $request->get('pagename');
249             $form->pushContent(HTML::input(array('type' => 'hidden', 'name' => 'pagename', 
250                                                  'value' => $args['targetpage'])));
251         }
252         if ($args['targetpage'] != $this->getName()) {
253             $form->pushContent(HTML::input(array('type' => 'hidden', 
254                                                  'name' => 'action', 
255                                                  'value' => $this->getName())));
256         }
257         $contents = HTML::div();
258         $contents->setAttr('class', $args['class']);
259     
260         foreach ($args as $arg => $val) {
261             if (isset($form_defaults[$arg]))
262                 continue;
263             if ($arg != $textinput && $val == $defaults[$arg])
264                 continue;
265     
266             $i = HTML::input(array('name' => $arg, 'value' => $val));
267     
268             if ($arg == $textinput) {
269                 //if ($inputs[$arg] == 'file')
270                 //    $attr['type'] = 'file';
271                 //else
272                 $i->setAttr('type', 'text');
273                 $i->setAttr('size', $args['formsize']);
274                 if ($args['description'])
275                     $i->addTooltip($args['description']);
276             }
277             else {
278                 $i->setAttr('type', 'hidden');
279             }
280             $contents->pushContent($i);
281     
282             // FIXME: hackage
283             if ($i->getAttr('type') == 'file') {
284                 $form->setAttr('enctype', 'multipart/form-data');
285                 $form->setAttr('method', 'post');
286                 $contents->pushContent(HTML::input(array('name' => 'MAX_FILE_SIZE',
287                                                          'value' => MAX_UPLOAD_SIZE,
288                                                          'type' => 'hidden')));
289             }
290         }
291     
292         if (!empty($args['buttontext']))
293             $contents->pushContent(HTML::input(array('type' => 'submit',
294                                                      'class' => 'button',
295                                                      'value' => $args['buttontext'])));
296     
297         $form->pushContent($contents);
298         return $form;
299     }
300     
301     function error ($message) {
302         return HTML::div(array('class' => 'errors'),
303                         HTML::strong(fmt("Plugin %s failed.", $this->getName())), ' ',
304                         $message);
305     }
306
307     function disabled ($message='') {
308         $html[] = HTML::div(array('class' => 'title'),
309                             fmt("Plugin %s disabled.", $this->getName()),
310                             ' ', $message);
311         $html[] = HTML::pre($this->_pi);
312         return HTML::div(array('class' => 'disabled-plugin'), $html);
313     }
314 }
315
316 class WikiPluginLoader {
317     var $_errors;
318
319     function expandPI($pi, &$request, &$markup, $basepage=false) {
320         if (!($ppi = $this->parsePi($pi)))
321             return false;
322         list($pi_name, $plugin, $plugin_args) = $ppi;
323
324         if (!is_object($plugin)) {
325             return new HtmlElement($pi_name == 'plugin-link' ? 'span' : 'p',
326                                    array('class' => 'plugin-error'),
327                                    $this->getErrorDetail());
328         }
329         switch ($pi_name) {
330             case 'plugin':
331                 // FIXME: change API for run() (no $dbi needed).
332                 $dbi = $request->getDbh();
333                 // pass the parsed CachedMarkup context in dbi to the plugin 
334                 // to be able to know about itself, or even to change the markup XmlTree (CreateToc)
335                 $dbi->_markup = &$markup; 
336                 // FIXME: could do better here...
337                 if (! $plugin->managesValidators()) {
338                     // Output of plugin (potentially) depends on
339                     // the state of the WikiDB (other than the current
340                     // page.)
341                     
342                     // Lacking other information, we'll assume things
343                     // changed last time the wikidb was touched.
344                     
345                     // As an additional hack, mark the ETag weak, since,
346                     // for all we know, the page might depend
347                     // on things other than the WikiDB (e.g. PhpWeather,
348                     // Calendar...)
349                     
350                     $timestamp = $dbi->getTimestamp();
351                     $request->appendValidators(array('dbi_timestamp' => $timestamp,
352                                                      '%mtime' => (int)$timestamp,
353                                                      '%weak' => true));
354                 }
355                 return $plugin->run($dbi, $plugin_args, $request, $basepage);
356             case 'plugin-link':
357                 return $plugin->makeLink($plugin_args, $request);
358             case 'plugin-form':
359                 return $plugin->makeForm($plugin_args, $request);
360         }
361     }
362
363     function getWikiPageLinks($pi, $basepage) {
364         if (!($ppi = $this->parsePi($pi)))
365             return false;
366         list($pi_name, $plugin, $plugin_args) = $ppi;
367         if (!is_object($plugin))
368             return false;
369         if ($pi_name != 'plugin')
370             return false;
371         return $plugin->getWikiPageLinks($plugin_args, $basepage);
372     }
373     
374     function parsePI($pi) {
375         if (!preg_match('/^\s*<\?(plugin(?:-form|-link)?)\s+(\w+)\s*(.*?)\s*\?>\s*$/s', $pi, $m))
376             return $this->_error(sprintf("Bad %s", 'PI'));
377
378         list(, $pi_name, $plugin_name, $plugin_args) = $m;
379         $plugin = $this->getPlugin($plugin_name, $pi);
380
381         return array($pi_name, $plugin, $plugin_args);
382     }
383     
384     function getPlugin($plugin_name, $pi=false) {
385         global $ErrorManager;
386
387         // Note that there seems to be no way to trap parse errors
388         // from this include.  (At least not via set_error_handler().)
389         $plugin_source = "lib/plugin/$plugin_name.php";
390
391         $ErrorManager->pushErrorHandler(new WikiMethodCb($this, '_plugin_error_filter'));
392         $plugin_class = "WikiPlugin_$plugin_name";
393         if (!class_exists($plugin_class)) {
394             // $include_failed = !@include_once("lib/plugin/$plugin_name.php");
395             $include_failed = !include_once("lib/plugin/$plugin_name.php");
396             $ErrorManager->popErrorHandler();
397             
398             if (!class_exists($plugin_class)) {
399                 if ($include_failed)
400                     return $this->_error(sprintf(_("Include of '%s' failed"),
401                                                  $plugin_source));
402                 return $this->_error(sprintf("%s: no such class", $plugin_class));
403             }
404         }
405         $plugin = new $plugin_class;
406         if (!is_subclass_of($plugin, "WikiPlugin"))
407             return $this->_error(sprintf("%s: not a subclass of WikiPlugin",
408                                          $plugin_class));
409
410         $plugin->_pi = $pi;
411         return $plugin;
412     }
413
414     function _plugin_error_filter ($err) {
415         if (preg_match("/Failed opening '.*' for inclusion/", $err->errstr))
416             return true;        // Ignore this error --- it's expected.
417         return false;
418     }
419
420     function getErrorDetail() {
421         return $this->_errors;
422     }
423
424     function _error($message) {
425         $this->_errors = $message;
426         return false;
427     }
428 };
429
430 // (c-file-style: "gnu")
431 // Local Variables:
432 // mode: php
433 // tab-width: 8
434 // c-basic-offset: 4
435 // c-hanging-comment-ender-p: nil
436 // indent-tabs-mode: nil
437 // End:
438 ?>