]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/WikiPlugin.php
fixed yet another Prefs bug
[SourceForge/phpwiki.git] / lib / WikiPlugin.php
1 <?php //-*-php-*-
2 rcs_id('$Id: WikiPlugin.php,v 1.41 2004-03-30 02:14:03 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.41 $");
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 makeBox($title,$body) {
302         if (!$title) $title = $this->_getName();
303         return HTML::div(array('class'=>'box'),
304                          HTML::div(array('class'=>'box-title'),$title),
305                          HTML::div(array('class'=>'box-data'),$body));
306     }
307     
308     function error ($message) {
309         return HTML::div(array('class' => 'errors'),
310                         HTML::strong(fmt("Plugin %s failed.", $this->getName())), ' ',
311                         $message);
312     }
313
314     function disabled ($message='') {
315         $html[] = HTML::div(array('class' => 'title'),
316                             fmt("Plugin %s disabled.", $this->getName()),
317                             ' ', $message);
318         $html[] = HTML::pre($this->_pi);
319         return HTML::div(array('class' => 'disabled-plugin'), $html);
320     }
321 }
322
323 class WikiPluginLoader {
324     var $_errors;
325
326     function expandPI($pi, &$request, &$markup, $basepage=false) {
327         if (!($ppi = $this->parsePi($pi)))
328             return false;
329         list($pi_name, $plugin, $plugin_args) = $ppi;
330
331         if (!is_object($plugin)) {
332             return new HtmlElement($pi_name == 'plugin-link' ? 'span' : 'p',
333                                    array('class' => 'plugin-error'),
334                                    $this->getErrorDetail());
335         }
336         switch ($pi_name) {
337             case 'plugin':
338                 // FIXME: change API for run() (no $dbi needed).
339                 $dbi = $request->getDbh();
340                 // pass the parsed CachedMarkup context in dbi to the plugin 
341                 // to be able to know about itself, or even to change the markup XmlTree (CreateToc)
342                 $dbi->_markup = &$markup; 
343                 // FIXME: could do better here...
344                 if (! $plugin->managesValidators()) {
345                     // Output of plugin (potentially) depends on
346                     // the state of the WikiDB (other than the current
347                     // page.)
348                     
349                     // Lacking other information, we'll assume things
350                     // changed last time the wikidb was touched.
351                     
352                     // As an additional hack, mark the ETag weak, since,
353                     // for all we know, the page might depend
354                     // on things other than the WikiDB (e.g. PhpWeather,
355                     // Calendar...)
356                     
357                     $timestamp = $dbi->getTimestamp();
358                     $request->appendValidators(array('dbi_timestamp' => $timestamp,
359                                                      '%mtime' => (int)$timestamp,
360                                                      '%weak' => true));
361                 }
362                 return $plugin->run($dbi, $plugin_args, $request, $basepage);
363             case 'plugin-link':
364                 return $plugin->makeLink($plugin_args, $request);
365             case 'plugin-form':
366                 return $plugin->makeForm($plugin_args, $request);
367         }
368     }
369
370     function getWikiPageLinks($pi, $basepage) {
371         if (!($ppi = $this->parsePi($pi)))
372             return false;
373         list($pi_name, $plugin, $plugin_args) = $ppi;
374         if (!is_object($plugin))
375             return false;
376         if ($pi_name != 'plugin')
377             return false;
378         return $plugin->getWikiPageLinks($plugin_args, $basepage);
379     }
380     
381     function parsePI($pi) {
382         if (!preg_match('/^\s*<\?(plugin(?:-form|-link)?)\s+(\w+)\s*(.*?)\s*\?>\s*$/s', $pi, $m))
383             return $this->_error(sprintf("Bad %s", 'PI'));
384
385         list(, $pi_name, $plugin_name, $plugin_args) = $m;
386         $plugin = $this->getPlugin($plugin_name, $pi);
387
388         return array($pi_name, $plugin, $plugin_args);
389     }
390     
391     function getPlugin($plugin_name, $pi=false) {
392         global $ErrorManager;
393
394         // Note that there seems to be no way to trap parse errors
395         // from this include.  (At least not via set_error_handler().)
396         $plugin_source = "lib/plugin/$plugin_name.php";
397
398         $ErrorManager->pushErrorHandler(new WikiMethodCb($this, '_plugin_error_filter'));
399         $plugin_class = "WikiPlugin_$plugin_name";
400         if (!class_exists($plugin_class)) {
401             // $include_failed = !@include_once("lib/plugin/$plugin_name.php");
402             $include_failed = !include_once("lib/plugin/$plugin_name.php");
403             $ErrorManager->popErrorHandler();
404             
405             if (!class_exists($plugin_class)) {
406                 if ($include_failed)
407                     return $this->_error(sprintf(_("Include of '%s' failed"),
408                                                  $plugin_source));
409                 return $this->_error(sprintf(_("%s: no such class"), $plugin_class));
410             }
411         }
412         $plugin = new $plugin_class;
413         if (!is_subclass_of($plugin, "WikiPlugin"))
414             return $this->_error(sprintf(_("%s: not a subclass of WikiPlugin"),
415                                          $plugin_class));
416
417         $plugin->_pi = $pi;
418         return $plugin;
419     }
420
421     function _plugin_error_filter ($err) {
422         if (preg_match("/Failed opening '.*' for inclusion/", $err->errstr))
423             return true;        // Ignore this error --- it's expected.
424         return false;
425     }
426
427     function getErrorDetail() {
428         return $this->_errors;
429     }
430
431     function _error($message) {
432         $this->_errors = $message;
433         return false;
434     }
435 };
436
437 // (c-file-style: "gnu")
438 // Local Variables:
439 // mode: php
440 // tab-width: 8
441 // c-basic-offset: 4
442 // c-hanging-comment-ender-p: nil
443 // indent-tabs-mode: nil
444 // End:
445 ?>