]> sipb.mit.edu Git - ikiwiki.git/blob - doc/plugins/write.mdwn
memoization for injected RPC functions is a very, very good thing
[ikiwiki.git] / doc / plugins / write.mdwn
1 Most ikiwiki [[plugins]] are written in perl, like ikiwiki. This gives the
2 plugin full access to ikiwiki's internals, and is the most efficient.
3 However, plugins can actually be written in any language that supports XML
4 RPC. These are called [[external]] plugins.
5
6 A plugin written in perl is a perl module, in the `IkiWiki::Plugin`
7 namespace. The name of the plugin is typically in lowercase, such as
8 `IkiWiki::Plugin::inline`. Ikiwiki includes a `IkiWiki::Plugin::skeleton`
9 that can be fleshed out to make a useful plugin.
10 `IkiWiki::Plugin::pagecount` is another simple example. All perl plugins
11 should `use IkiWiki` to import the ikiwiki plugin interface. It's a good
12 idea to include the version number of the plugin interface that your plugin
13 expects: `use IkiWiki 2.00`.
14
15 An external plugin is an executable program. It can be written in any
16 language. Its interface to ikiwiki is via XML RPC, which it reads from
17 ikiwiki on its standard input, and writes to ikiwiki on its standard
18 output. For more details on writing external plugins, see [[external]].
19
20 Despite these two types of plugins having such different interfaces,
21 they're the same as far as how they hook into ikiwiki. This document will
22 explain how to write both sorts of plugins, albeit with an emphasis on perl
23 plugins.
24
25 [[toc levels=2]]
26
27 ## Considerations
28
29 One thing to keep in mind when writing a plugin is that ikiwiki is a wiki
30 *compiler*. So plugins influence pages when they are built, not when they
31 are loaded. A plugin that inserts the current time into a page, for
32 example, will insert the build time. Also, as a compiler, ikiwiki avoids
33 rebuilding pages unless they have changed, so a plugin that prints some
34 random or changing thing on a page will generate a static page that won't
35 change until ikiwiki rebuilds the page for some other reason, like the page
36 being edited.
37
38 ## Registering plugins
39
40 Plugins should, when imported, call `hook()` to hook into ikiwiki's
41 processing. The function uses named parameters, and use varies depending on
42 the type of hook being registered -- see below. Note that a plugin can call
43 the function more than once to register multiple hooks. All calls to
44 `hook()` should be passed a "type" parameter, which gives the type of
45 hook, a "id" paramter, which should be a unique string for this plugin, and
46 a "call" parameter, which tells what function to call for the hook.
47
48 An optional "last" parameter, if set to a true value, makes the hook run
49 after all other hooks of its type. Useful if the hook depends on some other
50 hook being run first.
51
52 ## Types of hooks
53
54 In roughly the order they are called.
55
56 ### getopt
57
58         hook(type => "getopt", id => "foo", call => \&getopt);
59
60 This allows for plugins to perform their own processing of command-line
61 options and so add options to the ikiwiki command line. It's called during
62 command line processing, with @ARGV full of any options that ikiwiki was
63 not able to process on its own. The function should process any options it
64 can, removing them from @ARGV, and probably recording the configuration
65 settings in %config. It should take care not to abort if it sees
66 an option it cannot process, and should just skip over those options and
67 leave them in @ARGV.
68
69 ### checkconfig
70
71         hook(type => "checkconfig", id => "foo", call => \&checkconfig);
72
73 This is useful if the plugin needs to check for or modify ikiwiki's
74 configuration. It's called early in the startup process. The
75 function is passed no values. It's ok for the function to call
76 `error()` if something isn't configured right.
77
78 ### needsbuild
79
80         hook(type => "needsbuild", id => "foo", call => \&needsbuild);
81
82 This allows a plugin the manipulate the list of files that need to be
83 built when the wiki is refreshed. The function is passed a reference to an
84 array of pages that will be rebuilt, and can modify the array, either
85 adding or removing files from it.
86
87 ### filter
88
89         hook(type => "filter", id => "foo", call => \&filter);
90
91 Runs on the raw source of a page, before anything else touches it, and can
92 make arbitrary changes. The function is passed named parameters "page",
93 "destpage", and "content". It should return the filtered content.
94
95 ### preprocess
96
97 Adding a [[PreProcessorDirective]] is probably the most common use of a
98 plugin.
99
100         hook(type => "preprocess", id => "foo", call => \&preprocess);
101
102 Replace "foo" with the command name that will be used inside brackets for
103 the preprocessor directive.
104
105 Each time the directive is processed, the referenced function (`preprocess`
106 in the example above) is called, and is passed named parameters. A "page"
107 parameter gives the name of the page that embedded the preprocessor
108 directive, while a "destpage" parameter gives the name of the page the
109 content is going to (different for inlined pages), and a "preview"
110 parameter is set to a true value if the page is being previewed. All
111 parameters included in the directive are included as named parameters as
112 well. Whatever the function returns goes onto the page in place of the
113 directive.
114
115 An optional "scan" parameter, if set to a true value, makes the hook be
116 called during the preliminary scan that ikiwiki makes of updated pages,
117 before begining to render pages. This parameter should be set to true if
118 the hook modifies data in `%links`. Note that doing so will make the hook
119 be run twice per page build, so avoid doing it for expensive hooks.
120
121 Note that if the [[htmlscrubber]] is enabled, html in
122 [[PreProcessorDirective]] output is sanitised, which may limit what your
123 plugin can do. Also, the rest of the page content is not in html format at
124 preprocessor time. Text output by a preprocessor directive will be
125 linkified and passed through markdown (or whatever engine is used to htmlize
126 the page) along with the rest of the page.
127
128 ### htmlize
129
130         hook(type => "htmlize", id => "ext", call => \&htmlize);
131
132 Runs on the raw source of a page and turns it into html. The id parameter
133 specifies the filename extension that a file must have to be htmlized using
134 this plugin. This is how you can add support for new and exciting markup
135 languages to ikiwiki.
136
137 The function is passed named parameters: "page" and "content" and should
138 return the htmlized content.
139
140 ### pagetemplate
141
142         hook(type => "pagetemplate", id => "foo", call => \&pagetemplate);
143
144 [[Templates|wikitemplate]] are filled out for many different things in
145 ikiwiki, like generating a page, or part of a blog page, or an rss feed, or
146 a cgi. This hook allows modifying the variables available on those
147 templates. The function is passed named parameters. The "page" and
148 "destpage" parameters are the same as for a preprocess hook. The "template"
149 parameter is a [[cpan HTML::Template]] object that is the template that
150 will be used to generate the page. The function can manipulate that
151 template object.
152
153 The most common thing to do is probably to call `$template->param()` to add
154 a new custom parameter to the template.
155
156 ### templatefile
157
158         hook(type => "templatefile", id => "foo", call => \&templatefile);
159
160 This hook allows plugins to change the [[template|wikitemplate]] that is
161 used for a page in the wiki. The hook is passed a "page" parameter, and
162 should return the name of the template file to use, or undef if it doesn't
163 want to change the default ("page.tmpl"). Template files are looked for in
164 /usr/share/ikiwiki/templates by default.
165
166 ### sanitize
167
168         hook(type => "sanitize", id => "foo", call => \&sanitize);
169
170 Use this to implement html sanitization or anything else that needs to
171 modify the body of a page after it has been fully converted to html.
172
173 The function is passed named parameters: "page" and "content", and 
174 should return the sanitized content.
175
176 ### format
177
178         hook(type => "format", id => "foo", call => \&format);
179
180 The difference between format and sanitize is that sanitize only acts on
181 the page body, while format can modify the entire html page including the
182 header and footer inserted by ikiwiki, the html document type, etc.
183
184 The function is passed named parameters: "page" and "content", and 
185 should return the formatted content.
186
187 ### delete
188
189         hook(type => "delete", id => "foo", call => \&delete);
190
191 Each time a page or pages is removed from the wiki, the referenced function
192 is called, and passed the names of the source files that were removed.
193
194 ### change
195
196         hook(type => "change", id => "foo", call => \&render);
197
198 Each time ikiwiki renders a change or addition (but not deletion) to the
199 wiki, the referenced function is called, and passed the names of the
200 source files that were rendered.
201
202 ### cgi
203
204         hook(type => "cgi", id => "foo", call => \&cgi);
205
206 Use this to hook into ikiwiki's cgi script. Each registered cgi hook is
207 called in turn, and passed a CGI object. The hook should examine the
208 parameters, and if it will handle this CGI request, output a page (including the http headers) and
209 terminate the program.
210
211 ### auth
212
213         hook(type => "auth", id => "foo", call => \&auth);
214
215 This hook can be used to implement a different authentication method than
216 the standard web form. When a user needs to be authenticated, each registered
217 auth hook is called in turn, and passed a CGI object and a session object. 
218
219 If the hook is able to authenticate the user, it should set the session
220 object's "name" parameter to the authenticated user's name. Note that
221 if the name is set to the name of a user who is not registered,
222 a basic registration of the user will be automatically performed.
223
224 ### sessioncgi
225
226         hook(type => "sessioncgi", id => "foo", call => \&sessioncgi);
227
228 Unlike the cgi hook, which is run as soon as possible, the sessioncgi hook
229 is only run once a session object is available. It is passed both a CGI
230 object and a session object. To check if the user is in fact signed in, you
231 can check if the session object has a "name" parameter set.
232
233 ### canedit
234
235         hook(type => "canedit", id => "foo", call => \&pagelocked);
236
237 This hook can be used to implement arbitrary access methods to control when
238 a page can be edited using the web interface (commits from revision control
239 bypass it). When a page is edited, each registered canedit hook is called
240 in turn, and passed the page name, a CGI object, and a session object.
241
242 If edit can proceed, the hook should return "". If the edit is not allowed
243 by this hook, the hook should return an error message for the user to see.
244 If the hook has no opinion about whether the edit can proceed, return
245 `undef`, and the next plugin will be asked to decide.
246
247 ### formbuilder
248
249         hook(type => "formbuilder_setup", id => "foo", call => \&formbuilder_setup);
250         hook(type => "formbuilder", id => "foo", call => \&formbuilder);
251
252 These hooks allow tapping into the parts of ikiwiki that use [[cpan
253 CGI::FormBuilder]] to generate web forms. These hooks are passed named
254 parameters: `cgi`, `session`, and `form`. These are, respectively, the
255 `CGI` object, the user's `CGI::Session`, and a `CGI::FormBuilder`.
256
257 Each time a form is set up, the `formbuilder_setup` hook is called.
258 Typically the `formbuilder_setup` hook will check the form's title, and if
259 it's a form that it needs to modify, will call various methods to
260 add/remove/change fields, tweak the validation code for the fields, etc. It
261 will not validate or display the form.
262
263 Form validation and display can be overridden by the formbuilder hook.
264 By default, ikiwiki will do a basic validation and display of the form,
265 but if this hook is registered, it will stop that and let the hook take
266 over. This hook is passed an additional named parameter: `buttons` is an
267 array of the submit buttons for the form.
268
269 ### savestate
270
271         hook(type => "savestate", id => "foo", call => \&savestate);
272
273 This hook is called wheneven ikiwiki normally saves its state, just before
274 the state is saved. The function can save other state, modify values before
275 they're saved, etc.
276
277 ## Plugin interface
278
279 To import the ikiwiki plugin interface:
280
281         use IkiWiki '1.00';
282
283 This will import several variables and functions into your plugin's
284 namespace. These variables and functions are the ones most plugins need,
285 and a special effort will be made to avoid changing them in incompatible
286 ways, and to document any changes that have to be made in the future.
287
288 Note that IkiWiki also provides other variables and functions that are not
289 exported by default. No guarantee is made about these in the future, so if
290 it's not exported, the wise choice is to not use it.
291
292 ### %config
293
294 A plugin can access the wiki's configuration via the `%config`
295 hash. The best way to understand the contents of the hash is to look at
296 [[ikiwiki.setup]], which sets the hash content to configure the wiki.
297
298 ### Other variables
299
300 If your plugin needs to access data about other pages in the wiki. It can
301 use the following hashes, using a page name as the key:
302
303 * `%links` lists the names of each page that a page links to, in an array
304   reference.
305 * `%destsources` contains the name of the source file used to create each
306   destination file.
307 * `%pagesources` contains the name of the source file for each page.
308
309 Also, the %IkiWiki::version variable contains the version number for the
310 ikiwiki program.
311
312 ### Library functions
313
314 #### `hook(@)`
315
316 Hook into ikiwiki's processing. See the discussion of hooks above.
317
318 Note that in addition to the named parameters described above, a parameter
319 named `no_override` is supported, If it's set to a true value, then this hook
320 will not override any existing hook with the same id. This is useful if
321 the id can be controled by the user.
322
323 #### `debug($)`
324
325 Logs a debugging message. These are supressed unless verbose mode is turned
326 on.
327
328 #### `error($;$)`
329
330 Aborts with an error message. If the second parameter is passed, it is a
331 function that is called after the error message is printed, to do any final
332 cleanup.
333
334 Note that while any plugin can use this for a fatal error, plugins should
335 try to avoid dying on bad input, as that will halt the entire wiki build
336 and make the wiki unusable. So for example, if a [[PreProcessorDirective]]
337 is passed bad parameters, it's better to return an error message, which can
338 appear on the wiki page, rather than calling error().
339
340 #### `template($;@)`
341
342 Creates and returns a [[cpan HTML::Template]] object. The first parameter
343 is the name of the file in the template directory. The optional remaining
344 parameters are passed to `HTML::Template->new`.
345
346 #### `htmlpage($)`
347
348 Passed a page name, returns the base name that will be used for a the html
349 page created from it. (Ie, it appends ".html".)
350
351 #### `add_depends($$)`
352
353 Makes the specified page depend on the specified [[PageSpec]].
354
355 #### `pagespec_match($$;@)`
356
357 Passed a page name, and [[PageSpec]], returns true if the [[PageSpec]]
358 matches the page.
359
360 Additional named parameters can be passed, to further limit the match.
361 The most often used is "location", which specifies the location the
362 PageSpec should match against. If not passed, relative PageSpecs will match
363 relative to the top of the wiki.
364
365 #### `bestlink($$)`
366
367 Given a page and the text of a link on the page, determine which
368 existing page that link best points to. Prefers pages under a
369 subdirectory with the same name as the source page, failing that
370 goes down the directory tree to the base looking for matching
371 pages, as described in [[SubPage/LinkingRules]].
372
373 #### `htmllink($$$;@)`
374
375 Many plugins need to generate html links and add them to a page. This is
376 done by using the `htmllink` function. The usual way to call
377 `htmlllink` is:
378
379         htmllink($page, $page, $link)
380
381 Why is `$page` repeated? Because if a page is inlined inside another, and a
382 link is placed on it, the right way to make that link is actually:
383
384         htmllink($page, $destpage, $link)
385
386 Here `$destpage` is the inlining page. A `destpage` parameter is passed to
387 some of the hook functions above; the ones that are not passed it are not used
388 during inlining and don't need to worry about this issue.
389
390 After the three required parameters, named parameters can be used to
391 control some options. These are:
392
393 * noimageinline - set to true to avoid turning links into inline html images
394 * forcesubpage  - set to force a link to a subpage
395 * linktext - set to force the link text to something
396 * anchor - set to make the link include an anchor
397 * rel - set to add a rel attribute to the link.
398
399 #### `readfile($;$)`
400
401 Given a filename, reads and returns the entire file.
402
403 The optional second parameter, if set to a true value, makes the file be read
404 in binary mode.
405
406 A failure to read the file will result in it dying with an error.
407
408 #### `writefile($$$;$$)`
409
410 Given a filename, a directory to put it in, and the file's content,
411 writes a file. 
412
413 The optional fourth parameter, if set to a true value, makes the file be
414 written in binary mode.
415
416 The optional fifth parameter can be used to pass a function reference that
417 will be called to handle writing to the file. The function will be called
418 and passed a file descriptor it should write to, and an error recovery
419 function it should call if the writing fails. (You will not normally need to
420 use this interface.)
421
422 A failure to write the file will result in it dying with an error.
423
424 If the destination directory doesn't exist, it will first be created.
425
426 #### `will_render($$)`
427
428 Given a page name and a destination file name (not including the base
429 destination directory), register that the page will result in that file
430 being rendered. It's important to call this before writing to any file in
431 the destination directory.
432
433 #### `pagetype($)`
434
435 Given the name of a source file, returns the type of page it is, if it's
436 a type that ikiwiki knowns how to htmlize. Otherwise, returns undef.
437
438 #### `pagename($)`
439
440 Given the name of a source file, returns the name of the wiki page
441 that corresponds to that file.
442
443 #### `srcfile($)`
444
445 Given the name of a source file in the wiki, searches for the file in
446 the source directory and the underlay directory, and returns the full
447 path to the first file found.
448
449 #### `displaytime($)`
450
451 Given a time, formats it for display.
452
453 #### `gettext`
454
455 This is the standard gettext function, although slightly optimised.
456
457 #### `urlto($$)`
458
459 Construct a relative url to the first parameter from the page named by the
460 second. The first parameter can be either a page name, or some other
461 destination file, as registered by `will_render`.
462
463 #### `targetpage($$)`
464
465 Passed a page and an extension, returns the filename that page will be
466 rendered to.
467
468 ## RCS plugins
469
470 ikiwiki's support for revision control systems also uses pluggable perl
471 modules. These are in the `IkiWiki::RCS` namespace, for example
472 `IkiWiki::RCS::svn`. 
473
474 Each RCS plugin must support all the `IkiWiki::rcs_*` functions.
475 See IkiWiki::RCS::Stub for the full list of functions. It's ok if
476 `rcs_getctime` does nothing except for throwing an error.
477
478 See [[about_RCS_backends]] for some more info.
479
480 ## PageSpec plugins
481
482 It's also possible to write plugins that add new functions to
483 [[PageSpecs|PageSpec]]. Such a plugin should add a function to the
484 IkiWiki::PageSpec package, that is named `match_foo`, where "foo()" is
485 how it will be accessed in a [[PageSpec]]. The function will be passed
486 two parameters: The name of the page being matched, and the thing to match
487 against. It may also be passed additional, named parameters. It should return
488 a IkiWiki::SuccessReason object if the match succeeds, or an
489 IkiWiki::FailReason object if the match fails.